/* CSS Document - Sumanglam Sarees Premium Stylesheet */

/* ----------------------------------------------------
   1. VARIABLES & RESET
------------------------------------------------------- */
:root {
    --primary-crimson: #800020;    /* Premium Maroon/Crimson Red */
    --primary-crimson-light: #9B111E;
    --luxury-gold: #C5A059;        /* Rich Gold */
    --luxury-gold-bright: #D4AF37;
    --dark-charcoal: #1F1A17;      /* Rich dark base */
    --cream-bg: #FDFBF7;           /* Elegant warm off-white background */
    --card-bg: #FFFFFF;
    --body-text: #4A443F;
    --light-border: #E8E2D9;
    --green-teej: #135A37;         /* Auspicious Teej Green */
    --whatsapp-green: #25D366;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 10px 30px rgba(31, 26, 23, 0.08);
    --shadow-soft: 0 4px 15px rgba(31, 26, 23, 0.04);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-bg);
    color: var(--body-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------------------
   2. ANNOUNCEMENT BAR & HEADER
------------------------------------------------------- */
.announcement-bar {
    background-color: var(--primary-crimson);
    color: var(--luxury-gold-bright);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--luxury-gold);
}

.main-header {
    background-color: rgba(253, 251, 247, 0.95);
    border-bottom: 1px solid var(--light-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-crimson);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--luxury-gold);
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-crimson);
    transition: var(--transition-smooth);
}

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

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

/* ----------------------------------------------------
   3. BUTTONS
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-crimson);
    color: #FFFFFF;
    border: 1px solid var(--primary-crimson);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-crimson-light);
    border-color: var(--primary-crimson-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.btn-secondary {
    background-color: var(--luxury-gold);
    color: var(--dark-charcoal);
    border: 1px solid var(--luxury-gold);
}

.btn-secondary:hover {
    background-color: var(--luxury-gold-bright);
    border-color: var(--luxury-gold-bright);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* ----------------------------------------------------
   4. HERO SECTION
------------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4A0010 0%, #1A0005 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.4;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--luxury-gold-bright);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(253, 251, 247, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ----------------------------------------------------
   5. PROMO & OFFERS
------------------------------------------------------- */
.promo-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.promo-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--light-border);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

.promo-content {
    padding: 60px;
}

.promo-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-crimson);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--luxury-gold);
    padding-bottom: 4px;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.promo-card p {
    color: var(--body-text);
    margin-bottom: 30px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--luxury-gold-bright);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.promo-visual {
    background: linear-gradient(-45deg, #150004, #3D000A, #1A0005, #4A0010);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    border-left: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.promo-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 2px, transparent 2px);
    background-size: 24px 24px;
    opacity: 0.6;
    z-index: 1;
}

.luxury-frame {
    border: 3px double var(--luxury-gold-bright);
    padding: 50px 35px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    max-width: 340px;
    background-color: rgba(26, 0, 5, 0.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    animation: luxuryEntry 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.luxury-frame:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Light sweep reflection across card */
.luxury-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-25deg);
    animation: lightSweep 7s infinite ease-in-out;
    pointer-events: none;
    z-index: 3;
}

.luxury-frame::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.luxury-frame:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
}

.luxury-frame h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, var(--luxury-gold), #FFF, var(--luxury-gold-bright), var(--luxury-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    margin-bottom: 12px;
}

.luxury-frame .silk-tag {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.luxury-frame:hover .silk-tag {
    color: #FFFFFF;
}

.gold-divider {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold-bright), transparent);
    margin: 0 auto 25px auto;
}

.luxury-frame .location-stamp {
    font-size: 1rem;
    font-weight: 500;
    color: var(--luxury-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.luxury-frame:hover .location-stamp {
    color: var(--luxury-gold-bright);
}

/* Luxury Card Keyframe Animations */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes lightSweep {
    0% { left: -150%; }
    30% { left: 200%; }
    100% { left: 200%; }
}

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

@keyframes luxuryEntry {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ----------------------------------------------------
   6. COLLECTIONS SECTION
------------------------------------------------------- */
.collections-section {
    padding: 100px 0;
}

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

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--luxury-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.title-gold-line {
    height: 2px;
    width: 80px;
    background-color: var(--luxury-gold);
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.collection-card {
    background-color: var(--card-bg);
    border-radius: 6px;
    border: 1px solid var(--light-border);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.card-image-placeholder {
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    padding: 30px;
    position: relative;
}

.card-image-placeholder h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 15px;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 3rem;
    color: var(--luxury-gold-bright);
}

/* Green design for Teej */
.card-green .card-image-placeholder {
    background: linear-gradient(135deg, #135A37 0%, #0A321E 100%);
}
.card-green .card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Gold design for Banarasi */
.card-gold .card-image-placeholder {
    background: linear-gradient(135deg, #8A6421 0%, #5E4211 100%);
}
.card-gold .card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Red design for Rakhi Gifting */
.card-red .card-image-placeholder {
    background: linear-gradient(135deg, #7A0A1F 0%, #4A000E 100%);
}
.card-red .card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.92rem;
    color: var(--body-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-indicator {
    display: block;
    font-weight: 600;
    color: var(--primary-crimson-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    text-decoration: none;
    color: var(--primary-crimson);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.card-link:hover {
    color: var(--luxury-gold-bright);
    gap: 10px;
}

/* ----------------------------------------------------
   7. ABOUT & DIRECTIONS SECTION
------------------------------------------------------- */
.about-section {
    background-color: var(--dark-charcoal);
    color: #FFFFFF;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content .section-title {
    color: #FFFFFF;
    font-size: 2.2rem;
}

.about-text-content p {
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 300;
}

.about-metrics {
    display: flex;
    gap: 40px;
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold-bright);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

.about-visual-map {
    display: flex;
    justify-content: center;
}

.map-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 420px;
}

.map-marker-icon {
    font-size: 3rem;
    color: var(--primary-crimson-light);
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

.map-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--luxury-gold-bright);
    margin-bottom: 15px;
}

.map-address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.gold-divider-small {
    height: 1px;
    width: 40px;
    background-color: var(--luxury-gold);
    margin: 0 auto 20px auto;
}

.map-timings {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.map-timings i {
    margin-right: 5px;
}

.map-action-btn {
    width: 100%;
}

/* ----------------------------------------------------
   8. TESTIMONIALS SECTION
------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--cream-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 6px;
    border: 1px solid var(--light-border);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.stars {
    color: var(--luxury-gold-bright);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--body-text);
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-border);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

.author-location {
    font-size: 0.75rem;
    color: var(--luxury-gold);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   9. FOOTER SECTION
------------------------------------------------------- */
.main-footer {
    background-color: #14110F;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px 0;
    border-top: 1px solid var(--luxury-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about h4, 
.footer-links h4, 
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--luxury-gold-bright);
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #FFFFFF;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.social-links a:hover {
    background-color: var(--primary-crimson);
    color: #FFFFFF;
    border-color: var(--primary-crimson);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--luxury-gold-bright);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--luxury-gold);
    margin-top: 4px;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--luxury-gold-bright);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------------
   10. FLOATING MOBILE ACTIONS (STICKY BAR)
------------------------------------------------------- */
.floating-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #FFFFFF;
}

.float-call {
    background-color: var(--primary-crimson-light);
}

.float-whatsapp {
    background-color: var(--whatsapp-green);
}

/* ----------------------------------------------------
   11. ANIMATIONS & RESPONSIVENESS
------------------------------------------------------- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* Core Animations classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.6s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .promo-card {
        grid-template-columns: 1fr;
    }
    .promo-visual {
        border-left: none;
        border-top: 1px solid var(--light-border);
        padding: 50px 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .promo-content {
        padding: 40px 20px;
    }
    .floating-actions {
        display: grid; /* Display the floating bar only on mobile */
    }
    body {
        padding-bottom: 50px; /* Prevent footer content from overlapping with floating bar */
    }
    .about-metrics {
        justify-content: space-between;
        gap: 15px;
    }
}

/* ----------------------------------------------------
   12. SCROLL PROGRESS BAR
------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-crimson), var(--luxury-gold-bright));
    transition: width 0.1s linear;
}

/* ----------------------------------------------------
   13. PRELOADER
------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--dark-charcoal);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-motif {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader-motif::before,
.preloader-motif::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    animation: preloaderSpin 3.5s linear infinite;
}

.preloader-motif::after {
    inset: -28px;
    border-color: rgba(212, 175, 55, 0.1);
    animation-duration: 5.5s;
    animation-direction: reverse;
}

.preloader-motif .logo-text {
    font-size: 2rem;
    color: var(--luxury-gold-bright);
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .preloader-motif,
    .preloader-motif::before,
    .preloader-motif::after {
        animation: none;
    }
}

/* ----------------------------------------------------
   14. ANNOUNCEMENT MARQUEE
------------------------------------------------------- */
.announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
}

.announcement-track {
    display: inline-flex;
    animation: marquee 18s linear infinite;
    padding: 8px 0;
}

.announcement-track p {
    padding: 0 40px;
    display: inline-block;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-track { animation: none; }
}

/* ----------------------------------------------------
   15. HEADER SCROLL STATE + MOBILE NAV
------------------------------------------------------- */
.main-header {
    transition: box-shadow 0.35s ease, padding 0.35s ease;
}

.main-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(31, 26, 23, 0.08);
}

.main-header.is-scrolled .header-container {
    padding: 10px 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 210;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-crimson);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 15, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 150;
}

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

/* ----------------------------------------------------
   16. HERO DECORATIVE MOTIFS + SCROLL CUE
------------------------------------------------------- */
.hero-motifs {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.motif {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
}

.motif-1 {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -100px;
    animation: motifDrift 14s ease-in-out infinite;
}

.motif-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 8%;
    animation: motifDrift 11s ease-in-out infinite reverse;
}

.motif-3 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 20%;
    border-style: dashed;
    animation: motifSpin 40s linear infinite;
}

@keyframes motifDrift {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
}

@keyframes motifSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-cue span {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background-color: var(--luxury-gold-bright);
    animation: scrollCue 1.8s ease infinite;
}

@keyframes scrollCue {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ----------------------------------------------------
   17. SCROLL REVEAL SYSTEM
------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ----------------------------------------------------
   18. COLLECTION CARD MOTIF RING
------------------------------------------------------- */
.card-image-placeholder {
    isolation: isolate;
}

.motif-ring {
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.collection-card:hover .motif-ring {
    transform: translate(-50%, -50%) scale(1.35) rotate(25deg);
    border-color: rgba(212, 175, 55, 0.4);
}

.collection-card:hover .card-icon {
    transform: translateY(-4px) scale(1.08);
}

.card-icon {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.card-image-placeholder h4 {
    position: relative;
    z-index: 1;
}

/* ----------------------------------------------------
   19. TESTIMONIAL QUOTE MARK
------------------------------------------------------- */
.review-card {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.6rem;
    color: rgba(197, 160, 89, 0.18);
}

/* ----------------------------------------------------
   20. BACK TO TOP BUTTON
------------------------------------------------------- */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-crimson);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background-color 0.3s ease;
    z-index: 90;
}

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

.back-to-top:hover {
    background-color: var(--primary-crimson-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 66px;
        right: 16px;
    }
}

/* ----------------------------------------------------
   21. COUPON MODAL
------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 15, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 500;
}

.modal-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

.coupon-modal {
    background-color: var(--card-bg);
    border-radius: 10px;
    max-width: 420px;
    width: 100%;
    padding: 45px 35px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transform: scale(0.92) translateY(16px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
}

.modal-backdrop.is-active .coupon-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--body-text);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-crimson);
    transform: rotate(90deg);
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.12);
    color: var(--whatsapp-green);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.coupon-modal h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 10px;
}

.coupon-modal p {
    font-size: 0.9rem;
    color: var(--body-text);
    margin-bottom: 25px;
}

#coupon-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#coupon-name-input {
    padding: 13px 16px;
    border-radius: 4px;
    border: 1px solid var(--light-border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--cream-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#coupon-name-input:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.modal-submit-btn {
    width: 100%;
}

/* ----------------------------------------------------
   22. FLOATING WHATSAPP PULSE + FOCUS STATES
------------------------------------------------------- */
.float-whatsapp {
    position: relative;
}

.float-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulseRing 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--luxury-gold-bright);
    outline-offset: 3px;
}

/* ----------------------------------------------------
   23. MOBILE NAV DRAWER (overrides for small screens)
------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78%, 320px);
        max-width: 320px;
        background-color: var(--cream-bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.45s;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 200;
    }

    .nav-menu.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
    }

    .nav-btn {
        margin-top: 10px;
    }
}
