.shop-highlights {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--home-border, #dbe3ee);
}

.shop-highlights__header {
    max-width: 640px;
    margin: 0 auto 24px;
    text-align: center;
}

.shop-highlights__eyebrow {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a227;
}

.shop-highlights__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #14498c;
    line-height: 1.3;
}

.shop-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.shop-highlights__grid:not(:has(.shop-highlight-card--sales)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-inline: auto;
}

.shop-highlight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 20px 18px 16px;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 16px rgba(20, 73, 140, 0.05);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-highlight-card:hover,
.shop-highlight-card:focus-visible {
    transform: translateY(-2px);
    border-color: #b8dcfa;
    box-shadow: 0 8px 24px rgba(20, 73, 140, 0.1);
    color: inherit;
    text-decoration: none;
}

.shop-highlight-card--sales {
    border-color: rgba(235, 94, 40, 0.28);
    background: linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

.shop-highlight-card--sales:hover,
.shop-highlight-card--sales:focus-visible {
    border-color: rgba(235, 94, 40, 0.45);
}

.shop-highlight-card__badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 73, 140, 0.08);
    color: #14498c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-highlight-card__badge--sales {
    background: rgba(235, 94, 40, 0.12);
    color: #c44a1d;
}

.shop-highlight-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #eef4fb;
    flex-shrink: 0;
}

.shop-highlight-card--sales .shop-highlight-card__icon {
    background: rgba(235, 94, 40, 0.1);
}

.shop-highlight-card__icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.shop-highlight-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.shop-highlight-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #152535;
    line-height: 1.35;
}

.shop-highlight-card__desc {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5f6b7a;
}

.shop-highlight-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #14498c;
}

.shop-highlight-card--sales .shop-highlight-card__cta {
    color: #c44a1d;
}

.shop-highlight-card__cta i {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.shop-highlight-card:hover .shop-highlight-card__cta i,
.shop-highlight-card:focus-visible .shop-highlight-card__cta i {
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .shop-highlight-card {
        display: grid;
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto 1fr auto;
        column-gap: 14px;
        row-gap: 8px;
        align-items: start;
    }

    .shop-highlight-card__badge {
        grid-column: 1 / -1;
    }

    .shop-highlight-card__icon {
        grid-row: 2 / 4;
        align-self: center;
    }

    .shop-highlight-card__body {
        grid-column: 2;
        grid-row: 2 / 4;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .shop-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-highlights__grid:has(.shop-highlight-card--sales) .shop-highlight-card--sales {
        grid-column: 1 / -1;
    }

    .shop-highlights__grid:not(:has(.shop-highlight-card--sales)) {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .shop-highlights {
        margin-top: 28px;
        padding-top: 28px;
    }

    .shop-highlights__header {
        margin-bottom: 18px;
        text-align: left;
    }

    .shop-highlights__title {
        font-size: 1.35rem;
    }

    .shop-highlights__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .shop-highlights__grid:not(:has(.shop-highlight-card--sales)) {
        max-width: none;
    }

    .shop-highlight-card {
        display: grid;
        grid-template-columns: 56px 1fr;
        column-gap: 14px;
        row-gap: 4px;
        padding: 14px;
        align-items: center;
    }

    .shop-highlight-card__badge {
        grid-column: 1 / -1;
        margin-bottom: 2px;
    }

    .shop-highlight-card__icon {
        grid-row: 2 / span 3;
        width: 56px;
        height: 56px;
        align-self: center;
    }

    .shop-highlight-card__icon img {
        width: 32px;
        height: 32px;
    }

    .shop-highlight-card__body {
        display: contents;
    }

    .shop-highlight-card__title {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.95rem;
    }

    .shop-highlight-card__desc {
        grid-column: 2;
        grid-row: 3;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .shop-highlight-card__cta {
        grid-column: 2;
        grid-row: 4;
        margin-top: 2px;
        padding-top: 0;
        font-size: 0.82rem;
    }
}
