﻿/* ===================================
   TRINITY GURUKUL - ULTRA PREMIUM LUXURY DESIGN
   Color Palette:
   - Primary Red: #B30012
   - Luxury Gold: #D4A017
   - White: #FFFFFF
   - Black: #000000
   =================================== */

/* ===================================
   CUSTOM FONTS
   =================================== */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #b30012;
    --luxury-gold: #d4a017;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f8f8;
    --gray: #666666;
    --serif: "Cormorant Garamond", Georgia, serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    cursor: none;
    padding-top: 0;
    -ms-overflow-style: none; /* IE/Edge */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", "Mukta", serif;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(26px, 4vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 30px); }
h4 { font-size: clamp(16px, 2vw, 22px); font-family: "Inter", sans-serif; font-weight: 700; }
h5 { font-size: 16px; font-family: "Inter", sans-serif; font-weight: 600; }
h6 { font-size: 14px; font-family: "Inter", sans-serif; font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a,
button,
input,
select,
textarea,
label,
[role="button"] {
    cursor: none;
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background: #c8860a;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: left, top, transform;
    box-shadow: 0 0 8px rgba(200, 134, 10, 0.8), 0 0 20px rgba(200, 134, 10, 0.3);
    display: none !important; /* DISABLED */
}

.custom-cursor-glow {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(200, 134, 10, 0.55);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s ease,
                width 0.3s ease,
                height 0.3s ease,
                border-color 0.3s ease;
    opacity: 0.55;
    will-change: left, top, transform;
    background: rgba(200, 134, 10, 0.04);
    display: none !important; /* DISABLED */
}

/* Restore normal cursor everywhere */
* {
    cursor: auto !important;
}
a, button, [role="button"], input[type="submit"], input[type="button"], select {
    cursor: pointer !important;
}
input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea {
    cursor: text !important;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

/* LOADING SCREEN */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s,
        visibility 0.6s;
}

.loading::before {
    content: "";
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--luxury-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* FLOATING PARTICLES */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.4), transparent);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   HEADER — PREMIUM REDESIGN
   ═══════════════════════════════════════════════════════ */

/* ── Main Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
                backdrop-filter 0.5s ease,
                box-shadow 0.5s ease;
    border-bottom: none;
}
.header-accent-line {
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(179,0,18,0.7) 20%,
        var(--luxury-gold) 50%,
        rgba(179,0,18,0.7) 80%, transparent 100%);
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* ── HOME PAGE — fully transparent header on top ── */
.site-header.hero-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* When scrolled on any page */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(61,27,0,0.10), 0 1px 0 rgba(200,134,10,0.18);
    border-bottom: none;
}
.site-header.scrolled .header-accent-line {
    opacity: 1;
}

/* On non-home pages, show the accent line by default (no scroll needed) */
.site-header:not(.hero-transparent) .header-accent-line {
    opacity: 1;
}

/* hero-transparent: nav links use dark color (hero bg is light beige) */
.site-header.hero-transparent .nav-link {
    color: #3a1f00;
}
.site-header.hero-transparent .nav-link:hover,
.site-header.hero-transparent .nav-link.active {
    color: var(--primary-red);
}

/* hero-transparent: icon buttons */
.site-header.hero-transparent .header-icon-btn {
    color: #3a1f00;
    background: rgba(255,255,255,0.25);
    border-color: rgba(58,31,0,0.2);
    box-shadow: 0 2px 8px rgba(58,31,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
}
.site-header.hero-transparent .header-icon-btn:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(212,160,23,0.4);
    color: #b5620a;
    box-shadow: 0 6px 20px rgba(181,98,10,0.2),
                inset 0 1px 0 rgba(255,255,255,0.6);
}
.site-header.hero-transparent .btn-header-login {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    border-color: var(--primary-red);
}
.site-header.hero-transparent .btn-header-login:hover {
    color: var(--primary-red);
}
.site-header.hero-transparent .btn-header-register {
    color: var(--primary-red);
    background: rgb(255, 255, 255);
    border-color: white;
}
.site-header.hero-transparent .btn-header-register:hover {
    color: #fff;
    box-shadow: 0 6px 24px rgba(173,9,7,.28);
}
.site-header.hero-transparent .btn-header-register::before {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
}
.site-header.hero-transparent .profile-trigger {
    color: var(--primary-red);
    background: rgba(255,255,255,0.3);
    border-color: rgba(212,160,23,0.3);
    box-shadow: 0 2px 8px rgba(58,31,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
}
.site-header.hero-transparent .profile-trigger:hover {
    background: rgba(255,255,255,0.45);
    border-color: rgba(212,160,23,0.5);
    box-shadow: 0 4px 16px rgba(212,160,23,0.2),
                inset 0 1px 0 rgba(255,255,255,0.6);
}
.site-header.hero-transparent .profile-name,
.site-header.hero-transparent .profile-trigger-label,
.site-header.hero-transparent .profile-chevron {
    color: #3a1f00;
}
.site-header.hero-transparent .header-actions-divider {
    background: rgba(58,31,0,0.2);
}
.header-inner {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 85px;
    transition: height 0.4s ease;
}
/* .site-header.scrolled .header-inner { height: 68px; } */

/* ── Logo ── */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.header-logo:hover { opacity: 0.88; transform: scale(1.02); }
.header-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.4s ease;
}
/* .site-header.scrolled .header-logo img { height: 58px; } */

/* ── Navigation ── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #2a2a2a;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover::before, .nav-link.active::before { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 24px); }
.nav-link:hover, .nav-link.active { color: var(--primary-red); font-weight: 900; }
.nav-link-text { position: relative; z-index: 1; }

/* ── Header Actions ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.header-actions-divider {
    width: 1px;
    height: 28px;
    background: rgba(181,98,10,0.15);
    margin: 0 4px;
    flex-shrink: 0;
}

/* ── Icon Buttons ── */
.header-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 17px;
    background: #ffffff;
    border: 1.5px solid rgba(26,26,26,0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04),
                0 1px 2px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
/* Premium shine effect */
.header-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212,160,23,0.15), 
        transparent
    );
    transition: left 0.5s ease;
}
.header-icon-btn:hover::before {
    left: 100%;
}
.header-icon-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
    border-color: rgba(212,160,23,0.35);
    color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212,160,23,0.2),
                0 2px 8px rgba(0,0,0,0.08);
}
.header-icon-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(212,160,23,0.15),
                0 1px 4px rgba(0,0,0,0.06);
}
.icon-badge {
    position: absolute;
    top: 3px; right: 3px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    min-width: 17px; height: 17px;
    padding: 0 4px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(179,0,18,0.4);
    animation: badgePulse 2s ease-in-out infinite;
    line-height: 1;
    z-index: 2;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.cart-count {
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    color: var(--white);
    font-size: 10px; font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 16px; text-align: center;
    box-shadow: 0 2px 8px rgba(179,0,18,0.35);
}

/* ── Auth Buttons ── */
/* Login button - same hover animation as "Shop Now" (.cta-primary) */
.btn-header-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    /* border: 2px solid var(--primary-red); */
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color .35s ease, box-shadow .35s ease, transform .3s ease;
}
/* white fill sweeps right to left on hover */
.btn-header-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-header-login:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}
.btn-header-login i {
    position: relative;
    z-index: 1;
    font-size: .78rem;
    transition: transform .3s ease;
}
.btn-header-login span {
    position: relative;
    z-index: 1;
}
.btn-header-login:hover {
    color: var(--primary-red);
    border: 2px solid transparent;
    transform: translateY(-2px);
}
.btn-header-login:hover i {
    transform: translateX(4px);
}

/* Register = "Explore Collection" (.cta-secondary) animation */
.btn-header-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.04em;
    color: var(--primary-red);
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 0;
    transition: color .35s ease, transform .3s ease, box-shadow .35s ease;
}
/* red fill sweeps left to right on hover - same as .cta-secondary */
.btn-header-register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.btn-header-register:hover::before {
    transform: scaleX(1);
    transform-origin: right center;
}
.btn-header-register i {
    position: relative;
    z-index: 1;
    font-size: .75rem;
    transition: transform .3s ease;
}
.btn-header-register span {
    position: relative;
    z-index: 1;
}
.btn-header-register:hover {
    color: #fff;
    transform: translateY(-2px);
}
.btn-header-register:hover i {
    transform: rotate(-15deg) scale(1.15);
}
.btn-login {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 18px; font-size: 13px; font-weight: 600; border-radius: 50px;
    color: #2a2a2a; background: transparent; border: 1.5px solid rgba(0,0,0,0.18);
    transition: all 0.3s ease; text-decoration: none; cursor: pointer;
}
.btn-login:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; transform: translateY(-1px); }
.btn-register {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; font-size: 13px; font-weight: 600; border-radius: 50px;
    color: var(--white); background: var(--primary-red); border: 2px solid var(--primary-red);
    box-shadow: 0 2px 12px rgba(179,0,18,0.3); transition: all 0.3s ease; text-decoration: none; cursor: pointer;
}
.btn-register:hover { background: var(--luxury-gold); border-color: var(--luxury-gold); transform: translateY(-2px); }

/* ── Profile Trigger ── */
.header-profile { position: relative; }
.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    background: #ffffff;
    border: 1.5px solid rgba(26,26,26,0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04),
                0 1px 2px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
/* Premium shine effect */
.profile-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212,160,23,0.12), 
        transparent
    );
    transition: left 0.5s ease;
    z-index: 0;
}
.profile-trigger:hover::before {
    left: 100%;
}
.profile-trigger > * {
    position: relative;
    z-index: 1;
}
.profile-trigger:hover {
    border-color: rgba(212,160,23,0.35);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
    box-shadow: 0 6px 20px rgba(212,160,23,0.2),
                0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.profile-trigger:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(212,160,23,0.12),
                0 1px 4px rgba(0,0,0,0.06);
}
.profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.profile-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212,160,23,0.5);
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 2px 8px rgba(212,160,23,0.2),
                inset 0 1px 2px rgba(255,255,255,0.5);
}
.profile-trigger:hover .profile-avatar {
    border-color: var(--luxury-gold);
    box-shadow: 0 3px 12px rgba(212,160,23,0.35),
                inset 0 1px 2px rgba(255,255,255,0.5);
}
.profile-avatar--default {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b8860b 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px; font-weight: 700;
    border: 2px solid rgba(212,160,23,0.5);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212,160,23,0.25),
                inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
}
/* Subtle gradient overlay */
.profile-avatar--default::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.profile-online-dot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 9px; height: 9px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(34,197,94,0.4);
    animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 2px 6px rgba(34,197,94,0.4); }
    50% { box-shadow: 0 2px 12px rgba(34,197,94,0.6), 0 0 0 3px rgba(34,197,94,0.2); }
}
.profile-trigger-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1;
}
.profile-trigger-label {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.profile-name {
    font-size: 13px; 
    font-weight: 700; 
    color: #1a1a1a;
    max-width: 90px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.profile-chevron {
    font-size: 10px; 
    color: #aaa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 2px;
}
.profile-trigger:hover .profile-chevron { 
    color: var(--luxury-gold); 
    transform: translateY(2px);
}

/* ── Profile Dropdown ── */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 10px rgba(0,0,0,0.04), 0 20px 50px rgba(0,0,0,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    z-index: 2000;
}
.profile-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(135deg, #fdfaf5 0%, #fff8ee 100%);
}
.profile-dropdown-avatar {
    flex-shrink: 0;
}
.profile-dropdown-avatar img,
.profile-dropdown-avatar-default {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(212,160,23,0.45);
}
.profile-dropdown-avatar-default {
    background: linear-gradient(135deg, var(--luxury-gold), #b8860b);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
}
.profile-dropdown-user-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.profile-dropdown-user-info strong {
    font-size: 15px; color: #1a1a1a;
    font-family: "Playfair Display", serif;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.profile-dropdown-greeting {
    font-size: 12px; color: #999;
    font-family: "Inter", sans-serif;
}
.profile-dropdown-links { padding: 8px; }
.profile-dropdown-links a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; color: #2a2a2a;
    font-size: 14px; font-family: "Inter", sans-serif; font-weight: 500;
    border-radius: 12px; transition: all 0.22s ease; text-decoration: none;
}
.dropdown-link-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 13px; color: #666;
    transition: all 0.22s ease;
}
.dropdown-link-arrow {
    margin-left: auto;
    font-size: 10px;
    color: #ccc;
    transition: all 0.22s ease;
}
.profile-dropdown-links a:hover {
    background: linear-gradient(135deg, rgba(179,0,18,0.04), rgba(212,160,23,0.07));
    color: var(--primary-red);
    transform: translateX(2px);
}
.profile-dropdown-links a:hover .dropdown-link-icon {
    background: rgba(179,0,18,0.1);
    color: var(--primary-red);
}
.profile-dropdown-links a:hover .dropdown-link-arrow { color: var(--primary-red); }
.profile-dropdown-footer { padding: 8px; border-top: 1px solid rgba(0,0,0,0.06); }
.dropdown-logout {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; color: #c0392b;
    font-size: 14px; font-family: "Inter", sans-serif; font-weight: 600;
    border-radius: 12px; transition: all 0.22s ease; text-decoration: none;
}
.dropdown-link-icon--danger {
    background: rgba(192,57,43,0.08);
    color: #c0392b;
}
.dropdown-logout:hover {
    background: rgba(192,57,43,0.07);
    transform: translateX(2px);
}
.dropdown-logout:hover .dropdown-link-icon--danger {
    background: rgba(192,57,43,0.15);
}

/* ── Mobile responsive ── */

/* ═══════════════════════════════════════════
   BOTTOM NAVIGATION BAR — Mobile Only
   ═══════════════════════════════════════════ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 4px 0;
    padding-bottom: calc(4px + env(safe-area-inset-bottom, 0px));
    justify-content: space-evenly;
    align-items: center;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 4px 6px;
    color: #999;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    flex: 1;
    max-width: 80px;
}

.bottom-nav-item i {
    font-size: 20px;
    transition: all 0.3s ease;
    margin-bottom: 1px;
}

.bottom-nav-item.logout-item {
    color: var(--primary-red);
}
.bottom-nav-item.logout-item i {
    color: var(--primary-red);
}

.bottom-nav-item span {
    font-size: 9px;
    line-height: 1.2;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #000;
}

.bottom-nav-item.active i {
    transform: scale(1.1);
}

.bottom-cart-count {
    position: absolute;
    top: 0;
    right: 2px;
    background: var(--luxury-gold);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

@media (max-width: 480px) {
    .bottom-nav-item {
        padding: 3px 4px;
        max-width: 72px;
    }
    .bottom-nav-item i {
        font-size: 18px;
    }
    .bottom-nav-item span {
        font-size: 8px;
    }
}

/* ===================================
   ULTRA PREMIUM MODERN HERO SECTION
   =================================== */

.hero-section-modern {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    
}

/* Slides Container */
.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.modern-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1.2s ease, visibility 0s linear 1.2s;
    will-change: opacity;
}

.modern-hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 1.2s ease, visibility 0s linear 0s;
    z-index: 2;
}

/* Background Styles */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 40%,
        rgba(255, 255, 255, 0.85) 60%,
        rgba(212, 160, 23, 0.1) 100%
    );
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(212, 160, 23, 0.05) 50%,
        rgba(179, 0, 18, 0.03) 100%
    );
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--primary-red));
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-red), var(--luxury-gold));
    bottom: -10%;
    left: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--luxury-gold);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--primary-red);
    bottom: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 0 0px;
}

.hero-content-inner {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* Text Content */
.hero-text-content {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}

.badge-icon {
    font-size: 16px;
    color:var(--primary-red);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--primary-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%,
    100% {
        left: 100%;
    }
}

/* Hero Heading */
.hero-heading-modern {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 24px;
    color: #111;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(
        135deg,
        var(--primary-red) 0%,
        var(--luxury-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    opacity: 0.2;
    border-radius: 10px;
}

/* Description */
.hero-description-modern {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 560px;
    font-weight: 400;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8b0000 100%);
    color: var(--white);
    border: none;
}

.cta-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.cta-primary:hover .cta-hover-effect {
    width: 400px;
    height: 400px;
}

.cta-primary:hover {
    transform: translateY(-4px);
}

.cta-secondary {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    color: var(--black);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0);
    color: var(--white);
    border-color: #8b0000;
    transform: translateY(-4px);
}

.cta-icon,
.cta-icon-left {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.cta-primary:hover .cta-icon {
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-red), var(--luxury-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

/* Visual Area */
.hero-visual-modern {
    position: relative;
    height: 480px;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Image Card */
.floating-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    /* animation: float 6s ease-in-out infinite; */
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.image-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.floating-image-card:hover .image-card-inner img {
    transform: scale(1.1) rotate(2deg);
}

.image-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(212, 160, 23, 0.3) 100%
    );
    mix-blend-mode: multiply;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(212, 160, 23, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: floatStat 3s ease-in-out infinite;
}

@keyframes floatStat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), var(--luxury-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Showcase (3D) */
.product-showcase {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid rgba(212, 160, 23, 0.2);
    animation: rotateCircle 20s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
}

.circle-2 {
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    animation-delay: -5s;
}

.circle-3 {
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    animation-delay: -10s;
}

@keyframes rotateCircle {
    to {
        transform: rotate(360deg);
    }
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    background: radial-gradient(circle, var(--luxury-gold), transparent);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    filter: blur(40px);
}

.floating-icon {
    position: absolute;
    font-size: 48px;
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(212, 160, 23, 0.3));
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.icon-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

/* Modern Slider Navigation */
.modern-slider-nav {
    position: absolute;
    bottom: 36px;
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--luxury-gold);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--luxury-gold);
}

.nav-pagination {
    display: flex;
    gap: 8px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    background: rgba(212, 160, 23, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot.active {
    width: 28px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    border-radius: 10px;
}

.pagination-dot:hover {
    background: var(--luxury-gold);
    transform: scale(1.2);
}



.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    transition: width 5s linear;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .hero-content-inner {
        gap: 50px;
    }

    .hero-heading-modern {
        font-size: 46px;
    }

    .hero-visual-modern {
        height: 420px;
    }

    .product-showcase {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .hero-content-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-section-modern {
        /* margin-top: 106px; */
    }

    .hero-text-content {
        order: 1;
        text-align: center;
    }

    .hero-visual-modern {
        order: 2;
        height: 380px;
    }

    .hero-heading-modern {
        font-size: 40px;
    }

    .hero-description-modern {
        font-size: 15px;
        margin: 0 auto 28px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .floating-stat {
        display: none;
    }

    .modern-slider-nav {
        gap: 14px;
    }

    .nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .pagination-dot {
        width: 7px;
        height: 7px;
    }

    .pagination-dot.active {
        width: 22px;
    }

    .product-showcase {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        /* margin-top: 86px; */
    }
    .hero-slides-container {
        height: 100%;
        min-height: 320px;
    }
    .modern-hero-slide {
        padding: 0;
    }
    .modern-hero-slide.active {
                opacity: 1;
        visibility: visible;
        height: auto;
    }
    .hero-content-wrapper {
        padding: 0px 0;
        position: relative;
        height: 80vh;
    }
    .hero-content-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    .hero-text-content {
        padding: 0;
        text-align: center;
        order: 2;
    }
    .premium-badge {
        padding: 6px 14px;
        gap: 6px;
        margin: 0 auto 8px;
        border-radius: 20px;
        display: inline-flex;
    }
    .badge-icon {
        font-size: 10px;
    }
    .badge-text {
        font-size: 9px;
        letter-spacing: 1px;
    }
    .badge-shine {
        display: none;
    }
    .hero-heading-modern {
        font-size: 22px;
        letter-spacing: -0.2px;
        margin-bottom: 8px;
    }
    .hero-description-modern {
        font-size: 12px;
        line-height: 1.5;
        margin: 0 auto 12px;
        max-width: 90%;
    }
    .hero-cta-group {
        gap: 8px;
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }
    .cta-primary,
    .cta-secondary {
        padding: 10px 20px;
        font-size: 12px;
        gap: 8px;
        border-radius: 24px;
        flex: 1;
        max-width: 200px;
        justify-content: center;
        border: none;
        box-shadow: none;
    }
    .trust-indicators {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
        flex-shrink: 0;
    }
    .trust-text {
        font-size: 12px;
        white-space: nowrap;
    }
    .hero-visual-modern {
        height: 240px;
        order: 1;
    }
    .product-showcase {
        height: 240px;
    }

    .floating-image-card {
        max-width: 100%;
        padding: 10px;
        border-radius: 20px;
        border-width: 1px;
        margin: 0 auto;
    }
   
    .floating-stat {
        padding: 4px 8px;
        border-radius: 10px;
        border-width: 1px;
        display: none;
    }
    .stat-number {
        font-size: 13px;
    }
    .stat-label {
        font-size: 9px;
    }

    .showcase-circle {
        border-width: 1px;
    }
    .circle-1 {
        width: 120px;
        height: 120px;
        margin: -60px 0 0 -60px;
    }
    .circle-2 {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }
    .circle-3 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }
    .floating-icon {
        font-size: 26px;
    }
    .icon-1 {
        top: 5%;
        left: 10%;
    }
    .icon-2 {
        top: 55%;
        right: 8%;
    }
    .icon-3 {
        bottom: 8%;
        left: 15%;
    }
    .icon-4 {
        top: 25%;
        right: 12%;
    }

    .modern-slider-nav {
        display: none;
    }
    .nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    .pagination-dot {
        width: 5px;
        height: 5px;
    }
    .pagination-dot.active {
        width: 16px;
    }
    .scroll-down-modern {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section-modern {
        /* margin-top: 76px; */
    }

    .hero-slides-container {
        height: 80vh;
        min-height: 260px;
    }

    .modern-hero-slide {
        padding: 0;
    }

    .modern-hero-slide.active {
                opacity: 1;
        visibility: visible;
        height: auto;
    }

    .hero-content-wrapper {
        padding: 16px 0;
    }

    .hero-content-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }

    .premium-badge {
        padding: 5px 12px;
        gap: 5px;
        margin: 0 auto 6px;
        border-radius: 16px;
        display: inline-flex;
    }
    .badge-icon {
        font-size: 9px;
    }
    .badge-text {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .hero-heading-modern {
        font-size: 19px;
        letter-spacing: -0.1px;
        margin-bottom: 6px;
    }
    .hero-description-modern {
        font-size: 11px;
        line-height: 1.4;
        margin: 0 auto 10px;
        max-width: 90%;
    }
    .hero-cta-group {
        gap: 6px;
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }
    .cta-primary,
    .cta-secondary {
        padding: 8px 16px;
        font-size: 11px;
        gap: 6px;
        border-radius: 20px;
        flex: 1;
        max-width: 170px;
        justify-content: center;
        border: none;
        box-shadow: none;
    }

    .trust-indicators {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .trust-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
        flex-shrink: 0;
    }
    .trust-text {
        font-size: 11px;
        white-space: nowrap;
    }

    .hero-visual-modern {
        height: 200px;
        order: 1;
    }

    .product-showcase {
        height: 200px;
        order: 0;
    }
    .floating-image-card {
        max-width: 100%;
        padding: 8px;
        border-radius: 16px;
        border-width: 1px;
        margin: 0 auto;
    }
   
    .floating-stat {
        display: none;
    }

    .showcase-circle {
        border-width: 1px;
    }
    .circle-1 {
        width: 90px;
        height: 90px;
        margin: -45px 0 0 -45px;
    }
    .circle-2 {
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
    }
    .circle-3 {
        width: 210px;
        height: 210px;
        margin: -105px 0 0 -105px;
    }
    .floating-icon {
        font-size: 20px;
    }

    .modern-slider-nav {
        display: none;
    }
    .nav-arrow {
        width: 24px;
        height: 24px;
        font-size: 9px;
        border-width: 1px;
    }
    .pagination-dot {
        width: 4px;
        height: 4px;
    }
    .pagination-dot.active {
        width: 14px;
    }
}

/* OLD HERO CSS REMOVED - NEW ULTRA-PREMIUM HERO SECTION STYLES ARE ABOVE */

.trust-marquee {
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    padding: 4px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    margin-top: -2px;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.marquee-separator {
    color: var(--white);
    font-size: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* SECTION COMMON */
.browse-collections,
.featured-products,
.about-section,
.why-choose-us,
.testimonials {
    padding: 40px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-badge-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

/* ── Section Title — Premium Design ── */
.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    -webkit-text-fill-color: unset;
    background: none;
    text-transform: uppercase;
}



/* Gold accent on key word */
.section-title em {
    font-style: normal;
    color: var(--primary-red);
}

/* Left-aligned variant */
.section-title.title-left { display: block; }
.section-title.title-left::after { left: 0; transform: none; }

.section-title .title-shine { display: inline; }
.section-title .title-shine::after { display: none; }

.section-subtitle {
    font-size: 15.5px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #888;
    max-width: 580px;
    margin: 0 auto 30px auto;
    line-height: 1.75;
}

/* BROWSE COLLECTIONS - CIRCULAR CATEGORIES */
.categories-circle-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.category-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-circle-card:hover {
    transform: translateY(-8px);
}

.category-circle-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(212, 160, 23, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: var(--white);
}

.category-circle-card:hover .category-circle-img {
    border-color: var(--luxury-gold);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.25);
}

.category-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-circle-card:hover .category-circle-img img {
    transform: scale(1.15);
}

.category-circle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    background: linear-gradient(135deg, #f8f8f8, #fff);
}

.category-circle-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(179, 0, 18, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-circle-card:hover .category-circle-hover {
    opacity: 1;
}

.category-circle-hover span {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Mukta", sans-serif;
}

.category-circle-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: "Mukta", sans-serif;
}

.category-circle-card:hover .category-circle-name {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-circle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .categories-circle-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    .category-circle-placeholder {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .categories-circle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }
    .category-circle-name {
        font-size: 16px;
    }
    .category-circle-placeholder {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .categories-circle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
    .category-circle-name {
        font-size: 14px;
    }
    .category-circle-placeholder {
        font-size: 28px;
    }
}

/* ════════════════════════════════════════════════════
   FEATURED SACRED PRODUCTS - ULTRA PREMIUM LUXURY SECTION
   ════════════════════════════════════════════════════ */

.featured-products {
    padding: 80px 60px 72px;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(212, 160, 23, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 100%, rgba(179, 0, 18, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, #fdfaf5 0%, #ffffff 40%, #fdfaf5 100%);
    overflow: hidden;
    position: relative;
}

/* Top decorative rule */
.featured-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), var(--luxury-gold), var(--primary-red), transparent);
    border-radius: 2px;
}

/* ─── FLOATING PARTICLES ─── */
.fp-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.fp-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.35), transparent);
    animation: fpFloat var(--duration, 8s) infinite ease-in-out;
    animation-delay: var(--delay, 0s);
}

@keyframes fpFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) scale(1.4);
        opacity: 0.25;
    }
    90% {
        opacity: 0.15;
    }
}

/* ─── SECTION HEADER + NAV ROW (SAME ROW) ─── */
.fp-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

/* ─── SECTION HEADER (LEFT ALIGNED) ─── */
.fp-section-header {
    text-align: left !important;
    margin-bottom: 0 !important;
    flex: 1;
}



.fp-section-header .fp-eyebrow::before,
.fp-section-header .fp-eyebrow::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--luxury-gold);
    opacity: 0.6;
}

.fp-section-header .section-title {
    text-align: center;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}



.fp-section-header .section-badge {
    display: block;
    text-align: left;
    width: fit-content;
    margin-bottom: 10px;
}

/* ─── NAV ARROWS ROW ─── */
.fp-nav-row {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* View-all link beside arrows */
.fp-view-all {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    margin-right: 8px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.fp-view-all:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.fp-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(179, 0, 18, 0.18);
    background: #ffffff;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.fp-nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #8a000e);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.fp-nav-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

.fp-nav-btn:hover {
    transform: scale(1.08);
    border-color: var(--primary-red);
    box-shadow:
        0 6px 24px rgba(179, 0, 18, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.fp-nav-btn:hover::before {
    opacity: 1;
}

.fp-nav-btn:hover i {
    color: #ffffff;
}

.fp-nav-btn:active {
    transform: scale(0.94);
}

/* ─── SLIDER CONTAINER ─── */
.fp-slider {
    position: relative;
    z-index: 2;
    margin: 0;
    overflow: hidden;
}

.fp-track {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    padding: 12px 0 28px;
    will-change: transform;
}

.fp-track.dragging {
    transition: none !important;
    cursor: grabbing;
}

/* ─── PRODUCT CARD ─── */
.fp-card {
    flex: 0 0 calc((100% - 400px) / 4);
    min-width: 120px;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
}
.fp-card:hover {
    transform: translateY(-6px);
}

/* ─── CARD MEDIA ─── */
.fp-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f3ebe0;
    flex-shrink: 0;
    /* inset picture-frame border */
    outline: 1px solid rgba(212,160,23,0.25);
    outline-offset: -6px;
    transition: outline-color 0.4s ease;
}
.fp-card:hover .fp-card-media {
    outline-color: rgba(212,160,23,0.75);
}

.fp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fp-card:hover .fp-card-media img {
    transform: scale(1.07);
}

/* Corner ornaments — top-left and bottom-right */
.fp-card-media::before,
.fp-card-media::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 3;
    pointer-events: none;
    transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}
.fp-card-media::before {
    top: 6px;
    left: 6px;
    border-top: 1.5px solid var(--luxury-gold);
    border-left: 1.5px solid var(--luxury-gold);
}
.fp-card-media::after {
    bottom: 6px;
    right: 6px;
    border-bottom: 1.5px solid var(--luxury-gold);
    border-right: 1.5px solid var(--luxury-gold);
}
.fp-card:hover .fp-card-media::before,
.fp-card:hover .fp-card-media::after {
    width: 22px;
    height: 22px;
}

/* Warm vignette on hover */
.fp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(179,0,18,0.08) 0%,
        transparent 55%,
        rgba(212,160,23,0.10) 100%
    );
    opacity: 0;
    transition: opacity 0.42s ease;
    pointer-events: none;
    z-index: 1;
}
.fp-card:hover .fp-card-overlay { opacity: 1; }

/* Shimmer sweep */
.fp-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.28) 50%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-100%) skewX(-8deg);
}
.fp-card:hover .fp-card-glow {
    opacity: 1;
    animation: fpShimmer 0.65s ease forwards;
}
@keyframes fpShimmer {
    0%   { transform: translateX(-100%) skewX(-8deg); }
    100% { transform: translateX(220%) skewX(-8deg); }
}

/* ─── CATEGORY TAG ─── */
.fp-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    font-family: "Poppins", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary-red);
    padding: 4px 9px;
    border-radius: 2px;
    transition: background 0.3s ease;
}
.fp-card:hover .fp-card-tag {
    background: #8a000e;
}

/* ─── CARD BODY ─── */
.fp-card-body {
    padding: 10px 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: transparent;
    position: relative;
    gap: 5px;
}

/* Gold ornament divider */
.fp-card-body::before {
    content: '— ✦ —';
    display: block;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    opacity: 0.7;
    line-height: 1;
    transition: opacity 0.35s ease, letter-spacing 0.35s ease;
}
.fp-card:hover .fp-card-body::before {
    opacity: 1;
    letter-spacing: 4px;
}

.fp-card-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #1a0800;
    line-height: 1.3;
    letter-spacing: 0.04em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.35s ease;
}
.fp-card:hover .fp-card-title {
    color: var(--primary-red);
}





/* ─── PAGINATION DOTS ─── */
.fp-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    position: relative;
    z-index: 2;
}

.fp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fp-dot.active {
    width: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    box-shadow: 0 2px 10px rgba(179, 0, 18, 0.3);
}

.fp-dot:hover:not(.active) {
    background: var(--luxury-gold);
    transform: scale(1.25);
}

/* ════════════════════════════════════════════════════
   FEATURED PRODUCTS - RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════ */

/* Small Desktop — 4 cards */
@media (max-width: 1200px) {
    .featured-products {
        padding: 64px 32px 56px;
    }
    .fp-card {
        flex: 0 0 calc((100% - 64px) / 5);
        min-width: 0;
    }
    .fp-card-body {
        padding: 10px 4px 0;
    }
    .fp-card-title {
        font-size: 12px;
    }
}

/* Tablet — 3 cards visible */
@media (max-width: 992px) {
    .featured-products {
        padding: 56px 24px 48px;
    }
    .fp-nav-row {
        display: none;
    }
    .fp-card {
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: 0;
    }
    .fp-card-body {
        padding: 10px 4px 0;
    }
    .fp-card-title {
        font-size: 13px;
    }
}

/* Mobile — 2×2 grid */
@media (max-width: 768px) {
    .featured-products {
        padding: 48px 16px 40px;
    }
    .featured-products::before {
        display: none;
    }
    .fp-header-row {
        margin-bottom: 24px;
        padding: 0;
    }
    .fp-section-header {
        padding: 0;
    }
    .fp-nav-row {
        display: none;
    }
    .fp-slider {
        margin: 0;
        overflow: visible;
    }
    .fp-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 8px 0 20px;
        overflow: visible;
        transform: none !important;
        transition: none !important;
        cursor: default;
        will-change: auto;
    }
    .fp-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: unset;
    }
    .fp-card:hover {
        transform: translateY(-4px);
    }
    .fp-card-body {
        padding: 10px 4px 0;
    }
    .fp-card-title {
        font-size: 13px;
    }
    .fp-card-tag {
        font-size: 7px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }
    .fp-dots {
        margin-top: 16px;
        gap: 8px;
    }
    .fp-eyebrow {
        display: none;
    }
    .fp-title-underline {
        width: 44px;
        margin-top: 10px;
    }
}

/* Small Mobile — 2×2 grid, tighter spacing */
@media (max-width: 480px) {
    .featured-products {
        padding: 40px 12px 36px;
    }
    .fp-header-row {
        margin-bottom: 18px;
    }
    .fp-track {
        gap: 12px;
        padding: 8px 0 16px;
    }
    .fp-card {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    .fp-card-body {
        padding: 8px 4px 0;
    }
    .fp-card-title {
        font-size: 12px;
    }
    .fp-card-tag {
        font-size: 7px;
        padding: 3px 8px;
    }
    .fp-dots {
        margin-top: 12px;
    }
    .fp-dot.active {
        width: 24px;
    }
}

/* ════════════════════════════════════════════════════
   ABOUT US - CLEAN MINIMAL
   ════════════════════════════════════════════════════ */

.about-section {
    padding:  40px 40px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

/* ─── LEFT: Image Showcase ─── */
.about-image-wrap {
    position: relative;
    padding-bottom: 40px;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(212, 160, 23, 0.06);
    aspect-ratio: 4 / 3;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-frame:hover img {
    transform: scale(1.04);
}

/* Decorative secondary images */
.about-image-swatch {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 160, 23, 0.08);
    border: 3px solid #ffffff;
    transition: transform 0.4s ease;
}

.about-image-swatch:hover {
    transform: scale(1.05);
}

.about-image-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-swatch-1 {
    bottom: 0;
    right: -30px;
    z-index: 2;
}

.about-swatch-2 {
    top: -30px;
    right: -40px;
    width: 110px;
    height: 110px;
    z-index: 1;
}

/* ─── RIGHT: Content ─── */
.about-content {
    padding-top: 20px;
}

.about-tag {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--luxury-gold);
    margin-bottom: 16px;
}

.about-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 600;
    color: #000000;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}

.about-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 18px;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: rgba(212, 160, 23, 0.25);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.about-feature:hover .about-feature-icon {
    background: rgba(212, 160, 23, 0.18);
}

.about-feature span:last-child {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    line-height: 1.3;
}

/* ─── CTA ─── */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--luxury-gold), #b8960f);
    border-radius: 50px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212, 160, 23, 0.35);
}

.about-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translateX(5px);
}

/* ════════════════════════════════════════════════════
   VEDIC JEWELRY COLLECTION - HORIZONTAL GALLERY
   ════════════════════════════════════════════════════ */

.jewelry-collection {
    padding: 40px ;
    background: #ffffff;
    overflow: hidden;
}

.jewelry-gallery {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.jewelry-track-wrap {
    flex: 1;
    overflow: hidden;
}

.jewelry-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.jewelry-card {
    flex: 0 0 calc((100% - 72px) / 4);
    border-radius: 20px;
    overflow: hidden;
    perspective: 1000px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jewelry-card:hover {
    transform: translateY(-4px);
}

.jewelry-card-inner {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(212, 160, 23, 0.06);
    transform-style: preserve-3d;
}

.jewelry-card:hover .jewelry-card-inner {
    transform: rotateY(-4deg) translateY(-8px) scale(1.02);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(212, 160, 23, 0.08);
}

.jewelry-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.jewelry-card:hover .jewelry-card-inner img {
    transform: scale(1.08);
}

.jewelry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.jewelry-card:hover .jewelry-card-overlay {
    opacity: 1;
}

.jewelry-card-overlay span {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── Card Info ─── */
.jewelry-card-info {
    padding: 14px 16px 18px;
    background: #ffffff;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.jewelry-card-title {
    font-family: "Silneva", "Playfair Display", Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jewelry-card-count {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0.5px;
}

.jewelry-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #f8f6f2, #ede8e0);
}

/* ─── Arrows ─── */
.jewelry-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    z-index: 2;
    color: #000000;
}

.jewelry-arrow:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
    transform: scale(1.05);
}

.jewelry-arrow i {
    font-size: 16px;
}

/* ─── Dots ─── */
.jewelry-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.jewelry-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.jewelry-dot.active {
    width: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
}

/* ════════════════════════════════════════════════════
   ABOUT + JEWELRY RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .about-grid {
        gap: 60px;
    }
    .about-heading {
        font-size: 36px;
    }
    .jewelry-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 30px 60px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-heading {
        font-size: 32px;
    }
    .about-text {
        font-size: 14px;
    }
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    .jewelry-collection {
        padding: 80px 24px;
    }
    .jewelry-gallery {
        gap: 12px;
    }
    .jewelry-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px 40px;
    }
    .about-image-wrap {
        padding-bottom: 30px;
    }
    .about-image-frame {
        aspect-ratio: 4 / 2;
    }
    .about-image-swatch {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }
    .about-swatch-1 {
        right: -15px;
    }
    .about-swatch-2 {
        width: 80px;
        height: 80px;
        top: 20px;
        right: -10px;
    }
    .about-heading {
        font-size: 28px;
    }
    .about-text {
        font-size: 14px;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-feature {
        padding: 10px 14px;
    }
    .about-feature span:last-child {
        font-size: 12px;
    }
    .about-cta {
        padding: 12px 26px;
        font-size: 13px;
    }

    /* ── Jewelry: 2 cards visible, native scroll-snap ── */
    .jewelry-collection {
        padding: 48px 16px;
    }
    .jewelry-gallery {
        display: block;
    }
    .jewelry-arrow {
        display: none;
    }
    .jewelry-track-wrap {
        overflow: hidden;
    }
    .jewelry-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
        transition: none !important;
        padding: 8px 4px 16px;
    }
    .jewelry-track::-webkit-scrollbar {
        display: none;
    }
    .jewelry-card {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
    }
    .jewelry-dots {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 48px 16px 32px;
    }
    .about-image-wrap {
        padding-bottom: 20px;
    }
    .about-image-swatch {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }
    .about-swatch-1 {
        right: -10px;
    }
    .about-swatch-2 {
        width: 65px;
        height: 65px;
        top: -15px;
        right: -10px;
    }
    .about-heading {
        font-size: 24px;
    }
    .about-text {
        font-size: 13px;
        line-height: 1.7;
    }
    .about-features {
        margin: 24px 0 28px;
    }
    .about-cta {
        padding: 10px 22px;
        font-size: 12px;
    }

    /* ── Jewelry: 2 cards per row on mobile ── */
    .jewelry-collection {
        padding: 40px 16px;
    }
    .jewelry-card {
        flex: 0 0 calc(50% - 7px);
        scroll-snap-align: start;
    }
    .jewelry-track {
        gap: 10px;
        padding: 8px 4px 16px;
    }
    .jewelry-card-inner {
        border-radius: 14px;
    }
    .jewelry-card-title {
        font-size: 13px;
    }
    .jewelry-card-info {
        padding: 10px 10px 14px;
    }
    .jewelry-dot {
        width: 6px;
        height: 6px;
    }
    .jewelry-dot.active {
        width: 20px;
    }
}

/* ════════════════════════════════════════════════════
   WHY CHOOSE US - PREMIUM FEATURE WALL
   ════════════════════════════════════════════════════ */
.why-3d-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── Card wrapper ── */
.why-3d-card {
    position: relative;
}

.w3d-inner {
    position: relative;
    padding: 36px 28px 32px;
    background: #fff;
    border-radius: 16px;
    text-align: left;
    height: 100%;
    border: 1px solid rgba(212,160,23,0.12);
    box-shadow:
        0 2px 8px rgba(61,27,0,0.05),
        0 8px 28px rgba(61,27,0,0.06);
    transition:
        transform 0.42s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.42s ease,
        border-color 0.42s ease,
        background 0.42s ease;
    overflow: hidden;
}

/* Top-left red accent line — expands on hover */
.w3d-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--luxury-gold));
    border-radius: 0 0 3px 0;
    transition: width 0.42s cubic-bezier(0.22,1,0.36,1);
}
.why-3d-card:hover .w3d-inner::before {
    width: 100%;
    border-radius: 0;
}

/* Hover state */
.why-3d-card:hover .w3d-inner {
    transform: translateY(-8px);
    background: #fffdf8;
    border-color: rgba(212,160,23,0.3);
    box-shadow:
        0 4px 12px rgba(61,27,0,0.07),
        0 20px 48px rgba(61,27,0,0.1),
        0 0 0 1px rgba(212,160,23,0.12);
}

/* Warm glow wash on hover */
.w3d-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 20% 20%,
        rgba(212,160,23,0.07) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.42s ease;
    pointer-events: none;
    border-radius: inherit;
}
.why-3d-card:hover .w3d-shine { opacity: 1; }

/* ─── Large watermark number ─── */
.w3d-number {
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(212,160,23,0.07);
    line-height: 1;
    letter-spacing: -2px;
    z-index: 0;
    transition: color 0.42s ease, transform 0.42s ease;
    pointer-events: none;
    user-select: none;
}
.why-3d-card:hover .w3d-number {
    color: rgba(212,160,23,0.14);
    transform: scale(1.05);
}

/* ─── Icon ─── */
.w3d-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.w3d-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fdf6e8 0%, #faefd0 100%);
    border: 1.5px solid rgba(212,160,23,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--luxury-gold);
    transition:
        background 0.42s ease,
        color 0.42s ease,
        border-color 0.42s ease,
        box-shadow 0.42s ease,
        transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    z-index: 2;
}
.why-3d-card:hover .w3d-icon-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #8f0010 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(179,0,18,0.28);
    transform: rotate(-6deg) scale(1.1);
}

.w3d-icon-ring {
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1px dashed rgba(212,160,23,0.2);
    transition: border-color 0.42s ease, transform 0.42s ease;
    z-index: 1;
}
.why-3d-card:hover .w3d-icon-ring {
    border-color: rgba(179,0,18,0.2);
    transform: rotate(6deg);
}

/* ─── Content ─── */
.w3d-content {
    position: relative;
    z-index: 2;
}

.w3d-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a0800;
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: 0.01em;
    transition: color 0.35s ease;
}
.why-3d-card:hover .w3d-title {
    color: var(--primary-red);
}

.w3d-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #7a5c38;
    line-height: 1.7;
    margin: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 992px) {
    .why-3d-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .w3d-inner {
        padding: 28px 22px 26px;
    }
    .w3d-icon-box {
        width: 50px; height: 50px; font-size: 20px;
    }
    .w3d-icon-wrap {
        width: 50px; height: 50px; margin-bottom: 16px;
    }
    .w3d-title { font-size: 17px; }
    .w3d-number { font-size: 52px; }
}

@media (max-width: 768px) {
    .why-3d-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .w3d-inner {
        padding: 22px 16px 20px;
    }
    .w3d-icon-box {
        width: 44px; height: 44px; font-size: 17px;
        border-radius: 11px;
    }
    .w3d-icon-wrap {
        width: 44px; height: 44px; margin-bottom: 14px;
    }
    .w3d-title { font-size: 15px; }
    .w3d-desc { font-size: 0.76rem; }
    .w3d-number { font-size: 44px; }
    .why-3d-card:hover .w3d-inner { transform: translateY(-4px); }
}

@media (max-width: 480px) {
    .why-3d-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .w3d-inner {
        padding: 18px 14px 16px;
    }
    .w3d-icon-box {
        width: 38px; height: 38px; font-size: 15px;
        border-radius: 10px;
    }
    .w3d-icon-wrap {
        width: 38px; height: 38px; margin-bottom: 12px;
    }
    .w3d-title { font-size: 13px; margin-bottom: 6px; }
    .w3d-desc { font-size: 0.72rem; line-height: 1.55; }
    .w3d-number { font-size: 36px; bottom: 8px; right: 10px; }
}

/* ════════════════════════════════════════════════════
   SOLAR SYSTEM BANNER - ANIMATED COSMIC
   ════════════════════════════════════════════════════ */

.solar-banner {
    position: relative;
    background: #050510;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

/* Stars */
.solar-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.solar-star {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    animation: solarTwinkle 3s infinite ease-in-out;
}

@keyframes solarTwinkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Sun */
.solar-sun {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.solar-sun-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #fff7e0, #f5c542, #d4a017);
    box-shadow:
        0 0 40px rgba(212, 160, 23, 0.6),
        0 0 80px rgba(212, 160, 23, 0.3),
        0 0 120px rgba(212, 160, 23, 0.1);
    animation: solarSunPulse 4s infinite ease-in-out;
}

@keyframes solarSunPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 40px rgba(212, 160, 23, 0.6),
            0 0 80px rgba(212, 160, 23, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 60px rgba(212, 160, 23, 0.8),
            0 0 120px rgba(212, 160, 23, 0.4);
    }
}

.solar-sun-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 160, 23, 0.15),
        transparent 70%
    );
    animation: solarGlow 4s infinite ease-in-out;
}

@keyframes solarGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.solar-sun-rays {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(212, 160, 23, 0.03),
        transparent,
        rgba(212, 160, 23, 0.03),
        transparent
    );
    animation: solarRays 8s linear infinite;
}

@keyframes solarRays {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Orbits */
.solar-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: solarOrbitSpin var(--speed, 12s) linear infinite;
    pointer-events: none;
}

.orbit-1 {
    width: 160px;
    height: 160px;
    --speed: 8s;
}
.orbit-2 {
    width: 240px;
    height: 240px;
    --speed: 12s;
}
.orbit-3 {
    width: 320px;
    height: 320px;
    --speed: 18s;
}
.orbit-4 {
    width: 400px;
    height: 400px;
    --speed: 25s;
}
.orbit-5 {
    width: 480px;
    height: 480px;
    --speed: 35s;
}

@keyframes solarOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Planets */
.solar-planet {
    position: absolute;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    animation: solarPlanetGlow 3s infinite ease-in-out;
}

.planet-1 {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.4);
}
.planet-2 {
    width: 12px;
    height: 12px;
    background: #ffd93d;
    box-shadow: 0 0 16px rgba(255, 217, 61, 0.4);
}
.planet-3 {
    width: 10px;
    height: 10px;
    background: #6bcbff;
    box-shadow: 0 0 14px rgba(107, 203, 255, 0.4);
}
.planet-4 {
    width: 14px;
    height: 14px;
    background: #a78bfa;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}
.planet-5 {
    width: 6px;
    height: 6px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@keyframes solarPlanetGlow {
    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.3);
    }
}

/* Sacred symbols */
.solar-symbol {
    position: absolute;
    font-size: 20px;
    opacity: 0.12;
    animation: solarSymbolFloat 6s infinite ease-in-out;
    pointer-events: none;
}

.sym-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
    font-size: 28px;
}
.sym-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}
.sym-3 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
    font-size: 24px;
    opacity: 0.06;
}

@keyframes solarSymbolFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

/* Overlay content */
.solar-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.solar-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.solar-heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(28px, 4vw, 46px);
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.solar-word {
    display: inline-block;
    white-space: nowrap;
}

.solar-desc {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Edge fades */
.solar-edge {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.solar-edge-left {
    left: 0;
    background: linear-gradient(90deg, #050510 0%, transparent 100%);
}

.solar-edge-right {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #050510 100%);
}

/* Solar Responsive */
@media (max-width: 992px) {
    .solar-banner {
        min-height: 400px;
    }
    .solar-heading {
        font-size: 36px;
    }
    .orbit-5 {
        width: 400px;
        height: 400px;
    }
    .orbit-4 {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .solar-banner {
        min-height: 340px;
    }
    .solar-heading {
        font-size: 28px;
    }
    .solar-desc {
        font-size: 13px;
    }
    .solar-badge {
        font-size: 10px;
        padding: 6px 16px;
        letter-spacing: 3px;
    }
    .solar-sun {
        width: 60px;
        height: 60px;
    }
    .solar-sun-glow {
        inset: -15px;
    }
    .solar-sun-rays {
        inset: -30px;
    }
    .orbit-1 {
        width: 120px;
        height: 120px;
    }
    .orbit-2 {
        width: 180px;
        height: 180px;
    }
    .orbit-3 {
        width: 240px;
        height: 240px;
    }
    .orbit-4 {
        width: 300px;
        height: 300px;
    }
    .orbit-5 {
        width: 360px;
        height: 360px;
    }
    .solar-edge {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .solar-banner {
        min-height: 260px;
    }
    .solar-heading {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .solar-desc {
        font-size: 12px;
    }
    .solar-badge {
        font-size: 9px;
        padding: 4px 12px;
        letter-spacing: 2px;
    }
    .solar-sun {
        width: 40px;
        height: 40px;
    }
    .solar-sun-glow {
        inset: -10px;
    }
    .solar-sun-rays {
        inset: -20px;
    }
    .orbit-1 {
        width: 80px;
        height: 80px;
        --speed: 6s;
    }
    .orbit-2 {
        width: 130px;
        height: 130px;
        --speed: 9s;
    }
    .orbit-3 {
        width: 180px;
        height: 180px;
        --speed: 13s;
    }
    .orbit-4 {
        width: 230px;
        height: 230px;
        --speed: 18s;
    }
    .orbit-5 {
        width: 280px;
        height: 280px;
        --speed: 25s;
    }
    .solar-edge {
        width: 40px;
    }
    .solar-symbol {
        display: none;
    }
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — REDESIGN
   ════════════════════════════════════════════════════ */

.testimonials {
    background: #fff;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(179,0,18,0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212,160,23,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Header */
.testi-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px;
}

.testi-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(179,0,18,0.07);
    border: 1px solid rgba(179,0,18,0.15);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
}

.testi-title {
    font-size: clamp(28px, 4vw, 46px);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
}

.testi-title em {
    font-style: normal;
    color: var(--primary-red);
}

.testi-subtitle {
    font-size: 15px;
    color: #888;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

/* Stats */
.testi-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto 52px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testi-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.testi-stat-num {
    font-size: 26px;
    font-weight: 800;
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, var(--primary-red), var(--luxury-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.testi-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testi-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(0,0,0,0.09);
    flex-shrink: 0;
}

/* Cards */
.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* remove the centering rule — no longer needed */
.testimonials-container .testimonial-card:last-child:nth-child(3n+1) {
    grid-column: auto;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.09);
    border-color: rgba(212,160,23,0.3);
}

.testimonial-card.tc-featured {
    border-color: rgba(179,0,18,0.18);
    background: linear-gradient(160deg, #fff 0%, #fff5f5 100%);
    box-shadow: 0 6px 28px rgba(179,0,18,0.07);
}

.testimonial-card.tc-featured:hover {
    border-color: rgba(179,0,18,0.45);
    box-shadow: 0 24px 56px rgba(179,0,18,0.12);
}

.tc-quote {
    font-size: 48px;
    display: none;
    line-height: 1;
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, var(--primary-red), var(--luxury-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -6px;
}

.tc-stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
    color: var(--luxury-gold);
}

.tc-text {
    font-size: 15px;
    line-height: 1.3;
    color: #555;
    font-family: "Inter", sans-serif;
    flex: 1;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 4px;
}

.tc-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212,160,23,0.35);
    flex-shrink: 0;
}

.tc-author-info {
    flex: 1;
    min-width: 0;
}

.tc-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    font-family: "Inter", sans-serif;
    margin-bottom: 2px;
}

.tc-author-info span {
    font-size: 12px;
    color: #aaa;
    font-family: "Inter", sans-serif;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tc-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #2e7d32;
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-container { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card.tc-featured { grid-column: span 1; }
    .testimonials-container .testimonial-card:last-child:nth-child(3n+1) { grid-column: auto; }
}

@media (max-width: 768px) {
    .testimonials { padding: 70px 20px; }
    .testimonials-container { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card.tc-featured { grid-column: span 1; }
    .testimonials-container .testimonial-card:last-child:nth-child(3n+1) { grid-column: auto; }
    .testi-stats { flex-wrap: wrap; padding: 16px; gap: 0; }
    .testi-stat-item { min-width: 120px; padding: 12px; }
    .testi-stat-divider { display: none; }
}

@media (max-width: 480px) {
    .testimonials { padding: 50px 16px; }
    .testimonial-card { padding: 22px 18px; border-radius: 18px; }
    .testi-title { font-size: 24px; }
    .tc-verified { display: none; }
}

/* ════════════════════════════════════════════════════
   FAQ — REDESIGN
   ════════════════════════════════════════════════════ */

.faq-section {
    padding: 100px 40px;
    background: #f9f7f4;
    position: relative;
    overflow: hidden;
}

/* Subtle warm background texture */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(212,160,23,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(179,0,18,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Remove old orb decoration */
.faq-bg-decoration { display: none; }
.faq-orb, .faq-orb-1, .faq-orb-2 { display: none; }

/* Two-column layout */
.faq-section .section-header {
    display: none; /* hidden — we use inner header */
}

.faq-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left sticky header */
.faq-left {
    position: sticky;
    top: 100px;
}

.faq-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(179,0,18,0.07);
    border: 1px solid rgba(179,0,18,0.15);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.faq-main-title {
    font-size: clamp(28px, 4vw, 46px);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-main-title span {
    color: var(--primary-red);
}

.faq-main-desc {
    font-size: 15px;
    color: #888;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-contact-hint {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-contact-hint:hover {
    border-color: rgba(179,0,18,0.25);
    box-shadow: 0 6px 24px rgba(179,0,18,0.08);
    transform: translateY(-2px);
}

.faq-contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-red), #8f0010);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    flex-shrink: 0;
}

.faq-contact-hint-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    font-family: "Inter", sans-serif;
    margin-bottom: 2px;
}

.faq-contact-hint-text span {
    font-size: 12px;
    color: #aaa;
    font-family: "Inter", sans-serif;
}

/* Right accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.faq-item:hover {
    border-color: rgba(212,160,23,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.faq-item.faq-open {
    border-color: rgba(179,0,18,0.2);
    box-shadow: 0 6px 28px rgba(179,0,18,0.07);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s ease;
}

.faq-item.faq-open .faq-question {
    background: rgba(179,0,18,0.02);
}

.faq-q-number {
    font-size: 11px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: var(--luxury-gold);
    letter-spacing: 0.08em;
    min-width: 24px;
    opacity: 0.55;
    transition: opacity 0.3s;
}

.faq-item.faq-open .faq-q-number { opacity: 1; }

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.faq-item.faq-open .faq-q-text { color: var(--primary-red); }

.faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-item.faq-open .faq-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(45deg);
}

.faq-icon i {
    font-size: 11px;
    color: #888;
    transition: color 0.3s ease;
}

.faq-item.faq-open .faq-icon i { color: #fff; }

/* Keep old aria-expanded selectors working too */
.faq-question[aria-expanded="true"] .faq-q-text { color: var(--primary-red); }
.faq-question[aria-expanded="true"] .faq-q-number { opacity: 1; }
.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(45deg);
}
.faq-question[aria-expanded="true"] .faq-icon i { color: #fff; }
.faq-question[aria-expanded="true"]::before { height: 0; }
.faq-question::before { display: none; }

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity 0.35s ease;
}

.faq-answer-inner {
    padding: 0 22px 22px 56px;
}

.faq-answer-inner p {
    font-size: 14.5px;
    font-family: "Inter", sans-serif;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Bottom CTA — remove old, use inline link in left col */
.faq-cta { display: none; }

/* Responsive */
@media (max-width: 960px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-left { position: static; }
    .faq-main-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .faq-section { padding: 70px 20px; }
    .faq-q-text { font-size: 14px; }
    .faq-answer-inner { padding: 0 18px 18px 40px; }
    .faq-answer-inner p { font-size: 13.5px; }
}

@media (max-width: 480px) {
    .faq-section { padding: 50px 16px; }
    .faq-question { padding: 16px 16px; gap: 12px; }
    .faq-q-text { font-size: 13px; }
    .faq-answer-inner { padding: 0 14px 16px 36px; }
}

/* FOOTER */
/* ── Footer styles now handled inline in footer.php (.tvf-*) ── */

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--luxury-gold);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
}

#backToTop:hover {
    background: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.6);
}

/* PROFILE DROPDOWN */
.header-profile {
    position: relative;
}

/* ── Bottom Nav responsive ── */

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .hero-title { font-size: 52px; }
    .section-title { font-size: 38px; }
}

@media (max-width: 992px) {
    .header-inner {
        padding: 0 24px;
        height: 70px;
    }
    /* .site-header.scrolled .header-inner { height: 60px; } */
    .header-nav { display: none; }
    .profile-name, .profile-chevron, .profile-trigger-info { display: none; }
    .profile-trigger { padding: 5px 7px; border-radius: 50px; gap: 0; }
    .header-actions-divider { display: none; }
    .btn-header-login {
        padding: 0;
        width: 38px; height: 38px;
        justify-content: center;
        font-size: 15px;
    }
    .profile-avatar--default{
        width: 25px;
        height: 25px;
    }
    .btn-header-login span { display: none; }
    .btn-header-register {
        padding: 0;
        width: 38px; height: 38px;
        justify-content: center;
        font-size: 14px !important;
        border-radius: 50%;
    }
    .btn-header-register span { display: none; }
    .btn-header-register i { margin: 0; position: relative; z-index: 1; }
    .bottom-nav { display: flex; }
    body { padding-bottom: 62px; padding-top: 0; }
}

@media (max-width: 480px) {
    .header-inner { padding: 0 14px; }
    .header-actions { gap: 2px; }
    .header-icon-btn { width: 36px; height: 36px; font-size: 14px; }
    .icon-badge { min-width: 14px; height: 14px; font-size: 7.5px; top: 2px; right: 2px; padding: 0 3px; border-radius: 7px; border-width: 1.5px; }
    .profile-dropdown { min-width: 220px; right: -8px; }
}

.hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
}

.hero-content {
    order: 1;
}

.hero-visual {
    order: 2;
    height: 500px;
}

.hero-title {
    font-size: 48px;
}
.solar-system {
    width: 400px;
    height: 400px;
}

.hero-slider-controls {
    bottom: 20px;
    gap: 15px;
}

.about-container {
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    body {
        cursor: default;
        padding-top: 0;
    }
    .custom-cursor,
    .custom-cursor-glow {
        display: none;
    }

    .header-inner {
        padding: 0 16px;
        height: 64px;
    }
    /* .site-header.scrolled .header-inner { height: 56px; } */
    .header-logo img { height: 56px; }
    /* .site-header.scrolled .header-logo img { height: 48px; } */
    .header-actions { gap: 4px; }
    .header-icon-btn { width: 38px; height: 38px; font-size: 15px; }
    .icon-badge { min-width: 15px; height: 15px; font-size: 8px; top: 2px; right: 2px; padding: 0 3px; border-radius: 8px; }

    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-container {
        padding: 0 24px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .spiritual-visual {
        height: 400px;
    }
    .solar-system {
        width: 300px;
        height: 300px;
    }

    /* .browse-collections,
    .featured-products,
    .about-section,
    .why-choose-us,
    .testimonials {
        padding: 80px 24px;
    } */
    .browse-collections,
    .featured-products,
    .about-section,
    .why-choose-us,
    .testimonials {
        padding: 50px 16px;
    }
    .section-header {
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 30px;
        letter-spacing: -0.01em;
    }
    .section-subtitle {
        font-size: 15px;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }
    .about-img-2 {
        margin-top: 0;
    }
    .about-content .section-title {
        font-size: 32px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }

    .why-card:hover {
        transform: translateX(0) translateY(-8px);
    }

    .testimonial-left,
    .testimonial-right {
        margin: 0;
        max-width: 100%;
    }

    /* testimonial card padding handled in testimonials responsive block */
    .testimonial-text {
        font-size: 16px;
    }

    #backToTop {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 14px;
        height: 60px;
    }
    /* .site-header.scrolled .header-inner { height: 52px; } */
    .header-logo img { height: 50px; }
    /* .site-header.scrolled .header-logo img { height: 44px; } */
    .header-icon-btn { width: 36px; height: 36px; font-size: 14px; }
    .icon-badge { min-width: 14px; height: 14px; font-size: 7.5px; top: 2px; right: 2px; padding: 0 3px; border-radius: 7px; border-width: 1.5px; }
    .btn-header-register { padding: 7px 12px; font-size: 11px; }
    body { padding-top: 0; }
    .trust-marquee {
        padding: 0px 0;
    }

    .hero-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 24px;
        letter-spacing: -0.01em;
    }
    .hero-badge,
    .section-badge {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 0.12em;
    }
    .marquee-item {
        font-size: 12px;
    }
    .collection-name {
        font-size: 20px;
    }
    .product-name {
        font-size: 16px;
    }
    .product-price {
        font-size: 20px;
    }
    .about-content .section-title {
        font-size: 28px;
    }
}
/* UTILITY CLASSES */
.text-center {
    text-align: center;
}
.text-gold {
    color: var(--luxury-gold);
}
.text-red {
    color: var(--primary-red);
}
.mt-1 {
    margin-top: 8px;
}
.mt-2 {
    margin-top: 16px;
}
.mt-3 {
    margin-top: 24px;
}
.mt-4 {
    margin-top: 32px;
}
.mb-1 {
    margin-bottom: 8px;
}
.mb-2 {
    margin-bottom: 16px;
}
.mb-3 {
    margin-bottom: 24px;
}
.mb-4 {
    margin-bottom: 32px;
}

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* PRINT STYLES */
@media print {
    .site-header,
    .floating-particles,
    .trust-marquee,
    footer,
    #backToTop,
    .custom-cursor,
    .custom-cursor-glow {
        display: none;
    }
}