/* ===== CSS Variables - Light Premium Theme ===== */
:root {
    --gold: #C9A961;
    --gold-light: #E8D5B7;
    --gold-dark: #A0823D;
    --gold-glow: #D4AF37;
    --black: #1A1A1A;
    --black-light: #2A2A2A;
    --black-lighter: #3A3A3A;
    --pearl: #FAF8F3;
    --champagne: #F5F1E8;
    --rose-gold: #D4A5A5;
    --white: #FFFFFF;
    --cream: #FFFEF9;
    --light-grey: #F8F6F0;
    --medium-grey: #E8E6E0;
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #E8D5B7 50%, #C9A961 100%);
    --gradient-gem: linear-gradient(135deg, #C9A961 0%, #E8D5B7 25%, #D4A5A5 50%, #C9A961 75%, #E8D5B7 100%);
    --gradient-premium: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(232, 213, 183, 0.1) 50%, rgba(201, 169, 97, 0.15) 100%);
    --shadow-gold: 0 0 30px rgba(201, 169, 97, 0.2);
    --shadow-gold-strong: 0 0 50px rgba(201, 169, 97, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Custom Cursor ===== */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    body {
        cursor: none !important;
    }

    /* Show default cursor on input fields and text areas */
    input, textarea, select {
        cursor: text !important;
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    background: rgba(201, 169, 97, 0.1);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--gold-dark);
    background: rgba(201, 169, 97, 0.2);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--cream);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Live Rates Ticker ===== */
.rates-ticker {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    border-bottom: 2px solid var(--gold-light);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    white-space: nowrap;
    flex-wrap: wrap;
}

.ticker-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.metal {
    color: var(--black);
    font-weight: 500;
    font-size: 13px;
}

.price {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    font-family: 'Playfair Display', serif;
    transition: opacity 0.3s ease;
    min-width: 80px;
    display: inline-block;
    text-align: center;
}

.change {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

.change.positive {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.change.negative {
    color: #F44336;
    background: rgba(244, 67, 54, 0.1);
}


/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-grey) 50%, var(--champagne) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 213, 183, 0.15) 0%, transparent 50%);
    animation: background-pulse 8s ease-in-out infinite;
}

@keyframes background-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.glitter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 97, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(232, 213, 183, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(201, 169, 97, 0.5), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    animation: glitter-float 20s linear infinite;
    pointer-events: none;
}

@keyframes glitter-float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-jewellery {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.3;
    z-index: 1;
}

.jewellery-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.diamond-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-gem);
    border-radius: 50%;
    animation: rotate-sparkle 10s linear infinite;
    filter: blur(20px);
    opacity: 0.4;
}

@keyframes rotate-sparkle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.title-line {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--black-light);
    margin-bottom: 40px;
    animation: fade-up 1s ease-out 0.4s both;
    font-style: italic;
    opacity: 0.8;
}

.btn-luxury {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-gold);
    border: 2px solid var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fade-up 1s ease-out 0.6s both;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-luxury:hover {
    color: var(--white);
    transform: translateY(-3px) translateZ(10px);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(201, 169, 97, 0.3);
    border-color: var(--gold-dark);
}

.btn-luxury:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(20px); opacity: 0.3; }
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-light);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-medium), 0 0 40px rgba(201, 169, 97, 0.2);
    background: var(--light-grey);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--black-light);
    font-size: 16px;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

/* ===== Collections Section ===== */
.collections {
    padding: 100px 0;
    background: var(--light-grey);
}

.category-section {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin: 0;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
}

.view-all-btn {
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    background: var(--white);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.view-all-btn:hover {
    color: var(--white);
    transform: translateX(5px) translateZ(5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--gold-dark);
    background: var(--gradient-gold);
}

.view-all-btn:hover::before {
    left: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
}

.product-card {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-light);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

/* Double Card Effect - Front Layer */
.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-premium);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(10px);
}

/* Double Card Effect - Back Layer */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-strong), 0 0 40px rgba(201, 169, 97, 0.25);
    background: var(--cream);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

/* 3D Tilt Effect */
.product-card .product-inner {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-inner {
    transform: translateZ(20px);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--medium-grey) 100%);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.product-image::after {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    font-size: 80px;
    opacity: 0.2;
    transition: all 0.6s ease;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-card:hover .product-image::after {
    transform: translate(-50%, -50%) translateZ(30px) scale(1.2);
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.5));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.product-card:hover .product-image img {
    transform: scale(1.15) translateZ(10px);
}

.product-info {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-info {
    transform: translateZ(15px);
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
    transition: all 0.6s ease;
}

.product-card:hover .product-name {
    color: var(--gold-dark);
    transform: translateZ(5px);
}

.product-description {
    color: var(--black-light);
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card:hover .product-description {
    opacity: 1;
    transform: translateZ(5px);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-content {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft), inset 0 0 40px rgba(201, 169, 97, 0.05);
    transition: all 0.6s ease;
}

.testimonial-card.active .testimonial-content {
    box-shadow: var(--shadow-medium), inset 0 0 40px rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    background: var(--light-grey);
}

.stars {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===== Footer ===== */
.footer {
    background: var(--light-grey);
    padding: 60px 0 20px;
    border-top: 2px solid var(--gold-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-section h4 {
    font-size: 20px;
}

.footer-section p {
    color: var(--black);
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--black);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--gold-light);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--white);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    opacity: 0.9;
}

.social-icon:hover {
    color: var(--gold-dark);
    border-color: var(--gold);
    background: var(--gold-light);
    transform: translateY(-3px) translateZ(5px);
    box-shadow: var(--shadow-soft), 0 0 20px rgba(201, 169, 97, 0.2);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gold-light);
    color: var(--black);
    opacity: 0.6;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.call-btn {
    background: var(--gradient-gold);
    border: 2px solid var(--gold);
}

.whatsapp-btn {
    background: #25D366;
    border: 2px solid #25D366;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn:hover {
    transform: scale(1.15) translateZ(10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

.floating-btn span {
    position: relative;
    z-index: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .ticker-content {
        gap: 15px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rate-item {
        flex-direction: column;
        gap: 5px;
        padding: 0 10px;
        min-width: auto;
    }
    
    .price {
        font-size: 12px;
        min-width: 70px;
    }
    
    .ticker-label {
        font-size: 11px;
    }

    .hero-title {
        font-size: 42px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Shimmer Effect ===== */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== Category Pages ===== */
.category-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-grey) 50%, var(--champagne) 100%);
    margin-top: 60px;
}

.category-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.category-title-large {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fade-up 1s ease-out;
}

.category-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--black-light);
    font-style: italic;
    animation: fade-up 1s ease-out 0.2s both;
    opacity: 0.8;
}

.category-products {
    padding: 80px 0;
    background: var(--white);
    min-height: 60vh;
}

