.pp-fresh-block {
    background: linear-gradient(135deg, #fff8f0 0%, #fff1e0 100%);
    border: 1px solid #f0d9b5;
    border-radius: 16px;
    padding: 32px;
}

.pp-fresh-block__title {
    font-size: 28px;
    font-weight: 700;
    color: #7c3a0a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.pp-fresh-block__intro {
    font-size: 15px;
    line-height: 1.6;
    color: #5a3e1b;
    max-width: 720px;
    margin: 0 0 24px;
}

.pp-fresh-block__learn-link {
    color: #e8760a;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.pp-fresh-block__learn-link:hover,
.pp-fresh-block__learn-link:focus {
    color: #c96308;
    text-decoration: underline;
    outline: none;
}

.pp-fresh-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pp-fresh-card {
    background: #fff;
    border: 1px solid #f0d9b5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
    min-width: 0;
}

.pp-fresh-card:hover {
    box-shadow: 0 4px 16px rgba(232, 118, 10, 0.12);
}

.pp-fresh-card--hidden {
    display: none !important;
}

.pp-fresh-card__image {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.pp-fresh-card__image:focus,
.pp-fresh-card__image:focus-visible {
    outline: none;
}

.pp-fresh-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-fresh-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-fresh-card__brand {
    font-size: 15px;
    font-weight: 700;
    color: #7c3a0a;
    margin-bottom: 4px;
    line-height: 1.3;
    text-decoration: none;
}

.pp-fresh-card__brand:hover,
.pp-fresh-card__brand:focus {
    color: #e8760a;
    text-decoration: underline;
    outline: none;
}

.pp-fresh-card__product {
    font-size: 14px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.pp-fresh-card__product:hover,
.pp-fresh-card__product:focus {
    color: #e8760a;
    text-decoration: underline;
    outline: none;
}

.pp-fresh-card__meta {
    font-size: 13px;
    color: #92560e;
    margin-bottom: 10px;
}

.pp-fresh-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
    flex: 1;
}

.pp-fresh-card__price-day {
    font-size: 18px;
    font-weight: 700;
    color: #e8760a;
}

.pp-fresh-card__price-mo {
    font-size: 13px;
    color: #92560e;
}

.pp-fresh-card__price--reference .pp-fresh-card__price-day {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.pp-fresh-card__price--reference .pp-fresh-card__price-mo {
    font-size: 12px;
    color: #aaa;
}

.pp-fresh-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: #e8760a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s ease;
    margin-top: auto;
}

.pp-fresh-card__cta:hover,
.pp-fresh-card__cta:focus {
    background: #c96308;
    color: #fff;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 118, 10, 0.25);
}

.pp-fresh-card__nutrition {
    display: flex;
    border-top: 1px solid #f0d9b5;
}

.pp-fresh-card__nutrition-item {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
}

.pp-fresh-card__nutrition-item + .pp-fresh-card__nutrition-item {
    border-left: 1px solid #f0d9b5;
}

.pp-fresh-card__nutrition-label {
    display: block;
    font-size: 11px;
    color: #92560e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.pp-fresh-card__nutrition-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #7c3a0a;
}

.pp-fresh-block__show-more {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background: transparent;
    color: #e8760a;
    border: 1.5px solid #e8760a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.pp-fresh-block__show-more:hover,
.pp-fresh-block__show-more:focus {
    background: #fff3e8;
    color: #c96308;
    border-color: #c96308;
    outline: none;
}

@media (max-width: 991px) {
    .pp-fresh-block__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pp-fresh-block {
        padding: 24px 20px;
    }

    .pp-fresh-block__title {
        font-size: 22px;
    }

    .pp-fresh-block__intro {
        font-size: 14px;
    }

    .pp-fresh-block__grid {
        grid-template-columns: 1fr;
    }
}
