.shop-hero {
    padding: var(--space-12) 0 var(--space-10);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-background) 100%);
    text-align: center;
}

.shop-hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.shop-hero__title {
    font-size: var(--text-4xl);
    color: var(--color-taupe-dark);
    margin-bottom: var(--space-6);
    line-height: var(--line-snug);
}

.shop-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    line-height: var(--line-relaxed);
}

.shop-hero__image {
    margin-top: var(--space-8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shop-hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shop-categories {
    padding: var(--space-12) 0;
}

.section-title {
    text-align: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-taupe-dark);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-10);
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.category-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(139, 126, 114, 0.08);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 3rem;
    opacity: 0.6;
}

.category-card__title {
    font-size: var(--text-xl);
    padding: var(--space-4) var(--space-5) var(--space-2);
    margin: 0;
    color: var(--color-taupe-dark);
}

.category-card__link {
    display: inline-block;
    padding: var(--space-2) var(--space-5) var(--space-4);
    color: var(--color-primary);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-feature {
    padding: var(--space-12) 0;
    background: var(--color-cream);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.feature-content {
    padding: var(--space-6);
}

.feature-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-5);
    color: var(--color-taupe-dark);
}

.feature-text {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: var(--line-relaxed);
}

.feature-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-image img {
    width: 100%;
    height: auto;
}

.shop-collection {
    padding: var(--space-12) 0;
}

.collection-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 126, 114, 0.06);
}

.collection-image {
    position: relative;
    min-height: 400px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.collection-content {
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-powder-blue) 0%, var(--color-mint) 100%);
}

.collection-badge {
    display: inline-block;
    background: var(--color-surface);
    color: var(--color-taupe-dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    width: fit-content;
}

.collection-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-taupe-dark);
}

.collection-text {
    font-size: var(--text-base);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-6);
    color: var(--color-taupe-dark);
}

.shop-bestsellers {
    padding: var(--space-12) 0;
    background: var(--color-cream);
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-top: var(--space-8);
}

.bestseller-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bestseller-image img {
    width: 100%;
    height: auto;
}

.bestsellers-products {
    display: grid;
    gap: var(--space-4);
}

.product-card {
    background: var(--color-surface);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 126, 114, 0.08);
}

.product-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--color-taupe-dark);
}

.product-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.shop-safety {
    padding: var(--space-12) 0;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.safety-text h2 {
    text-align: left;
    margin-bottom: var(--space-5);
}

.safety-text p {
    font-size: var(--text-lg);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-5);
}

.safety-list {
    list-style: none;
    margin: var(--space-5) 0;
}

.safety-list li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--color-text);
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-mint-dark);
    font-weight: bold;
}

.safety-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.safety-image img {
    width: 100%;
    height: auto;
}

.shop-gifts {
    padding: var(--space-12) 0;
    background: var(--color-blush);
}

.gift-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gift-image {
    height: 100%;
    min-height: 400px;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gift-content {
    padding: var(--space-8);
}

.gift-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-taupe-dark);
}

.gift-text {
    font-size: var(--text-base);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-6);
    color: var(--color-text-muted);
}

.shop-craft {
    padding: var(--space-12) 0;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.craft-content {
    padding: var(--space-6);
}

.craft-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.craft-text {
    font-size: var(--text-lg);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-6);
    color: var(--color-text-muted);
}

.craft-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.craft-image img {
    width: 100%;
    height: auto;
}

.shop-colors {
    padding: var(--space-12) 0;
    background: var(--color-cream);
}

.colors-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
    align-items: center;
}

.colors-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.colors-image img {
    width: 100%;
    height: auto;
}

.colors-palette {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.color-swatch {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
    cursor: pointer;
}

.color-swatch:hover {
    transform: translateX(8px);
}

.color-swatch::before {
    content: "";
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--swatch-color);
    border: 2px solid rgba(139, 126, 114, 0.1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.color-name {
    font-weight: 500;
    color: var(--color-taupe-dark);
}

.shop-loyalty {
    padding: var(--space-12) 0;
}

.loyalty-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-10);
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-powder-blue) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 126, 114, 0.08);
}

.loyalty-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-taupe-dark);
}

.loyalty-text {
    font-size: var(--text-lg);
    line-height: var(--line-relaxed);
    margin-bottom: var(--space-8);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-benefits {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.benefit-icon {
    font-size: var(--text-2xl);
    color: var(--color-primary);
}

.benefit-text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-taupe-dark);
    max-width: 150px;
    text-align: center;
}

.shop-sizing {
    padding: var(--space-12) 0 var(--space-16);
    background: var(--color-surface);
}

.sizing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.sizing-feature {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 126, 114, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sizing-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sizing-feature h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: var(--color-taupe-dark);
}

.sizing-feature p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 968px) {
    .feature-grid,
    .collection-card,
    .bestsellers-grid,
    .safety-content,
    .gift-card,
    .craft-grid,
    .colors-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .collection-image,
    .gift-image {
        min-height: 300px;
        order: -1;
    }
    
    .collection-content,
    .gift-content {
        padding: var(--space-6);
    }
    
    .shop-hero__title {
        font-size: var(--text-3xl);
    }
    
    .sizing-features {
        grid-template-columns: 1fr;
    }
    
    .loyalty-benefits {
        flex-direction: column;
        gap: var(--space-4);
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-hero {
        padding: var(--space-8) 0;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .feature-title,
    .collection-title,
    .craft-title,
    .gift-title,
    .loyalty-title {
        font-size: var(--text-2xl);
    }
}