/* Professional Jewelry Homepage - Minimal Burgundy Theme - FULLY FIXED */

:root {
    --burgundy: #8b1538;
    --deep-burgundy: #6b0f2a;
    --accent-gold: #BBA14F;
    --royal-green: #2d5016;
    --forest-green: #1e3a0f;
    --pastel-mauve: #f4e4e8;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --white: #ffffff;
    --off-white: #fafafa;
    --border-light: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 100px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile hero images - hidden by default */
.banner-image.mobile {
    display: none;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.banner-content {
    position: absolute;
    bottom: 60px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.banner-content.right {
    right: 80px;
}

.banner-content.left {
    left: 80px;
}

.btn-banner {
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-banner.outlined {
    background: rgba(255, 255, 255, 0.1);
}

.btn-banner.filled {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-banner.outlined:hover {
    background: var(--white);
    color: var(--text-primary);
}

.btn-banner.filled:hover {
    background: var(--deep-burgundy);
    border-color: var(--deep-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.indicator-diamond {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--white);
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-diamond.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    box-shadow: 0 0 15px rgba(139, 21, 56, 0.6);
}


/* FEATURED COLLECTIONS */
.featured-collections { margin-bottom: 120px; }

.collections-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.collection-card {
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.4s ease;
    display: block;

    /* default zoom factor */
    --zoom: 1;
}
.collection-card:hover {
    --zoom: 1.08; /* subtle: try 1.04–1.1 */
}

.collection-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;              /* your fixed box */
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 8px;
    background: #f9f9f9;
}

.collection-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;         /* show full image, no crop */
    transform-origin: center;    /* scale from center */
    transform: translate(-50%, -50%) scale(var(--zoom));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* overlay kept as-is */
.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.collection-card:hover .collection-overlay { opacity: 1; }

.collection-cta {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover .collection-cta { transform: translateY(0); }

.collection-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}


/* ========== CATEGORY SHOWCASE (3x2 Grid - Bigger) ========== */
.category-showcase {
    margin-bottom: 120px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-tile {
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 20px;
    aspect-ratio: 1;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85), rgba(187, 161, 79, 0.75));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-tile:hover .category-hover-overlay {
    opacity: 1;
}

.category-tile:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-name {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========== PRODUCTS SECTION - CAROUSEL - FIXED ARROWS ========== */
.products-section {
    margin-bottom: 120px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
    margin: 0 auto;
}

.view-all-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--burgundy);
}

/* Products Carousel Container - FIXED */
.products-carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 20px 60px;
    touch-action: pan-x;
}

.products-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.products-container::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Buttons - FULLY VISIBLE */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);
}

.carousel-nav:hover svg {
    stroke: var(--white);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}

/* ========== MINIMAL PRODUCT CARD - FIXED FOR STABILITY ========== */
.minimal-product-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    cursor: pointer;
    /* REMOVE transform on hover to prevent movement */
    transition: none;
}

/* Only scale the image, not the entire card */
.product-image-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    position: relative;
    aspect-ratio: 1;
}

.minimal-product-card:hover .product-image-container {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.minimal-product-card:hover .product-img {
    transform: scale(1.06);
}

.wishlist-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.minimal-product-card:hover .wishlist-icon {
    opacity: 1;
    transform: scale(1.1);
}

.wishlist-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-primary);
    fill: none;
    transition: all 0.2s ease;
}

.wishlist-icon:hover {
    background: var(--burgundy);
}

.wishlist-icon:hover svg {
    stroke: var(--white);
}

.wishlist-icon.active svg {
    fill: var(--burgundy);
    stroke: var(--burgundy);
}

.wishlist-icon.active:hover svg {
    fill: var(--white);
    stroke: var(--white);
}

.new-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 2;
}

/* DISCOUNT BADGE - NEW */
.discount-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

/* Info container (bottom box) */
.product-info {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CART BUTTON WITH PRICE ===== */
.cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 2px solid #800020;
    color: #800020;
    border-radius: 22px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cart-button:hover {
    background: #800020;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.3);
}

.cart-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.3s ease;
    margin-bottom: 1px;
    flex-shrink: 0;
}

.price-inside-btn {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Inline price styling within button */
.price-original-inline {
    color: #aaa;
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 500;
}

.price-current-inline {
    color: inherit;
    font-weight: 700;
    font-size: 0.95rem;
}

/* When button is hovered, update inline price colors */
.cart-button:hover .price-original-inline {
    color: rgba(255, 255, 255, 0.7);
}

.cart-button:hover .price-current-inline {
    color: #fff;
}

.cart-button svg {
    position: relative;
    top: 1px;
}

/* ========== GREEN PROMO SECTION (Home Decor) ========== */
.promo-section.green-theme {
    margin-bottom: 120px;
    position: relative;
    overflow: visible;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--royal-green) 0%, var(--forest-green) 100%);
    min-height: 450px;
}

.promo-section.green-theme .promo-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 450px;
    position: relative;
}

.promo-section.green-theme .promo-content-side {
    color: var(--white);
    z-index: 2;
}

.promo-section.green-theme .promo-content-side.right {
    text-align: right;
    padding-left: 80px;
}

.promo-section.green-theme .promo-content-side.left {
    text-align: left;
    padding-right: 80px;
}

.promo-section.green-theme .promo-heading {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.promo-section.green-theme .promo-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 500px;
}

.promo-section.green-theme .promo-content-side.right .promo-description {
    margin-left: auto;
}

.promo-section.green-theme .promo-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-section.green-theme .promo-cta-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-section.green-theme .promo-image-side {
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-start;
    z-index: 1;
    margin-top: -100px;
}

.promo-section.green-theme .promo-image-side.left {
    justify-content: flex-start;
}

.promo-section.green-theme .promo-image-side.right {
    justify-content: flex-end;
}

.promo-section.green-theme .promo-floating-image {
    height: 120%;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ========== BURGUNDY PROMO SECTION (Rings) - SEPARATE CSS ========== */
.promo-section.burgundy-theme {
    margin-bottom: 120px;
    position: relative;
    overflow: visible;
    border-radius: 2px;
    background: #B8890B;
    min-height: 450px;
}

.promo-section.burgundy-theme .promo-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 450px;
    position: relative;
}

.promo-section.burgundy-theme .promo-content-side {
    color: var(--black);
    z-index: 2;
}

.promo-section.burgundy-theme .promo-content-side.right {
    text-align: right;
    padding-left: 80px;
}

.promo-section.burgundy-theme .promo-content-side.left {
    text-align: left;
    padding-right: 80px;
}

.promo-section.burgundy-theme .promo-heading {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.promo-section.burgundy-theme .promo-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 500px;
}

.promo-section.burgundy-theme .promo-content-side.right .promo-description {
    margin-left: auto;
}

.promo-section.burgundy-theme .promo-content-side.left .promo-description {
    margin-right: auto;
}

.promo-section.burgundy-theme .promo-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-section.burgundy-theme .promo-cta-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.promo-section.burgundy-theme .promo-image-side {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-start;
    z-index: 1;
    margin-top: -300px;
}

.promo-section.burgundy-theme .promo-image-side.left {
    justify-content: flex-start;
}

.promo-section.burgundy-theme .promo-image-side.right {
    justify-content: flex-end;
}

.promo-section.burgundy-theme .promo-floating-image {
    height: 120%;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ========== PURSES FINALE ========== */
.purses-finale {
    background: var(--pastel-mauve);
    padding: 120px 0;
}

.finale-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: center;
}

.finale-heading {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.finale-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.purses-finale .promo-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.purses-finale .promo-cta-btn:hover {
     background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.finale-image {
    max-width: 400px;
    margin-left: auto;
}

.finale-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .promo-section.green-theme .promo-wrapper,
    .promo-section.burgundy-theme .promo-wrapper {
        padding: 0 40px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .minimal-product-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .products-carousel-wrapper {
        padding: 20px 50px;
    }
}

@media (max-width: 992px) {
    .hero-carousel {
        height: 450px;
        margin-bottom: 80px;
    }
    
    .banner-content {
        bottom: 40px;
    }
    
    .banner-content.right, .banner-content.left {
        right: 40px;
        left: 40px;
    }
    
    .collections-row {
        gap: 40px;
    }
    
    .collection-image {
        height: 500px;
    }
    
    .category-grid {
        gap: 25px;
    }
    
    .promo-section.green-theme .promo-heading,
    .promo-section.burgundy-theme .promo-heading {
        font-size: 38px;
    }
    
    .finale-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-carousel {
        height: 400px;
        margin-bottom: 60px;
    }
    
    /* Show mobile hero images, hide desktop */
    .banner-image.desktop {
        display: none;
    }
    
    .banner-image.mobile {
        display: block;
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: 100%;
        background: var(--off-white);
    }
    
    .banner-content {
        bottom: 30px;
        left: 20px !important;
        right: 20px !important;
        justify-content: center;
    }
    
    .btn-banner {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .collections-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .collection-image {
        height: 500px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .view-all-link {
        position: static;
        display: block;
        text-align: center;
        margin-top: 10px;
        transform: none;
    }
    
    .minimal-product-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .products-carousel-wrapper {
        padding: 20px 0;
    }
    
    /* Green Promo Mobile */
    .promo-section.green-theme .promo-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        text-align: center;
        min-height: auto;
    }
    
    .promo-section.green-theme .promo-content-side.right,
    .promo-section.green-theme .promo-content-side.left {
        text-align: center;
        padding: 0;
    }
    
    .promo-section.green-theme .promo-description {
        margin: 0 auto 36px;
    }
    
    .promo-section.green-theme .promo-image-side {
        display: flex;
        height: 400px;
        margin-top: 0;
        justify-content: center;
        align-items: center;
    }
    
    .promo-section.green-theme .promo-floating-image {
        height: 100%;
        max-width: 80%;
    }
    
    .promo-section.green-theme .promo-heading {
        font-size: 32px;
    }
    
    /* Burgundy Promo Mobile */
    .promo-section.burgundy-theme .promo-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        text-align: center;
        min-height: auto;
    }
    
    .promo-section.burgundy-theme .promo-content-side.right,
    .promo-section.burgundy-theme .promo-content-side.left {
        text-align: center;
        padding: 0;
    }
    
    .promo-section.burgundy-theme .promo-description {
        margin: 0 auto 36px;
    }
    
    .promo-section.burgundy-theme .promo-image-side {
        display: flex;
        height: 400px;
        margin-top: 0;
        justify-content: center;
        align-items: center;
    }
    
    .promo-section.burgundy-theme .promo-floating-image {
        height: 100%;
        max-width: 80%;
    }
    
    .promo-section.burgundy-theme .promo-heading {
        font-size: 32px;
    }
    
    .finale-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .finale-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .finale-heading {
        font-size: 32px;
    }
    
    .cart-button {
        font-size: 0.8rem;
        padding: 8px 10px;
        gap: 4px;
    }

    .cart-icon {
        width: 16px;
        height: 16px;
    }

    .price-inside-btn {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 320px;
    }
    
    .banner-image.mobile {
        object-fit: contain;
        object-position: center;
    }
    
    .banner-content {
        bottom: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn-banner {
        padding: 10px 20px;
        font-size: 10px;
        flex: 1;
        min-width: 120px;
    }
    
    .collection-image {
        height: 400px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .minimal-product-card {
        min-width: 220px;
        max-width: 220px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .promo-section.green-theme .promo-heading,
    .promo-section.burgundy-theme .promo-heading {
        font-size: 28px;
    }
    
    .finale-heading {
        font-size: 26px;
    }
    
    .promo-section.green-theme .promo-image-side,
    .promo-section.burgundy-theme .promo-image-side {
        height: 300px;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}