/* ========================================
   EMBLVERRY LUXURY JEWELLERY WEBSITE
   Ultra-Premium Design System - Optimized
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --champagne-gold: #d4af7a;
    --rose-gold: #e6b8a2;
    --deep-gold: #b8935f;
    --light-gold: #f5e6d3;
    --dark-bg: #1a1612;
    --darker-bg: #0f0d0a;
    --charcoal: #2d2520;
    --dark-brown: #3a322a;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-luxury: rgba(212, 175, 122, 0.4);
    --gradient-gold: linear-gradient(135deg, var(--champagne-gold), var(--deep-gold));
    --gradient-dark: linear-gradient(135deg, var(--charcoal), var(--darker-bg));
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-gold);
    background: var(--dark-bg);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 10000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   LUXURY NAVIGATION
   ======================================== */
.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 18, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 122, 0.12);
}

.luxury-navbar.scrolled {
    background: rgba(15, 13, 10, 0.98);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(212, 175, 122, 0.2);
}

.nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: -2px;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-item {
    text-decoration: none;
    color: var(--light-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-item:hover {
    color: var(--champagne-gold);
}

.nav-item:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icon {
    color: var(--champagne-gold);
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.nav-icon:hover {
    color: var(--deep-gold);
    transform: translateY(-3px) scale(1.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--champagne-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   CINEMATIC HERO SECTION - OPTIMIZED
   ======================================== */
.hero-section {
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(ellipse 85% 75% at 50% 45%, 
            rgba(255, 252, 247, 0.98) 0%,
            rgba(250, 247, 244, 0.92) 18%,
            rgba(250, 232, 237, 0.78) 38%,
            rgba(245, 198, 214, 0.60) 62%,
            rgba(212, 175, 122, 0.45) 88%,
            rgba(184, 147, 95, 0.25) 100%
        ),
        var(--dark-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 100px 30px 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 65% 58% at 50% 48%, 
            rgba(255, 255, 255, 0.94) 0%, 
            rgba(255, 252, 247, 0.70) 22%, 
            rgba(250, 232, 237, 0.35) 48%,
            transparent 72%
        );
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 184, 162, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: patternFloat 20s ease-in-out infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-content-wrapper {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 45px;
    position: relative;
    animation: elegantFadeInScale 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.5), rgba(230, 184, 162, 0.2) 50%, transparent 75%);
    filter: blur(40px);
    animation: glowPulse 3.5s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    border: 2px solid rgba(212, 175, 122, 0.3);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
}

.logo-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--champagne-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 122, 0.8);
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 
        0 20px 80px rgba(212, 175, 122, 0.45),
        0 0 60px rgba(245, 198, 214, 0.35),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(212, 175, 122, 0.2);
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.title-line {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    background: linear-gradient(135deg, #2d2520 0%, var(--champagne-gold) 30%, var(--deep-gold) 50%, var(--champagne-gold) 70%, #2d2520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% auto;
}

.title-subtitle {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    letter-spacing: 10px;
    color: #2d2520;
    font-weight: 400;
    opacity: 0.92;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2d2520;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.88;
    animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.luxury-btn {
    position: relative;
    padding: 18px 45px;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.luxury-btn.primary {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    box-shadow: 0 10px 40px rgba(212, 175, 122, 0.45);
}

.luxury-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 122, 0.55);
}

.luxury-btn.secondary {
    background: transparent;
    color: #2d2520;
    border: 2.5px solid var(--champagne-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.luxury-btn.secondary:hover {
    background: var(--champagne-gold);
    color: var(--darker-bg);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(212, 175, 122, 0.35);
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.luxury-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.luxury-btn:hover .btn-shine {
    left: 100%;
}

/* ========================================
   ELEGANT ABOUT SECTION
   ======================================== */
.about-section {
    padding: 140px 40px;
    background: var(--charcoal);
    position: relative;
}

.luxury-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-luxury {
    margin-bottom: 80px;
}

.section-header-luxury.center {
    text-align: center;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.section-title-luxury {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-gold);
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.ornament-line {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--champagne-gold), transparent);
    border-radius: 2px;
}

.ornament-icon {
    color: var(--champagne-gold);
    font-size: 1.3rem;
    animation: gemSparkle 3s ease-in-out infinite;
}

.section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--light-gold);
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.12), rgba(184, 147, 95, 0.06));
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 122, 0.25);
}

.frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 92%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.25), transparent 70%);
    filter: blur(50px);
    animation: glowPulse 4.5s ease-in-out infinite;
}

.about-image-placeholder {
    aspect-ratio: 0.85;
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.85), rgba(45, 37, 32, 0.65));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.about-jewellery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.shimmer-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerMove 6s infinite;
    z-index: 3;
}

.about-text-content {
    padding: 20px 0;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 2;
    color: var(--light-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-body {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--light-gold);
    margin-bottom: 25px;
    opacity: 0.88;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: rgba(212, 175, 122, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 122, 0.15);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 122, 0.12);
    border-color: rgba(212, 175, 122, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    color: var(--champagne-gold);
    font-size: 1.4rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 122, 0.3);
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--champagne-gold);
    font-weight: 600;
}

/* ========================================
   PREMIUM COLLECTION SECTION
   ======================================== */
.collection-section {
    padding: 140px 40px;
    background: var(--dark-bg);
    position: relative;
}

.collection-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 122, 0.04) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: patternMove 30s linear infinite;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.product-card-luxury {
    background: var(--charcoal);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.55);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(212, 175, 122, 0.12);
}

.product-card-luxury:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 85px rgba(212, 175, 122, 0.35);
    border-color: rgba(212, 175, 122, 0.35);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-badge-luxury {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(212, 175, 122, 0.45);
    border-radius: 3px;
}

.product-badge-luxury.bestseller {
    background: linear-gradient(135deg, var(--deep-gold), var(--champagne-gold));
}

.product-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.65), rgba(45, 37, 32, 0.45));
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-luxury:hover .product-img-container {
    transform: scale(1.1);
}

.img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.35), transparent 70%);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-card-luxury:hover .img-glow {
    opacity: 1;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card-luxury:hover .product-img {
    opacity: 0.95;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 13, 10, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(8px);
}

.product-card-luxury:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border: none;
    padding: 16px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.45);
    border-radius: 3px;
}

.quick-view-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(212, 175, 122, 0.55);
}

.product-details {
    padding: 35px;
    text-align: center;
    background: var(--charcoal);
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--light-gold);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--light-gold);
    opacity: 0.75;
    margin-bottom: 22px;
    font-weight: 300;
    line-height: 1.7;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 2px solid rgba(212, 175, 122, 0.25);
}

.product-price-enquire {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--champagne-gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.add-to-cart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--darker-bg);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(212, 175, 122, 0.35);
}

.add-to-cart:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.5);
}

.add-to-cart:active {
    transform: scale(1.05);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    padding: 140px 40px;
    background: var(--charcoal);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
    margin-top: 60px;
}

.value-card {
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.45), rgba(45, 37, 32, 0.35));
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 122, 0.15);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.65), rgba(45, 37, 32, 0.55));
    transform: translateY(-10px) scale(1.02);
    border-color: var(--champagne-gold);
    box-shadow: 0 25px 70px rgba(212, 175, 122, 0.3);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.35), transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card:hover .icon-glow {
    opacity: 1;
}

.value-icon {
    font-size: 3.5rem;
    color: var(--champagne-gold);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 122, 0.8));
}

.value-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.value-description {
    font-size: 1rem;
    color: var(--light-gold);
    opacity: 0.85;
    line-height: 1.9;
    font-weight: 300;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 140px 40px;
    background: var(--dark-bg);
    position: relative;
}

.how-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 122, 0.03) 2px, transparent 2px);
    background-size: 80px 80px;
    pointer-events: none;
    animation: patternMove 40s linear infinite;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.55), rgba(45, 37, 32, 0.45));
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 122, 0.18);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
}

.step-card:hover {
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.75), rgba(45, 37, 32, 0.65));
    transform: translateY(-12px) scale(1.03);
    border-color: var(--champagne-gold);
    box-shadow: 0 25px 70px rgba(212, 175, 122, 0.35);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--darker-bg);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.5);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 25px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 3rem;
    color: var(--champagne-gold);
    transition: all 0.5s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 122, 0.8));
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--light-gold);
    opacity: 0.82;
    line-height: 1.8;
    font-weight: 300;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    opacity: 0.5;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--champagne-gold), transparent);
}

.connector-icon {
    font-size: 1.5rem;
    color: var(--champagne-gold);
}

.cta-center {
    text-align: center;
    margin-top: 70px;
}

/* ========================================
   ELEGANT TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 140px 40px;
    background: var(--charcoal);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.testimonial-card-luxury {
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.45), rgba(45, 37, 32, 0.35));
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 122, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card-luxury:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--champagne-gold);
    box-shadow: 0 25px 70px rgba(212, 175, 122, 0.3);
}

.testimonial-card-luxury.featured {
    border-color: var(--champagne-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 122, 0.25);
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.65), rgba(45, 37, 32, 0.55));
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--darker-bg);
    box-shadow: 0 8px 25px rgba(212, 175, 122, 0.5);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--champagne-gold);
    opacity: 0.25;
    margin-bottom: 20px;
}

.stars-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.stars-rating i {
    color: var(--champagne-gold);
    font-size: 1.1rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--light-gold);
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 2px solid rgba(212, 175, 122, 0.25);
}

.author-avatar {
    font-size: 3rem;
    color: var(--champagne-gold);
    opacity: 0.75;
}

.author-details {
    text-align: left;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: var(--light-gold);
    opacity: 0.65;
    font-weight: 300;
}

/* ========================================
   REFINED CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 140px 40px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 122, 0.10), transparent 65%),
        radial-gradient(circle at 20% 80%, rgba(230, 184, 162, 0.08), transparent 50%);
    pointer-events: none;
}

.section-header-luxury.light .section-label,
.section-header-luxury.light .section-title-luxury,
.section-header-luxury.light .section-description {
    color: var(--light-gold);
}

.contact-cards-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.contact-card {
    background: rgba(58, 50, 42, 0.45);
    backdrop-filter: blur(20px);
    padding: 50px 35px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 122, 0.22);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    background: rgba(58, 50, 42, 0.65);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 122, 0.25);
}

.contact-card-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--darker-bg);
    box-shadow: 0 8px 30px rgba(212, 175, 122, 0.4);
    transition: transform 0.5s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card a {
    display: block;
    color: var(--champagne-gold);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--deep-gold);
}

.contact-card-desc {
    font-size: 0.85rem;
    color: var(--light-gold);
    opacity: 0.65;
    font-weight: 300;
}

/* ========================================
   LUXURY FOOTER
   ======================================== */
.luxury-footer {
    background: var(--darker-bg);
    padding: 60px 40px 35px;
    border-top: 2px solid rgba(212, 175, 122, 0.15);
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.footer-brand {
    max-width: 480px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--champagne-gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--light-gold);
    opacity: 0.7;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 122, 0.1);
    border: 2px solid rgba(212, 175, 122, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne-gold);
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-gold);
    border-color: var(--champagne-gold);
    color: var(--darker-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 122, 0.4);
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-gold);
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

footer a {
  color: inherit;
  text-decoration: none;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ========================================
   ANIMATIONS - OPTIMIZED
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes elegantFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
}

@keyframes patternMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

@keyframes gemSparkle {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 175, 122, 0.5));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(212, 175, 122, 0.8));
    }
}

@keyframes shimmerMove {
    from {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ======================================== */
@media (max-width: 1200px) {
    .collection-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 968px) {
    .nav-wrapper {
        padding: 18px 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 13, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-item {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 9999;
    }
    
    .title-line {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }
    
    .title-subtitle {
        font-size: 1.8rem;
        letter-spacing: 7px;
    }
    
    .section-title-luxury {
        font-size: 2.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .luxury-container,
    .nav-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .hero-section,
    .about-section,
    .collection-section,
    .why-choose-section,
    .how-it-works-section,
    .testimonials-section,
    .contact-section {
        padding: 100px 25px;
    }
    
    .hero-logo-wrapper {
        width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .title-line {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .title-subtitle {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .section-title-luxury {
        font-size: 2.2rem;
    }
    
    .collection-grid,
    .testimonials-grid,
    .contact-cards-centered,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .luxury-btn {
        padding: 16px 35px;
        font-size: 0.75rem;
    }
    
    .product-card-luxury:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 20px 70px;
    }
    
    .hero-logo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .title-line {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .section-title-luxury {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .luxury-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .about-section,
    .collection-section,
    .why-choose-section,
    .how-it-works-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 20px;
    }
}

/* ========================================
   REDUCED MOTION & ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles,
    .hero-bg-pattern,
    .collection-bg-pattern,
    .how-bg-pattern {
        display: none !important;
    }
}

/* ========================================
   SHOPPING CART STYLES
   ======================================== */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(212, 175, 122, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.cart-badge.hidden {
    display: none;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    max-width: 100vw;
    height: 100vh;
    background: var(--charcoal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid rgba(212, 175, 122, 0.3);
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 2px solid rgba(212, 175, 122, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.5), rgba(45, 37, 32, 0.4));
}

.cart-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--light-gold);
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-title i {
    color: var(--champagne-gold);
    font-size: 1.4rem;
}

.cart-close {
    background: rgba(212, 175, 122, 0.15);
    border: 2px solid rgba(212, 175, 122, 0.3);
    color: var(--light-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.cart-close:hover {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(212, 175, 122, 0.1);
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 10px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--champagne-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--light-gold);
    opacity: 0.6;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(58, 50, 42, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 122, 0.15);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: slideInCart 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-item:hover {
    background: rgba(58, 50, 42, 0.5);
    border-color: rgba(212, 175, 122, 0.3);
    transform: translateX(-5px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 122, 0.2);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--light-gold);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-price {
    color: var(--champagne-gold);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.cart-item-remove {
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6b6b;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: rgba(255, 100, 100, 0.3);
    transform: scale(1.05);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 2px solid rgba(212, 175, 122, 0.2);
    background: linear-gradient(135deg, rgba(58, 50, 42, 0.6), rgba(45, 37, 32, 0.5));
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 122, 0.15);
}

.total-label {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--light-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.total-price {
    font-size: 1.6rem;
    color: var(--champagne-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.4);
    text-decoration: none;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 122, 0.6);
}

.checkout-btn i {
    font-size: 1.1rem;
}

/* Show More Button */
.show-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.show-more-btn {
    background: var(--gradient-gold);
    color: var(--darker-bg);
    border: none;
    padding: 18px 50px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 122, 0.4);
}

.show-more-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 122, 0.6);
}

.show-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.active .btn-icon {
    transform: rotate(180deg);
}

.product-hidden {
    display: none;
}

.product-hidden.show {
    display: block;
}

/* Cart Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInCart {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Mobile Responsiveness for Cart */
@media (max-width: 968px) {
    .cart-icon {
        order: 2;
    }
    
    .menu-toggle {
        order: 3;
    }
}

@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 25px 20px;
    }
    
    .cart-title {
        font-size: 1.3rem;
    }
    
    .cart-items {
        padding: 15px;
    }
    
    .cart-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cart-header {
        padding: 20px 15px;
    }
    
    .cart-title {
        font-size: 1.1rem;
    }
    
    .cart-item {
        padding: 15px;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 0.95rem;
    }
    
    .total-label {
        font-size: 1.1rem;
    }
    
    .total-price {
        font-size: 1.3rem;
    }
    
    .checkout-btn {
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .show-more-btn {
        width: 100%;
        padding: 16px 40px;
    }
}

/* Improved Product Grid Responsiveness */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
