.shop-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    overflow: hidden
}

.shop-hero__background {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/featured-products-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    z-index: 1
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 166, 183, 0.3), transparent 60%), linear-gradient(135deg, rgba(6, 22, 44, 0.85), rgba(26, 192, 207, 0.15));
    z-index: 2
}

.shop-hero__content {
    position: relative;
    z-index: 3;
}

.shop-hero__eyebrow {
    font-size: var(--font-size-sm);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2);
    display: block
}

.shop-hero h1 {
    color: #fff;
    margin-bottom: var(--space-3)
}

.shop-hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
    line-height: 1.6
}

.shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6)
}

.shop-hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.2)
}

.shop-hero__meta dt {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-1)
}

.shop-hero__meta dd {
    margin: 0;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9)
}

.shop-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
    gap: var(--space-6);
    align-items: stretch
}

.shop-featured__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md)
}

.shop-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.shop-featured__intro {
    margin-bottom: var(--space-4)
}

.shop-featured__intro h2 {
    margin-top: var(--space-3);
    margin-bottom: var(--space-2)
}

.shop-featured__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4)
}

.shop-featured__item dt {
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--color-primary)
}

.shop-featured__item dd {
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    line-height: 1.5
}

.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4)
}

.shop-category-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: transform var(--duration-base) var(--easing-standard), box-shadow var(--duration-base) var(--easing-standard), border-color var(--duration-base) var(--easing-standard);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column
}

.shop-category-card:hover,
.shop-category-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary)
}

.shop-category-card h3 {
    margin-bottom: var(--space-2);
    color: var(--color-primary);
    font-size: var(--font-size-lg)
}

.shop-category-card p {
    margin-bottom: var(--space-3);
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    flex-grow: 1
}

.shop-category-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-muted)
}

.shop-category-card__list li {
    padding: var(--space-1) 0
}

.shop-category-card__list li::before {
    content: "→ ";
    color: var(--color-primary);
    font-weight: 600;
    margin-right: var(--space-1)
}

.shop-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6)
}

.shop-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4)
}

.shop-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    color: #fff;
    font-size: 32px
}

.shop-benefit-item h3 {
    margin-bottom: var(--space-2);
    font-size: var(--font-size-lg)
}

.shop-benefit-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6
}

.shop-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5)
}

.shop-testimonial {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    flex-direction: column
}

.shop-testimonial__stars {
    color: #f5c14b;
    font-size: 1rem;
    margin-bottom: var(--space-2)
}

.shop-testimonial__text {
    font-style: italic;
    margin-bottom: var(--space-3);
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    flex-grow: 1;
    line-height: 1.6
}

.shop-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-3)
}

.shop-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    flex-shrink: 0
}

.shop-testimonial__name {
    font-weight: 600;
    font-size: var(--font-size-sm)
}

.shop-testimonial__role {
    font-size: var(--font-size-xs);
    color: var(--color-muted)
}

.shop-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6)
}

.shop-offer-card {
    background: linear-gradient(145deg, var(--color-primary), #00a6b7);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative
}

.shop-offer-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none
}

.shop-offer-content {
    position: relative;
    z-index: 2;
    flex: 1
}

.shop-offer-content .badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    margin-bottom: var(--space-2)
}

.shop-offer-content h3 {
    color: #fff;
    margin-bottom: var(--space-1)
}

.shop-offer-content p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-3);
    line-height: 1.5
}

.shop-offer-cta {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--easing-standard)
}

.shop-offer-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6)
}

.shop-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
    position: relative
}

.shop-process::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 0
}

.shop-process-step {
    position: relative;
    z-index: 1;
    text-align: center
}

.shop-process-step__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-md)
}

.shop-process-step h3 {
    margin-bottom: var(--space-2);
    font-size: var(--font-size-md)
}

.shop-process-step p {
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    line-height: 1.5
}

.shop-cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden
}

.shop-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none
}

.shop-cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none
}

.shop-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto
}

.shop-cta-content h2 {
    color: #fff;
    margin-bottom: var(--space-3)
}

.shop-cta-content p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
    line-height: 1.6
}

.shop-cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap
}

.shop-cta-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4)
}

.shop-cta-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8)
}

@media (max-width: 1024px) {
    .shop-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .shop-benefits {
        grid-template-columns: 1fr
    }

    .shop-testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .shop-offers-grid {
        grid-template-columns: 1fr
    }

    .shop-process {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .shop-process::before {
        display: none
    }

    .shop-featured {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 300px
    }

    .shop-hero__content {
        max-width: 100%
    }

    .shop-hero__actions {
        flex-direction: column
    }

    .shop-hero__meta {
        grid-template-columns: 1fr
    }

    .shop-categories-grid {
        grid-template-columns: 1fr
    }

    .shop-benefits {
        grid-template-columns: 1fr
    }

    .shop-testimonials {
        grid-template-columns: 1fr
    }

    .shop-process {
        grid-template-columns: 1fr
    }

    .shop-cta-actions {
        flex-direction: column;
        align-items: stretch
    }
}

@media (max-width: 480px) {
    .shop-offer-card {
        padding: var(--space-4);
        flex-direction: column
    }

    .shop-cta-section {
        padding: var(--space-5)
    }

    .shop-process-step__number {
        width: 60px;
        height: 60px;
        font-size: 24px
    }
}
