/* N2B Jewellers - Royal Beverage Inspired Luxury Styling */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --color-bg-light: #FAF8F5;
    --color-bg-cream: #F4EFE6;
    --color-bg-dark: #070B14;
    --color-bg-navy: #0A1224;
    --color-navy-card: #0E1A33;
    
    --color-gold-primary: #C79A2B;
    --color-gold-bright: #E2B542;
    --color-gold-light: #F7E39E;
    --color-gold-dark: #916E16;
    
    --color-text-dark: #121624;
    --color-text-muted: #647087;
    --color-text-light: #FAF8F5;
    --color-text-gold: #D6A838;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Page Transition Overlay */
#page-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #070B14 0%, #0A1224 50%, #172445 100%);
    z-index: 99999;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-curtain.active {
    transform: translateY(0);
    pointer-events: all;
}

#page-curtain .curtain-logo {
    width: 140px;
    filter: drop-shadow(0 0 25px rgba(226, 181, 66, 0.4));
    animation: curtainPulse 1.2s infinite alternate ease-in-out;
}

@keyframes curtainPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* Typography */
.a-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 11vw, 10.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.02em;
    user-select: none;
    pointer-events: none;
}

.a-main-title--outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(199, 154, 43, 0.28);
}

.a-heading--h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-text-dark);
}

.a-heading--h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
}

.a-heading--h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
}

.a-heading--h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.a-heading--h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

.a-heading--h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

.a-heading--h7 {
    font-size: 0.95rem;
    font-weight: 500;
}

.a-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-gold-primary);
    margin-bottom: 12px;
}

.a-text {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.h-gold { color: var(--color-gold-primary) !important; }
.h-bright-gold { color: var(--color-gold-bright) !important; }
.h-navy { color: var(--color-bg-navy) !important; }
.h-white { color: #ffffff !important; }
.h-center { text-align: center; }
.h-right { text-align: right; }

/* Buttons */
.a-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.a-btn--gold {
    background-color: var(--color-gold-primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(199, 154, 43, 0.35);
}

.a-btn--gold:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(199, 154, 43, 0.45);
    color: #ffffff;
}

.a-btn--white {
    background-color: #ffffff;
    color: var(--color-bg-navy);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.a-btn--white:hover {
    background-color: var(--color-gold-light);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

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

.a-btn--outline:hover {
    background: var(--color-gold-primary);
    color: #ffffff;
}

.a-btn--circle {
    border-radius: 9999px;
}

/* Header (Royal Beverage Style) */
.o-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.o-header.is-scrolled {
    background: rgba(250, 248, 245, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 84px;
}

.o-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.h-align-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.o-header .a-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: 100;
}

.o-header .a-logo img,
.o-header .a-logo svg {
    height: 135px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 3px 14px rgba(199, 154, 43, 0.45));
    transition: var(--transition-smooth);
}

.o-header .a-logo:hover img,
.o-header .a-logo:hover svg {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 22px rgba(226, 181, 66, 0.7));
}

.o-header.is-scrolled .a-logo img,
.o-header.is-scrolled .a-logo svg {
    height: 102px;
}

/* Header Action Icons */
.a-icon-menubar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border-radius: 50%;
    background: rgba(199, 154, 43, 0.12);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(199, 154, 43, 0.3);
}

.a-icon-menubar span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-navy);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.a-icon-menubar:hover {
    background: var(--color-gold-primary);
    transform: scale(1.05);
}

.a-icon-menubar:hover span {
    background-color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.a-btn--header-enquiry {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: var(--color-bg-navy);
    color: var(--color-gold-bright);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 181, 66, 0.4);
}

.a-btn--header-enquiry:hover {
    background: var(--color-gold-primary);
    color: #ffffff;
    border-color: var(--color-gold-primary);
}

/* Mobile & Fullscreen Menu Drawer */
.m-header__menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background: #070B14;
    z-index: 2000;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.m-header__menu-mobile.is-active {
    left: 0;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.bg-overlay.is-active {
    opacity: 1;
    pointer-events: all;
}

.a-icon--close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.a-icon--close:hover {
    background: var(--color-gold-primary);
    transform: rotate(90deg);
}

.m-header__menu-list {
    list-style: none;
    margin-top: 40px;
}

.m-header__menu-list li {
    margin-bottom: 24px;
}

.m-header__menu-list li a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FAF8F5;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.m-header__menu-list li a:hover {
    color: var(--color-gold-bright);
    transform: translateX(10px);
}

.m-header__menu-list .menu-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    background: var(--color-gold-primary);
    color: #ffffff;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Submenu Flyout with images */
.drawer-categories {
    margin-top: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(199, 154, 43, 0.25);
}

.drawer-categories a {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    color: #A0ABC0 !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.drawer-categories a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: #FFFFFF;
    padding: 2px;
}

.drawer-categories a:hover {
    color: var(--color-gold-light) !important;
}

/* HERO SECTION (Royal Beverage Exact Luxury Alignment & Animations) */
.o-hero--home {
    position: relative;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #FFFFFF;
}

/* Gold Galaxy Cosmic Nebula Ambient Glow */
.hero-galaxy-nebula {
    position: absolute;
    inset: -10%;
    background: 
        radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 248, 220, 0.5) 0%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(circle 38% at 18% 30%, rgba(226, 181, 66, 0.07) 0%, transparent 65%),
        radial-gradient(circle 38% at 82% 65%, rgba(226, 181, 66, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: galaxyNebulaGlow 14s ease-in-out infinite alternate;
}

@keyframes galaxyNebulaGlow {
    0% {
        transform: scale(0.98);
        opacity: 0.75;
    }
    100% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* Gold Galaxy Canvas for Shimmering Stars & Glittering Stardust */
.hero-galaxy-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Minimal Hero Flank Decorations (Left & Right Atelier Accents) */
.hero-flank {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
}

.hero-flank--left {
    left: clamp(24px, 3.5vw, 60px);
}

.hero-flank--right {
    right: clamp(24px, 3.5vw, 60px);
}

.flank-guide-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flank-line-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(10, 18, 36, 0.45);
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.flank-line-gem {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--color-gold-primary), transparent);
}

.hero-flank--right .flank-line-gem {
    background: linear-gradient(to top, var(--color-gold-primary), transparent);
}

.hero-flank-card {
    text-decoration: none;
    background: linear-gradient(135deg, rgba(14, 23, 44, 0.94) 0%, rgba(8, 13, 26, 0.97) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 181, 66, 0.35);
    border-radius: 18px;
    padding: 10px 16px 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 35px rgba(8, 13, 26, 0.22), 0 2px 8px rgba(199, 154, 43, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 230px;
}

.hero-flank--left .hero-flank-card {
    animation: floatFlankLeft 6.5s ease-in-out infinite alternate;
}

.hero-flank--right .hero-flank-card {
    animation: floatFlankRight 6.5s ease-in-out infinite alternate 1.8s;
}

@keyframes floatFlankLeft {
    0% { transform: translateY(-4px) rotate(-0.5deg); }
    100% { transform: translateY(6px) rotate(0.5deg); }
}

@keyframes floatFlankRight {
    0% { transform: translateY(6px) rotate(0.5deg); }
    100% { transform: translateY(-4px) rotate(-0.5deg); }
}

.hero-flank-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(226, 181, 66, 0.7);
    box-shadow: 0 18px 40px rgba(8, 13, 26, 0.35), 0 4px 16px rgba(199, 154, 43, 0.3);
    background: linear-gradient(135deg, rgba(18, 29, 56, 0.96) 0%, rgba(10, 16, 32, 0.98) 100%);
}

.flank-card-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: radial-gradient(circle, #FFFFFF 0%, #FAF8F5 100%);
    border: 1px solid rgba(226, 181, 66, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-flank-card:hover .flank-card-thumb {
    transform: scale(1.08) rotate(3deg);
}

.flank-card-thumb img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 2px 6px rgba(199, 154, 43, 0.3));
}

.flank-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.flank-card-tag {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--color-gold-bright);
    text-transform: uppercase;
}

.flank-card-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 1px 0;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.flank-card-spec {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

/* Minimal Geometric Luxury Hallmark Background Motifs */
.hero-bg-motif {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    animation: rotateMotif 45s linear infinite;
}

.hero-bg-motif--left {
    left: clamp(14px, 2.8vw, 42px);
}

.hero-bg-motif--right {
    right: clamp(14px, 2.8vw, 42px);
    animation-direction: reverse;
}

@keyframes rotateMotif {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.m-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(-4px);
}

/* Rotating Luxury Atelier Emblem Badge */
.m-hero--emblem-wrap {
    margin-bottom: 6px;
    position: relative;
    z-index: 4;
    transition: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}

.m-hero--emblem {
    position: relative;
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-hero--emblem:hover {
    transform: scale(1.08);
}

.emblem-outer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateSlowly 28s linear infinite;
    transform-origin: center center;
}

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

.emblem-center {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle, #0E172C 0%, #080D1A 100%);
    border: 1.5px solid rgba(226, 181, 66, 0.55);
    box-shadow: 0 6px 20px rgba(8, 13, 26, 0.35), inset 0 0 10px rgba(226, 181, 66, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    pointer-events: none;
}

.emblem-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--color-gold-bright);
    letter-spacing: 1.5px;
}

.emblem-year {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(226, 181, 66, 0.6);
}

.emblem-sub {
    font-size: 7px;
    font-weight: 800;
    color: var(--color-gold-light);
    letter-spacing: 1.2px;
}

/* Royal Navy High-Volume Casting Kicker Badge */
.hero-navy-kicker-wrap {
    text-align: center;
    margin: 10px 0 6px;
    z-index: 6;
    position: relative;
}

.hero-navy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0E172C 0%, #080D1A 100%);
    border: 1px solid rgba(226, 181, 66, 0.45);
    border-radius: 9999px;
    padding: 6px 22px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #FFFFFF;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(8, 13, 26, 0.22), 0 2px 8px rgba(199, 154, 43, 0.15);
    transition: var(--transition-smooth);
}

.hero-navy-kicker:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold-bright);
    box-shadow: 0 12px 30px rgba(8, 13, 26, 0.32), 0 4px 12px rgba(199, 154, 43, 0.25);
}

.hero-navy-kicker .kicker-gem {
    color: var(--color-gold-bright);
    font-size: 0.72rem;
    animation: gemPulse 2s infinite ease-in-out alternate;
}

/* Grand 3D Embossed Real Gold Title (Unblocked & Above Product) */
.a-hero--brand-title-wrap {
    text-align: center;
    margin: 6px 0 12px;
    z-index: 4;
    position: relative;
    user-select: none;
    transition: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}

.a-hero--brand-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.05;
    margin: 0;
    
    /* Real 22KT Casting Gold Multi-Stop Metallic Texture */
    background: linear-gradient(
        135deg,
        #BF953F 0%,
        #FCF6BA 22%,
        #B38728 42%,
        #FBF5B7 62%,
        #8C6314 82%,
        #ECC86C 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* High-Precision 3D Embossed Bevel & Chiseled Metal Depth */
    filter: drop-shadow(0 2px 0 #FFF9D2)
            drop-shadow(0 -1.5px 1px #6E4F0A)
            drop-shadow(0 6px 14px rgba(145, 110, 22, 0.35))
            drop-shadow(0 14px 28px rgba(10, 18, 36, 0.1));
            
    animation: goldMetallicShine 6s ease-in-out infinite alternate;
}

@keyframes goldMetallicShine {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 2px 0 #FFF9D2)
                drop-shadow(0 -1.5px 1px #6E4F0A)
                drop-shadow(0 6px 14px rgba(145, 110, 22, 0.35))
                drop-shadow(0 14px 28px rgba(10, 18, 36, 0.1));
    }
    100% {
        background-position: 100% 50%;
        filter: drop-shadow(0 2px 0 #FFFFFF)
                drop-shadow(0 -1.5px 1px #543904)
                drop-shadow(0 8px 18px rgba(226, 181, 66, 0.48))
                drop-shadow(0 16px 32px rgba(10, 18, 36, 0.12));
    }
}

/* Luxury Filigree Gold Divider */
.hero-divider-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 8px auto 0;
    max-width: 320px;
}

.hero-divider-gold .divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #C79A2B, transparent);
}

.hero-divider-gold .divider-gem {
    color: var(--color-gold-bright);
    font-size: 1rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(226, 181, 66, 0.85));
    animation: gemPulse 2s infinite ease-in-out alternate;
}

@keyframes gemPulse {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 1; }
}

/* Centerpiece Hero Product Presentation (Cleanly Positioned Beneath Text - Big Size) */
.m-hero--img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.m-hero--img {
    position: relative;
    width: clamp(380px, 48vw, 680px);
    height: clamp(280px, 34vw, 410px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 44px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

/* Hero 5-Product Swiper Presentation */
.hero-product-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.hero-product-swiper .swiper-wrapper {
    align-items: center;
}

.hero-product-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out;
}

.hero-product-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 24px;
}

/* Luxury Floating Micro-Badge in Midnight Royal Navy */
.hero-slide-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(14, 23, 44, 0.96) 0%, rgba(8, 13, 26, 0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 181, 66, 0.45);
    border-radius: 9999px;
    padding: 7px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(8, 13, 26, 0.28), 0 2px 10px rgba(199, 154, 43, 0.2);
    white-space: nowrap;
    z-index: 12;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-slide-badge .badge-cat {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: var(--color-gold-bright);
    text-transform: uppercase;
}

.hero-slide-badge .badge-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold-bright);
    box-shadow: 0 0 6px rgba(226, 181, 66, 0.8);
}

.hero-slide-badge .badge-title {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

/* Slider Navigation Arrows in Midnight Royal Navy */
.hero-slider-nav {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0E172C 0%, #080D1A 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(226, 181, 66, 0.48);
    color: var(--color-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(8, 13, 26, 0.25), 0 2px 8px rgba(199, 154, 43, 0.2);
    user-select: none;
}

.hero-slider-prev {
    left: -44px;
}

.hero-slider-next {
    right: -44px;
}

.hero-slider-nav:hover {
    background: var(--color-gold-primary);
    color: #080D1A;
    border-color: var(--color-gold-primary);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 10px 28px rgba(199, 154, 43, 0.45);
}

.hero-slider-nav svg {
    display: block;
    transition: transform 0.25s ease;
}

.hero-slider-prev:hover svg {
    transform: translateX(-2px);
}

.hero-slider-next:hover svg {
    transform: translateX(2px);
}

/* Slider Pagination Dots (Positioned with 34px+ Clearance Beneath Badge) */
.hero-swiper-pagination {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 20;
}

.hero-bullet {
    display: inline-block;
    width: 22px;
    height: 4px;
    border-radius: 4px;
    background: rgba(199, 154, 43, 0.25);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bullet:hover {
    background: rgba(199, 154, 43, 0.55);
    transform: scaleY(1.2);
}

.hero-bullet.hero-bullet-active {
    width: 40px;
    background: linear-gradient(90deg, #BF953F, #ECC86C, #BF953F);
    box-shadow: 0 0 12px rgba(226, 181, 66, 0.7);
}

.hero-product-aura {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 181, 66, 0.22) 0%, rgba(226, 181, 66, 0.06) 55%, transparent 72%);
    filter: blur(28px);
    z-index: 1;
    pointer-events: none;
    animation: auraBreathe 4s ease-in-out infinite alternate;
}

@keyframes auraBreathe {
    0% { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.m-hero--img .hero-main-product {
    width: 92%;
    max-height: 86%;
    object-fit: contain;
    background: transparent;
    z-index: 5;
    position: relative;
    filter: drop-shadow(0 16px 30px rgba(10, 18, 36, 0.12)) drop-shadow(0 4px 10px rgba(199, 154, 43, 0.18));
    animation: floatLuxury 5s ease-in-out infinite alternate;
}

@keyframes floatLuxury {
    0% {
        transform: translateY(-8px) rotate(-1deg);
    }
    50% {
        transform: translateY(8px) rotate(1deg);
    }
    100% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

.hero-product-shadow {
    display: none !important;
}

@keyframes shadowPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.45;
    }
}

/* Twinkling Diamond Sparkle Animations (Framing Product Without Colliding with Navigation Arrows) */
.a-img--dot {
    position: absolute;
    pointer-events: none;
    z-index: 7;
    transition: transform 0.15s ease-out;
}

.dot-1 {
    top: 0%;
    left: 6%;
    width: 42px;
    animation: twinkleSparkle 3.2s ease-in-out infinite;
    animation-delay: 0s;
}

.dot-2 {
    top: 2%;
    right: 6%;
    width: 46px;
    animation: twinkleSparkle 3.8s ease-in-out infinite;
    animation-delay: 0.7s;
}

.dot-3 {
    bottom: 22%;
    left: 4%;
    width: 34px;
    animation: twinkleSparkle 2.9s ease-in-out infinite;
    animation-delay: 1.4s;
}

.dot-4 {
    bottom: 20%;
    right: 4%;
    width: 40px;
    animation: twinkleSparkle 3.5s ease-in-out infinite;
    animation-delay: 2.1s;
}

/* dot-5 and dot-6 placed safely in upper quarters (well above middle navigation arrows) */
.dot-5 {
    top: 14%;
    left: -8%;
    width: 30px;
    animation: twinkleSparkle 2.6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.dot-6 {
    top: 14%;
    right: -8%;
    width: 34px;
    animation: twinkleSparkle 3.4s ease-in-out infinite;
    animation-delay: 1.8s;
}

@media (max-width: 991px) {
    .hero-slider-prev {
        left: -16px;
    }
    .hero-slider-next {
        right: -16px;
    }
    .hero-slide-badge {
        padding: 5px 16px;
        gap: 8px;
        max-width: 92%;
    }
    .hero-slide-badge .badge-title {
        font-size: 0.76rem;
    }
}

@media (max-width: 640px) {
    .m-hero--img {
        width: 96%;
        height: 280px;
        margin: 6px auto 38px;
    }
    .hero-slider-nav {
        width: 36px;
        height: 36px;
    }
    .hero-slider-prev {
        left: -8px;
    }
    .hero-slider-next {
        right: -8px;
    }
    .hero-slide-badge {
        bottom: 6px;
        padding: 4px 12px;
        gap: 6px;
    }
    .hero-slide-badge .badge-cat {
        font-size: 0.58rem;
    }
    .hero-slide-badge .badge-title {
        font-size: 0.7rem;
    }
    .hero-swiper-pagination {
        bottom: -22px;
    }
}

@keyframes twinkleSparkle {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.4;
        filter: drop-shadow(0 0 4px rgba(226, 181, 66, 0.4));
    }
    50% {
        transform: scale(1.3) rotate(25deg);
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(226, 181, 66, 1)) drop-shadow(0 0 6px #FFFFFF);
    }
    100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.4;
        filter: drop-shadow(0 0 4px rgba(226, 181, 66, 0.4));
    }
}

/* Tagline & Call-to-Action Group */
.a-hero--text {
    max-width: 1200px;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 6px auto 22px;
    line-height: 1.45;
    white-space: nowrap;
    text-align: center;
    position: relative;
    z-index: 3;
    text-shadow: 0 0 12px #FFFFFF, 0 0 24px #FFFFFF, 0 0 36px #FFFFFF;
    animation: fadeInUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.25s;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
    animation: fadeInUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.45s;
}

.hero-cta-group .a-btn {
    padding: 16px 38px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-cta-group .a-btn--outline {
    background: linear-gradient(135deg, #0E172C 0%, #080D1A 100%);
    border: 1.5px solid rgba(226, 181, 66, 0.55);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(8, 13, 26, 0.25), 0 2px 8px rgba(199, 154, 43, 0.2);
}

.hero-cta-group .a-btn--outline:hover {
    background: var(--color-gold-primary);
    color: #080D1A;
    border-color: var(--color-gold-primary);
    box-shadow: 0 12px 30px rgba(199, 154, 43, 0.45);
    transform: translateY(-3px);
}

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

/* Luxury Button Light Shimmer */
.a-btn--shimmer {
    position: relative;
    overflow: hidden;
}

.a-btn--shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: buttonLightSheen 4.5s infinite ease-in-out;
}

@keyframes buttonLightSheen {
    0%, 20% {
        left: -100%;
    }
    40%, 100% {
        left: 200%;
    }
}

/* Precisely Centered Scroll Indicator */
.a-hero--loader {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    z-index: 10;
    animation: fadeInLoader 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.65s;
}

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

.a-hero--loader span {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.a-hero--loader::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--color-gold-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ABOUT SECTION (Royal Beverage Style with rotated overlapping products) */
.o-about {
    padding: 120px 0;
    background-color: var(--color-bg-light);
    position: relative;
}

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

.o-about .m-content {
    max-width: 560px;
}

.o-about .m-content .a-heading--h1 {
    margin-bottom: 24px;
}

.o-about .m-content .a-text {
    margin-bottom: 32px;
}

/* Tilted 3-Card Product Showcase (.m-products--rotated) */
.m-products--rotated {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-products--rotated .rotated-card {
    position: absolute;
    width: 260px;
    height: 340px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(10, 18, 36, 0.08);
    transition: var(--transition-bounce);
    border: 1px solid rgba(199, 154, 43, 0.15);
}

.m-products--rotated .rotated-card img {
    width: 85%;
    height: 70%;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.m-products--rotated .card-1 {
    transform: translate(-90px, 20px) rotate(-14deg);
    z-index: 1;
}

.m-products--rotated .card-2 {
    transform: translate(0px, -20px) rotate(0deg);
    z-index: 2;
    box-shadow: 0 25px 50px rgba(199, 154, 43, 0.16);
}

.m-products--rotated .card-3 {
    transform: translate(90px, 20px) rotate(14deg);
    z-index: 1;
}

.m-products--rotated:hover .card-1 {
    transform: translate(-120px, 25px) rotate(-18deg);
}

.m-products--rotated:hover .card-2 {
    transform: translate(0px, -35px) scale(1.04);
}

.m-products--rotated:hover .card-3 {
    transform: translate(120px, 25px) rotate(18deg);
}

.m-products--rotated .card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-top: 14px;
}

.m-products--rotated .card-weight {
    font-size: 0.8rem;
    color: var(--color-gold-primary);
    font-weight: 600;
}

/* PRODUCTS SWIPER SECTION (Royal Beverage Signature Wave Section) */
.o-products--wave-section {
    position: relative;
    background: #080D1A;
    color: #FFFFFF;
    padding: 100px 0 140px;
    overflow: hidden;
}

.h-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.h-wave--outer-top {
    top: -1px;
}

.h-wave--outer-bottom {
    bottom: -1px;
}

.svg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.o-products--wave-section .container {
    position: relative;
    z-index: 2;
}

.swiper-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.o-products--wave-section .a-heading--h1 {
    color: #FFFFFF;
}

.swiper-container-custom {
    position: relative;
    z-index: 3;
    overflow: visible;
}

.product-slide-card {
    background: #0E172C;
    border-radius: 28px;
    padding: 40px 36px;
    border: 1px solid rgba(199, 154, 43, 0.22);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.product-slide-card:hover {
    border-color: var(--color-gold-bright);
    transform: translateY(-8px);
    box-shadow: none;
}

.product-slide-card .slide-img-wrap {
    height: 320px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(199, 154, 43, 0.25);
    box-shadow: none;
    overflow: hidden;
}

.product-slide-card .slide-img-wrap img {
    max-height: 92%;
    max-width: 92%;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 12px;
    filter: none;
    transition: var(--transition-smooth);
}

.product-slide-card:hover .slide-img-wrap img {
    transform: scale(1.08) rotate(3deg);
}

.product-slide-card .slide-info {
    display: flex;
    flex-direction: column;
}

.product-slide-card .slide-info .purity-pill {
    align-self: flex-start;
    background: rgba(199, 154, 43, 0.18);
    color: var(--color-gold-light);
    border: 1px solid rgba(199, 154, 43, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.product-slide-card .slide-info .slide-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.25;
}

.product-slide-card .slide-info .slide-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #8E9AAF;
}

.product-slide-card .slide-info .slide-specs span strong {
    color: #FFFFFF;
    font-weight: 500;
}

/* Swiper Navigation & Pagination */
.m-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(199, 154, 43, 0.3);
    color: var(--color-gold-bright) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-gold-primary);
    color: #ffffff !important;
}

/* MARQUEE TICKER (Royal Beverage Infinite Ticker) */
.o-marquee-section {
    padding: 30px 0;
    background: #060912;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(199, 154, 43, 0.15);
    border-bottom: 1px solid rgba(199, 154, 43, 0.15);
}

.m-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    white-space: nowrap;
}

.m-marquee__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marqueeScroll 28s linear infinite;
}

.m-marquee--reverse .m-marquee__inner {
    animation: marqueeScrollReverse 32s linear infinite;
}

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

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

.marquee-item {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.marquee-item.h-gold-text {
    color: var(--color-gold-bright);
}

.marquee-item.h-silver-text {
    color: #647087;
}

.marquee-sparkle {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* SPECIALITIES & CATEGORIES GRID */
.o-categories-section {
    padding: 120px 0;
    background-color: var(--color-bg-light);
}

.section-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.category-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    padding: 36px 32px;
    border: 1px solid rgba(199, 154, 43, 0.15);
    box-shadow: 0 16px 36px rgba(10, 18, 36, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: var(--color-gold-primary);
}

.category-card .cat-img-box {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
}

.category-card .cat-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    background: #FFFFFF;
    filter: none;
    transition: var(--transition-bounce);
}

.category-card:hover .cat-img-box img {
    transform: scale(1.1) rotate(-3deg);
}

.category-card .cat-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.category-card .cat-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.category-card .cat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.category-card .cat-link-text {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* VIDEO / SHOWCASE SECTION */
.o-video-section {
    position: relative;
    padding: 100px 0;
    background: #0A1224;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.video-banner-box {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(199, 154, 43, 0.3);
}

.video-banner-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(199, 154, 43, 0.9);
    color: #ffffff;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 0 35px rgba(226, 181, 66, 0.8);
    transition: var(--transition-bounce);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--color-gold-bright);
}

/* FOOTER (Royal Beverage Exact Recreation) */
.o-footer {
    background: #050811;
    color: #FAF8F5;
    padding: 100px 0 40px;
    position: relative;
    border-top: 1px solid rgba(199, 154, 43, 0.2);
}

.m-footer-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.m-footer-brand .footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.m-footer-brand p {
    color: #8E9AAF;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.m-menu--footer ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.m-menu--footer ul li a {
    color: #C3CBE0;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.m-menu--footer ul li a:hover {
    color: var(--color-gold-bright);
    padding-left: 6px;
}

.m-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.m-newsletter p {
    color: #8E9AAF;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.m-newsletter-form {
    display: flex;
    gap: 10px;
}

.a-input--newsletter {
    flex: 1;
    padding: 14px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(199, 154, 43, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.a-input--newsletter:focus {
    border-color: var(--color-gold-bright);
    background: rgba(255, 255, 255, 0.1);
}

.m-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #647087;
}

.m-menu-policy ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.m-menu-policy ul li a {
    color: #647087;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.m-menu-policy ul li a:hover {
    color: var(--color-gold-primary);
}

/* SLIDE-DOWN CONTACT MODAL (Royal Beverage .o-contact) */
.o-contact {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #080E1C;
    z-index: 3000;
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    color: #FFFFFF;
    overflow-y: auto;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.o-contact.is-open {
    top: 0;
}

.a-icon--contact-close {
    position: absolute;
    top: 32px;
    right: 48px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(199, 154, 43, 0.3);
}

.a-icon--contact-close:hover {
    background: var(--color-gold-primary);
    transform: rotate(90deg);
}

.m-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info-col h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contact-detail-box {
    margin-bottom: 24px;
}

.contact-detail-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-gold-bright);
    margin-bottom: 6px;
}

.contact-detail-box p, .contact-detail-box a {
    color: #FFFFFF;
    font-size: 1.15rem;
    text-decoration: none;
}

.contact-form-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(199, 154, 43, 0.25);
    border-radius: 28px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C3CBE0;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-gold-bright);
    background: rgba(255, 255, 255, 0.1);
}

/* PRODUCT SINGLE PAGE (Royal Beverage Nutritional Spec Table & Bottle Carousel) */
.o-hero--single {
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    background: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.single-hero-product {
    width: clamp(260px, 38vw, 520px);
    height: clamp(260px, 38vw, 520px);
    margin: 20px auto;
    object-fit: contain;
    background: #FFFFFF;
    animation: floatGentle 4s infinite alternate ease-in-out;
}

/* Specifications Table (Royal Beverage Nutritional Values Table recreation) */
.m-table {
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(199, 154, 43, 0.2);
    margin-top: 32px;
}

.m-table__box {
    border-bottom: 1px solid #ECE7DE;
}

.m-table__box:last-child {
    border-bottom: none;
}

.m-box__head {
    background: #0A1224;
    color: #FFFFFF;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-box__head .a-heading--h6 {
    color: var(--color-gold-bright);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.m-box__body {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    transition: var(--transition-smooth);
}

.m-box__body:hover {
    background: #FAF8F5;
}

.m-box__body .spec-label {
    font-weight: 600;
    color: var(--color-text-dark);
}

.m-box__body .spec-value {
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Variant Swiper ("Find Your Perfect Size & Fit") */
.variant-slide-card {
    text-align: center;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(199, 154, 43, 0.18);
    transition: var(--transition-smooth);
}

.variant-slide-card:hover {
    border-color: var(--color-gold-primary);
    transform: translateY(-6px);
    box-shadow: none;
}

.variant-slide-card img {
    height: 140px;
    width: 140px;
    object-fit: contain;
    margin-bottom: 16px;
    background: #FFFFFF;
    filter: none;
    transition: var(--transition-bounce);
}

.variant-slide-card:hover img {
    transform: scale(1.08);
}

/* Single Product Detail Hero Showcase */
.single-hero-product {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    background: #FFFFFF;
    filter: none;
    animation: floatProductDetail 6s ease-in-out infinite alternate;
}

@keyframes floatProductDetail {
    0% { transform: translateY(-5px); }
    100% { transform: translateY(5px); }
}

.variant-slide-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.variant-slide-card p {
    font-size: 0.85rem;
    color: var(--color-gold-primary);
    font-weight: 600;
}

/* Reveal Animations */
.e-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .o-about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .o-about .m-content {
        margin: 0 auto;
    }
    .m-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-slide-card {
        grid-template-columns: 1fr;
    }
    .m-contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-flank,
    .hero-bg-motif {
        display: none !important;
    }
}

@media (max-width: 1360px) {
    .flank-guide-line {
        display: none;
    }
    .hero-flank--left {
        left: 16px;
    }
    .hero-flank--right {
        right: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .o-header .a-logo img,
    .o-header .a-logo svg {
        height: 96px;
        max-width: 180px;
    }
    .o-header.is-scrolled .a-logo img,
    .o-header.is-scrolled .a-logo svg {
        height: 72px;
    }
    .header-actions .a-btn--header-enquiry {
        display: none;
    }
    .m-products--rotated {
        height: 380px;
    }
    .m-products--rotated .rotated-card {
        width: 200px;
        height: 280px;
    }
    .o-hero--home {
        padding-top: 95px;
        padding-bottom: 30px;
        min-height: 100svh;
        justify-content: center;
    }
    .m-hero__inner {
        transform: translateY(5px);
    }
    .m-hero--emblem {
        width: 86px;
        height: 86px;
    }
    .emblem-center {
        width: 52px;
        height: 52px;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 330px;
        gap: 12px;
    }
    .hero-cta-group .a-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 0.92rem;
    }
    .a-hero--text {
        font-size: 1rem;
        padding: 0 12px;
        margin-bottom: 16px;
        white-space: normal;
    }
    .a-hero--loader {
        display: none;
    }
}
