/* --- LOCAL FONT FACES --- */
@font-face {
    font-family: 'Adelle Sans Basic';
    src: url('assets/fonts/AdelleSansBasic-Regular.woff2') format('woff2'),
         url('assets/fonts/AdelleSansBasic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adelle Sans Basic';
    src: url('assets/fonts/AdelleSansBasic-Bold.woff2') format('woff2'),
         url('assets/fonts/AdelleSansBasic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adelle Sans';
    src: url('assets/fonts/AdelleSans-SemiBold.woff2') format('woff2'),
         url('assets/fonts/AdelleSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minion Variable Concept';
    src: url('assets/fonts/MinionVariableConcept-Roman.woff2') format('woff2'),
         url('assets/fonts/MinionVariableConcept-Roman.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TH SarabunPSK';
    src: url('assets/fonts/THSarabun Bold.woff2') format('woff2'),
         url('assets/fonts/THSarabun Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TH SarabunPSK';
    src: url('assets/fonts/THSarabun BoldItalic.woff2') format('woff2'),
         url('assets/fonts/THSarabun BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sitka';
    src: url('assets/fonts/SitkaVF.woff2') format('woff2'),
         url('assets/fonts/SitkaVF.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* --- DESIGN SYSTEM & CUSTOM VARIABLE --- */
:root {
    --color-primary: #ad1c13;      /* Auspicious Red */
    --color-primary-dark: #5c0803; /* Dark Burgundy */
    --color-primary-light: #d9382e;/* Bright Red */
    --color-accent: #F8CB7B;       /* Premium Gold */
    --color-accent-subtle: #be9954;/* Subdued Gold */
    --color-bg-dark: #230205;      /* Extra deep crimson-black lacquer box background */
    --color-bg-card: #170002;      /* Even darker red/maroon for card background contrast */
    --color-bg-light: #3c0409;     /* Alternating section dark crimson background */
    --color-text-dark: #ffffff;    /* Light text color */
    --color-text-light: #fff3f0;   /* Warm peach-white for text readability on red background */
    --color-text-mute: #dca39a;    /* Muted rose-pink text */
    
    --font-default: 'TH SarabunPSK', 'Adelle Sans Basic', sans-serif;
    --font-heading: 'Minion Variable Concept', 'Sitka', serif;
    --font-body: 'TH SarabunPSK', 'Adelle Sans Basic', sans-serif;
    --font-body-th: 'TH SarabunPSK', 'Adelle Sans Basic', sans-serif;
    --font-emphasis: 'Adelle Sans', 'Adelle Sans Basic', sans-serif;
    --font-serif: 'Sitka', serif;
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.75), 0 0 25px rgba(229, 190, 115, 0.2);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.45);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 14px;
    --navbar-height: 166px;
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    background-color: var(--color-bg-dark);
    /* background-image:  url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDgwIDQwIj48cGF0aCBkPSJNMCA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0zOSA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0wIDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwTTM5IDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlNWJlNzMiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4="); */
    background-repeat: repeat;
    color: var(--color-text-light);
    line-height: 1.72;
    overflow-x: hidden;


}

.icon-svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
}

p {
    font-weight: 300;
}

.lang-th,
.lang-en {
    font-family: inherit;
}

h1 .lang-th,
h2 .lang-th,
h3 .lang-th,
h4 .lang-th,
h5 .lang-th,
h6 .lang-th,
h1 .lang-en,
h2 .lang-en,
h3 .lang-en,
h4 .lang-en,
h5 .lang-en,
h6 .lang-en {
    font-family: inherit;
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

.font-body-th {
    font-family: var(--font-body-th);
}

.font-emphasis {
    font-family: var(--font-emphasis);
}

.font-serif {
    font-family: var(--font-serif);
}

.font-adelle-basic {
    font-family: 'Adelle Sans Basic', sans-serif;
}

.font-adelle-semibold {
    font-family: 'Adelle Sans', sans-serif;
}

.font-minion {
    font-family: 'Minion Variable Concept', serif;
}

.font-th-sarabun {
    font-family: 'TH SarabunPSK', sans-serif;
}

.font-th-sarabunpsk {
    font-family: 'TH SarabunPSK', sans-serif;
}

.font-sitka {
    font-family: 'Sitka', serif;
}

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

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

.text-center { text-align: center; }
.text-gold { color: var(--color-accent) !important; }
.text-white { color: #fff !important; }
.text-white-mute { color: var(--color-text-mute) !important; }
.border-gold-subtle { border: 1px solid rgba(205, 162, 82, 0.3); }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-accent) 0%, #a88a2c 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(205, 162, 82, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 162, 82, 0.5);
    background: linear-gradient(135deg, #f5d162 0%, var(--color-accent) 100%);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 162, 82, 0.3);
}

.btn-full {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    padding: 6px 14px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.badge-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    padding: 6px 14px;
   
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.badge-gold i {
    font-size: 13px;
    line-height: 1;
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 10px 0px;
}

.navbar.scrolled {
    background: rgba(23, 0, 2, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 190, 115, 0.25);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.navbar.scrolled .nav-container {
    padding: 12px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px; /* balanced size for mobile devices to prevent layout breaking */
    }
    .navbar.scrolled .logo-img {
        height: 45px;
    }
}

.logo-gold { color: var(--color-accent); }
.logo-white { color: #fff; }
.logo-divider {
    color: var(--color-text-mute);
    margin: 0 10px;
    font-size: 16px;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 34px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-mute);
    position: relative;
    padding: 8px 0;
    line-height: 1.2;
    isolation: isolate;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

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

.nav-link::before {
    content: '';
    position: absolute;
    inset: -6px -12px;
    border-radius: 999px;
   
    opacity: 0;
    transform: scale(0.86);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link:hover::before, .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

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

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

.btn-nav {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 6px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
    --hero-image-x: 0px;
    --hero-image-y: 0px;
    --hero-copy-x: 0px;
    --hero-copy-y: 0px;
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--navbar-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    background-image: url("assets/images/hero-bg-desktop.webp?v=20260629-2");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 83px;
    }

    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: var(--navbar-height);
        padding-bottom: 0;
        align-items: flex-start;
        background-position: center center;
        background-image: url("assets/images/hero-bg-mobile.webp?v=20260629-1");
    }

    .hero-container {
        min-height: calc(100vh - var(--navbar-height));
        min-height: calc(100dvh - var(--navbar-height));
        align-content: start;

    }

}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 78% 18%, rgba(229, 190, 115, 0.22), transparent 20%),
        radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.1), transparent 14%),
        radial-gradient(circle at bottom left, rgba(145, 20, 16, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(12, 5, 4, 0) 56%, rgba(12, 5, 4, 0.36) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    min-height: calc(100vh - var(--navbar-height));
    min-height: calc(100dvh - var(--navbar-height));
    z-index: 10;
    position: relative;
    width: min(100%, 1320px);
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.hero-content {
    position: relative;
    z-index: 12;
    width: min(100%, clamp(22rem, 31vw, 33rem));
    max-width: none;
    margin-top: clamp(-2rem, 0vw, -0.5rem);
    margin-right: auto;
    margin-left: 0;
    padding-inline: 0;
    text-align: left;
}

.hero-copy-picture {
    display: block;
    width: 100%;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem) 0;
    aspect-ratio: 894 / 789;
}

.hero-copy-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 0 0;
    transform: none;
    transition: none;
}

@keyframes heroCopyFloat {
    0%, 100% { transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0); }
    50% { transform: translate3d(var(--hero-copy-x), calc(var(--hero-copy-y) - 10px), 0); }
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -28px -36px -28px -24px;
    /* background: linear-gradient(135deg, rgba(22, 7, 5, 0.72) 0%, rgba(22, 7, 5, 0.28) 58%, rgba(22, 7, 5, 0) 100%);
    border-radius: 28px; */
    /* backdrop-filter: blur(2px); */
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 2.3vw + 1rem, 3rem);
    line-height: 1.08;
    margin-bottom: clamp(0.9rem, 2vw, 1.5rem);
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    font-weight: bold;
    text-wrap: balance;
}

.hero-title-emphasis {
    display: inline-block;
    font-size: clamp(2.7rem, 4.2vw + 0.8rem, 4.5rem);
    line-height: 0.98;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1vw + 0.8rem, 1.5rem);
    color: var(--color-text-mute);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.125rem);
    max-width: 550px;
    line-height: 1.4;
    margin-inline: auto;
}

.hero-intro {
    font-size: clamp(1rem, 0.8vw + 0.85rem, 1.25rem);
    color: #f3ddd6;
    max-width: 560px;
    margin-bottom: clamp(0.8rem, 1.8vw, 1.25rem);
    line-height: 1.45;
    margin-inline: auto;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(229, 190, 115, 0.2);
    color: #f6e5da;
    font-size: 16px;
    line-height: 1.4;
}

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

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 150px;
    padding: 10px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #a6813b 100%);
    color: #0d0706;
    box-shadow: 0 8px 24px rgba(205, 162, 82, 0.4);
    font-family: 'Adelle Sans', 'Adelle Sans Basic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(205, 162, 82, 0.6);
    background: linear-gradient(135deg, #fce598 0%, var(--color-accent) 100%);
    color: #0d0706;
}

.hero-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(13, 7, 6, 0.1);
    color: #0d0706;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-icon {
    transform: scale(1.1);
}

.hero-cta-icon .icon-svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.4;
}

.hero-cta-label {
    font-family: 'Adelle Sans', 'Adelle Sans Basic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

@keyframes heroButtonGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(205, 162, 82, 0.38);
    }
    50% {
        box-shadow: 0 12px 28px rgba(205, 162, 82, 0.55);
    }
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 3;
    pointer-events: none;
}

.hero-image-wrapper picture {
    display: flex;
    width: min(100%, clamp(36rem, 56vw, 64rem));
    height: 100%;
    margin-left: auto;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: auto 0 0 auto;
    width: min(58vw, 940px);
    height: 100%;
    background:
        linear-gradient(270deg, rgba(229, 190, 115, 0.14) 0%, rgba(229, 190, 115, 0) 42%),
        linear-gradient(0deg, rgba(15, 4, 3, 0.42) 0%, rgba(15, 4, 3, 0) 28%);
    transform: translateX(4%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    

    .hero-content::before {
        inset: -18px -14px -20px -14px;
        border-radius: 22px;
    }

    .hero-image-wrapper {
        inset: 5% 0 0 0;
        height: calc(100vh - var(--navbar-height));
        height: calc(100dvh - var(--navbar-height));
        align-items: flex-end;
    }

    .hero-image-wrapper picture {
        width: 100%;
        height: 100%;
    }
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - var(--navbar-height));
    max-height: calc(100dvh - var(--navbar-height));
    object-fit: contain;
    object-position: right bottom;
    display: block;
    z-index: 2;
    transform: translate3d(var(--hero-image-x), calc(6% + var(--hero-image-y)), 0);
    transform-origin: right bottom;
    filter:
        drop-shadow(0 22px 44px rgba(0, 0, 0, 0.34))
        drop-shadow(0 0 28px rgba(229, 190, 115, 0.1));
    transition: transform 0.45s ease-out, filter 0.45s ease-out;
}

@media (min-width: 769px) {
    .hero-image-wrapper {
        top: var(--navbar-height);
        right: 0;
        bottom: 0;
        left: 0;
        height: calc(100vh - var(--navbar-height));
        height: calc(100dvh - var(--navbar-height));
        width: 100%;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .hero-image-wrapper picture {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center bottom;
        transform: none;
        transform-origin: center bottom;
    }

    .hero-container {
        align-items: center;
        transform: translateY(-10%);
    }

    .hero-content {
        width: min(100%, clamp(22rem, 31vw, 33rem));
        margin-top: clamp(1rem, -3vw, -0.25rem);
        margin-right: auto;
        margin-left: 0;
        padding-inline: 0;
        text-align: left;
    }

    .hero-copy-picture {
        margin: 0 auto clamp(0.35rem, 0.8vw, 0.75rem) 0;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: clamp(-7rem, -12vw, -4.5rem);
    }
}

@media (max-width: 768px) {
    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
        transform: translateY(10%);
    }
}

.hero-card-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #571c10 100%);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: max-content;
    pointer-events: auto;
}

.scroll-down-arrow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    pointer-events: auto;
    touch-action: manipulation;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    animation: bounce 2s infinite;
}

.scroll-down-arrow a:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.chef-banner-picture {
    display: block;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    aspect-ratio: 1606 / 852;
}

.chef-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--color-accent);
    border-radius: 15px;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, .5);
}

.section-signature {
    width: 100%;
    padding: 30px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
   
}


.section-signature::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(250, 216, 115, 0.12), transparent 30%),
        radial-gradient(circle at 14% 88%, rgba(255, 201, 125, 0.1), transparent 22%),
        radial-gradient(circle at 86% 84%, rgba(255, 188, 128, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%, rgba(24, 4, 4, 0.36) 100%);
    mix-blend-mode: screen;
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.section-signature .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.section-signature .section-header {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    scroll-margin-top: calc(var(--navbar-height) + 24px);
}

.signature-picture {
    display: block;
    width: 100%;
    margin: 0;
    grid-column: 1 / -1;
}

.signature-picture picture {
    display: block;
    width: 100%;
    height: 100%;
}

.signature-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.45);
    border-radius: 15px;
    border: 1px solid var(--color-accent);
}

@media (max-width: 767px) {
    .signature-image {
        box-shadow: none;
        border: none;
        border-radius: 0px;
    }
    
}


@media (max-width: 1100px) {
    .section-signature .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {
    .collab-showcase-frame {
        padding: 14px;
        border-radius: 24px;
    }

    .collab-showcase-picture,
    .collab-showcase-picture .chef-banner-image {
        border-radius: 16px;
    }

    .collab-showcase-glow {
        width: 72%;
        height: 52px;
        bottom: 2px;
    }

    .chef-banner-picture {
        aspect-ratio: 834 / 2784;
    }

    .section-signature {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .section-signature .container {
        display: block;
    }

    .signature-picture {
        height: auto;
        max-width: 100%;
        bottom: 0;

    }

    .talk-picture {
        aspect-ratio: 772 / 1068;
    }
}

/* --- SECTION DEFAULTS --- */
section {
    padding: 130px 0;
    position: relative;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.section-title::after {
    content: '❖';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-accent);
    font-size: 11px;
    padding: 0 15px;
    z-index: 2;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 190, 115, 0.8) 35%, transparent 46%, transparent 54%, rgba(229, 190, 115, 0.8) 65%, transparent);
    z-index: 1;
}

.section-subtitle {
    font-size: 24px;
    color: var(--color-text-mute);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.2;
}

/* --- COLLABORATION SECTION --- */
.collab-section {
    background-color: var(--color-bg-dak);
    border-top: 1px solid rgba(229, 190, 115, 0.25);
    padding: 0;
    padding-top:60px;
    margin-bottom: 0px !important;
}

.collab-img {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    border-radius: 15px;
}

.collab-showcase-frame {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
        linear-gradient(135deg, rgba(250, 216, 115, 0.04), rgba(250, 216, 115, 0.01));
    border: 1px solid rgba(250, 216, 115, 0.1);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.collab-showcase-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(250, 216, 115, 0.12), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(255, 225, 170, 0.12), transparent 20%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%);
    pointer-events: none;
}

.collab-showcase-picture {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    z-index: 1;
}

.collab-showcase-glow {
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: min(52%, 520px);
    height: 70px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(250, 216, 115, 0.28) 0%, rgba(250, 216, 115, 0) 72%);
    filter: blur(8px);
    opacity: 0.72;
    pointer-events: none;
    z-index: 0;
}

.collab-showcase-picture .chef-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.collab-desktop-only,
.collab-mobile-only,
.collab-social-desktop {
    display: none;
}

@media (min-width: 769px) {
    .collab-desktop-only {
        display: block;
    }

    .collab-social-desktop {
        position: absolute;
        bottom: 34px;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .social-icons-left {
        left: 42px;
    }

    .social-icons-right {
        right: 42px;
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        background: transparent;
        border: 0;
        color: inherit;
        box-shadow: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        opacity: 0.88;
    }

    .social-icon .icon-svg {
        width: 100%;
        height: 100%;
        stroke-width: 0;
    }

    .social-icon img{
        max-height: 24px;
        width: 100%;
        
    }
}

@media (max-width: 768px) {
    .collab-mobile-only {
        display: block;
        margin-bottom: 14px;
    }

    .collab-social-mobile {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .collab-social-mobile.social-icons-left,
    .collab-social-mobile.social-icons-right {
        right: auto;
    }

    .collab-social-mobile .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .collab-social-mobile .social-icon img {
        max-height: 22px;
        width: auto;
        display: block;
    }
}


/* --- CHEF PROFILE PAGES --- */
.profile-page {
    background:
        radial-gradient(circle at top right, rgba(229, 190, 115, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(60, 4, 9, 0.98) 0%, rgba(35, 2, 5, 1) 100%);
}

.profile-stack {
    display: grid;
    gap: 24px;
}

.profile-page .navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.profile-page .navbar.scrolled {
    background: rgba(23, 0, 2, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 190, 115, 0.22);
}

.profile-hero-section {
    position: relative;
    padding: 160px 0 72px;
    background:
        radial-gradient(circle at 20% 20%, rgba(229, 190, 115, 0.1), transparent 24%),
        radial-gradient(circle at 80% 18%, rgba(229, 190, 115, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(51, 3, 7, 0.96) 0%, rgba(31, 2, 5, 0.98) 100%);
    border-bottom: 1px solid rgba(229, 190, 115, 0.12);
    overflow: hidden;
}

.profile-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(229, 190, 115, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 190, 115, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
    pointer-events: none;
}

.profile-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 58%);
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
}

.profile-hero-section .container {
    position: relative;
    z-index: 1;
}

.profile-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 15px;
    letter-spacing: 0.8px;
    color: rgba(240, 213, 205, 0.72);
}

.profile-breadcrumbs a {
    color: rgba(240, 213, 205, 0.78);
    transition: var(--transition-smooth);
}

.profile-breadcrumbs a:hover {
    color: var(--color-accent);
}

.profile-breadcrumb-separator {
    color: rgba(229, 190, 115, 0.46);
}

.profile-breadcrumb-current {
    color: var(--color-accent);
}

.profile-hero {
    display: grid;
    grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.profile-image-card {
    background: rgba(23, 0, 2, 0.74);
    border: 1px solid rgba(229, 190, 115, 0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.profile-image-portrait {
    width: 100%;
    aspect-ratio: 4 / 6;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

.profile-image-hideaki {
    object-position: center 10%;
}

.profile-image-dej {
    object-position: center 14%;
}

.profile-copy {
    display: flex;
    flex-direction: column;
}

.profile-copy .badge-gold {
    margin-bottom: 14px;
}

.profile-title {
    font-size: clamp(32px, 4.6vw, 50px);
    line-height: 1.12;
    color: #fff;
    margin-bottom: 12px;
}

.profile-subtitle {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.profile-lead {
    font-size: 19px;
    line-height: 1.78;
    color: #f0d5cd;
    max-width: 680px;
    text-wrap: pretty;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 22px;
}

.profile-meta-item {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(229, 190, 115, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-light);
    font-size: 15px;
}

.profile-story-section,
.profile-highlights-section,
.profile-cta-section {
    border-top: 1px solid rgba(229, 190, 115, 0.1);
}

.profile-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    margin-top: 4px;
    position: relative;
}

.profile-panel {
    position: relative;
    background: rgba(23, 0, 2, 0.72);
    border: 1px solid rgba(229, 190, 115, 0.2);
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.profile-panel::before {
    content: " ";

}

.profile-panel::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 28px;
    height: 28px;
    border-top: 1px solid rgba(229, 190, 115, 0.24);
    border-left: 1px solid rgba(229, 190, 115, 0.24);
    border-top-left-radius: 10px;
    pointer-events: none;
}

.profile-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 190, 115, 0.34);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.profile-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
    position: relative;
}

.profile-panel-title::before {
    content: " ";
    
}

.profile-panel-title::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -6px;
    width: 272px;
    height: 1px;
    background: linear-gradient(90deg, rgba(229, 190, 115, 0.7), transparent);
}

.profile-panel-copy {
    color: #f0d5cd;
    font-size: 18px;
    line-height: 1.78;
    text-wrap: pretty;
}

.profile-points {
    list-style: none;
    display: grid;
    gap: 12px;
}

.profile-points li {
    color: var(--color-text-light);
    padding-left: 26px;
    position: relative;
    line-height: 1.7;
}

.profile-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(229, 190, 115, 0.4);
}

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.profile-stat-card {
    background: linear-gradient(180deg, rgba(23, 0, 2, 0.88) 0%, rgba(40, 5, 7, 0.92) 100%);
    border: 1px solid rgba(229, 190, 115, 0.18);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.profile-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.profile-stat-label {
    color: var(--color-text-light);
    line-height: 1.7;
}

.profile-cta-box {
    max-width: 920px;
    margin: 0 auto;
    padding: 30px 28px;
    text-align: center;
    background: rgba(23, 0, 2, 0.72);
    border: 1px solid rgba(229, 190, 115, 0.22);
    border-radius: 18px;
    box-shadow: var(--shadow-premium);
}

.profile-cta-title {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}

.profile-cta-copy {
    max-width: 680px;
    margin: 0 auto;
    color: var(--color-text-mute);
    line-height: 1.78;
}

.profile-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- AUDIENCE / SEO SECTION --- */
.audience-section {
    background:
        linear-gradient(180deg, rgba(60, 4, 9, 0.96) 0%, rgba(35, 2, 5, 0.98) 100%);
    border-top: 1px solid rgba(229, 190, 115, 0.14);
    border-bottom: 1px solid rgba(229, 190, 115, 0.12);
}

.audience-section .container {
    max-width: 1380px;
}

.audience-section .section-subtitle {
    max-width: 980px;
    line-height: 1.8;
    text-wrap: pretty;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.audience-lead {
    max-width: 1100px;
    margin: 22px auto 0;
    font-size: 19px;
    line-height: 1.95;
    color: #f0d5cd;
    text-wrap: pretty;
}

.audience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(23, 0, 2, 0.72);
    border: 1px solid rgba(229, 190, 115, 0.22);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.audience-title {
    font-size: 22px;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    text-wrap: balance;
}

.audience-copy {
    font-size: 18px;
    color: var(--color-text-mute);
    line-height: 1.85;
    margin-bottom: 20px;
    text-wrap: pretty;
}

.audience-points {
    list-style: none;
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.audience-points li {
    position: relative;
    padding-left: 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #ebddd7;
    text-wrap: pretty;
}

.audience-points li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 10px rgba(229, 190, 115, 0.35);
}

/* --- PRODUCTS GRID SECTION --- */
.products-section {
    position: relative;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.products-section .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(229, 190, 115, 0.12);
    box-shadow: 0 0 60px rgba(229, 190, 115, 0.03), inset 0 0 60px rgba(229, 190, 115, 0.03);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.products-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 760px;
    height: 760px;
    border-radius: 50%;
    border: 1px dashed rgba(229, 190, 115, 0.08);
    z-index: 1;
    pointer-events: none;
    animation: rotateMoon 120s linear infinite;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .products-section::before {
        width: 450px;
        height: 450px;
    }
    .products-section::after {
        width: 420px;
        height: 420px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.products-trust-row {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill,
.trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1.4;
    border: 1px solid rgba(229, 190, 115, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #f4ddd4;
}

.product-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(229, 190, 115, 0.2);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    isolation: isolate;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.2) 48%, transparent 72%);
    transform: translateX(-135%);
    transition: transform 0.75s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card-featured {
    position: relative;
    transform: translateY(-10px);
    border-color: rgba(229, 190, 115, 0.4);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(229, 190, 115, 0.18);
}

.product-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(229, 190, 115, 0.28);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(229, 190, 115, 0.25);
}


.product-card-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.62), 0 0 38px rgba(229, 190, 115, 0.24);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-smooth);
    transform: scale(1.02);
}

.product-card:hover .product-img {
    transform: scale(1.04) rotate(-0.6deg);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(23, 0, 2, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b83a21 100%);
    border-color: var(--color-accent);
    color: #fff;
}

.product-spotlight-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(229, 190, 115, 0.92) 0%, rgba(194, 145, 61, 0.92) 100%);
    color: #2b1208;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.product-details {
    padding: 34px 16px ;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.product-name {
    font-size: 12px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 35px;
    text-transform: uppercase;
    text-align: center;
}

.product-price-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    /* margin-bottom: 18px; */
    text-align: center;
    justify-content: center;
}

.product-price-separator {
    display: inline-block;
    color: var(--color-text-mute);
    font-size: 18px;
    line-height: 1;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0;
    white-space: nowrap;
}

.product-price .currency {
    font-size: 18px;
    font-weight: 400;
}

.product-price .quantity {
    font-size: 12px;
    font-weight: 300;
    margin-left: 4px;
}

.product-price-note {
    font-size: 24px;
    line-height: 1.3;
}

.product-desc {
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 24px;
    min-height: 108px;
    line-height: 1.2;
    text-wrap: pretty;
}

.product-hook {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(229, 190, 115, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(229, 190, 115, 0.14);
    color: #f1ddd3;
    font-size: 17px;
    line-height: 1.78;
    text-wrap: pretty;
}

.product-action {
    margin-top: auto;
}

.product-action .btn {
    min-height: 54px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
}

/* --- FLAVORS SECTION --- */
.flavors-section {
    background-color: var(--color-bg-dark);
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDgwIDQwIj48cGF0aCBkPSJNMCA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0zOSA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0wIDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwTTM5IDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlNWJlNzMiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4="); */
    background-repeat: repeat;
    border-top: 1px solid rgba(229, 190, 115, 0.25);
    border-bottom: 1px solid rgba(229, 190, 115, 0.18);

    
}

.flavor-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.flavor-tab-btn {
    background: transparent;
    border: 1px solid rgba(229, 190, 115, 0.35);
    color: var(--color-text-mute);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.flavor-tab-btn.active {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(205, 162, 82, 0.3);
}

.flavor-content {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.flavor-content.active {
    display: grid;
    animation: fadeIn 0.8s forwards;
}

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

.flavors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.flavor-card {
    background: rgba(23, 0, 2, 0.5);
    border: 1px solid rgba(229, 190, 115, 0.2);
    padding: 24px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.flavor-card:hover {
    background: rgba(23, 0, 2, 0.85);
    border-color: var(--color-accent);
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(229, 190, 115, 0.3);
}

.flavor-icon {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.flavor-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 4px;
}

.flavor-translation {
    font-size: 16px;
    color: var(--color-accent-subtle);
    margin-bottom: 12px;
}

.flavor-desc {
    font-size: 17px;
    color: var(--color-text-mute);
    line-height: 1.75;
}

.flavor-image-promo {
    border-radius: var(--border-radius);
    padding: 8px;
    border: 1px solid rgba(205, 162, 82, 0.2);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.img-promo {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius) - 4px);
    display: block;
    object-fit: cover;
}

/* --- CORPORATE SECTION --- */
.corporate-section {
    background-color: var(--color-bg-dark);
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDgwIDQwIj48cGF0aCBkPSJNMCA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0zOSA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0wIDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwTTM5IDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlNWJlNzMiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4="), */
        linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-dark) 100%);
    background-repeat: repeat, no-repeat;
    overflow: hidden;
}

.corporate-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(229, 190, 115, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.corporate-title {
    font-size: 38px;
    margin-bottom: 20px;
}

.corporate-desc {
    font-size: 19px;
    color: var(--color-text-mute);
    margin-bottom: 40px;
    line-height: 1.8;
}

.personalize-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.opt-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.opt-icon {
    font-size: 28px;
    color: var(--color-accent);
    margin-top: 4px;
}

.opt-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.opt-text {
    font-size: 17px;
    color: var(--color-text-mute);
    line-height: 1.75;
}

.corporate-image {
    padding: 8px;
    border: 1px solid rgba(229, 190, 115, 0.25);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

.corp-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--border-radius) - 4px);
    display: block;
}

.corporate-section .section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.corporate-section-subtitle {
    max-width: 760px;
    margin-inline: auto;
}

.corporate-section-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(229, 190, 115, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-accent);
    font-size: 15px;
    letter-spacing: 0.4px;
    padding: 9px 18px;
}

.corporate-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(229, 190, 115, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.corporate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 190, 115, 0.42);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(229, 190, 115, 0.14);
}

.corporate-picture {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.corporate-picture .signature-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

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

    .corporate-section .section-content {
        display: block;
        
    }

    .corporate-section .section-content {
        padding: 0;


    }
    .corporate-picture .signature-image {
        border-radius: 0px;
        box-shadow: none;
    }
}


/* --- TALK OF THE TOWN --- */
.talk-of-the-town-section {
    background: #4a1312;
}

.products-section,
.section-signature,
.corporate-section,
.contact-section,
.talk-of-the-town-section,
.gallery-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.talk-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.talk-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.talk-carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.talk-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.talk-picture {
    display: block;
    width: 100%;
    margin: 0;
    aspect-ratio: 1098 / 732;
}

.talk-image {
    display: block;
    width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
}

.talk-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border: 1px solid rgba(229, 190, 115, 0.45);
    border-radius: 999px;
    background: rgba(74, 19, 18, 0.82);
    color: var(--color-accent);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.talk-carousel-arrow:hover {
    background: var(--color-accent);
    color: #4a1312;
    transform: translateY(-2px);
}

.talk-carousel-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.talk-carousel-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.talk-carousel-dot.active {
    width: 34px;
    background: var(--color-accent);
}

@media (max-width: 767px) {


    .corporate-card-overlay {
        inset: auto 10px 10px 10px;
        padding: 10px 12px;
    }

    .corporate-card-label {
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .corporate-card-icon {
        width: 34px;
        height: 34px;
    }

    .talk-carousel {
        gap: 12px;
    }

    .talk-carousel-arrow {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 14px;
    }

    .talk-carousel-pagination {
        margin-top: 18px;
        gap: 8px;
    }

    .talk-carousel-dot.active {
        width: 28px;
    }
}

/* --- ORIGINAL PROPOSAL GALLERY --- */
.gallery-section {
    background-color: var(--color-bg-dark);
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDgwIDQwIj48cGF0aCBkPSJNMCA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0zOSA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0wIDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwTTM5IDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlNWJlNzMiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4="); */
    background-repeat: repeat;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1.414; /* Standard vertical slide ratio */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(205, 162, 82, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(205, 162, 82, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(137, 68, 50, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: var(--transition-smooth);
}

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

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--color-bg-dark);
    /* background-image:  url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDgwIDQwIj48cGF0aCBkPSJNMCA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0zOSA0MGEyMCAyMCAwIDAgMSAyMC0yMCAyMCAyMCAwIDAgMSAyMCAyME0wIDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwTTM5IDIwYTIwIDIwIDAgMCAxIDIwLTIwIDIwIDIwIDAgMCAxIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiNlNWJlNzMiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4="), */
    radial-gradient(circle at 90% 10%, #ad1c13 0%, var(--color-bg-dark) 80%);
    background-repeat: repeat, no-repeat;
}

.contact-info-panel {
    max-width: 1000px;
    margin: 0 auto;
 
}

.contact-panel-title {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.contact-panel-subtitle {
    font-size: 18px;
    color: var(--color-text-mute);
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-method-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    background: rgba(23, 0, 2, 0.5);
    border: 1px solid rgba(229, 190, 115, 0.2);
    padding: 35px 25px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    height: 100%;
       box-shadow: var(--shadow-premium);
}

.contact-method-item:hover {
    background: rgba(23, 0, 2, 0.85);
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 190, 115, 0.3);
}

.c-icon {
    width: 60px;
    height: 60px;
    /* border-radius: 50%;
    background: rgba(205, 162, 82, 0.1); */
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.c-label {
    font-size: 14px;
    color: var(--color-text-mute);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.c-value {
    display: block;
    font-size: 19px;
    color: #fff;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.c-value:hover {
    color: var(--color-accent);
}

.c-brands-list {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.c-brands-list span {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    color: #eae2db;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 2px;
}

.form-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    color: #eae2db;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #f87171;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(18, 10, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(205, 162, 82, 0.2);
    background: rgba(18, 10, 8, 0.8);
}

.form-group textarea {
    resize: none;
}

.form-group select option {
    background-color: var(--color-bg-dark);
    color: #fff;
}

/* Button Spinner state */
.btn-spinner {
    display: none;
    margin-left: 10px;
}

.form-submitting #form-submit-btn {
    pointer-events: none;
    opacity: 0.8;
}

.form-submitting .btn-spinner {
    display: inline-block;
}

.form-submitting .btn-text {
    opacity: 0.8;
}

.form-feedback-message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    display: none;
}

.form-feedback-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #34d399;
    display: block;
}

.form-feedback-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
    display: block;
}

/* --- FAQ SECTION --- */
.faq-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(229, 190, 115, 0.18);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: rgba(23, 0, 2, 0.62);
    border: 1px solid rgba(229, 190, 115, 0.22);
    border-radius: 12px;
    padding: 0 22px;
    box-shadow: var(--shadow-soft);
}

.faq-item[open] {
    border-color: rgba(229, 190, 115, 0.45);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 34px 22px 0;
    color: #fff;
    font-size: 19px;
    font-family: var(--font-heading);
    position: relative;
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 24px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 0 22px;
    color: var(--color-text-mute);
    font-size: 18px;
    line-height: 1.75;
}

/* --- FOOTER --- */
.footer {
    background-color: #130002;
    padding: 40px 0;
    border-top: 1px solid rgba(229, 190, 115, 0.25);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 14px;
    color: var(--color-text-mute);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 6, 5, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--color-text-mute);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
    filter: blur(8px);
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Delay modifiers for scroll reveals */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.products-grid .product-card:nth-child(2) { transition-delay: 0.08s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.16s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .hero-copy-image,
    .hero-cta-btn {
        animation: none;
    }

    .product-card::before {
        display: none;
    }
}

/* --- RESPONSIVE STYLES (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-featured {
        transform: translateY(0);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .nav-container {
        padding: 14px 16px !important;
    }

    .nav-logo {
        font-size: 15px;
    }

    .logo-gold, .logo-white {
        font-size: 15px !important;
    }

    .logo-divider {
        font-size: 14px !important;
        margin: 0 4px;
    }

    .btn-lang {
        padding: 7px 13px;
        font-size: 14px;
    }

    .flavor-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .flavor-tab-btn {
        width: 100%;
        max-width: 340px;
        font-size: 14px;
        padding: 10px 20px;
    }
    
    /* Navbar menu for mobile */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #170002;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        padding: 104px 36px 40px;
        gap: 22px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(229, 190, 115, 0.25);
    }

    .nav-link {
        font-size: 20px;
        padding: 6px 0;
    }
    
    .nav-menu.mobile-active {
        right: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 0;
        gap: 18px;
    }
    
    .hero-subtitle {
        line-height: 1.45;
    }

    .hero-intro {
        line-height: 1.52;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        display: none;
    }

    .hero-content {
        margin-top: 0;
        margin-left: 0;
        width: min(100%, 35rem);
        max-width: 40rem;
        padding-inline: clamp(0.75rem, 4vw, 1.5rem);
    }

    .hero-copy-picture {
        margin-bottom: 1rem;
        aspect-ratio: 1146 / 708;
    }

    .hero-copy-image {
        transform: none;
        transition: none;
        animation: none;
    }

    .hero-highlights {
        justify-content: center;
        margin-bottom: 24px;
    }

    .scroll-down-arrow {
        display: block;
        bottom: max(18px, env(safe-area-inset-bottom, 0px) + 12px);
    }

    .scroll-down-arrow a {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .collab-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .collab-info {
        padding: 0;
        gap: 8px;
    }

    .collab-name {
        font-size: 20px;
    }

    .collab-role {
        font-size: 17px;
        line-height: 1.75;
    }

    .profile-hero,
    .profile-story-grid,
    .profile-stat-grid {
        grid-template-columns: 1fr;
    }

    .profile-hero-section {
        padding: 132px 0 60px;
    }

    .profile-breadcrumbs {
        gap: 8px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .profile-image-card img {
        aspect-ratio: 4 / 5.6;
    }

    .profile-panel,
    .profile-cta-box {
        padding: 22px 20px;
    }

    .profile-title {
        font-size: 32px;
    }

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

    .collab-img-container {
        width: min(100%, 220px);
        min-width: 0;
        aspect-ratio: 4 / 5;
    }

    .collab-card {
        min-height: auto;
        max-width: 360px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        margin: 0 auto;
        gap: 10px;
    }

    .products-section .container {
        padding-left: 10px;
        padding-right: 10px;

    }
    
    .product-img-wrapper {
        /* height: 420px; */
    }

    .product-name {
        font-size: 10px ;
        text-align: center;
        min-height: 40px;
    }

    .product-details {
        padding: 16px 8px 8px;
    }

    .product-action .btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
        letter-spacing: 0;
        margin-top: 5px;
    }

    .product-desc {
        min-height: 0;
        display: none;
    }

    .product-price {
            font-size: 13px !important;
            text-align: center;
    }

    .product-price .quantity {
    font-size: 8px;
    font-weight: 300;
    margin-left: 4px;
}

    .product-hook {
        margin-bottom: 22px;
    }

    .product-card-featured {
        transform: translateY(0);
    }

    .product-spotlight-badge {
        right: 14px;
        bottom: 14px;
        padding: 9px 12px;
        font-size: 10px;
    }

    .flavor-content {
        grid-template-columns: 1fr;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .flavor-image-promo {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .corporate-wrapper {
        grid-template-columns: 1fr;
    }
    
    .corporate-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 760px;
        margin: 0 auto;
    }

    .contact-methods .contact-method-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 340px);
    }

    .faq-item summary {
        font-size: 17px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav.prev { left: 15px; }
    .lightbox-nav.next { right: 15px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0px 12px !important;
    }
    
    .logo-gold { font-size: 13px !important; }
    .logo-white { font-size: 13px !important; }
    .logo-divider {
        font-size: 12px !important;
        margin: 0 3px;
    }

    .btn-lang {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-title-emphasis {
        font-size: clamp(2.5rem, 9vw, 3.6rem);
        line-height: 1;
    }

    .hero-intro {
        margin-bottom: 1rem;
    }
    
    /* .hero-buttons {
        flex-direction: column;
        gap: 12px;
    } */


    .btn {
        font-size: 16px;
    }

    .hero-cta-btn {
        font-size: 17px;
    }

    .hero-highlights {
        gap: 8px;
    }

    .hero-cta-label {
        font-size: 12px;
    }

    .hero-pill {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .btn-nav {
        display: none;
    }

    .product-img-wrapper {
        /* height: 260px !important; */
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 24px 15px;
    }

    .profile-actions {
        flex-direction: column;
    }
}

/* --- LANGUAGE SWITCHING SUPPORT --- */
body.lang-en-active .lang-th {
    display: none !important;
}
body:not(.lang-en-active) .lang-en {
    display: none !important;
}

/* --- LANGUAGE TOGGLE BUTTON --- */
.btn-lang {
    background: transparent;
    border: 1px solid rgba(205, 162, 82, 0.3);
    color: var(--color-accent);
    padding: 9px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: var(--transition-smooth);
}

.btn-lang:hover {
    background: rgba(205, 162, 82, 0.1);
    border-color: var(--color-accent);
    color: #fff;
}

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #a6813b 100%);
    color: #0d0706;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(205, 162, 82, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.floating-cta.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(205, 162, 82, 0.6);
    color: #000;
}

.floating-cta .cta-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* --- PROMO POPUP --- */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(12, 6, 5, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-popup.active {
    opacity: 1;
    pointer-events: all;
}

.promo-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-popup.active .promo-popup-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.promo-popup-img {
    max-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    /* border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(250, 216, 115, 0.25);
    border: 1px solid rgba(250, 216, 115, 0.2); */
}

.promo-popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.promo-popup-close:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 576px) {
    .promo-popup-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary-light), var(--color-accent), #ffffff);
    z-index: 9999;
    box-shadow: 0 1px 10px rgba(250, 216, 115, 0.4);
    pointer-events: none;
}

/* --- HERO BACKGROUND PARTICLES --- */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}
