/* =============================================
   CARAT & CLIP — Premium Design System
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --gold: #C8A96E;
    --gold-light: #DFC89F;
    --gold-dark: #A68B4B;
    --burgundy: #6B1D3A;
    --burgundy-light: #8B2D50;
    --burgundy-dark: #4A1028;
    --ivory: #FFF8F0;
    --cream: #FDF5EC;
    --card-bg: #FFFFFF;
    --card-gradient: linear-gradient(145deg, #FFF8F0, #FFF3E0);
    --rose-blush: #F5D6D0;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --dark-bg: #0F0F0F;
    --text-primary: #2C2C2C;
    --text-secondary: #6B6B6B;
    --text-light: #999;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C8A96E 0%, #E8D5A8 50%, #C8A96E 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2A2020 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.85) 100%);
    --gradient-bridal: linear-gradient(135deg, rgba(107,29,58,0.95) 0%, rgba(26,26,26,0.95) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 30px rgba(200,169,110,0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== DARK MODE VARIABLES ===== */
[data-theme="dark"] {
    --white: #0A0A0A;
    --ivory: #121212;
    --cream: #181818;
    --card-bg: #1A1A1A;
    --card-gradient: linear-gradient(145deg, #222222, #151515);
    --charcoal: #050505;
    --charcoal-light: #1A1A1A;
    --text-primary: #F5F5F5;
    --text-secondary: #AAAAAA;
    --text-light: #777777;
    --border-color: rgba(255,255,255,0.08);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.6);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.7);
    --shadow-lg: 0 25px 80px rgba(0,0,0,0.8);
    --shadow-xl: 0 40px 100px rgba(0,0,0,0.9);
    --gradient-hero: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%);
}

/* Enforce dark mode readability */
[data-theme="dark"] #navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(255,255,255,0.05);
}

[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

[data-theme="dark"] #footer {
    background: #000000;
}

[data-theme="dark"] .section-dark {
    background: #000000;
}

/* Enforce dark mode on body */
[data-theme="dark"] body {
    background-color: var(--white);
    color: var(--text-primary);
}

[data-theme="dark"] .section-dark {
    background: #000000;
}

[data-theme="dark"] .section-bridal::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
[data-theme="dark"] .section-bridal .container {
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .shop-card {
    background: var(--card-gradient) !important;
}

[data-theme="dark"] .shop-card::before {
    background: var(--charcoal-light) !important;
}

[data-theme="dark"] .testimonial-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .navbar {
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1e1e1e 0%, #0a0a0a 70%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

/* Spinning ring around logo */
.preloader-logo::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(200,169,110,0.08);
    border-top: 2px solid var(--gold);
    border-right: 2px solid rgba(200,169,110,0.3);
    border-radius: 50%;
    animation: preloaderSpin 1.2s linear infinite;
}

/* Secondary outer ring */
.preloader-logo::after {
    content: '';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 164px;
    height: 164px;
    border: 1px solid rgba(200,169,110,0.05);
    border-bottom: 1px solid rgba(200,169,110,0.2);
    border-radius: 50%;
    animation: preloaderSpin 2s linear infinite reverse;
}

/* Circular container for logo image — crops the white JPEG bg */
.preloader-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(200,169,110,0.4);
    box-shadow: 0 0 30px rgba(200,169,110,0.3), 0 0 60px rgba(200,169,110,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    animation: preloaderLogoBreath 2s ease-in-out infinite;
}



.preloader-logo .logo-text {
    font-size: clamp(1.3rem, 5vw, 2rem);
    color: rgba(255,255,255,0.9);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: preloaderTextReveal 1.5s ease forwards;
    background: linear-gradient(90deg, rgba(200,169,110,0.6), #fff, rgba(200,169,110,0.6));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
    animation: loadingProgress 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes loadingProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes preloaderSpin {
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes preloaderLogoBreath {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(200,169,110,0.4));
    }
    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 35px rgba(200,169,110,0.7));
    }
}

@keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes jumpPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== MARQUEE BANNERS ===== */
.top-marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--charcoal);
    color: var(--gold);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 25s linear infinite;
}

.top-marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-msg {
    padding: 0 40px;
    position: relative;
}

.marquee-msg::after {
    content: '✦';
    position: absolute;
    right: 0;
    color: rgba(200,169,110,0.5);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.marquee-close:hover {
    color: var(--gold);
}

.trust-marquee-section {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.trust-marquee-container {
    max-width: 100%;
    overflow: hidden;
}

.trust-marquee {
    display: flex;
    width: max-content;
    animation: trust-scroll 30s linear infinite;
}

.trust-marquee:hover {
    animation-play-state: paused;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-light);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--charcoal);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-tag-light {
    color: var(--gold-light);
}

.section-tag-light::before {
    background: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-title-light {
    color: var(--white) !important;
}

.text-gold {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 40px; /* Offset for top marquee */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-base);
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 80%, transparent 100%);
}

#navbar.scrolled {
    top: 0; /* Snap to top when scrolling down */
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

/* Circular container for logo — crops the white JPEG bg */
.nav-logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(200,169,110,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
    transition: all var(--transition-base);
    box-shadow: 0 0 12px rgba(200,169,110,0.25);
}

#navbar.scrolled .nav-logo-circle {
    width: 32px;
    height: 32px;
    border-color: rgba(200,169,110,0.6);
    box-shadow: 0 0 8px rgba(200,169,110,0.15);
}

/* .nav-logo-icon {
    width: 70%;
    height: 70%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.0);
} */

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
    animation: floatSoft 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-base);
}

#navbar.scrolled .logo-text {
    color: var(--charcoal);
}

.logo-ampersand {
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-base);
}

#navbar.scrolled .nav-link {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--charcoal) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.theme-toggle:hover {
    background: rgba(200,169,110,0.1);
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

#navbar.scrolled .bar {
    background: var(--charcoal);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200,169,110,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('images/hero-banner.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 80px 24px 0;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(200,169,110,0.4);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(200,169,110,0.08);
}

.hero-title {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 20px;
}

.hero-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
}

.hero-highlight {
    color: var(--gold);
    font-style: italic;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(200,169,110,0.5);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.exp-number {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exp-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(200,169,110,0.15), rgba(200,169,110,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    border: 1px solid rgba(200,169,110,0.2);
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(200,169,110,0.3);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.category-card.hide {
    display: none !important;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--charcoal-light);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    animation-delay: var(--delay);
}

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

.category-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.2) 0%, rgba(26,26,26,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.category-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* ===== SHOP / WHERE TO BUY ===== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-card {
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay);
}

.shop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-lg);
}

.shop-card:hover::before {
    opacity: 1;
}

.shop-amazon {
    background: var(--card-gradient);
    border-color: rgba(255,153,0,0.15);
}
.shop-amazon::before { background: linear-gradient(145deg, #FFF3E0, #FFE0B2); }
.shop-amazon .shop-icon { background: rgba(255,153,0,0.1); color: #FF9900; }

.shop-meesho {
    background: linear-gradient(145deg, #FFF0F5, #FCE4EC);
    border-color: rgba(233,30,99,0.15);
}
.shop-meesho::before { background: linear-gradient(145deg, #FCE4EC, #F8BBD0); }
.shop-meesho .shop-icon { background: rgba(233,30,99,0.1); color: #E91E63; }

.shop-facebook {
    background: linear-gradient(145deg, #F0F4FF, #E3F2FD);
    border-color: rgba(66,103,178,0.15);
}
.shop-facebook::before { background: linear-gradient(145deg, #E3F2FD, #BBDEFB); }
.shop-facebook .shop-icon { background: rgba(66,103,178,0.1); color: #4267B2; }

.shop-whatsapp {
    background: linear-gradient(145deg, #F0FFF0, #E8F5E9);
    border-color: rgba(37,211,102,0.15);
}
.shop-whatsapp::before { background: linear-gradient(145deg, #E8F5E9, #C8E6C9); }
.shop-whatsapp .shop-icon { background: rgba(37,211,102,0.1); color: #25D366; }

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.shop-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.shop-card:hover .shop-icon {
    transform: scale(1.15) rotate(5deg);
}

.shop-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.shop-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.shop-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.shop-card:hover .shop-cta i {
    transform: translateX(4px);
    transition: transform var(--transition-base);
}

/* ===== BRIDAL SPOTLIGHT ===== */
.section-bridal {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('images/bridal-collection.png') center center / cover no-repeat fixed;
    overflow: hidden;
}

.bridal-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-bridal);
    z-index: 1;
}

.bridal-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bridal-content {
    max-width: 100%;
}

.bridal-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 30px;
}

.bridal-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== BRIDAL LOOKBOOK CAROUSEL ===== */
.bridal-lookbook {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.lookbook-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #1A1A1A, #2A2020);
}

.lookbook-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.lookbook-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(200,169,110,0.08), rgba(26,26,26,0.9));
}

.lookbook-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.lookbook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(16,18,22,0.95), transparent);
    color: var(--white);
    text-align: center;
}

.lookbook-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.lookbook-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.lookbook-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(16,18,22,0.7);
    color: var(--white);
    border: 1px solid rgba(200,169,110,0.3);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    pointer-events: auto;
}

.lookbook-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1rem;
}

.bridal-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 28px;
    font-family: var(--font-display);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-images {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.review-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid rgba(200,169,110,0.2);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.review-thumb:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(200,169,110,0.3);
    background: transparent;
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(200,169,110,0.25);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--gold);
}

/* ===== CAROUSEL / BEST SELLERS ===== */
.carousel-wrapper {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow-x: auto;
    position: relative;
    padding: 20px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.carousel-track-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-track {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    flex: 0 0 calc(25% - 18px); /* Default 4 items per row */
    min-width: 0; /* Prevents overflow */
    scroll-snap-align: start;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: #333333;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: rgba(200,169,110,0.3);
}

/* White-background variant for products with white/light product shots */
.product-card--white-bg .product-img-wrapper {
    background-color: #FFFFFF;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #1A1A1A;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

/* Contain mode for isolated product shots (clips, accessories on white bg) */
.product-img--contain {
    object-fit: contain;
    object-position: center;
    padding: 16px;
    transform: scale(1);
}

.product-card:hover .product-img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.product-card:hover .product-img--contain {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.badge-new {
    background: var(--charcoal);
    color: var(--white);
}

.badge-sale {
    background: #e74c3c;
    color: var(--white);
}

.product-action-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    transition: bottom 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-action-overlay {
    bottom: 0;
}

#productCarousel .product-price {
    display: none;
}

.product-info {
    padding: 16px 16px;
    text-align: center;
    background: #333333;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    flex-grow: 1;
}

.product-rating {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.product-rating span {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin-left: 2px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.product-carousel .product-price {
    display: none;
}

.price-original {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 6px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--charcoal);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(200,169,110,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--gold);
}

/* Responsive adjustments for carousel */
@media screen and (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media screen and (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 20px;
    }
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
    .carousel-btn {
        display: none; /* Hide buttons on mobile, allow swiping/scrolling */
    }
}

@media screen and (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(85% - 0px); /* Show a peek of the next slide */
    }
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(200,169,110,0.5);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== INSTAGRAM GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(200,169,110,0.1);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200,169,110,0.3);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(200,169,110,0.12), rgba(200,169,110,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-socials h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.social-links-large {
    display: flex;
    gap: 16px;
}

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-link-lg.instagram {
    background: linear-gradient(135deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--white);
}

.social-link-lg.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214,36,159,0.3);
}

.social-link-lg.facebook {
    background: #4267B2;
    color: var(--white);
}

.social-link-lg.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66,103,178,0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200,169,110,0.1);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--ivory);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,169,110,0.1);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: all var(--transition-fast);
    pointer-events: none;
    background: var(--ivory);
    padding: 0 4px;
    opacity: 0;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* ===== FOOTER ===== */
#footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* Circular container for footer logo */
.footer-logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(200,169,110,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(200,169,110,0.25);
}

.footer-logo-icon {
    width: 140%;
    height: 140%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.1);
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.footer-links-group ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all var(--transition-base);
    animation: pulseWhatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6),
                       0 0 0 15px rgba(37,211,102,0.08); }
}

/* ===== WHATSAPP POPUP ===== */
.whatsapp-popup {
    position: fixed;
    bottom: -400px;
    left: 20px;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    border: 1px solid rgba(200,169,110,0.2);
    transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

.whatsapp-popup.show {
    bottom: 20px;
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: opacity var(--transition-fast);
}

.popup-close:hover {
    opacity: 0.7;
}

.popup-header {
    background: #25D366;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.popup-header i {
    font-size: 1.8rem;
}

.popup-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.popup-body {
    padding: 25px;
    text-align: center;
}

.popup-body p {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-body .btn-primary {
    background: #25D366;
    border-color: #25D366;
    color: #fff !important;
}

.popup-body .btn-primary:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

#instagram-reels {
    overflow: hidden;
    background: var(--ivory);
}

/* ===== INSTAGRAM REELS ===== */
.reels-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reels-mockup-wrapper {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.reels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.reel-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    will-change: transform;
}

.reel-col img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    flex-shrink: 0;
}

.scroll-up {
    animation: scrollUp 20s linear infinite;
}

.scroll-down {
    animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.ig-overlay {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 5;
    padding: 0 15px;
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ig-logo i {
    font-size: 1.2rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--charcoal);
    color: var(--gold);
    border: 1px solid rgba(200,169,110,0.3);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-40px) translateY(0);
}

.reveal-left.revealed {
    transform: translateX(0) translateY(0);
}

.reveal-right {
    transform: translateX(40px) translateY(0);
}

.reveal-right.revealed {
    transform: translateX(0) translateY(0);
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-grid {
        gap: 50px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bridal-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid .footer-links-group:last-child {
        display: none;
    }
}

/* ===== RESPONSIVE — TABLET PORTRAIT (768px) ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Navbar mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.85) !important;
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 10px;
        text-align: center;
        border-radius: var(--radius-md) !important;
    }

    .hamburger {
        display: flex;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrapper img {
        height: 350px;
    }

    .about-img-accent {
        top: -10px;
        left: -10px;
    }

    .experience-badge {
        bottom: -15px;
        right: -10px;
        padding: 15px 20px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag {
        display: block;
        text-align: center;
    }

    .about-content .section-tag::before {
        display: none;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-img-wrapper {
        height: 220px;
    }

    /* Shop */
    .bridal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bridal-lookbook {
        max-width: 100%;
    }

    .shop-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Bridal */
    .section-bridal {
        background-attachment: scroll;
        min-height: auto;
        padding: 80px 0;
    }

    .bridal-highlights {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 36px 28px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Reels Responsive */
    .reels-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .reels-content {
        order: 1;
    }

    .reels-mockup-wrapper {
        order: 2;
    }

    .reels-highlights {
        justify-content: center;
    }
}

/* ===== RESPONSIVE — MOBILE (480px) ===== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }

    .hero-line {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-img-wrapper {
        height: 250px;
    }

    /* Shop */
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-card {
        padding: 30px 24px;
    }

    /* Bridal CTAs */
    .bridal-ctas {
        flex-direction: column;
    }

    .bridal-ctas .btn {
        text-align: center;
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact form */
    .contact-form-wrapper {
        padding: 28px 20px;
    }

    /* Social links */
    .social-links-large {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-group ul li a:hover {
        transform: translateX(0);
    }

    /* Floating buttons */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 38px;
        height: 38px;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
    .hero-line {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 28px 18px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== DYNAMIC PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-grid .product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.product-grid .product-card.show {
    opacity: 1;
    transform: translateY(0);
}

.product-grid .product-card.hide {
    display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color var(--transition-base);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--gold);
}
