/* Extracted inline style block 1 from index.html */
:root {
    --color-bg: #FDFBF7;
    --color-text: #4A4A4A;
    --color-heading: #800020;
    --color-accent: #D4AF37;
    --color-cta: #6F001C;
    --color-cta-hover: #4D0014;
    --color-focus: #D4AF37;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video,
iframe {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.25;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Animations Setup */
.reveal {
    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Navigation */
nav,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(251, 247, 239, 0.9);
    border-bottom: 1px solid rgba(58, 42, 26, 0.09);
    box-shadow: 0 10px 30px rgba(58, 42, 26, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

nav.scrolled,
.site-header.scrolled,
nav.nav-open,
.site-header.nav-open {
    background: rgba(251, 247, 239, 0.97);
    border-bottom-color: rgba(138, 90, 43, 0.16);
    box-shadow: 0 14px 34px rgba(58, 42, 26, 0.1);
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.4vw, 2rem);
    padding: 0 clamp(18px, 3.4vw, 48px);
}

.logo-link,
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: max-content;
    line-height: 1;
    text-decoration: none;
}

.header-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.8vw, 1.42rem);
    color: var(--color-heading);
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2vw, 1.5rem);
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.7vw, 1.6rem);
}

.nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #9B6A38;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.zalo-button {
    min-height: 42px;
    border: 1px solid rgba(138, 90, 43, 0.46);
    border-radius: 999px;
    background: #8A5A2B;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 9px 20px rgba(138, 90, 43, 0.18);
}

.zalo-button:hover {
    background: #6F4320;
    border-color: #6F4320;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-links .mobile-zalo-link {
    display: none;
}

.cart-toggle {
    min-width: 44px;
    min-height: 42px;
    border: 1px solid rgba(58, 42, 26, 0.16);
    background: rgba(255, 255, 255, 0.74);
    color: var(--color-heading);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.85rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cart-toggle:hover {
    background-color: var(--color-heading);
    border-color: var(--color-heading);
    color: #fff;
    transform: translateY(-1px);
}

.cart-toggle svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    min-width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background-color: var(--color-cta);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
    font-size: 0.7rem;
    line-height: 1;
}

.cart-toggle:hover .cart-count {
    background-color: #fff;
    color: var(--color-heading);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(58, 42, 26, 0.16);
    background: rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--color-heading);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

@media (max-width: 1120px) {
    .nav-links {
        gap: 0.85rem;
    }

    .nav-links a {
        font-size: 0.72rem;
    }

    .header-zalo-button {
        padding: 0 0.95rem;
    }

    .cart-toggle-label {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 40px 18px 40px;
    /* Tăng padding dưới để bảo toàn dấu nặng */
    line-height: 1.5;
    /* Mở rộng không gian line-box */
    background-color: var(--color-cta);
    color: #FFFFFF !important;
    border: 1px solid var(--color-cta);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(111, 0, 28, 0.18);
}

.btn:hover {
    background-color: var(--color-cta-hover);
    border-color: var(--color-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 0, 28, 0.3);
    color: #FFFFFF !important;
}

.hero-cta {
    border-radius: 999px;
    padding: 14px 34px 16px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.6px;
    box-shadow: 0 12px 30px rgba(111, 0, 28, 0.22);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(111, 0, 28, 0.28);
}

@media (max-width: 600px) {
    .hero-cta {
        width: auto;
        min-width: 168px;
        padding: 13px 28px 15px;
        font-size: 0.82rem;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.slider-arrow:focus-visible,
.slider-dot:focus-visible,
.faq-search-input:focus-visible {
    outline: 3px solid var(--color-focus);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(128, 0, 32, 0.18);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
    /* Ẩn phần tử tràn viền */
}

.hero-bg {
    /* Lớp 0: Nền nằm dưới cùng */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    /* Neo giữ sản phẩm ở góc phải dưới */
    z-index: 0;
}

.hero-overlay {
    /* Lớp 1: Lớp phủ Gradient mờ 1/2 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg) 0%, var(--color-bg) 35%, transparent 60%);
    z-index: 1;
}

.hero-content {
    /* Lớp 2: Nội dung nằm trên cùng */
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 50%;
}

.hero-content h1 {
    color: #800020;
    /* Màu Nâu Gỗ */
    font-family: var(--font-heading);
    /* Phông Serif */
    margin-bottom: 70px;
    /* Tăng không gian an toàn cho dấu nặng tiếng Việt */
}

.hero-subtitle {
    font-family: var(--font-body);
    /* Phông Sans-serif */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: #9B6A38;
}

/* Intro Philosophy Section */
.intro-philosophy {
    padding: 120px 5%;
    background-color: var(--color-bg);
    text-align: center;
}

.container-minimal {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #9B6A38;
    margin-bottom: 20px;
    display: block;
}

.intro-philosophy h2 {
    font-family: var(--font-heading);
    color: #800020;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.3;
}

.philosophy-text {
    font-family: var(--font-body);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #4A4A4A;
    font-size: 1.1rem;
}

.divider-gold {
    width: 1px;
    height: 60px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

/* Story Section (Zig-zag) */
.story-section {
    padding: clamp(5rem, 8vw, 8rem) 5%;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
    margin-bottom: clamp(6rem, 10vw, 10rem);
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.reverse .story-content {
    grid-column: 1;
    grid-row: 1;
}

.story-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
}

.story-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

.story-content h2 {
    color: #800020;
}

/* Features Section (Asymmetrical Sticky Scroll Layout) */
.sticky-features {
    padding: 120px 5%;
    background-color: var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.sticky-sidebar {
    flex: 0 0 35%;
    position: sticky;
    top: 15vh;
    /* Cơ chế sticky: Khi cuộn tới, khối này sẽ neo lại ở vị trí cách viền trên màn hình 15vh */
}

.sticky-sidebar h2 {
    font-family: var(--font-heading);
    color: #800020;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.sticky-sidebar p {
    font-family: var(--font-body);
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.scrolling-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
}

.scroll-card {
    margin-bottom: clamp(4rem, 8vh, 6rem);
}

.scroll-card:last-child {
    margin-bottom: 0;
}

.scroll-image {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    border-radius: 24px;
    overflow: hidden;
}

.scroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scroll-card h3 {
    font-family: var(--font-heading);
    color: #800020;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.scroll-list {
    list-style: none;
    padding: 0;
}

.scroll-list li {
    font-family: var(--font-body);
    color: #222;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.scroll-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: #800020;
}

@media (max-width: 1180px) {
    .sticky-features {
        flex-direction: column;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 60px;
    }

    .scrolling-content {
        flex: 1 1 100%;
    }

    .scroll-card {
        margin-bottom: 80px;
    }
}

/* Cinematic Brand Story Section */
.cinematic-story {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000;
}

.cinematic-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark overlay */
    z-index: 2;
}

.cinematic-content {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cinematic-content h2 {
    color: #FAF6F0;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.cinematic-content p {
    color: rgba(250, 246, 240, 0.85);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Product Advisor */
.product-advisor {
    padding: clamp(5rem, 7vw, 6.5rem) 5% clamp(4rem, 6vw, 5.5rem);
    background:
        linear-gradient(180deg, rgba(253, 251, 247, 0.96), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 34%);
    text-align: center;
}

.advisor-header {
    max-width: 760px;
    margin: 0 auto;
}

.advisor-header h2 {
    color: var(--color-heading);
    margin: 0.85rem 0 1rem;
}

.advisor-header p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(74, 74, 74, 0.82);
}

/* Product Section */
.product-section {
    padding: clamp(5rem, 8vw, 7rem) 5%;
    background-color: #FFFFFF;
    text-align: center;
}

.product-section h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    max-width: 1240px;
    margin: 0 auto;
    align-items: start;
}

/* Cinematic Spotlight Effect */
.product-grid:has(.product-card:hover) .product-card:not(:hover) {
    opacity: 0.5;
    filter: grayscale(20%);
}

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

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    border-radius: 24px;
    max-width: 390px;
    margin: 0 auto;
    padding: 1.4rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.15);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #FDFBF7;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.product-image-wrapper img {
    width: 82%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    transition: transform 1.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.035);
}

.product-name {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #666666;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.product-price {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #9B6A38;
    font-size: clamp(1.55rem, 2.3vw, 1.95rem);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.product-detail-link {
    color: var(--color-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin: -0.85rem 0 1.35rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.product-detail-link:hover {
    color: #9B6A38;
}

.product-card .btn {
    font-size: 1rem;
    /* Larger button text */
    padding: 16px 50px 22px 50px;
    /* Larger padding to match grander cards */
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Product Detail Page */
.product-detail-page {
    background-color: var(--color-bg);
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 500px);
    gap: clamp(3.5rem, 6vw, 5rem);
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(5rem, 8vw, 7rem) 6%;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.product-gallery-main {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, #F7F1E8 0%, #EEE2D4 100%);
    padding: 14px;
    box-shadow:
        0 18px 44px rgba(38, 24, 19, 0.10),
        inset 0 0 0 1px rgba(128, 0, 32, 0.05);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.18s ease-out;
    transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
    will-change: transform;
}

.product-gallery-caption {
    margin-top: 1rem;
    text-align: center;
    color: #8A7568;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 520px;
}

.product-gallery-main.product-zoom {
    cursor: zoom-in;
}

.product-gallery-main.product-zoom:hover img {
    transform: scale(var(--zoom-scale, 1.85));
}

.product-buy-box {
    max-width: 500px;
    width: 100%;
    min-height: 760px;
    margin: 0;
    padding: 2.8rem 2.8rem 3rem;
    border-radius: 18px;
    background: #FCFBF9;
    border: 1px solid rgba(128, 0, 32, 0.08);
    box-shadow: 0 18px 44px rgba(38, 24, 19, 0.06);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    color: var(--color-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.45rem 0.9rem;
    text-transform: uppercase;
}

.product-buy-box h1 {
    color: var(--color-heading);
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.02;
    margin: 1.2rem 0 1.5rem;
}

.product-detail-description {
    color: rgba(74, 74, 74, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    margin-bottom: 1.5rem;
}

.product-detail-price {
    color: #9B6A38;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
    margin-bottom: 1.35rem;
}

.product-buy-box .product-detail-price {
    margin: 2rem 0 1.75rem;
}

.product-quick-benefits {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 0 0 2rem;
}

.product-buy-box .product-quick-benefits {
    margin-bottom: 2rem;
}

.product-quick-benefits li {
    color: #4A4A4A;
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.product-quick-benefits li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.13);
    flex: 0 0 auto;
    margin-top: 0.55rem;
}

.product-buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.product-buy-box .btn.add-to-cart {
    min-width: 190px;
    padding: 15px 28px;
}

.support-link {
    color: var(--color-heading);
    font-weight: 600;
}

.product-detail-section {
    padding: clamp(4.5rem, 7vw, 7rem) 5%;
    background: #FFFFFF;
}

.product-detail-section:nth-of-type(even) {
    background: #FDFBF7;
}

.product-detail-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.product-detail-section h2 {
    color: var(--color-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.2rem;
}

.product-detail-section p {
    max-width: 760px;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.fit-card {
    background: #FFFFFF;
    border: 1px solid rgba(128, 0, 32, 0.08);
    border-radius: 8px;
    min-height: 170px;
    padding: 1.5rem;
    box-shadow: 0 14px 36px rgba(64, 33, 24, 0.05);
}

.fit-card h3,
.package-list h3,
.usage-steps h3 {
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.package-list,
.usage-steps {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin-top: 2rem;
    max-width: 820px;
}

.package-list li,
.usage-steps li {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(128, 0, 32, 0.08);
    border-radius: 8px;
    padding: 1rem 1.15rem;
}

.usage-steps {
    counter-reset: usage-step;
}

.usage-steps li {
    counter-increment: usage-step;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: start;
}

.usage-steps li::before {
    content: counter(usage-step, decimal-leading-zero);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    color: var(--color-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.safety-panel {
    background: #2F211C;
    border-radius: 8px;
    color: #FAF6F0;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.safety-panel h2,
.safety-panel p {
    color: #FAF6F0;
}

.safety-panel ul {
    columns: 2;
    column-gap: 2.5rem;
    list-style-position: inside;
    margin-top: 1rem;
}

.safety-panel li {
    break-inside: avoid;
    margin-bottom: 0.85rem;
}

.product-faq {
    display: grid;
    gap: 0.9rem;
    margin-top: 2.25rem;
}

.product-faq details {
    background: #FFFFFF;
    border: 1px solid rgba(128, 0, 32, 0.08);
    border-radius: 8px;
    padding: 1.1rem 1.3rem;
}

.product-faq summary {
    color: var(--color-heading);
    cursor: pointer;
    font-weight: 700;
}

.product-faq p {
    margin: 0.9rem 0 0;
}

.mobile-sticky-buy {
    display: none;
}

@media (max-width: 900px) {
    .product-detail-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 5%;
    }

    .product-gallery-main {
        width: min(100%, 500px);
        aspect-ratio: 4 / 5;
        border-radius: 24px;
        padding: 12px;
    }

    .product-buy-box {
        max-width: 100%;
        min-height: auto;
        padding: 2.2rem 1.8rem 2.4rem;
        border-radius: 16px;
    }

    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-detail-page {
        padding-bottom: 92px;
    }

    .product-gallery-main {
        width: 100%;
        aspect-ratio: 4 / 5;
        border-radius: 22px;
        padding: 10px;
    }

    .product-gallery-main.product-zoom {
        cursor: default;
    }

    .product-gallery-main.product-zoom:hover img {
        transform: none;
    }

    .product-buy-actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .safety-panel ul {
        columns: 1;
    }

    .mobile-sticky-buy {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.9rem;
        background: rgba(253, 251, 247, 0.96);
        border-top: 1px solid rgba(128, 0, 32, 0.14);
        box-shadow: 0 -12px 34px rgba(64, 33, 24, 0.12);
        padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    }

    .mobile-sticky-buy strong {
        color: var(--color-heading);
        display: block;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .mobile-sticky-buy span {
        color: #9B6A38;
        font-weight: 700;
    }

    .mobile-sticky-buy .btn {
        min-width: 132px;
        padding: 12px 18px 14px;
        font-size: 0.76rem;
        letter-spacing: 1px;
    }

    .product-detail-page .floating-contact {
        bottom: 112px;
    }
}

/* How to Use Section (Split-Screen Video) */
.how-to-use-section {
    padding: 8rem 5%;
    background-color: #F8F5F0;
    /* Zen beige background */
}

.how-to-use-container {
    max-width: 1100px;
    margin: 0 auto;
}

.how-to-use-section .section-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    text-align: center;
}

.how-to-use-split {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.how-to-use-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number-circle {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background-color: #800020;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.step-content h3 {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #800020;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.how-to-use-video {
    flex: 0 0 350px;
    /* Fixed width for the vertical video on desktop */
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .how-to-use-split {
        flex-direction: column-reverse;
        /* Video on top, steps below */
        gap: 4rem;
    }

    .how-to-use-video {
        flex: auto;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Trust Section (Core Values) */
.trust-section {
    padding: 8rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-item:hover .trust-icon {
    transform: translateY(-8px);
}

.trust-item h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 8rem 5% 4rem;
    text-align: center;
}

.footer-large-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 1180px) {
    .story-block {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 8rem;
    }

    .story-block.reverse .story-content {
        grid-column: auto;
        grid-row: auto;
    }

    .trust-flex-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .header-inner {
        padding: 0 18px;
    }

    .header-logo {
        width: 42px;
        height: 42px;
    }

    .brand-logo-text {
        font-size: 1.2rem;
    }

    .nav-right {
        gap: 0.6rem;
    }

    .header-actions {
        gap: 0.55rem;
    }

    .header-zalo-button {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-width: calc(100vw - 24px);
        padding: 0.55rem;
        background: rgba(251, 247, 239, 0.98);
        border: 1px solid rgba(138, 90, 43, 0.16);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 22px 46px rgba(58, 42, 26, 0.16);
    }

    .nav-links a,
    .nav-links .zalo-button {
        min-height: 48px;
        justify-content: flex-start;
        width: 100%;
        padding: 0 0.95rem;
        border-bottom: 1px solid rgba(138, 90, 43, 0.1);
        border-radius: 0;
        color: var(--color-heading) !important;
        background: transparent;
        box-shadow: none;
        font-size: 0.86rem;
        letter-spacing: 0.06em;
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-links .mobile-zalo-link {
        display: inline-flex;
        justify-content: center;
        margin-top: 0.55rem;
        border: 1px solid rgba(138, 90, 43, 0.4);
        border-radius: 999px;
        background: #8A5A2B;
        color: #fff !important;
    }

    .nav-links .mobile-zalo-link:hover {
        background: #6F4320;
        color: #fff !important;
        transform: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .cart-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .cart-toggle-label {
        display: none;
    }

    nav.nav-open .nav-links {
        display: flex;
    }
}

@media (max-width: 600px) {
    .story-image-wrapper {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .scroll-image {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .product-card {
        max-width: 100%;
        padding: 1.25rem;
    }

    .product-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .product-image-wrapper img {
        width: 80%;
        max-height: 310px;
    }

    .story-section,
    .product-section,
    .trust-section,
    #testimonials,
    #faq-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .trust-item {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }

    .trust-item:last-child {
        margin-bottom: 0;
    }

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

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FAF6F0;
    border: 1.5px solid #C08A5D !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-btn:hover {
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
    width: 22px;
    height: 22px;
    stroke: #800020;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease;
}

.contact-btn:hover svg {
    stroke: #C08A5D;
}

/* Cart Drawer */
.cart-status {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 10002;
    min-width: min(90vw, 360px);
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background-color: #261813;
    color: #FAF6F0;
    box-shadow: 0 14px 35px rgba(38, 24, 19, 0.24);
    text-align: center;
    font-size: 0.92rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-status.visible {
    opacity: 1;
    transform: translate(-50%, -8px);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 24, 19, 0.42);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(440px, 100vw);
    height: 100vh;
    background-color: #FDFBF7;
    color: var(--color-text);
    z-index: 10001;
    box-shadow: -24px 0 60px rgba(38, 24, 19, 0.22);
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    padding: 1.5rem;
    border-color: rgba(128, 0, 32, 0.12);
    flex-shrink: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(128, 0, 32, 0.12);
    background: #FAF6F0;
}

.cart-header h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
}

.cart-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(128, 0, 32, 0.2);
    background: #fff;
    color: var(--color-heading);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    margin: 3rem 0;
    text-align: center;
    color: #7a6b64;
    font-size: 1rem;
}

.cart-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.cart-item-main {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.cart-item-name {
    color: var(--color-heading);
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
}

.cart-item-price {
    color: #9B6A38;
    font-weight: 600;
    white-space: nowrap;
}

.cart-item-subtotal {
    margin: 0 0 0.8rem;
    color: #5f514b;
    font-size: 0.92rem;
}

.cart-item-subtotal strong {
    color: var(--color-heading);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(128, 0, 32, 0.18);
    border-radius: 999px;
    background-color: #fff;
    overflow: hidden;
}

.quantity-control button {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--color-heading);
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-control span {
    min-width: 2.25rem;
    text-align: center;
    font-weight: 600;
    color: #261813;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #7a3b28;
    cursor: pointer;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-footer {
    border-top: 1px solid rgba(128, 0, 32, 0.12);
    background: #FAF6F0;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
    color: #5f514b;
}

.cart-total-row {
    color: var(--color-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.cart-checkout {
    width: 100%;
    text-align: center;
}

.cart-checkout[aria-disabled="true"] {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 600px) {

    .cart-header,
    .cart-footer {
        padding: 1.25rem;
    }

    .cart-items {
        padding: 0.75rem 1.25rem;
    }
}

/* Corporate Partners Section */
#partners {
    padding: 8rem 0 4rem;
    /* Adjusted padding to flow into next section */
    background-color: #FDFBF7;
    overflow: hidden;
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.partners-header h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
    text-transform: uppercase;
}

.partners-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for arrows */
}

.partners-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 10px;
    /* Padding for shadow */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

@media (max-width: 600px) {
    .partner-card {
        flex: 0 0 85%;
    }
}

.partner-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #4A4A4A;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.partner-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    object-fit: cover;
    flex-shrink: 0;
}

.partner-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.partner-info h3 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    color: #800020;
    font-size: 1rem;
    margin: 0;
}

.partner-stars {
    display: flex;
    gap: 2px;
}

.partner-stars svg {
    width: 14px;
    height: 14px;
    fill: #D4AF37;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #D4AF37;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, border-color 0.3s;
}

.slider-arrow:hover {
    background-color: #FAF6F0;
    border-color: #800020;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #D4AF37;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.slider-arrow:hover svg {
    stroke: #800020;
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

@media (max-width: 900px) {
    .slider-arrow {
        display: none;
    }

    .partners-slider-wrapper {
        padding: 0;
    }
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #800020;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #800020;
}

/* Testimonials Section */
#testimonials {
    padding: 8rem 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.testimonials-header h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #800020;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 5%;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.testimonials-slider.is-dragging {
    cursor: grabbing;
}

.testimonials-slider.is-dragging * {
    pointer-events: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    user-select: none;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 85%;
    }
}

.stars-container {
    display: flex;
    gap: 4px;
}

.stars-container svg {
    width: 18px;
    height: 18px;
    fill: #D4AF37;
}

.testimonial-text {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
    flex-grow: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EAE6DF;
    object-fit: cover;
}

.testimonial-info h3 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    color: #800020;
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.testimonial-info p {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #9B6A38;
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Refined Corporate Footer v2 */
.zen-footer {
    background-color: #261813;
    color: rgba(250, 246, 240, 0.86);
    padding: 6rem 5% 2rem;
    text-align: left;
}

.zen-footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 7rem);
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-col {
    text-align: left;
}

.footer-eyebrow {
    color: #D8B46A;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.footer-tagline {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #FAF6F0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.4;
    margin: 0 0 2.5rem 0;
    max-width: 500px;
}

.zen-footer .social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin: 0;
}

.zen-footer .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.zen-footer .social-icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(250, 246, 240, 0.9);
    transition: fill 0.3s ease;
}

.zen-footer .social-icon:hover {
    background-color: rgba(250, 246, 240, 0.08);
    transform: translateY(-2px);
}

.zen-footer .social-icon:hover svg {
    fill: #D8B46A;
}

.footer-details {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(250, 246, 240, 0.86);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 520px;
    text-align: left;
}

.footer-details p {
    margin: 0 0 8px 0;
}

.footer-details strong {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-details .highlight-phone {
    color: #D8B46A;
    font-weight: 600;
}

.footer-bct-link {
    display: inline-block;
    margin-top: 1.5rem;
    opacity: 0.95;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-bct-link:hover,
.footer-bct-link:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bct-logo {
    width: clamp(180px, 22vw, 260px);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(100%) opacity(85%);
    transition: filter 0.25s ease;
}

.footer-bct-link:hover .footer-bct-logo,
.footer-bct-link:focus-visible .footer-bct-logo {
    filter: grayscale(0%) opacity(100%);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 246, 240, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: rgba(250, 246, 240, 0.72);
    font-size: 14px;
    margin: 0;
}

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

    .footer-bct-logo {
        width: min(220px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal.active {
        opacity: 1;
        transform: none;
    }

    .product-card:hover,
    .story-image-wrapper:hover img,
    .product-card:hover .product-image-wrapper img,
    .trust-item:hover .trust-icon,
    .contact-btn:hover,
    .zen-footer .social-icon:hover,
    .faq-item:hover {
        transform: none;
    }
}

/* Extracted inline style block 2 from index.html */
#faq-section {
    padding: 8rem 5%;
    background-color: var(--color-bg, #FDFBF7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #3E2723;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.faq-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-wrapper::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    font-size: 1.05rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #3E2723;
    background-color: #fff;
    border: 1px solid rgba(62, 39, 35, 0.15);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-search-input:focus {
    border-color: var(--color-accent, #D4AF37);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.faq-search-input::placeholder {
    color: #A0A0A0;
    font-weight: 300;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 1.8rem 2rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: #3E2723;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background-color: transparent;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-accent, #D4AF37);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    color: #555;
    line-height: 1.8;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
}

.faq-answer.show {
    opacity: 1;
    padding: 0 2rem 1.8rem 2rem;
}

.faq-no-results {
    text-align: center;
    padding: 3rem;
    color: #888;
    font-style: italic;
    display: none;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* Homepage commerce-first layout */
.home-layout {
    background:
        radial-gradient(circle at 88% 6%, rgba(212, 175, 55, 0.12), transparent 24rem),
        linear-gradient(180deg, #FBF7EF 0%, #FDFBF7 32%, #FBF7EF 100%);
}

.home-layout .reveal {
    opacity: 1;
    transform: none;
}

.home-hero,
.home-section,
.origin-foundation-section,
.trust-strip,
.final-cta-section {
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
}

.home-hero {
    width: min(1240px, calc(100% - 36px));
    min-height: auto;
    padding: calc(var(--nav-height) + clamp(56px, 7vw, 96px)) 0 clamp(72px, 8vw, 110px);
    display: grid;
    align-items: center;
    gap: clamp(1.75rem, 4vw, 3rem);
    overflow: visible;
}

.home-hero-media {
    order: 2;
    min-width: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #F3E9DC;
    box-shadow: 0 24px 60px rgba(58, 42, 26, 0.13);
    aspect-ratio: 4 / 5;
}

.home-hero-media img,
.home-product-image img,
.lifestyle-item img,
.home-info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-content {
    order: 1;
    width: 100%;
    max-width: 860px;
    min-width: 0;
    padding-right: clamp(24px, 2vw, 40px);
    overflow: visible;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    color: #9B6A38;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero .home-eyebrow {
    margin-bottom: 18px;
    font-size: clamp(0.8125rem, 1vw, 1.0625rem);
    letter-spacing: 0.12em;
}

.home-hero h1,
.home-section h2,
.final-cta-section h2 {
    color: var(--color-heading);
    letter-spacing: 0;
}

.home-hero h1 {
    width: 100%;
    max-width: 94%;
    margin-bottom: 22px;
    padding-bottom: 0.08em;
    font-size: clamp(2.375rem, 3.6vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
    overflow: visible;
}

.home-hero h1 span,
.origin-title-line {
    display: block;
    max-width: 100%;
    overflow: visible;
}

.origin-title-line-main {
    white-space: nowrap;
}

.origin-title-line-sub {
    white-space: nowrap;
}

.home-hero-lead {
    margin: 0 0 22px;
    color: rgba(58, 42, 26, 0.72);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.home-hero-note {
    max-width: 100%;
    margin-bottom: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
}

@media (min-width: 768px) {
    .home-hero-lead {
        font-size: clamp(1.375rem, 2vw, 1.875rem);
    }

    .home-hero-note {
        font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    }
}

.home-price {
    margin-bottom: 1.25rem;
    color: #9B6A38;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.home-hero-actions,
.home-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.foundation-unused-rule {
    content: '×';
}

.foundation-zigzag-section.origin-foundation-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(4.2rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6.4rem);
    background: #FBF7EF;
}

.foundation-zigzag-header,
.foundation-window-stack {
    width: min(1200px, calc(100% - 56px));
    margin-right: auto;
    margin-left: auto;
}

.foundation-zigzag-header {
    max-width: 1200px;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.foundation-zigzag-header h2 {
    max-width: 850px;
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(2.1rem, 5vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.foundation-window-stack {
    display: grid;
    gap: clamp(2.5rem, 4.8vw, 4rem);
}

.foundation-window {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 5vw, 4.4rem);
    align-items: center;
    padding: clamp(2.2rem, 5vw, 4rem);
    border: 1px solid rgba(120, 80, 40, 0.14);
    border-radius: clamp(28px, 3vw, 36px);
    background: #FFFDF8;
    box-shadow: 0 24px 54px rgba(58, 42, 26, 0.08);
    overflow: hidden;
}

.foundation-window-reverse .foundation-window-content {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
}

.foundation-window-reverse .foundation-window-media {
    grid-column: 1;
    grid-row: 1;
}

.foundation-window-content {
    max-width: 740px;
    min-width: 0;
}

.foundation-window-benefits {
    display: block;
    padding: clamp(1.75rem, 5vw, 3.5rem);
}

.foundation-window-benefits .foundation-window-content {
    max-width: 900px;
}

.foundation-benefit-intro {
    margin-bottom: 1.75rem;
}

.foundation-benefit-intro p {
    margin: 0;
    color: rgba(74, 54, 38, 0.92);
    font-size: clamp(1.05rem, 1.3vw, 1.18rem);
    line-height: 1.72;
}

.foundation-benefit-media {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    margin: 24px 0 32px;
}

.foundation-benefit-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.foundation-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.375rem, 2vw, 1.75rem);
    margin-top: 1.75rem;
}

.foundation-benefit-card {
    min-width: 0;
    padding: clamp(1.375rem, 3vw, 2rem);
    border: 1px solid rgba(120, 80, 40, 0.14);
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 18px 50px rgba(80, 50, 20, 0.06);
}

.foundation-benefit-card h4 {
    margin: 0 0 0.9rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0;
}

.foundation-benefit-card p {
    margin: 0;
    color: rgba(74, 54, 38, 0.92);
    font-size: clamp(0.98rem, 1.05vw, 1.04rem);
    line-height: 1.78;
}

.foundation-benefit-card p+p,
.foundation-benefit-card p+ul {
    margin-top: 0.9rem;
}

.foundation-benefit-card ul {
    margin: 0.9rem 0 0;
    padding-left: 1.25rem;
    list-style: none;
}

.foundation-benefit-card li {
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
    color: rgba(74, 54, 38, 0.92);
    font-size: clamp(0.98rem, 1.05vw, 1.04rem);
    line-height: 1.72;
}

.foundation-benefit-card li:last-child {
    margin-bottom: 0;
}

.foundation-window-number {
    display: inline-flex;
    margin-bottom: 0.65rem;
    color: #9B6A38;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.foundation-window-title {
    margin: 0 0 1.05rem;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

.foundation-window-text {
    color: rgba(74, 54, 38, 0.92);
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    line-height: 1.82;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
}

.foundation-window-text p {
    margin: 0;
}

.foundation-window-text p+p {
    margin-top: 0.9rem;
}

.foundation-window-material .foundation-window-text {
    text-align: justify;
    text-align-last: left;
    overflow-wrap: normal;
    font-weight: 300;
    color: rgba(58, 42, 26, 0.72);
}

.foundation-window-phap-khi .foundation-window-text {
    text-align: justify;
    text-align-last: left;
    overflow-wrap: normal;
}

.foundation-window-phap-khi .foundation-window-text p {
    text-align: justify;
    text-align-last: left;
}

.certificate-open-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 22px 10px 14px;
    border: 1px solid rgba(120, 80, 40, 0.22);
    border-radius: 999px;
    background: #8A5A2B;
    color: #fff;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(80, 50, 20, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.certificate-btn-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 18px;
    flex: 0 0 auto;
}

.certificate-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.certificate-btn-text strong {
    font-size: 15px;
    font-weight: 650;
}

.certificate-btn-text small {
    margin-top: 4px;
    font-size: 12.5px;
    font-weight: 400;
    opacity: 0.82;
}

.certificate-open-btn:hover,
.certificate-open-btn:focus-visible {
    background: #74491f;
    box-shadow: 0 12px 30px rgba(80, 50, 20, 0.18);
    transform: translateY(-1px);
}

.certificate-open-btn:focus-visible,
.certificate-modal-close:focus-visible,
.certificate-original-link:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.55);
    outline-offset: 3px;
}

.certificate-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.certificate-modal.is-open {
    display: flex;
}

.certificate-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 8, 0.62);
    backdrop-filter: blur(6px);
}

.certificate-modal-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(120, 80, 40, 0.16);
    border-radius: 28px;
    background: #FFFDF8;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.certificate-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(58, 42, 26, 0.08);
    color: #3A2A1A;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.certificate-modal-close:hover {
    background: rgba(58, 42, 26, 0.14);
}

.certificate-modal-header {
    padding: 28px 32px 16px;
    border-bottom: 1px solid rgba(120, 80, 40, 0.12);
}

.certificate-modal-header h3 {
    margin: 0 44px 8px 0;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.certificate-modal-header p {
    margin: 0;
    color: rgba(58, 42, 26, 0.72);
    font-size: 0.98rem;
    line-height: 1.6;
}

.certificate-modal-body {
    max-height: calc(90vh - 120px);
    overflow: auto;
    padding: 24px;
}

.certificate-modal-body img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.certificate-original-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid rgba(138, 90, 43, 0.22);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.92);
    color: #74491f;
    font-weight: 700;
}

.foundation-window-media {
    position: relative;
    width: 100%;
    max-width: 496px;
    max-height: 620px;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(120, 80, 40, 0.12);
    background: #EFE3D2;
}

.foundation-window-media::before,
.foundation-window-media::after {
    content: none;
    position: absolute;
    border: 1px solid rgba(138, 90, 43, 0.16);
    border-radius: 999px;
    pointer-events: none;
}

.foundation-window-media::before {
    width: 72%;
    aspect-ratio: 1;
    inset: 14% auto auto 14%;
}

.foundation-window-media::after {
    width: 46%;
    aspect-ratio: 1;
    right: -12%;
    bottom: -7%;
    background: rgba(255, 253, 248, 0.28);
}

.foundation-window-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.foundation-media-material {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 252, 246, 0.32)),
        radial-gradient(circle at 28% 25%, rgba(155, 106, 56, 0.24), transparent 30%),
        linear-gradient(150deg, #E2D4BD, #FAF4E9 52%, #D9E2CB);
}

.foundation-media-benefit {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 252, 246, 0.3)),
        radial-gradient(circle at 70% 18%, rgba(132, 92, 58, 0.2), transparent 28%),
        linear-gradient(155deg, #EFE8DC, #FBF6ED 48%, #D8C4AA);
}

.foundation-media-user {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 252, 246, 0.32)),
        radial-gradient(circle at 30% 22%, rgba(212, 175, 55, 0.24), transparent 30%),
        linear-gradient(155deg, #EBDDC9, #FFF8ED 48%, #D4C1A6);
}

.foundation-media-icon {
    position: relative;
    z-index: 1;
    color: rgba(118, 78, 42, 0.55);
    font-family: var(--font-heading);
    font-size: clamp(6rem, 11vw, 9.5rem);
    line-height: 1;
}

.foundation-media-number {
    position: absolute;
    right: 1.35rem;
    bottom: 1rem;
    color: rgba(118, 78, 42, 0.16);
    font-family: var(--font-heading);
    font-size: clamp(4.8rem, 8vw, 7.2rem);
    line-height: 0.8;
}

@media (min-width: 768px) {

    .foundation-window-content p,
    .foundation-window-content li {
        text-align: left;
        text-align-last: left;
        line-height: 1.78;
    }

    .foundation-benefit-card p,
    .foundation-benefit-card li {
        text-align: justify;
        text-align-last: left;
    }
}

@media (max-width: 900px) {
    .foundation-zigzag-section.origin-foundation-section {
        padding: clamp(3.2rem, 7vw, 4.5rem) 0 clamp(3.2rem, 7vw, 4.5rem);
    }

    .foundation-window {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .foundation-window-content,
    .foundation-window-media,
    .foundation-window-reverse .foundation-window-content,
    .foundation-window-reverse .foundation-window-media {
        grid-column: 1;
    }

    .foundation-window-media,
    .foundation-window-reverse .foundation-window-media {
        grid-row: 1;
    }

    .foundation-window-content,
    .foundation-window-reverse .foundation-window-content {
        grid-row: 2;
        justify-self: stretch;
    }

    .foundation-window-media {
        width: min(100%, 496px);
        justify-self: center;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 767px) {

    .foundation-window-content p,
    .foundation-window-content li,
    .foundation-window-text {
        text-align: left;
        text-align-last: auto;
        line-height: 1.72;
    }

    .foundation-window-material .foundation-window-text {
        text-align: justify;
        text-align-last: left;
    }

    .foundation-window-phap-khi .foundation-window-text,
    .foundation-window-phap-khi .foundation-window-text p {
        text-align: justify;
        text-align-last: left;
    }

    .foundation-benefit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .foundation-benefit-media {
        margin: 20px 0 24px;
    }

    .foundation-benefit-card {
        padding: clamp(1.25rem, 5.5vw, 1.5rem);
    }

    .foundation-benefit-card p,
    .foundation-benefit-card li {
        text-align: left;
        text-align-last: auto;
        line-height: 1.72;
    }

    .certificate-open-btn {
        width: 100%;
        min-height: 58px;
        justify-content: center;
        border-radius: 18px;
    }

    .certificate-modal {
        padding: 14px;
    }

    .certificate-modal-dialog {
        max-height: 92vh;
        border-radius: 22px;
    }

    .certificate-modal-header {
        padding: 22px 22px 14px;
    }

    .certificate-modal-body {
        max-height: calc(92vh - 120px);
        padding: 16px;
    }

    .certificate-original-link {
        width: 100%;
    }

    .foundation-window-media {
        max-height: 480px;
    }
}

@media (max-width: 520px) {
    .foundation-zigzag-section.origin-foundation-section {
        padding: 2.55rem 0 2.6rem;
    }

    .foundation-zigzag-header,
    .foundation-window-stack {
        width: min(100% - 28px, 1200px);
    }

    .foundation-zigzag-header {
        margin-bottom: 1.6rem;
    }

    .foundation-zigzag-header h2 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .foundation-window-stack {
        gap: clamp(1.75rem, 8vw, 2.25rem);
    }

    .foundation-window {
        gap: 1.35rem;
        padding: clamp(1.38rem, 6vw, 1.75rem);
        border-radius: 28px;
    }

    .foundation-window-media {
        border-radius: 22px;
    }

    .foundation-window-title {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
    }

    .foundation-window-text {
        font-size: clamp(0.97rem, 4.15vw, 1.03rem);
        line-height: 1.76;
    }
}

.home-btn {
    min-height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-btn:hover {
    transform: translateY(-1px);
}

.home-btn-primary {
    background: #8A5A2B;
    border-color: #8A5A2B;
    color: #fff !important;
}

.home-btn-secondary {
    background: #FBF7EF;
    border-color: rgba(138, 90, 43, 0.34);
    color: var(--color-heading) !important;
}

.home-btn-ghost {
    background: transparent;
    border-color: rgba(58, 42, 26, 0.18);
    color: var(--color-heading);
}

.trust-strip {
    display: grid;
    gap: 0.75rem;
    padding: 0 0 2.2rem;
}

.trust-strip-item,
.home-product-card,
.home-info-card,
.step-card,
.usage-step,
.partner-card,
.testimonial-card,
.experience-card,
.question-item {
    border: 1px solid rgba(138, 90, 43, 0.12);
    background: rgba(255, 252, 247, 0.86);
    box-shadow: 0 14px 34px rgba(58, 42, 26, 0.06);
}

.trust-strip-item {
    min-height: 104px;
    border-radius: 18px;
    padding: 1rem;
}

.trust-strip-item span {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: #9B6A38;
    font-size: 1.1rem;
}

.trust-strip-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-heading);
    font-size: 0.95rem;
}

.trust-strip-item p,
.home-product-copy p,
.home-info-card p,
.step-card p,
.experience-card p,
.question-item p,
.final-cta-section p {
    margin: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: 0.96rem;
    line-height: 1.65;
}

.home-section {
    padding: 3.2rem 0;
}

#partners.partners-section,
#testimonials.testimonials-section,
#faq-section.questions-section {
    padding: 3.2rem 0;
    background: transparent;
    border-top: 0;
    overflow: visible;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.home-section-heading h2,
.final-cta-section h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.08;
}

.home-product-grid,
.home-card-grid,
.step-card-grid,
.partners-grid,
.testimonials-grid,
.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.home-product-card {
    border-radius: 22px;
    overflow: hidden;
    display: grid;
}

.home-product-image {
    aspect-ratio: 1 / 1;
    background: #F1E8DC;
    overflow: hidden;
}

.home-product-image img {
    transition: transform 0.45s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.035);
}

.home-product-copy {
    padding: 1.15rem 1.1rem 0.6rem;
}

.home-product-copy h3,
.home-info-card h3,
.step-card h3 {
    margin-bottom: 0.45rem;
    color: var(--color-heading);
    font-size: 1.15rem;
    line-height: 1.25;
}

.home-product-copy strong {
    display: block;
    margin-top: 0.8rem;
    color: #9B6A38;
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.home-product-actions {
    padding: 0.4rem 1.1rem 1.15rem;
}

.home-product-actions .home-btn {
    flex: 1 1 100%;
}

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

.home-info-card,
.step-card,
.experience-card {
    border-radius: 18px;
    padding: 1.15rem;
}

.home-info-card-image {
    aspect-ratio: 4 / 3;
    margin: -1.15rem -1.15rem 1rem;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: #F0E7DC;
}

.home-info-card span {
    display: block;
    margin-bottom: 0.85rem;
    color: #9B6A38;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.step-card {
    min-height: 240px;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8A5A2B;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.step-card p+p {
    margin-top: 0.35rem;
}

.home-how-to-layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.home-how-to-steps {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.usage-step {
    border-radius: 18px;
    padding: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.usage-step > span {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8A5A2B;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.usage-step h3 {
    margin-bottom: 0.4rem;
    color: var(--color-heading);
    font-size: 1.2rem;
    line-height: 1.3;
}

.usage-step p {
    margin: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: 1.05rem;
    line-height: 1.65;
}

.home-how-to-video {
    width: min(100%, 430px);
    justify-self: center;
}

.home-video-frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    background: #E8DED1;
    box-shadow: 0 22px 52px rgba(58, 42, 26, 0.14);
}

.home-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.benefit-panel,
.final-cta-section {
    border-radius: 28px;
    padding: 1.4rem;
    background: #3A2A1A;
    color: #FBF7EF;
}

.benefit-panel {
    display: grid;
    gap: 1.5rem;
}

.benefit-panel h2,
.final-cta-section h2 {
    color: #FBF7EF;
}

.benefit-panel .home-eyebrow,
.final-cta-section .home-eyebrow {
    color: #E5C68C;
}

.benefit-list {
    display: grid;
    gap: 0.7rem;
}

.benefit-list div {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(251, 247, 239, 0.9);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.lifestyle-item {
    min-height: 0;
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: #F0E7DC;
}

.lifestyle-item-large {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
}

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

.partner-card {
    min-width: 0;
    min-height: auto;
    height: auto;
    border-radius: 18px;
    padding: 1.1rem;
    display: block;
    flex: initial;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(58, 42, 26, 0.1);
}

.partner-logo-placeholder {
    width: 48px;
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.14);
    color: var(--color-heading);
    font-size: 1.2rem;
}

.partner-card h3 {
    margin-bottom: 0.45rem;
    color: var(--color-heading);
    font-size: 1.08rem;
    line-height: 1.28;
}

.partner-card p {
    margin: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-grid,
.testimonials-grid {
    grid-template-columns: 1fr;
}

.testimonials-grid .testimonial-card {
    min-width: 0;
    height: auto;
    border-radius: 20px;
    padding: 1.15rem;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.testimonials-grid .testimonial-avatar {
    width: 52px;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #800020;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    flex: none;
}

.testimonial-copy strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--color-heading);
    line-height: 1.35;
}

.testimonial-copy p {
    margin: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: 0.96rem;
    line-height: 1.65;
}

.testimonial-copy span {
    display: inline-flex;
    margin-top: 0.85rem;
    color: #9B6A38;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.experience-card strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--color-heading);
}

.question-list {
    display: grid;
    gap: 0.75rem;
}

.question-item {
    border-radius: 16px;
    overflow: hidden;
}

.question-item summary {
    min-height: 58px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--color-heading);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.question-item summary::after {
    content: '+';
    color: #9B6A38;
    font-size: 1.4rem;
    font-weight: 400;
}

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

.question-item p {
    padding: 0 1.1rem 1.1rem;
}

.final-cta-section {
    margin-bottom: 3rem;
    display: grid;
    gap: 1.2rem;
}

.final-cta-section p {
    margin-top: 0.8rem;
    color: rgba(251, 247, 239, 0.78);
}

.final-cta-section .home-btn {
    width: 100%;
}

@media (min-width: 700px) {

    .home-hero,
    .home-section,
    .origin-foundation-section,
    .trust-strip,
    .final-cta-section {
        width: min(1200px, calc(100% - 56px));
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-card-grid,
    .step-card-grid,
    .partners-grid,
    .testimonials-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-product-actions .home-btn {
        flex-basis: calc(50% - 0.5rem);
    }

    .home-product-actions .home-btn-ghost {
        flex-basis: 100%;
    }

    .benefit-panel,
    .final-cta-section {
        padding: 2rem;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lifestyle-item-large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }
}

@media (min-width: 980px) {
    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: calc(var(--nav-height) + 72px);
        padding-bottom: 96px;
    }

    .home-hero-media {
        width: min(100%, 560px);
        justify-self: center;
        aspect-ratio: 4 / 5;
    }

    .home-hero-content {
        max-width: 860px;
    }

    .home-hero .home-eyebrow {
        margin-bottom: 20px;
        font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
        letter-spacing: 0.12em;
    }

    .trust-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-bottom: 3.4rem;
    }

    .home-section {
        padding: 4.2rem 0;
    }

    #partners.partners-section,
    #testimonials.testimonials-section,
    #faq-section.questions-section {
        padding: 4.2rem 0;
    }

    .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-product-card {
        grid-template-rows: auto 1fr auto;
    }

    .compact-grid,
    .step-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .step-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-how-to-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
        gap: 2.5rem;
    }

    .home-how-to-video {
        justify-self: end;
        max-width: 390px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefit-panel,
    .final-cta-section {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .benefit-panel,
    .final-cta-section {
        align-items: center;
        padding: 2.5rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .final-cta-section .home-btn {
        width: auto;
        justify-self: end;
    }
}

@media (min-width: 1200px) {
    .home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(48px, 5vw, 72px);
        align-items: center;
        padding-top: calc(var(--nav-height) + 88px);
        padding-bottom: 100px;
    }

    .home-hero-media {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .home-hero-content {
        max-width: none;
    }
}

@media (max-width: 991px) {
    .home-hero-content {
        padding-right: 0;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(2.125rem, 8vw, 2.875rem);
        line-height: 1.12;
    }

    .origin-title-line-main,
    .origin-title-line-sub {
        white-space: normal;
    }
}

@media (max-width: 520px) {

    .home-hero,
    .home-section,
    .origin-foundation-section,
    .trust-strip,
    .final-cta-section {
        width: min(100% - 28px, 1200px);
    }

    .home-hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 64px;
        gap: 1.4rem;
    }

    .home-hero-media {
        border-radius: 18px;
        aspect-ratio: 4 / 5;
    }

    .home-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(2.125rem, 8vw, 2.875rem);
        line-height: 1.12;
    }

    .home-hero .home-eyebrow {
        margin-bottom: 18px;
        font-size: clamp(0.8125rem, 3.7vw, 0.9375rem);
        letter-spacing: 0.12em;
    }

    .home-hero-lead {
        margin-bottom: 22px;
        font-size: clamp(1.25rem, 5.8vw, 1.4375rem);
        line-height: 1.35;
    }

    .home-hero-note {
        font-size: clamp(1rem, 4.1vw, 1.0625rem);
        line-height: 1.75;
        text-align: left;
        text-align-last: auto;
    }

    .home-hero-actions .home-btn,
    .home-product-actions .home-btn {
        width: 100%;
    }

    .home-section {
        padding: 2.55rem 0;
    }

    .origin-foundation-section {
        padding: 2.55rem 0 2.2rem;
    }

    #partners.partners-section,
    #testimonials.testimonials-section,
    #faq-section.questions-section {
        padding: 2.55rem 0;
    }

    .home-section-heading h2,
    .final-cta-section h2 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-layout {
        background: linear-gradient(180deg, #FBF7EF 0%, #FDFBF7 32%, #FBF7EF 100%);
    }
}

@media (max-width: 700px) {
    .floating-contact {
        display: none;
    }
}

/* Stable media ratios for homepage image replacement */
.home-hero-media {
    aspect-ratio: 4 / 5;
}

/* Knowledge hub */
.blog-page {
    background:
        radial-gradient(circle at 86% 4%, rgba(212, 175, 55, 0.13), transparent 24rem),
        linear-gradient(180deg, #FBF7EF 0%, #FDFBF7 38%, #FBF7EF 100%);
}

.blog-main,
.article-main {
    padding-top: var(--nav-height);
}

.blog-hero,
.blog-section,
.article-shell,
.article-related,
.article-final-cta,
.latest-knowledge-section {
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
}

.blog-hero {
    min-height: 420px;
    padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem);
    display: grid;
    gap: 1.4rem;
    align-items: end;
}

.blog-hero h1,
.article-header h1 {
    color: var(--color-heading);
    font-size: clamp(2.5rem, 8vw, 5.2rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.blog-hero p,
.article-lead {
    max-width: 760px;
    margin: 0;
    color: rgba(74, 74, 74, 0.86);
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.75;
}

.blog-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0;
    margin: 1.2rem 0 0;
    list-style: none;
}

.blog-category-list li {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(138, 90, 43, 0.2);
    border-radius: 999px;
    padding: 0 1rem;
    background: rgba(255, 252, 247, 0.72);
    color: var(--color-heading);
    font-size: 0.86rem;
    font-weight: 700;
}

.blog-section {
    padding: 0 0 clamp(3rem, 7vw, 5.5rem);
}

.blog-section-heading {
    margin-bottom: 1.4rem;
}

.blog-section-heading h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.blog-card {
    min-width: 0;
    border: 1px solid rgba(138, 90, 43, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 14px 34px rgba(58, 42, 26, 0.06);
    display: grid;
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F0E7DC;
}

.blog-card-image img,
.article-hero-image img,
.article-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-body {
    padding: 1.15rem;
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.blog-card-category,
.article-category {
    color: #9B6A38;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;
    color: var(--color-heading);
    font-size: 1.22rem;
    line-height: 1.28;
}

.blog-card p {
    margin: 0;
    color: rgba(74, 74, 74, 0.82);
    font-size: 0.96rem;
    line-height: 1.65;
}

.blog-card-meta {
    color: rgba(74, 74, 74, 0.72);
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-card .home-btn {
    width: 100%;
    margin-top: 0.2rem;
}

.latest-knowledge-section {
    padding-top: 3rem;
}

.latest-knowledge-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.article-shell {
    padding: clamp(2.5rem, 7vw, 5.5rem) 0 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
    color: rgba(74, 74, 74, 0.72);
    font-size: 0.88rem;
}

.breadcrumb a {
    color: #9B6A38;
    font-weight: 700;
}

.article-header {
    max-width: 900px;
    margin-bottom: 1.6rem;
}

.article-header h1 {
    margin: 0.4rem 0 1rem;
}

.article-hero-image {
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    overflow: hidden;
    background: #F0E7DC;
    box-shadow: 0 22px 54px rgba(58, 42, 26, 0.12);
}

.article-layout {
    display: grid;
    gap: 1.6rem;
    padding: clamp(1.8rem, 5vw, 3.5rem) 0;
}

.article-toc,
.article-product-card,
.article-related-card {
    border: 1px solid rgba(138, 90, 43, 0.13);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 14px 34px rgba(58, 42, 26, 0.05);
}

.article-toc {
    padding: 1rem;
}

.article-toc strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.article-toc ol {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.25rem;
}

.article-toc a {
    color: rgba(74, 74, 74, 0.86);
}

.article-content {
    min-width: 0;
}

.article-content h2,
.article-content h3 {
    color: var(--color-heading);
    letter-spacing: 0;
}

.article-content h2 {
    margin: 2rem 0 0.85rem;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    line-height: 1.12;
}

.article-content h3 {
    margin: 1.4rem 0 0.55rem;
    font-size: 1.35rem;
    line-height: 1.25;
}

.article-content p,
.article-content li {
    color: rgba(74, 74, 74, 0.88);
    font-size: 1.03rem;
    line-height: 1.82;
}

.article-content p {
    margin: 0 0 1rem;
}

.article-content ul {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.2rem;
    padding-left: 1.2rem;
}

.article-product-card {
    margin: 2rem 0;
    overflow: hidden;
    display: grid;
}

.article-product-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #F0E7DC;
}

.article-product-copy {
    padding: 1.15rem;
}

.article-product-copy h3 {
    margin-top: 0;
}

.article-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.article-related {
    padding: 0 0 clamp(2.5rem, 6vw, 4.5rem);
}

.article-related h2 {
    margin-bottom: 1rem;
    color: var(--color-heading);
    font-size: clamp(1.9rem, 4.8vw, 3rem);
}

.article-related-grid {
    display: grid;
    gap: 1rem;
}

.article-related-card {
    padding: 1rem;
}

.article-related-card span {
    display: block;
    margin-bottom: 0.45rem;
}

.article-related-card h3 {
    color: var(--color-heading);
    font-size: 1.18rem;
    line-height: 1.3;
}

.article-final-cta {
    margin-bottom: 3rem;
    border-radius: 28px;
    padding: 1.5rem;
    background: #3A2A1A;
    color: #FBF7EF;
    display: grid;
    gap: 1rem;
}

.article-final-cta h2 {
    margin: 0;
    color: #FBF7EF;
    font-size: clamp(1.8rem, 4.8vw, 3rem);
    line-height: 1.1;
}

.article-final-cta p {
    margin: 0;
    color: rgba(251, 247, 239, 0.78);
}

@media (min-width: 700px) {

    .blog-hero,
    .blog-section,
    .article-shell,
    .article-related,
    .article-final-cta,
    .latest-knowledge-section {
        width: min(1200px, calc(100% - 56px));
    }

    .blog-card-grid,
    .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-product-card {
        grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    }

    .article-product-media {
        aspect-ratio: 4 / 5;
    }
}

@media (min-width: 980px) {
    .blog-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-card {
        grid-template-rows: auto 1fr;
    }

    .article-layout {
        grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
        align-items: start;
        gap: 2.4rem;
    }

    .article-toc {
        position: sticky;
        top: calc(var(--nav-height) + 18px);
    }

    .article-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-final-cta {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        padding: 2.5rem;
    }
}

@media (max-width: 520px) {

    .blog-hero,
    .blog-section,
    .article-shell,
    .article-related,
    .article-final-cta,
    .latest-knowledge-section {
        width: min(100% - 28px, 1200px);
    }

    .blog-hero {
        min-height: auto;
        padding-top: 2.4rem;
    }

    .blog-category-list li {
        width: 100%;
        justify-content: center;
    }

    .article-hero-image {
        border-radius: 18px;
        aspect-ratio: 4 / 5;
    }

    .article-product-actions .home-btn,
    .article-final-cta .home-btn {
        width: 100%;
    }
}

.home-product-image,
.testimonials-grid .testimonial-avatar,
.partner-logo,
.partner-logo-placeholder {
    aspect-ratio: 1 / 1;
}

.testimonials-grid .testimonial-avatar {
    width: 52px;
    height: 52px;
}

.home-info-card-image {
    aspect-ratio: 4 / 3;
}

.lifestyle-item {
    aspect-ratio: 1 / 1;
}

.lifestyle-item-large {
    aspect-ratio: 4 / 5;
}

.home-video-frame {
    aspect-ratio: 9 / 16;
}

.home-hero-media img,
.home-product-image img,
.home-info-card-image img,
.lifestyle-item img,
.partner-logo,
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Usage step cards – mobile override */
@media (max-width: 767px) {
    .home-how-to-steps {
        gap: 0.85rem;
        height: auto;
    }

    .usage-step {
        padding: 1rem;
        gap: 0.95rem;
    }

    .usage-step > span {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.05rem;
    }

    .usage-step h3 {
        font-size: 1.08rem;
    }

    .usage-step p {
        font-size: 0.96rem;
        line-height: 1.65;
    }
}

/* Use-case heading – keep on one line at desktop */
@media (min-width: 1200px) {
    .use-case-section .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2.2rem, 4.2vw, 3.6rem);
        max-width: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .use-case-section .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

/* How-to heading – keep on one line at desktop */
@media (min-width: 1200px) {
    .home-how-to .home-section-heading {
        max-width: 100%;
    }

    .home-how-to .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        max-width: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-how-to .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

/* Testimonials heading – keep on one line at desktop */
@media (min-width: 1200px) {
    .testimonials-section .home-section-heading {
        max-width: 100%;
    }

    .testimonials-section .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        max-width: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonials-section .home-section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

/* Story content divider */
.story-divider {
    width: 100%;
    height: 1px;
    background: rgba(120, 80, 40, 0.16);
    margin: 28px 0;
}

/* Remove all eyebrow labels above section headings */
.home-eyebrow,
.section-eyebrow,
.foundation-eyebrow,
.eyebrow,
.section-label,
.home-section-kicker,
.kicker,
.overline {
  display: none !important;
}

/* Adjust heading spacing to remove extra gap left by hidden labels */
.home-section-heading,
.section-heading,
.source-origin-section h1,
.home-how-to .home-section-heading,
.testimonials-section .home-section-heading {
  margin-top: 0 !important;
}

/* Redesign for "Công dụng sản phẩm" Section as Read More Cards */
.benefits-product-section {
  padding: clamp(36px, 5vw, 64px) 0;
}

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

.benefits-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #FFFDF8;
  border: 1px solid rgba(120, 80, 40, 0.14);
  box-shadow: 0 18px 50px rgba(80, 50, 20, 0.07);
}

.benefits-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.benefits-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.benefits-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.benefits-product-content h3 {
  margin: 0 0 10px;
  color: #8A1531;
  font-size: 28px;
  line-height: 1.22;
}

.benefits-product-subtitle {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(58, 42, 26, 0.72);
}

.benefits-product-text {
  position: relative;
  flex: 1;
  max-height: 230px;
  overflow: hidden;
}

.benefits-product-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,253,248,0), #FFFDF8);
  pointer-events: none;
}

.benefits-product-text.is-expanded {
  max-height: none;
}

.benefits-product-text.is-expanded::after {
  display: none;
}

.benefits-product-text p,
.benefits-product-text li {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(58, 42, 26, 0.72);
  font-weight: 400;
}

.benefits-product-text ul {
  margin: 0;
  padding-left: 1.2rem;
}

.benefits-product-text li {
  margin-bottom: 10px;
}

.benefits-read-more {
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 80, 40, 0.22);
  background: transparent;
  color: #8A1531;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.benefits-read-more:hover {
  background: rgba(138, 90, 43, 0.08);
}

@media (max-width: 1199px) {
  .benefits-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .benefits-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits-product-card {
    border-radius: 24px;
  }

  .benefits-product-content {
    padding: 20px;
  }

  .benefits-product-content h3 {
    font-size: 22px;
  }

  .benefits-product-subtitle,
  .benefits-product-text p,
  .benefits-product-text li {
    font-size: 15px;
    line-height: 1.68;
  }

  .benefits-product-text {
    max-height: 250px;
  }

  .benefits-read-more {
    width: 100%;
    justify-content: center;
  }
}

/* Hide section numbers globally and adjust margin */
.section-number,
.foundation-window-number,
.window-number,
.benefit-number {
  display: none !important;
}

.foundation-window-title,
.section-heading h2,
.foundation-window-content h2,
.foundation-window-content h3 {
  margin-top: 0 !important;
}

/* Footer Contrast & Readability Redesign */
.site-footer,
.zen-footer {
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.site-footer::before,
.zen-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 10, 5, 0.72);
  pointer-events: none;
  z-index: 0;
}

.zen-footer-container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.site-footer .footer-mission,
.zen-footer .footer-mission,
.site-footer .footer-brand-col p:not(.footer-tagline),
.zen-footer .footer-brand-col p:not(.footer-tagline) {
  color: #E6C36A !important;
}

.site-footer .footer-tagline,
.zen-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.94) !important;
}

.site-footer .footer-company,
.site-footer .footer-contact,
.site-footer .footer-info,
.site-footer .footer-details,
.site-footer .footer-details p,
.site-footer .footer-details strong,
.zen-footer .footer-company,
.zen-footer .footer-contact,
.zen-footer .footer-info,
.zen-footer .footer-details,
.zen-footer .footer-details p,
.zen-footer .footer-details strong {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-footer h3,
.site-footer h4,
.site-footer .footer-eyebrow,
.zen-footer h3,
.zen-footer h4,
.zen-footer .footer-eyebrow {
  color: #E6C36A !important;
}

.site-footer a,
.zen-footer a {
  color: rgba(255, 255, 255, 0.92) !important;
  transition: color 0.3s ease;
}

.site-footer a:hover,
.zen-footer a:hover {
  color: #E6C36A !important;
}

.site-footer .footer-copyright,
.zen-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Force original color on BCT logo and prevent hover/click states */
.footer-bct-link img.footer-bct-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  opacity: 1;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  cursor: default;
  pointer-events: none;
}

.footer-bct-link {
  filter: none !important;
  mix-blend-mode: normal !important;
}

.footer-bct-link:hover img.footer-bct-logo {
  opacity: 1;
  filter: none !important;
  -webkit-filter: none !important;
  transform: none;
}

.footer-mission-text {
  margin-top: 18px;
  max-width: 640px;
  color: #E6C36A !important;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer-mission-text {
    font-size: 15.5px;
    line-height: 1.72;
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
  }

  .cart-toggle.cart-button,
  .nav-toggle.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    position: relative;
  }

  .cart-toggle.cart-button {
    border: 1px solid rgba(138, 21, 49, 0.12);
    background: rgba(255, 253, 248, 0.96);
    color: #8A1531;
    box-shadow: 0 8px 22px rgba(80, 50, 20, 0.08);
  }

  .cart-toggle.cart-button svg {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0;
    stroke-width: 2;
  }

  .nav-toggle.mobile-menu-toggle span {
    flex: 0 0 auto;
  }

  .cart-toggle.cart-button .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    border-radius: 999px;
    background: #8A1531;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
    box-shadow: 0 2px 8px rgba(138, 21, 49, 0.24);
  }

  .cart-toggle.cart-button:hover {
    transform: none;
    background: #FFFDF8;
  }

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

  .home-hero h1.origin-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .home-hero h1.origin-title .origin-title-line {
    display: block;
    text-align: center;
    max-width: 100%;
  }
}
.latest-posts-section {
    padding: 88px 0;
    background: #fffdf8;
}

.latest-posts-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.latest-posts-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.latest-posts-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(138, 21, 49, 0.08);
    color: #8A1531;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.latest-posts-heading h2 {
    margin: 0;
    color: #8A1531;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.latest-posts-heading p {
    margin: 18px 0 0;
    color: rgba(58, 42, 26, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.latest-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: #fffdf8;
    border: 1px solid rgba(120, 80, 40, 0.14);
    box-shadow: 0 18px 50px rgba(80, 50, 20, 0.07);
    text-decoration: none;
    color: inherit;
}

.latest-post-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1e5d4;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.latest-post-card:hover .latest-post-image img {
    transform: scale(1.04);
}

.latest-post-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.latest-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: rgba(58, 42, 26, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.latest-post-meta span:first-child {
    color: #8A1531;
}

.latest-post-body h3 {
    margin: 0 0 12px;
    color: #8A1531;
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.latest-post-body p {
    margin: 0 0 18px;
    color: rgba(58, 42, 26, 0.72);
    font-size: 15.5px;
    line-height: 1.68;
}

.latest-post-body strong {
    margin-top: auto;
    color: #8A1531;
    font-size: 14px;
    font-weight: 800;
}

.latest-posts-action {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.latest-posts-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #8A1531;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(138, 21, 49, 0.18);
}

.latest-posts-empty {
    padding: 28px;
    border-radius: 24px;
    background: #fff8ed;
    border: 1px solid rgba(120, 80, 40, 0.14);
    color: rgba(58, 42, 26, 0.72);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .latest-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .latest-posts-section {
        padding: 64px 0;
    }

    .latest-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .latest-post-card {
        border-radius: 24px;
    }

    .latest-post-body {
        padding: 20px;
    }
}
/* FIX LOCK: Nguồn gốc nguyên liệu */
#material-origin-card {
    width: min(1180px, calc(100vw - 48px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;

    display: grid !important;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr) !important;
    gap: clamp(32px, 5vw, 72px) !important;
    align-items: center !important;
    padding: clamp(32px, 5vw, 64px) !important;
    border-radius: 34px !important;
}

#material-origin-card .foundation-window-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 520px !important;
    min-width: 0 !important;
    justify-self: start !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

#material-origin-card .foundation-window-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    justify-self: start !important;
    box-sizing: border-box !important;
}

#material-origin-card .foundation-window-media img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 560px !important;
    max-height: 62vh !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 26px !important;
}

#material-origin-card .foundation-window-title,
#material-origin-card .foundation-window-text {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 900px) {
    #material-origin-card {
        width: min(100vw - 28px, 1180px) !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 28px !important;
    }

    #material-origin-card .foundation-window-media,
    #material-origin-card .foundation-window-content {
        grid-column: 1 !important;
        max-width: 100% !important;
        justify-self: stretch !important;
    }

    #material-origin-card .foundation-window-media {
        grid-row: 1 !important;
    }

    #material-origin-card .foundation-window-content {
        grid-row: 2 !important;
    }

    #material-origin-card .foundation-window-media img {
        height: auto !important;
        max-height: none !important;
    }
}
.hero-loop-video-section {
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    margin-top: calc(var(--nav-height) + 12px);
    overflow: hidden;
    background: #1f1611;
    display: block;
}

.hero-loop-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-loop-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(38, 24, 19, 0.08), rgba(38, 24, 19, 0.22));
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-loop-video-section {
        height: calc(100svh - var(--nav-height));
        min-height: 560px;
    }

    .hero-loop-video {
        object-fit: cover;
        object-position: center center;
    }
}
#partners {
    display: none !important;
}

/* FIX: Section Sinh khí tràn đầy / Vận trình khai thông */
.benefit-panel {
    overflow: hidden;
    column-gap: clamp(1.5rem, 4vw, 3.5rem);
}

.benefit-panel > div,
.benefit-panel .benefit-list {
    min-width: 0;
}

.benefit-panel h2 {
    max-width: 100%;
    margin-bottom: 0;
    font-size: clamp(2.35rem, 4.25vw, 4.15rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
}

.benefit-list {
    width: 100%;
    max-width: 360px;
    justify-self: end;
}

.benefit-list div {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    line-height: 1.45;
}

@media (min-width: 980px) {
    .benefit-panel {
        grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    }
}

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

    .benefit-list {
        max-width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 520px) {
    .benefit-panel h2 {
        font-size: clamp(2rem, 9vw, 2.55rem);
        line-height: 1.12;
    }
}
.floating-buy-now {
    background: linear-gradient(135deg, #C43E2F, #A7352B) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 14px 32px rgba(196, 62, 47, 0.32) !important;
    transform: translateY(0);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.floating-buy-now:hover {
    background: linear-gradient(135deg, #D94A36, #B8322B) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(196, 62, 47, 0.42) !important;
}

.floating-buy-now:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(196, 62, 47, 0.28) !important;
}

.floating-buy-now span,
.floating-buy-now-icon {
    color: #ffffff !important;
}
.interest-counter-section {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 10px;
}

.interest-counter-card {
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    max-width: 100%;
    padding: 16px 22px;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.9);
    border: 1px solid rgba(128, 0, 32, 0.12);
    box-shadow: 0 18px 45px rgba(54, 34, 23, 0.08);
    backdrop-filter: blur(14px);
}

.interest-counter-number-wrap {
    display: flex;
    align-items: baseline;
    color: #C43E2F;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.interest-counter-number {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
}

.interest-counter-plus {
    margin-left: 2px;
    font-size: 26px;
    line-height: 1;
}

.interest-counter-copy {
    display: grid;
    gap: 4px;
}

.interest-counter-copy strong {
    color: #3f2a1e;
    font-size: 16px;
    font-weight: 900;
}

.interest-counter-copy span {
    color: #7a6252;
    font-size: 13px;
    line-height: 1.45;
}

.interest-counter-card.is-pulse {
    animation: interestPulse 0.55s ease;
}

@keyframes interestPulse {
    0% { transform: scale(1); }
    45% {
        transform: scale(1.035);
        box-shadow: 0 22px 55px rgba(196, 62, 47, 0.18);
    }
    100% { transform: scale(1); }
}

@media (max-width: 640px) {
    .interest-counter-section {
        margin-top: 16px;
    }

    .interest-counter-card {
        width: 100%;
        border-radius: 24px;
        padding: 16px;
        align-items: flex-start;
    }

    .interest-counter-copy strong {
        font-size: 15px;
    }

    .interest-counter-copy span {
        font-size: 12px;
    }
}