@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* --- Elite Pinkish White Palette --- */
    --primary: #1A0B2E;
    /* Dark Royal Purple for text */
    --accent: #C5A059;
    --gold: #C5A059;
    --gold-bright: #F4DCA1;
    --gold-luminous: #FFEDC2;
    --gold-deep: #8B6B23;
    --white: #FFF5F7;

    --bg-light: #FFF0F5;

    --bg-dark: #FFE4E1;

    --text-main: #1A0B2E;
    --text-muted: #4A3A4E;

    /* --- Atmospheric Tokens --- */
    --glass-bg: rgba(255, 245, 247, 0.4);
    --glass-border: rgba(255, 209, 220, 0.3);
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    --gold-glow: 0 0 20px rgba(197, 160, 89, 0.3);

    /* --- Editorial Spacing --- */
    --transition-slow: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-mid: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: -0.01em;
}

html,
body {
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* Prevent accidental horizontal pans */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

@media (max-width: 768px) {
    body {
        line-height: 1.6;
        font-size: 0.9rem;
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

/* --- Refined Navbar with Glassmorphism --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.8rem, 2vw, 1.2rem) 5%;
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    padding: 1.2rem 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B6B23 0%, #B8860B 50%, #8B6B23 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.logo:hover {
    transform: scale(1.02);
}


.uppertab {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.uppertab li {
    position: relative;
}

.uppertab li a {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: block;
}

.uppertab li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.uppertab li a:hover,
.uppertab li a.active {
    color: var(--gold-bright) !important;
}

.uppertab li a:hover::after,
.uppertab li a.active::after {
    width: 100%;
}

/* --- Dropdown Logic --- */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 1.5rem 0;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--glass-border);
    list-style: none;
    margin-top: 15px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2001;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0 !important;
}

.dropdown-menu li a {
    padding: 0.8rem 2rem !important;
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light) !important;
    color: var(--primary) !important;
    padding-left: 2.5rem !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* --- Advanced Animations & Utilities --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-reveal>* {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.stagger-reveal.active>* {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stagger delay helpers via JS or CSS child targeting */
.stagger-reveal.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-reveal.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-reveal.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-reveal.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

/* --- Aura System --- */
.aura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aura-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: auraFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.aura-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FFE4E1 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.aura-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFF0F5 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.aura-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD1DC 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes auraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Luminous Gold Utilities --- */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.text-white-shadow {
    color: var(--white) !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    display: inline-block;
}

/* Baby Pink Theme for Content Area */
.blog-content-theme {
    background: var(--white);
    /* This is actually baby pinkish-white based on :root */
    color: var(--primary);
    padding-top: 80px;
    margin-top: -50px;
    /* Overlap with hero slightly for smooth transition */
    position: relative;
    z-index: 5;
    border-radius: 50px 50px 0 0;
}

.blog-content-theme h2:not(.gold-text),
.blog-content-theme h3 {
    color: var(--primary);
}

.blog-content-theme p {
    color: var(--text-muted);
}

.blog-content-theme .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 11, 46, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-content-theme .glass-card:hover {
    border: 1px solid var(--gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.blog-content-theme .step-number {
    color: var(--gold);
}

.blog-content-theme .category-btn {
    background: rgba(26, 11, 46, 0.05);
    color: var(--primary);
    border: 1px solid rgba(26, 11, 46, 0.1);
}

.blog-content-theme .category-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

.blog-content-theme .blog-card {
    background: #fff;
    border: 1px solid rgba(26, 11, 46, 0.05);
}

.blog-content-theme .blog-card-content h3 {
    color: var(--primary);
}

.blog-content-theme .read-more {
    color: var(--gold-deep);
}

.blog-content-theme .read-more:hover {
    color: var(--primary);
}

.blog-content-theme .newsletter-section {
    background: var(--primary);
    border-radius: 30px;
    color: var(--white);
    overflow: hidden;
}

.blog-content-theme .newsletter-section h2 {
    color: var(--gold);
}

.blog-content-theme .product-features {
    background: rgba(26, 11, 46, 0.03);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 100px 5%;
}

.blog-content-theme .feature-points-list li strong {
    color: var(--primary);
}

/* Detailed Article Styles */
.detailed-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.article-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 500;
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    margin-bottom: 40px;
}

.article-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 500px;
}

.article-body p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.article-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    color: var(--gold-deep);
    padding: 60px 0;
    position: relative;
}

.article-quote::before,
.article-quote::after {
    content: '"';
    font-size: 5rem;
    position: absolute;
    opacity: 0.2;
    color: var(--gold);
}

.article-quote::before {
    top: 20px;
    left: 10px;
}

.article-quote::after {
    bottom: -20px;
    right: 10px;
}

.article-footer {
    border-top: 1px solid rgba(26, 11, 46, 0.1);
}

.border-top {
    border-top: 1px solid rgba(26, 11, 46, 0.1);
}

/* --- Article Engagement Enhancements --- */

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
    background: rgba(255, 245, 247, 0.1);
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    transition: width 0.1s ease-out;
}

/* Typography Enhancements */
.article-body>p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    float: left;
    margin-right: 15px;
    line-height: 0.8;
    color: var(--gold);
    font-weight: 700;
}

.article-section h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.article-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
    opacity: 0.6;
}

/* Metadata Badges */
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.read-time {
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.6;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Cinematic Hover for Article Images */
.article-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 600px;
    transition: var(--transition-slow);
}

.article-main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.15);
}

/* Share Bar */
.article-share-bar {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 11, 46, 0.1);
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.share-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Next Article Footer */
.next-article-teaser {
    background: rgba(197, 160, 89, 0.05);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
}

/* Study-Friendly Features */
.key-takeaways {
    background: linear-gradient(135deg, #fff 0%, rgba(197, 160, 89, 0.05) 100%);
    border-left: 5px solid var(--gold);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.05);
}

.key-takeaways h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.key-takeaways li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.science-callout {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: 30px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.science-callout::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
}

.science-callout h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.science-callout p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.article-quote {
    padding: 3rem;
    margin: 4rem 0;
    background: rgba(255, 245, 247, 0.5);
    border-radius: 0 50px 0 50px;
    position: relative;
    text-align: center;
}

.article-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.article-quote::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(197, 160, 89, 0.1);
    font-family: serif;
}

@media (max-width: 768px) {
    .article-quote p {
        font-size: 1.4rem;
    }
}

.gold-glow {
    box-shadow: var(--gold-glow);
}

.gold-border {
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.gold-bg {
    background: var(--gold-gradient);
    color: #000000;
}

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

    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background-size: 200% auto;
    animation: goldShimmer 6s linear infinite;
}

.premium-gradient-bg {
    background: linear-gradient(135deg, #121212 0%, #1A1A1A 100%);
    position: relative;
}

.premium-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Magnetic Button Logic --- */
.btn-magnetic {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Mobile Hamburger & Overlay --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 5000;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 11, 46, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    overflow: hidden;
}

.mobile-nav-links li a {
    color: var(--white);
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    padding: 15px 0;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered entrance for mobile links */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) a {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) a {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) a {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) a {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) a {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) a {
    transition-delay: 0.35s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(7) a {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(8) a {
    transition-delay: 0.45s;
}

.mobile-nav-links li a.active {
    color: var(--gold);
    font-weight: 700;
}

/* --- Back To Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

/* --- Refined Responsive Logic --- */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .uppertab {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo span {
        font-size: 1.4rem;
    }

    .logo img {
        height: 35px;
    }

    .hero h1 {
        font-size: 2.2rem !important;
    }
}

/* --- Bubble Highlight Animation --- */
.flavours {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.bubble-highlighter {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    filter: blur(40px);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 5;
    animation: bubbleMove 12s infinite alternate ease-in-out;
}

@keyframes bubbleMove {
    0% {
        top: -10%;
        left: -10%;
        transform: scale(1);
    }

    33% {
        top: 40%;
        left: 60%;
        transform: scale(1.2);
    }

    66% {
        top: 80%;
        left: 20%;
        transform: scale(0.8);
    }

    100% {
        top: 50%;
        left: 90%;
        transform: scale(1.1);
    }
}

/* --- Water Bubble System --- */
.water-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.water-bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 70%);
    backdrop-filter: blur(1px);
    border-radius: 50%;
    box-shadow:
        inset -5px -5px 15px rgba(0, 0, 0, 0.1),
        inset 5px 5px 15px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.4);
    animation:
        bubbleRise 15s infinite ease-in,
        bubbleSway 4s infinite ease-in-out,
        bubbleZiggle 2s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Secondary 3D Highlight */
.water-bubble::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(2px);
}

/* Primary 3D Highlight */
.water-bubble::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 35%;
    height: 25%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent);
    border-radius: 50%;
    transform: rotate(-25deg);
    filter: blur(0.5px);
}

@keyframes bubbleZiggle {

    0%,
    100% {
        transform: scale(1) translateX(0);
        filter: brightness(1);
    }

    33% {
        transform: scale(1.05) translateX(2px);
        filter: brightness(1.3);
    }

    66% {
        transform: scale(0.95) translateX(-2px);
        filter: brightness(0.9);
    }
}

@keyframes bubbleRise {
    0% {
        bottom: -100px;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        bottom: 110%;
        opacity: 0;
    }
}

@keyframes bubbleSway {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }
}

@keyframes bubbleWobble {

    0%,
    100% {
        border-radius: 50% 50% 50% 50%;
    }

    33% {
        border-radius: 45% 55% 48% 52%;
    }

    66% {
        border-radius: 52% 48% 55% 45%;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 1.5rem 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-image-container {
        width: 100%;
        margin-top: 2rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .brand-story h2,
    .section-title {
        font-size: 2rem;
    }

    .main-layout {
        flex-direction: column;
        gap: 2rem;
        padding-top: 60px;
    }

    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .content-area section {
        margin-bottom: 4rem;
    }

    .content-area h2 {
        font-size: 2.2rem;
    }
}

/* --- Elite Hero Architecture --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 12%;
    color: var(--primary);
    overflow: hidden;
    background-color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.7);
    animation: cinematicZoom 30s infinite alternate linear;
}

/* Atmospheric CSS Variant (No Image) */
.hero-bg.atmospheric {
    background: radial-gradient(circle at 30% 20%, rgba(55, 20, 90, 0.8) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(130, 50, 160, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, #1A0B2E 0%, #0D051A 100%);
    animation: atmosphericPulse 15s infinite alternate ease-in-out;
}

@keyframes atmosphericPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1) translate(-2%, 2%);
        opacity: 1;
    }

    100% {
        transform: scale(1.05) translate(2%, -1%);
        opacity: 0.9;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 11, 46, 0.4) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 0;
    animation: luxuryFadeIn 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 4rem;
    /* Increased gap */
}

.hero-container.hero-centered {
    justify-content: center;
}

.hero-image-container {
    flex: 1.5;
    /* Give more room to cards */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    perspective: 3000px;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0) rotateY(-10deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(-2deg);
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: premiumFadeUp 1.5s forwards 0.5s;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    /* Slightly smaller for better fit */
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .hero {
        padding: 100px 1.5rem 50px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-image-container {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}



.hero h1 span {
    display: block;
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
}

.hero h1 .line-1 {
    animation: premiumFadeUp 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.8s;
}

.hero h1 .line-2 {
    animation: premiumFadeUp 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1s;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes premiumFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

/* --- Amazing Background Animations --- */
@keyframes cinematicZoom {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.15) rotate(1deg);
    }
}

@keyframes floatContent {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-10px) translateX(5px);
    }

    66% {
        transform: translateY(5px) translateX(-5px);
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* --- Premium Buttons --- */
.btn {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: var(--gold-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.5);
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.slider-section {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--bg-light);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

.slider-track img {
    width: 320px;
    height: 240px;
    object-fit: contain;
    margin: 0 40px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
}

.slider-track img:hover {
    transform: scale(1.08);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* "Bold" Zoom effect on specific image hover */
.slider-track img:hover {
    transform: scale(1.25);
    /* Makes it pop out */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    z-index: 100;
}

/* 5. ANIMATION LOGIC */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {

        transform: translateX(calc(-370px * 10));
    }
}


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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}


.brand-story {
    padding: 160px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1A0B2E 0%, #0D051A 100%);
    position: relative;
    overflow: hidden;
}

.brand-story-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.premium-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 40px auto;
    position: relative;
}

.premium-divider::before,
.premium-divider::after {
    content: '✧';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
}

.premium-divider::before {
    left: -20px;
}

.premium-divider::after {
    right: -20px;
}

.brand-story h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.brand-story .lead {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--gold-luminous);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.brand-story .story-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

.motto-refined {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold-bright);
    margin-top: 3rem;
    opacity: 0.8;
    position: relative;
}

.motto-refined::before,
.motto-refined::after {
    content: '"';
    font-size: 3rem;
    opacity: 0.2;
    position: absolute;
    top: -10px;
}

.motto-refined::before {
    left: -20px;
}

.motto-refined::after {
    right: -20px;
}

.cinematic-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    text-align: center;
    white-space: nowrap;
    /* Prevent wrapping for cinematic feel */
}

.cinematic-title::after {
    content: '|';
    margin-top: 10px;
    animation: cursorBlink 0.8s infinite;
    color: var(--gold);
    font-size: 2rem;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* --- Product Fan-Out Animation (Hero) --- */
.product-fan-out {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    perspective: 4000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .product-fan-out {
        height: 400px;
    }

    .fan-item {
        width: 120px;
        height: 180px;
        border-radius: 12px;
        border-width: 4px;
    }

    .product-fan-out.active .item-1 {
        transform: translateX(-40px) scale(0.7) rotate(-15deg) translateY(40px) translateZ(0);
    }

    .product-fan-out.active .item-2 {
        transform: translateX(-20px) scale(0.75) rotate(-8deg) translateY(20px) translateZ(50px);
    }

    .product-fan-out.active .item-3 {
        transform: translateX(20px) scale(0.8) rotate(8deg) translateY(20px) translateZ(100px);
    }

    .product-fan-out.active .item-4 {
        transform: translateX(40px) scale(0.85) rotate(15deg) translateY(40px) translateZ(150px);
    }
}

@keyframes heroStackFloat {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateY(-15px) rotateX(2deg) rotateY(1deg);
    }

    50% {
        transform: translateY(0) rotateX(0deg) rotateY(2deg);
    }

    75% {
        transform: translateY(15px) rotateX(-2deg) rotateY(1deg);
    }
}

.fan-item {
    position: absolute;
    width: 280px;
    /* Further reduced card size for better UI/UX */
    height: auto;
    border-radius: 24px;
    /* Proportionally reduced radius */
    background: var(--white);
    padding: 15px;
    /* Reduced padding */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15),
        inset 0 0 30px rgba(197, 160, 89, 0.08);
    border: 10px solid var(--white);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateX(100px) scale(0.6) rotateX(10deg);
    pointer-events: auto;
    overflow: hidden;
}

/* Glossy Glass Overlay with Sheen */
.fan-item::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 48%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0.05) 52%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 2;
}

.fan-item.is-featured::after {
    animation: glossySheen 2s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@keyframes glossySheen {
    0% {
        transform: rotate(30deg) translate(-20%, -20%);
    }

    100% {
        transform: rotate(30deg) translate(20%, 20%);
    }
}

/* Ambient Glow behind featured card */
.fan-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    /* Increased from 120% */
    height: 140%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.45) 0%, transparent 75%);
    /* More opaque */
    opacity: 0;
    transition: opacity 1s ease;
    z-index: -1;
    filter: blur(50px);
    /* Increased blur */
}

.fan-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.product-fan-out.active .fan-item {
    opacity: 1;
}

/* Refined Shifting Fan-out (Mostly on Right) */
.product-fan-out.active .item-1 {
    transform: translateX(20px) scale(0.8) rotate(-15deg) translateY(120px) translateZ(0);
    z-index: 1;
}

.product-fan-out.active .item-2 {
    transform: translateX(80px) scale(0.85) rotate(-8deg) translateY(60px) translateZ(100px);
    z-index: 2;
}

.product-fan-out.active .item-3 {
    transform: translateX(140px) scale(0.9) rotate(8deg) translateY(60px) translateZ(200px);
    z-index: 3;
}

.product-fan-out.active .item-4 {
    transform: translateX(200px) scale(0.95) rotate(15deg) translateY(120px) translateZ(300px);
    z-index: 4;
}

.fan-item.is-featured {
    z-index: 50 !important;
    transform: translateX(0px) scale(1.15) translateY(-30px) translateZ(700px) rotateX(0deg) rotateY(0deg) !important;
    box-shadow:
        0 120px 300px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(197, 160, 89, 0.6);
    border-color: #fff;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes featuredPulse {
    from {
        box-shadow:
            0 80px 200px rgba(0, 0, 0, 0.4),
            0 0 80px rgba(197, 160, 89, 0.4),
            0 0 120px rgba(197, 160, 89, 0.2);
    }

    to {
        box-shadow:
            0 100px 250px rgba(0, 0, 0, 0.5),
            0 0 120px rgba(197, 160, 89, 0.6),
            0 0 180px rgba(197, 160, 89, 0.4);
    }
}

.fan-item.is-featured::before {
    opacity: 1;
}

.fan-item.is-featured::after {
    transform: rotate(30deg) translate(20%, 20%);
}

.cinematic-content {
    margin-bottom: 5rem;
}

.cinematic-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cinematic-content .lead {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 500;
}

/* Motto Glass architecture */
.motto-glass {
    position: relative;
    display: inline-block;
    padding: 2.5rem 4rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.motto-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: mottoGlowPulse 8s infinite alternate ease-in-out;
}

@keyframes mottoGlowPulse {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.motto-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

/* --- Flavour Cards Styling --- */
.flavours {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.flavour-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flavour-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.flavour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.flavour-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.flavour-card:hover::before {
    transform: scaleX(1);
}

.flavour-card .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 2rem;
}

.flavour-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- Oral Care Specific Layout --- */
.main-layout {
    display: flex;
    gap: 4rem;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sidebar {
    width: 250px;
    position: sticky;
    top: 120px;
    height: fit-content;
    background: rgba(255, 245, 247, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.content-area {
    flex: 1;
}

.content-area section {
    margin-bottom: 8rem;
}

.content-area h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.content-area p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.highlight-box {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
}

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

.flavour-grid,
.virtue-grid,
.benefit-grid,
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {

    .flavour-grid,
    .virtue-grid,
    .benefit-grid,
    .points-grid {
        grid-template-columns: 1fr;
    }
}

.point {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.point:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.key-ingredient {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.key-ingredient .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.key-ingredient .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.flavour-card .benefit {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.flavour-card .ingredient-stmt {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--bg-light);
    padding-top: 2rem;
    margin-top: 1rem;
    font-style: italic;
}

/* --- Gold Premium Ingredients Section --- */
.ingredients {
    padding: clamp(80px, 10vw, 150px) 0;
    text-align: center;
    background-color: #0A0A0A;
    /* Ultra-dark backdrop */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ingredients h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.premium-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 4rem;
    border-radius: 10px;
    box-shadow: var(--gold-glow);
}

.ingredient-list {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: 5rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.2;
    padding: 0 2rem;
}

.ingredient-list.chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4rem;
}

.ingredient-list.chips span {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--gold-deep);
    transition: all 0.3s ease;
    margin: 0;
    opacity: 1;
}

.ingredient-list.chips span:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.ingredient-list span {
    color: var(--gold);
    margin: 0 1.2rem;
    font-weight: 300;
    opacity: 0.6;
}

.badges {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.badge-item:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-5px);
}

.badge-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

/* Responsive fix for small screens */
@media (max-width: 768px) {
    .flavour-grid {
        flex-direction: column;
        align-items: center;
    }

    .badges {
        flex-direction: column;
        gap: 1.5rem;
    }
}

#F8F4F9 .main-footer {
    background-color: #000000;
    /* Subtle purple background */
    padding: 60px 0 0 0;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    overflow: hidden;
}

.footer-brand,
.footer-contact,
.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    color: #5D1F6E;
    margin-bottom: 15px;
}

.footer-grid h4 {
    color: #5D1F6E;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-grid ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-grid a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: #5D1F6E;
}

/* Bottom Bar Styling */
.footer-bottom {
    background-color: #5D1F6E;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}











/* ABOUT PAGE SPECIFIC STYLES */
.about-hero {
    background-color: #5D1F6E;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    opacity: 0.8;
}

/* --- Intense Atmospheric Hero for About --- */
.about-hero {
    min-height: 100vh !important;
    padding: 140px 2rem 80px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-container {
    justify-content: center !important;
    text-align: center;
    width: 100%;
}

.about-hero h1 {
    font-size: 4.5rem !important;
    /* Larger for 100vh impact */
    margin-top: 5px;
    z-index: 2;
}

/* --- Center-Aligned Narrative & Stats --- */
/* --- Split Narrative Layout --- */
/* --- Compact Narrative Layout --- */
.split-narrative {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.narrative-visual {
    display: none;
    /* Removing large narrative image */
}

.narrative-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.narrative-glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
}

.narrative-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.split-narrative:hover .narrative-visual img {
    transform: scale(1.05);
}

.narrative-stats-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem;
}

.stat-vibe.left-aligned {
    text-align: left;
}

@media (max-width: 992px) {
    .split-narrative {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .stat-vibe.left-aligned {
        text-align: center;
    }

    .narrative-stats-column {
        flex-direction: row;
        justify-content: center;
        padding: 0;
    }
}

.narrative-block {
    margin-bottom: 3rem;
}

.narrative-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.narrative-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.brand-quote {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    margin: 3rem 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.brand-quote::before,
.brand-quote::after {
    content: '"';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.brand-quote::before {
    left: -40px;
    top: -20px;
}

.brand-quote::after {
    right: -40px;
    bottom: -40px;
}

.premium-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-vibe {
    text-align: center;
}

.stat-vibe .number {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-vibe .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 1rem;
    display: block;
}

/* Redefining legacy basic styles if they exist */
.about-intro {
    background: var(--white);
    padding: 120px 0;
}

.intro-flex {
    flex-direction: column;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* TIMELINE STYLES */
.legacy-timeline {
    padding: 80px 0;
    background-color: #FAF7FC;
}

.section-title {
    text-align: center;
    color: #5D1F6E;
    margin-bottom: 50px;
    font-size: 36px;
}

.timeline-point {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.year-badge {
    background: #5D1F6E;
    color: white;
    padding: 15px;
    border-radius: 15px;
    min-width: 100px;
    text-align: center;
    font-weight: bold;
    height: fit-content;
}

.content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

/* MISSION & VISION STYLES */
.mission-vision {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.mv-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.mv-card {
    flex: 1;
    padding: 50px 30px;
    background: #F8F4F9;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    background: #F2EBF4;
}

.mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.mv-card h3 {
    color: #5D1F6E;
    margin-bottom: 15px;
}

.motto-footer {
    font-style: italic;
    font-weight: bold;
    color: #5D1F6E;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .intro-flex,
    .timeline-point,
    .mv-grid {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}




/* --- Product Page Specifics --- */
.product-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    background-attachment: fixed;
}

.product-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

/* --- Filter Bar --- */
.filter-section {
    background: var(--white);
    padding: 0.2rem 0;
    position: sticky;
    top: 80px;
    z-index: 1000;
    border-bottom: 1px solid var(--bg-light);
    box-shadow: var(--shadow-soft);
}

.flex-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 1.5px solid var(--bg-light);
    background: var(--white);
    color: var(--text-muted);
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(93, 31, 110, 0.2);
}

/* --- Product Grid --- */
.product-flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 80px 0;
}

.product-card {
    background: var(--white);
    border-radius: 32px;
    /* Smoother corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    /* More breathing room */
}

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

.product-images {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.main-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .main-img {
    transform: scale(1.1) rotate(2deg);
}



.product-card h6,
.product-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    min-height: 3.2rem;
}

.price {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1rem;
}

.details {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.buy-btn {
    display: block;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.buy-btn:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Distributors Section --- */
.distributors-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.distributor-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 3rem;
    margin-top: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.distributor-info {
    flex: 1;
}

.distributor-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.distributor-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.distributor-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stat-item .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

/* --- Main Footer (Cinematic Overhaul) --- */
.main-footer {
    background-color: #000000;
    padding: 100px 0 0 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 5rem;
}

.footer-column,
.footer-brand,
.footer-info,
.footer-contact,
.footer-links {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-column.revealed,
.footer-brand.revealed,
.footer-info.revealed,
.footer-contact.revealed,
.footer-links.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback for visibility on index.html if intersection observer is not targeting specific columns */
.main-footer .footer-column {
    opacity: 1 !important;
    transform: none !important;
}

.footer-brand .logo {
    color: var(--accent);
    /* Brand Gold */
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.mkr-sub-brand {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
    max-width: 320px;
}

.footer-grid h4 {
    color: var(--accent);
    /* Radiant Gold Headers */
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 10px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-list .icon {
    font-size: 1.3rem;
    color: var(--accent);
    /* Golden Icons */
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.footer-contact-list .text {
    opacity: 0.85;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
    display: inline-block;
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

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

/* Bottom Bar Styling */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 2.5rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent);
}

@media (max-width: 992px) {
    .footer-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom .bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

    .footer-contact-list li {
        justify-content: center;
    }

    .brand-description {
        margin: 0 auto;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Oral Care Encyclopedia Styles --- */
.hero-large {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-large h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.main-layout {
    display: flex;
    gap: 4rem;
    padding: 80px 0;
}

.sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 1rem;
}

.sidebar ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.6rem 0;
    position: relative;
    font-weight: 500;
}

.sidebar ul li a:hover {
    color: var(--gold);
    padding-left: 12px;
}

.sidebar ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.sidebar ul li a:hover::before {
    width: 20px;
}

.sidebar ul li a.active {
    color: var(--gold);
    font-weight: 600;
}

.sidebar ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.content-area {
    flex: 1;
}

.content-area section {
    margin-bottom: 6rem;
}

.content-area h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.content-area p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--bg-light);
    border-left: 5px solid var(--secondary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.point:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.point h3 {
    color: var(--gold-bright);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.point p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip-pro {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.tip-pro h3 {
    margin-bottom: 1.5rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
        padding-top: 40px;
    }

    .sidebar {
        position: sticky;
        top: 80px;
        z-index: 100;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        margin-bottom: 2rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .sidebar h3 {
        display: none;
    }

    .sidebar ul {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sidebar ul::-webkit-scrollbar {
        display: none;
    }

    .sidebar ul li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .sidebar ul li a {
        padding: 0.5rem 0;
        white-space: nowrap;
    }
}

/* --- 3D Infinite Carousel --- */
.carousel-3d-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
    perspective: 1500px;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    /* Enhanced perspective */
}

@media (max-width: 768px) {
    .carousel-3d-container {
        height: 400px;
        /* Tighter container for mobile */
    }
}

.carousel-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-3d-item {
    position: absolute;
    width: 320px;
    height: 480px;
    background: var(--white);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(-400px) rotateY(0deg);
}

@media (max-width: 768px) {
    .carousel-3d-item {
        width: 240px;
        height: 360px;
        padding: 1.2rem;
    }

    .carousel-3d-item img {
        height: 180px;
    }

    .carousel-3d-item h3 {
        font-size: 1.1rem;
    }
}

/* Item States manage by JS */
.carousel-3d-item.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(93, 31, 110, 0.25);
    border: 2px solid var(--primary);
}

.carousel-3d-item.prev {
    opacity: 0.7;
    visibility: visible;
    transform: translate(-120%, -50%) translateZ(-300px) rotateY(35deg);
    z-index: 5;
}

.carousel-3d-item.next {
    opacity: 0.7;
    visibility: visible;
    transform: translate(20%, -50%) translateZ(-300px) rotateY(-35deg);
    z-index: 5;
}

@media (max-width: 576px) {
    .carousel-3d-item.prev {
        transform: translate(-110%, -50%) translateZ(-400px) rotateY(25deg) scale(0.85);
    }

    .carousel-3d-item.next {
        transform: translate(10%, -50%) translateZ(-400px) rotateY(-25deg) scale(0.85);
    }
}

.carousel-3d-item.prev-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-150%) translateZ(-400px) rotateY(45deg);
}

.carousel-3d-item.next-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateZ(-400px) rotateY(-45deg);
}

.carousel-3d-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
}

.carousel-3d-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.carousel-3d-item .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Control Buttons */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-nav-btn {
    width: clamp(40px, 12vw, 60px);
    height: clamp(40px, 12vw, 60px);
    border-radius: 50%;
    border: 2px solid var(--bg-light);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    font-size: clamp(1rem, 4vw, 1.5rem);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .carousel-3d-item {
        width: 85vw;
        /* Use percentage of viewport width */
        max-width: 320px;
        height: min(450px, 60vh);
    }

    .carousel-3d-item.prev {
        transform: translate(-100%, -50%) translateZ(-200px) rotateY(15deg);
        opacity: 0.4;
    }

    .carousel-3d-item.next {
        transform: translate(0%, -50%) translateZ(-200px) rotateY(-15deg);
        opacity: 0.4;
    }
}

/* --- Carousel Dots --- */
.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(93, 31, 110, 0.3);
}

/* --- Category Filter & Shuffle Animation --- */
.filter-luxury-bar {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.4rem 1.0rem;
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.filter-aura-slider {
    position: absolute;
    height: calc(100% - 10px);
    background: var(--gold-gradient);
    border-radius: 40px;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.2;
    pointer-events: none;
    top: 5px;
    left: 0;
    width: 0;
}

.carousel-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.filter-tab {
    white-space: nowrap;
    min-width: fit-content;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid var(--bg-light);
    background: var(--white);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.95rem;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(93, 31, 110, 0.2);
}

/* Stochastic Shuffle Keyframes */
@keyframes stochasticShuffle {
    0% {
        transform: translateX(-50%) translateZ(-400px) rotateY(0deg);
        opacity: 0;
    }

    25% {
        opacity: 1;
        transform: translateX(-120%) translateZ(-600px) rotateY(-45deg);
    }

    50% {
        opacity: 1;
        transform: translateX(20%) translateZ(-300px) rotateY(20deg);
    }

    100% {
        opacity: 1;
    }
}

.carousel-3d-item.shuffling {
    animation: stochasticShuffle 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.carousel-3d-item.filtered-out {
    display: none !important;
}

/* Theme Shifting Glows */
.carousel-3d-section[data-theme="mouthwash"] .carousel-3d-item.active {
    box-shadow: 0 20px 50px rgba(71, 155, 113, 0.3);
    border-color: #479B71;
}

.carousel-3d-section[data-theme="oil"] .carousel-3d-item.active {
    box-shadow: 0 20px 50px rgba(93, 31, 110, 0.3);
    border-color: var(--primary);
}

.carousel-3d-section[data-theme="afterdrink"] .carousel-3d-item.active {
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.3);
    border-color: #2196F3;
}

/* --- Global Reveal & Parallax Transformations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* --- Content Floating Accents --- */
.glass-dark {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* --- Advanced Hero Variants --- */
.about-hero,
.hero-large {
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10%;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: cinematicZoom 25s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(93, 31, 110, 0.5) 100%);
    z-index: 2;
}

/* --- Elite Animations --- */
@keyframes atmosphericPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-elevation-glow {
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.4), 0 0 60px rgba(197, 160, 89, 0.2);
}

/* --- Scroll Down Indicator --- */
.scroll-down-indicator {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 100;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.scroll-arrow-container {
    width: 44px;
    height: 44px;
    background: #1A0B2E;
    /* Deep Purple */
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(26, 11, 46, 0.5);
    transition: var(--transition);
}

.scroll-down-indicator:hover .scroll-arrow-container {
    background: #2A1B3E;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
    transform: scale(1.1);
}

.scroll-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    margin-top: -5px;
    animation: arrowBounce 2s infinite ease-in-out;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px) rotate(45deg);
        opacity: 1;
    }
}

/* --- Refined Button System --- */
/* --- Refined Button System (Consolidated) --- */
.btn {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: var(--gold-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.5);
    color: var(--primary);
}

/* --- Legacy Journey 3D Cards --- */
.legacy-journey {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.glow-timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-glow-line {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
}

.timeline-glow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--scroll-percent, 0%);
    background: var(--gold-gradient);
    box-shadow: 0 0 20px var(--gold);
    border-radius: 4px;
    transition: height 0.1s ease-out;
}

.milestone-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.milestone-item {
    height: 400px;
    /* Much more compact */
    perspective: 2000px;
    cursor: pointer;
}

.milestone-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.milestone-item:hover .milestone-card-inner {
    transform: rotateY(180deg);
}

.milestone-card-front,
.milestone-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Front Face - Elegant White & Dark Text */
.milestone-item.active .milestone-card-front {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
    transform: translateY(-10px);
}

.milestone-card-front {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    padding: 3.5rem 2.5rem;
    justify-content: flex-start;
    /* Start from top to prevent overlap */
}

.milestone-card-front .milestone-marker {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.milestone-card-front h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.milestone-card-front p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.milestone-card-front .hover-hint {
    margin-top: auto;
    /* Push to bottom */
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Back Face - Full Photo Exposure */
.milestone-card-back {
    background-color: var(--bg-dark);
    transform: rotateY(180deg);
    background-size: cover;
    background-position: center;
}

.milestone-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Very subtle overlay */
    z-index: 1;
}

.milestone-card-back.card-1 {
    background-image: url('photos/savionette_journey.png');
}

.milestone-card-back.card-2 {
    background-image: url('photos/ad4.jpg');
}

.milestone-card-back.card-3 {
    background-image: url('photos/laser2.png');
}

/* --- Bubble Burst Effect --- */
.water-bubble.bubble-burst {
    animation: bubbleRiseAndBurst 10s infinite ease-in, bubbleSway 4s infinite ease-in-out;
}

.water-bubble.bubble-burst::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    box-shadow:
        15px 0 0 rgba(255, 255, 255, 0.6),
        -15px 0 0 rgba(255, 255, 255, 0.6),
        0 15px 0 rgba(255, 255, 255, 0.6),
        0 -15px 0 rgba(255, 255, 255, 0.6);
    animation: particlePop 10s infinite ease-out;
}

@keyframes bubbleRiseAndBurst {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.6;
        transform: scale(1);
    }

    90% {
        opacity: 0.4;
        transform: scale(1.4);
    }

    95% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        bottom: 110%;
        opacity: 0;
    }
}

@keyframes particlePop {

    0%,
    90% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    92% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    95% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow:
            30px 0 0 rgba(255, 255, 255, 0),
            -30px 0 0 rgba(255, 255, 255, 0),
            0 30px 0 rgba(255, 255, 255, 0),
            0 -30px 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {

    .milestone-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        perspective: none;
    }

    .milestone-item {
        height: auto;
        min-height: 350px;
    }

    .milestone-item:hover .milestone-card-inner {
        transform: none;
        /* Disable 3D flip on mobile */
    }

    .milestone-card-front {
        padding: 2.5rem 1.5rem;
        position: relative;
        height: auto;
    }

    .milestone-card-back {
        display: none;
        /* Hide back face on mobile or show it differently */
    }

    .timeline-glow-line {
        left: 20px;
        transform: none;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: 160px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-container {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.contact-info-visual {
    text-align: left;
}

.contact-info-visual h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-info-visual p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-cards {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    background: var(--glass-bg);
}

.info-card .icon {
    font-size: 2rem;
}

.info-card .details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-card .details p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Product Badge --- */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-visual h2 {
        font-size: 2.5rem;
    }
}

/* --- Utility Classes --- */
.text-center {
    text-align: center !important;
}

.centered {
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-600 {
    max-width: 600px;
}

.max-800 {
    max-width: 800px;
}

.py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.gold-border {
    border: 1px solid var(--gold-border) !important;
}

/* --- About Narrative Enhancements --- */
.about-narrative {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(255, 240, 245, 0.5) 0%, var(--white) 100%);
}

.max-600.centered {
    display: block;
}

/* --- Elite Parallax & Floating Elements --- */
.parallax-container {
    overflow: hidden;
    position: relative;
    background: var(--white);
}

.floating-botanical {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, rgba(197, 160, 89, 0.2), transparent);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 0;
    pointer-events: none;
    animation: floatingDrift 20s infinite alternate ease-in-out;
}

@keyframes floatingDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.5);
    }
}

.botanical-1 {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.botanical-2 {
    top: 40%;
    right: 10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.botanical-3 {
    bottom: 20%;
    left: 15%;
    animation-duration: 22s;
}

/* --- Brand DNA Interactive Section --- */
.brand-dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.dna-item {
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dna-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: var(--white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: var(--gold);
}

.dna-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: var(--transition);
}

.dna-item:hover .dna-icon {
    transform: scale(1.2) rotate(10deg);
}

.dna-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.dna-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* --- Section Dividers --- */
.slope-divider {
    position: relative;
    height: 150px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 5;
}

/* --- Interactive Brand Modal --- */
.brand-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-mid);
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 46, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transform: scale(0.8) translateY(20px);
    transition: var(--transition-mid);
    text-align: center;
}

.brand-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-body h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
}

.close-modal-btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

/* --- Confetti Burst Effect --- */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
    overflow: hidden;
}

.confetti-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    opacity: 0.9;
    --rnd-x: 0;
    --rnd-y: 0;
    --rnd-r: 0deg;
}

@keyframes confettiBurstLeft {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
        transform: translate(calc(5vw * var(--rnd-x)), calc(-10vh * var(--rnd-y))) rotate(45deg) scale(1);
    }

    100% {
        transform: translate(calc(40vw + 300px * var(--rnd-x)), calc(-80vh + 300px * var(--rnd-y))) rotate(var(--rnd-r)) scale(0.4);
        opacity: 0;
    }
}

@keyframes confettiBurstRight {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
        transform: translate(calc(-5vw * var(--rnd-x)), calc(-10vh * var(--rnd-y))) rotate(-45deg) scale(1);
    }

    100% {
        transform: translate(calc(-40vw - 300px * var(--rnd-x)), calc(-80vh + 300px * var(--rnd-y))) rotate(var(--rnd-r)) scale(0.4);
        opacity: 0;
    }
}

.slope-divider-reverse {
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

/* --- Birthday Style Specifics --- */
.established-text {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.typewriter-container {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.birthday-tagline {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    color: var(--white);
    border-right: 2px solid var(--gold);
    padding-right: 5px;
    white-space: pre-wrap;
    animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--gold);
    }
}

.modal-content.birthday-style {
    background: rgba(13, 5, 26, 0.85);
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.3);
}

/* --- Oral Care Educational Styles --- */
.content-visual {
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    background: rgba(26, 11, 46, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.content-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.highlight-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(13, 5, 26, 0.6) 0%, rgba(26, 11, 46, 0.4) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.highlight-text {
    flex: 1;
}

.highlight-img {
    flex: 0.6;
    max-width: 280px;
    border-radius: 16px;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.2));
}

.nutrition-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
}

.nutrition-text {
    flex: 1.2;
}

.nutrition-text ul {
    margin-top: 1.5rem;
    list-style: none;
}

.nutrition-text li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.nutrition-text li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.nutrition-img {
    flex: 0.7;
    max-width: 400px;
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: var(--gold);
}

.faq-item h4 {
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

@media (max-width: 992px) {

    .highlight-content,
    .nutrition-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .highlight-img,
    .nutrition-img {
        max-width: 100%;
    }
}

/* --- Hero Centering and Polish --- */
.hero-centered {
    justify-content: center !important;
    text-align: center;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-content.text-center {
    max-width: 800px;
}

/* --- Oral Visual Polish --- */
.text-white-shadow {
    color: var(--white) !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-large {
    height: 100vh;
}

/* --- Purple Hero Overlay Refinement --- */
.hero.about-hero .hero-overlay,
.hero.background-purple .hero-overlay {
    background: radial-gradient(circle at center, rgba(26, 11, 46, 0.4) 0%, rgba(26, 11, 46, 0.8) 100%);
}

.background-purple {
    background-color: #1A0B2E !important;
}

/* --- Dark Section Support --- */
.dark-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95) 0%, rgba(13, 5, 26, 0.98) 100%);
    padding: 5rem 3rem;
    margin: 4rem 0;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dark-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

/* --- Final UI Polish --- */
.content-area section {
    margin-bottom: 6rem;
}

#special-tip {
    margin-top: 4rem;
}

.tip-card {
    padding: 3rem;
    background: rgba(13, 5, 26, 0.4);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

/* --- Scroll Progress Bar --- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

/* --- Floating Particles System --- */
.floating-elements-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.particle {
    position: absolute;
    color: var(--gold-bright);
    opacity: 0.15;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Image Motion Refinement --- */
.content-img,
.highlight-img,
.nutrition-img {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    will-change: transform;
}

/* --- Distributor Profile Specific Styles --- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.brand-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-item {
    padding: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 160, 89, 0.3);
    transform: scale(1.05);
}

.brand-item img {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.5s ease;
}

.brand-item:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

.brand-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.brand-item:hover h4 {
    color: var(--gold);
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
        gap: 3rem;
    }
}

.who-can-partner,
.our-commitment {
    flex: 1;
    width: 100%;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

.checkmark-list {
    list-style: none;
    margin-top: 2rem;
}

.checkmark-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.registration-section {
    max-width: 1000px;
    margin: 4rem auto;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    color: var(--text-main);
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-form textarea {
    min-height: 120px;
    resize: vertical;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    color: rgba(26, 11, 46, 0.4);
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.partner-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
    cursor: pointer;
}

.partner-form select option {
    background: #1A0B2E;
    color: var(--white);
}

@media (max-width: 768px) {

    .split-layout,
    .form-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* --- Enhanced Brand Modal with Owner Info --- */
.owner-photo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.owner-photo-aura {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold), transparent, var(--gold-bright), transparent, var(--gold));
    animation: auraRotate 4s linear infinite;
    opacity: 0.6;
}

.owner-photo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--gold);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: photoPulse 4s ease-in-out infinite;
}

.owner-photo svg {
    width: 60%;
    height: 60%;
}

@keyframes auraRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes photoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(197, 160, 89, 0.4);
    }
}

.owner-content {
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.owner-text {
    font-style: italic;
    color: var(--white);
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9;
}

.owner-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.established-text {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 2px;
}

.birthday-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Legacy Celebration Section Styles --- */
.legacy-celebration {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.legacy-card.birthday-style {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(26, 11, 46, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.legacy-card.birthday-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.legacy-card .established-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

.legacy-journey-title {
    margin-bottom: 1.5rem;
}

.legacy-journey-title .gold-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 4px;
    font-weight: 800;
    display: block;
}

.legacy-card .typewriter-container {
    min-height: 3rem;
    margin-bottom: 2.5rem;
}

.legacy-card .birthday-tagline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #ffffff !important;
    opacity: 1;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: 900 !important;
}

.legacy-actions {
    margin-top: 2rem;
}

.legacy-card .btn-magnetic {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--gold-gradient);
    color: var(--primary);
    border-radius: 50px;
    border: none;
    font-weight: 700;
}

/* --- Owner Message Style adjustments --- */
.owner-message-style.birthday-style {
    background: rgba(26, 11, 46, 0.98) !important;
}

.owner-message-style .owner-text {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Laser 10 Massage Oil Specific Styles --- */
.where-to-apply,
.actions-section,
.how-to-use,
.why-choose-section,
.safety-info {
    padding: 80px 0;
    text-align: center;
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.apply-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    cursor: default;
}

.apply-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.apply-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.apply-footer {
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.8;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.action-card {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-mid);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-card:hover {
    transform: scale(1.03);
    border-color: var(--gold);
}

.action-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: 700;
}

.action-card p {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.5;
}

.usage-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.usage-warning {
    margin-top: 4rem;
    color: #ff4d4d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-list {
    list-style: none;
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: left;
}

.safety-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    padding-left: 2rem;
}

.safety-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.ingredient-list {
    font-size: 1.2rem;
    line-height: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-list span {
    color: var(--gold);
    margin: 0 10px;
}

/* --- Luxury Massage Oil Overhaul --- */
.luxury-oil-page {
    background-color: #0D051A;
    color: var(--white);
}

.oil-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1A0B2E 0%, #0D051A 100%);
}

.oil-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('photos/luxury_oil_premium.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: blur(5px);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.oil-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.oil-hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.oil-hero .line-1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.oil-hero .line-2 {
    font-style: italic;
}

.oil-motto {
    font-size: 1.5rem;
    color: var(--gold-luminous);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Interactive Body Map --- */
.body-map-section {
    padding: 100px 0;
    background: #0D051A;
}

.body-map-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 50px;
}

.body-visual {
    position: relative;
    width: 400px;
    height: 600px;
    background: url('photos/human_silhouette.png') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.body-visual-master {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 700px;
    background: url('photos/bodymap.svg') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.1));
}

@media (max-width: 768px) {
    .body-visual-master {
        height: min(500px, 80vw);
        margin: 0 auto;
    }

    .body-map-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .detail-panel {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1rem;
    }

    .hotspot {
        width: 12px;
        height: 12px;
    }
}

.hotspot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--gold);
    animation: pulseGold 2s infinite;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@keyframes pulseGold {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 5px var(--gold);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 0 0 20px var(--gold);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 5px var(--gold);
    }
}

.hotspot-label {
    position: absolute;
    white-space: nowrap;
    background: rgba(197, 160, 89, 0.9);
    color: #0D051A;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateY(-30px);
}

/* --- Luxury Virtues Grid --- */
.virtues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 10%;
}

.virtue-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.virtue-card:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
    transform: translateY(-15px) scale(1.02);
}

.virtue-num {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.05;
    position: absolute;
    bottom: -20px;
    right: -10px;
    line-height: 1;
}

.virtue-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-bright);
}

.virtue-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* --- Alchemical Ingredients --- */
.alchemy-section {
    padding: 120px 0;
    background: radial-gradient(circle at top, #1A0B2E 0%, #0D051A 100%);
}

.alchemy-list {
    display: flex;
    overflow-x: auto;
    gap: 3rem;
    padding: 4rem 5%;
    scrollbar-width: none;
}

.alchemy-list::-webkit-scrollbar {
    display: none;
}

.alchemy-item {
    min-width: 250px;
    text-align: center;
}

.alchemy-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: rgba(197, 160, 89, 0.05);
    transition: 0.5s;
}

.alchemy-item:hover .alchemy-icon {
    background: var(--gold);
    color: #0D051A;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px var(--gold);
}

.alchemy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(-- gold-luminous);
}

@media (max-width: 768px) {
    .oil-hero h1 {
        font-size: 3.5rem;
    }

    .virtue-card {
        padding: 2rem;
    }
}


#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Masterpiece Hero Parallax Support */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Magnetic Card Effects */
.magnetic-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, background 0.3s;
}

.magnetic-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 0px);
    left: var(--mouse-x, 0px);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Body Map Revamp */
.body-map-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    margin-top: 60px;
}

.body-visual-master {
    position: relative;
    width: 450px;
    height: 650px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 80%);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 40px;
    overflow: hidden;
}

.body-visual-master::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photos/body.png') no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

.masterpiece-hotspot {
    z-index: 20;
    transition: 0.3s;
}

.masterpiece-hotspot:hover {
    transform: translate(-50%, -50%) scale(2);
    background: var(--gold-bright);
}

.detail-panel {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    opacity: 0.5;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.detail-panel.active {
    opacity: 1;
    transform: translateX(0);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.panel-icon {
    font-size: 3rem;
    margin-top: 2rem;
    opacity: 0.3;
}

#panel-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

#panel-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Tutoring: Tooltip Fallback for Mobile */
@media (max-width: 992px) {
    .body-map-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .detail-panel {
        width: 100%;
    }
}

/* --- Luxury Products Collection Styles --- */
.collection-page {
    background: #0D051A;
    color: var(--white);
}

.collection-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top, #1A0B2E 0%, #0D051A 100%);
    position: relative;
}

.collection-hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.filter-luxury-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

.filter-luxury-btn {
    background: none;
    border: none;
    color: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.6;
}

.filter-black-btn {
    background: #000 !important;
    color: #fff !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-black-btn.active {
    background: var(--gold-gradient) !important;
    color: #000 !important;
}

.filter-luxury-btn.active {
    background: var(--gold-gradient);
    color: #0D051A;
    opacity: 1;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.elite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding: 2rem 8%;
    max-width: 1600px;
    margin: 0 auto;
}

.elite-product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.elite-product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: #0D051A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.card-image-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: transform 0.4s ease;
}

.elite-product-card:hover .card-image-wrap {
    transform: scale(1.08);
}

.card-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold-bright);
    line-height: 1.3;
}

.card-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card-info .details {
    opacity: 0.6;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    min-height: 2.8rem;
}

.card-btns {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    margin-top: auto;
}

.btn-card {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
    flex: 1;
}

.btn-card.primary {
    background: var(--gold);
    color: #0D051A;
}

.btn-card.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    .collection-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .elite-grid {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-luxury-bar {
        justify-content: flex-start;
        padding: 1rem;
        border-radius: 0;
    }
}

/* --- Masterpiece Products Enhancement --- */
.masterpiece-hero-wrap {
    position: relative;
    overflow: hidden;
}

#collection-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.elite-product-card.magnetic-card {
    will-change: transform;
    transform-style: preserve-3d;
}

.elite-product-card.magnetic-card::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 0px);
    left: var(--mouse-x, 0px);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Pulsing Filter Button Tutoring */
.filter-luxury-btn.active {
    animation: goldPulseBtn 2s infinite;
}

@keyframes goldPulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.blog-page {
    background: #341C4F;
    /* Softer, lower-contrast purple */
    color: var(--white);
}

.blog-page .hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.blog-page .hero-bg.atmospheric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #341C4F !important;
    animation: none !important;
    opacity: 1 !important;
}

.blog-page .aura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    /* Ghost-like presence */
}

.blog-page .hero-overlay {
    background: radial-gradient(circle at center, rgba(82, 58, 114, 0.4) 0%, #341C4F 100%);
    z-index: 2;
}

.blog-page .hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Hanging Bulb System */
.hanging-bulb-system {
    position: absolute;
    right: 10%;
    top: -20px;
    height: 60%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top center;
    animation: bulbSwing 8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: var(--transition-slow);
}

.hanging-bulb-system:hover {
    animation-duration: 4s;
    filter: brightness(1.2);
}

.bulb-wire {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-deep) 0%, var(--gold) 80%, var(--gold-bright) 100%);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    position: relative;
}

.bulb-head {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -15px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bulb-icon {
    font-size: 7rem;
    z-index: 2;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    animation: bulbPulse 5s infinite ease-in-out, bulbFlicker 10s infinite;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    transform: rotate(180deg);
}

.hanging-bulb-system:hover .bulb-icon {
    transform: rotate(180deg) scale(1.1);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.9));
}

.bulb-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 200, 0, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 5s infinite ease-in-out;
    pointer-events: none;
    mix-blend-mode: screen;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

@keyframes bulbSwing {

    0%,
    100% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(4deg);
    }
}

@keyframes bulbPulse {

    0%,
    100% {
        transform: rotate(180deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 1;
    }
}

@keyframes bulbFlicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.8;
        filter: brightness(0.9);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
        filter: blur(10px);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.7;
        filter: blur(2px);
    }
}

@media (max-width: 992px) {
    .hanging-bulb-system {
        right: 5%;
        height: 40%;
    }

    .bulb-icon {
        font-size: 5rem;
    }

    .bulb-glow {
        width: 150px;
        height: 150px;
    }
}

.blog-page .gold-text {
    color: var(--gold-bright) !important;
}

.blog-page .text-white-shadow {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.usage-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .usage-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .usage-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .usage-steps-grid {
        grid-template-columns: 1fr;
    }
}

.usage-step-card {
    position: relative;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.usage-step-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.feature-points-list {
    list-style: none;
    margin-top: 30px;
}

.feature-points-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-points-list .check {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(197, 160, 89, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-fan-out {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    /* Force visibility in hero */
    transform: none !important;
}

.features-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-main-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-img:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.info-item {
    padding: 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.info-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-bright);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-weight: 600;
    text-align: center;
}

.final-motto .motto-glass {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* --- Blog Enhancement Styles --- */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 5%;
    background: rgba(255, 245, 247, 0.85);
    /* Light Baby Pink Background */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: sticky;
    top: 90px;
    z-index: 100;
    margin: 4rem auto;
    max-width: fit-content;
    border-radius: 50px;
    border: 1px solid rgba(26, 11, 46, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.category-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(26, 11, 46, 0.1);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: var(--gold-glow);
}

.featured-blog {
    margin-bottom: 5rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
    margin: 0 auto 5rem auto;
}

.featured-img {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content p {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-mid);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-content {
    padding: 2.5rem;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    color: var(--gold-bright);
}

.blog-card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-deep);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1A0B2E 100%);
    border-radius: 40px;
    padding: 5rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 2.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    border-radius: 15px;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--gold-glow);
}

@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-categories {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem;
    }

    .category-btn {
        white-space: nowrap;
    }

    .newsletter-form {
        flex-direction: column;
    }
}


/* --- Premium Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05010C;
    /* Super dark purple/black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), visibility 1s;
}

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

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.preloader-visual-area {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.preloader-logo-wrap {
    position: relative;
    z-index: 10;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo-wrap img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.4));
    animation: logoPulse 2s infinite ease-in-out;
}

.aura-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
}

.aura-ring-1 {
    width: 170px;
    height: 170px;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold-deep);
    border-left-color: rgba(197, 160, 89, 0.1);
    animation: rotateAura 3s linear infinite;
}

.aura-ring-2 {
    width: 140px;
    height: 140px;
    border-right-color: var(--gold-bright);
    border-left-color: var(--gold-luminous);
    border-top-color: rgba(244, 220, 161, 0.1);
    animation: rotateAura 2s linear infinite reverse;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.preloader-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    animation: fillProgress 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.6));
    }
}

@keyframes rotateAura {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}