/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #161616;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-text-dim: #555555;
    --color-accent: #c9a962;
    --color-accent-light: #e8d5a3;
    --color-purple: #8b5cf6;
    --color-purple-dark: #5b21b6;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Latino-inspired cursors */
    --cursor-andean-default-icon: url("product%20materials/cursor-chip-rhombus.svg");
    --cursor-andean-pointer-icon: url("product%20materials/cursor-potato-rhombus.svg");
    --cursor-andean-grab-icon: url("product%20materials/cursor-potato-rhombus.svg");
    --cursor-andean-grabbing-icon: url("product%20materials/cursor-potato-rhombus.svg");
    --cursor-andean-default: url("product%20materials/cursor-chip-rhombus.svg") 6 6, auto;
    --cursor-andean-pointer: url("product%20materials/cursor-potato-rhombus.svg") 10 10, pointer;
    --cursor-andean-grab: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Crect width='34' height='34' fill='none'/%3E%3Cpath d='M16 4c2.2 0 4 1.8 4 4v2.4h2V9.2c0-2 1.7-3.7 3.7-3.7S29.4 7.2 29.4 9.2V17c0 6.3-5.1 11.4-11.4 11.4h-1.2C10.6 28.4 5.6 23.4 5.6 17.2v-4.8c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v-4c0-2.4 1.6-4.4 3.8-4.4Z' fill='%23823a1b'/%3E%3Cpath d='M9 15.1h16.1M10.4 18.5h13.2M12.2 21.7h9.7' stroke='%23ffd8ad' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E") 14 8, grab;
    --cursor-andean-grabbing: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Crect width='34' height='34' fill='none'/%3E%3Cpath d='M15.8 6.4c2.1 0 3.8 1.7 3.8 3.8V12h2V11c0-2 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6v7.1c0 5.8-4.7 10.5-10.5 10.5H17c-5.8 0-10.5-4.7-10.5-10.5v-4.1c0-2 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6V11c0-2.5.8-4.6 2.1-4.6Z' fill='%23963a16'/%3E%3Cpath d='M9.4 15.2h15.3M10.9 18.5h12.1M12.6 21.7h8.8' stroke='%23ffddaf' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") 14 10, grabbing;
}

.hero-pills-rail {
    position: absolute;
    left: 50%;
    bottom: clamp(8px, 1.2vw, 14px);
    transform: translateX(-50%);
    z-index: 6;
    margin: 0;
    width: min(calc(100% - 40px), 1120px);
    justify-content: center;
    gap: 12px;
}

.hero-pills-rail li {
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(28, 12, 8, 0.66), rgba(28, 12, 8, 0.36));
    border-color: rgba(255, 225, 191, 0.34);
    cursor: pointer;
    box-shadow:
        0 10px 18px rgba(12, 5, 3, 0.28),
        inset 0 1px 0 rgba(255, 244, 227, 0.2);
}

.hero-pills-rail li:last-child {
    max-width: min(100%, 390px);
}

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

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

html {
    scrollbar-width: thin;
    scrollbar-color: #c56a2c rgba(84, 34, 16, 0.16);
}

body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, rgba(248, 239, 228, 0.92), rgba(234, 216, 194, 0.88));
    border-left: 1px solid rgba(128, 73, 39, 0.08);
}

body::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg, #d97834 0%, #b6551f 55%, #8d3814 100%);
    border: 3px solid rgba(248, 239, 228, 0.96);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 225, 196, 0.5),
        0 4px 10px rgba(92, 37, 15, 0.16);
}

body::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, #e3843e 0%, #c45d22 55%, #9b3f17 100%);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

summary,
label,
select,
input[type="button"],
input[type="submit"] {
    cursor: pointer;
}

:where(
    a,
    button,
    [role="button"],
    [data-pack-option],
    .landing-btn,
    .nav-action,
    .mobile-nav summary,
    .pack-option,
    .hero-pills-rail li,
    .story-link,
    .site-nav a,
    .landing-footer-links a
) {
    cursor: pointer !important;
}

@media (hover: hover) and (pointer: fine) {
    body.spice-cursor-enabled,
    body.spice-cursor-enabled *,
    body.spice-cursor-enabled *::before,
    body.spice-cursor-enabled *::after {
        cursor: none !important;
    }

    .spice-cursor {
        position: fixed;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        pointer-events: none;
        z-index: 12000;
        opacity: 0;
        transition: opacity 0.18s ease;
        will-change: transform, opacity;
    }

    .spice-cursor.is-visible {
        opacity: 1;
    }

    .spice-cursor-glow,
    .spice-cursor-icon,
    .spice-cursor-spark {
        position: absolute;
        left: 0;
        top: 0;
    }

    .spice-cursor-glow {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        transform: translate(-17px, -17px);
        background:
            radial-gradient(circle, rgba(255, 232, 191, 0.78) 0%, rgba(223, 127, 51, 0.36) 40%, rgba(223, 127, 51, 0) 74%);
        filter: blur(2px);
        opacity: 0.42;
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            filter 0.2s ease;
    }

    .spice-cursor-icon {
        width: 28px;
        height: 28px;
        transform: translate(-14px, -14px);
        background: center / contain no-repeat var(--cursor-andean-default-icon);
        filter:
            drop-shadow(0 3px 10px rgba(105, 41, 16, 0.22))
            drop-shadow(0 0 8px rgba(255, 210, 151, 0.18));
        transition:
            transform 0.2s ease,
            filter 0.2s ease,
            opacity 0.2s ease,
            background-image 0.2s ease;
    }

    .spice-cursor-spark {
        width: 40px;
        height: 40px;
        transform: translate(-20px, -20px) rotate(0deg);
        opacity: 0.46;
        background:
            radial-gradient(circle at 50% 4px, rgba(255, 231, 190, 0.92) 0 2px, transparent 2.5px),
            radial-gradient(circle at 36px 50%, rgba(255, 213, 155, 0.8) 0 1.9px, transparent 2.4px),
            radial-gradient(circle at 50% 36px, rgba(255, 197, 127, 0.72) 0 1.8px, transparent 2.4px),
            radial-gradient(circle at 4px 50%, rgba(255, 223, 170, 0.86) 0 1.8px, transparent 2.3px);
        animation: spiceCursorOrbit 4.8s linear infinite;
        transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    }

    .spice-cursor.is-hot .spice-cursor-glow {
        opacity: 0.72;
        transform: translate(-20px, -20px) scale(1.26);
        filter: blur(2.2px);
    }

    .spice-cursor.is-hot .spice-cursor-icon {
        transform: translate(-14px, -14px) scale(1.04);
        background-image: var(--cursor-andean-pointer-icon);
        filter:
            drop-shadow(0 4px 12px rgba(92, 33, 12, 0.26))
            drop-shadow(0 0 12px rgba(255, 218, 162, 0.26));
    }

    .spice-cursor.is-drag .spice-cursor-icon {
        background-image: var(--cursor-andean-grab-icon);
        transform: translate(-14px, -14px) scale(1.02);
        filter:
            drop-shadow(0 4px 12px rgba(92, 33, 12, 0.22))
            drop-shadow(0 0 11px rgba(255, 218, 162, 0.24));
    }

    .spice-cursor.is-grabbing .spice-cursor-icon {
        background-image: var(--cursor-andean-grabbing-icon);
        transform: translate(-14px, -14px) scale(0.96);
        filter:
            drop-shadow(0 4px 12px rgba(92, 33, 12, 0.24))
            drop-shadow(0 0 12px rgba(255, 218, 162, 0.26));
    }

    .spice-cursor.is-drag .spice-cursor-glow,
    .spice-cursor.is-grabbing .spice-cursor-glow {
        opacity: 0.7;
        transform: translate(-20px, -20px) scale(1.22);
        filter: blur(2.15px);
    }

    .spice-cursor.is-drag .spice-cursor-spark,
    .spice-cursor.is-grabbing .spice-cursor-spark {
        opacity: 0.74;
        transform: translate(-20px, -20px) scale(1.06);
    }

    .spice-cursor.is-hot .spice-cursor-spark {
        opacity: 0.78;
        transform: translate(-20px, -20px) scale(1.08);
    }

    .spice-cursor.is-pressed .spice-cursor-glow {
        opacity: 0.48;
        transform: translate(-16px, -16px) scale(0.9);
    }

    .spice-cursor.is-pressed .spice-cursor-icon {
        transform: translate(-14px, -14px) scale(0.92);
    }

    .spice-cursor.is-pressed .spice-cursor-spark {
        opacity: 0.52;
        transform: translate(-20px, -20px) scale(0.94);
    }
}

@keyframes spiceCursorOrbit {
    from {
        transform: translate(-20px, -20px) rotate(0deg);
    }
    to {
        transform: translate(-20px, -20px) rotate(360deg);
    }
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
}

.preloader-line {
    width: 100px;
    height: 2px;
    background: var(--color-bg-card);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--color-accent);
    animation: preloaderLine 1.5s ease-in-out forwards;
}

@keyframes preloaderLine {
    to { width: 100%; }
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title .accent {
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent-light);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--color-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text-dim);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.75rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link:hover {
    color: var(--color-text);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-accent-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-accent);
}

.mobile-cta {
    margin-top: 24px;
    padding: 16px 40px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-30px) translateX(5px); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 32px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-text-dim);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-wrapper {
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-product {
    position: relative;
    z-index: 1;
}

.product-img {
    max-width: 400px;
    animation: heroFloat 6s infinite ease-in-out;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-elements {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.float-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    white-space: nowrap;
}

.float-1 {
    top: 20%;
    left: -60px;
    animation: floatItem 5s infinite ease-in-out;
}

.float-2 {
    top: 50%;
    right: -80px;
    animation: floatItem 5s infinite ease-in-out 1s;
}

.float-3 {
    bottom: 10%;
    left: 10%;
    animation: floatItem 5s infinite ease-in-out 2s;
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid var(--color-text-dim);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ===== Story Section ===== */
.story {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-dim), transparent);
}

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    max-width: 500px;
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-text p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--color-text);
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter var(--transition-slow);
}

.story-image-wrapper:hover .story-image {
    filter: grayscale(0%);
}

.story-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 12px 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-quote {
    margin-top: 40px;
    padding: 32px;
    background: var(--color-bg);
    border-left: 3px solid var(--color-accent);
}

.story-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.story-quote cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-accent);
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding) 0;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.feature-card:hover {
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== Products Section ===== */
.products {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-dim), transparent);
}

.products-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.product-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    transition: all var(--transition-base);
}

.product-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-8px);
}

.product-card.featured {
    grid-column: span 1;
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 280px;
}

.product-image img {
    max-height: 240px;
    transition: transform var(--transition-slow);
}

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

.product-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.product-weight,
.product-origin {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
}

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

.product-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-accent);
}

.product-cta {
    text-align: center;
}

/* ===== Farmers Section ===== */
.farmers {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.farmers::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(100px);
}

.farmers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.farmers-text {
    position: relative;
    z-index: 1;
}

.farmers-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.farmers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.farmer-stat {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.farmer-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 4px;
}

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

.farmers-quote {
    padding: 32px;
    background: linear-gradient(135deg, var(--color-bg-card), transparent);
    border-left: 3px solid var(--color-accent);
}

.farmers-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 16px;
}

.farmers-quote cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-accent);
}

.farmers-visual {
    position: relative;
}

.farmers-image-stack {
    position: relative;
}

.farmers-image.main {
    position: relative;
    overflow: hidden;
}

.farmers-image.main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
}

.farmers-card {
    position: absolute;
    bottom: 40px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 1.5rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

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

.card-value {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-dim), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
    font-size: 0.9375rem;
}

.author-location {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(100px);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-title .accent {
    color: var(--color-accent);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.benefit svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-product {
    position: relative;
}

.cta-product::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-product img {
    max-width: 350px;
    position: relative;
    z-index: 1;
    animation: heroFloat 6s infinite ease-in-out;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-text);
}

.social-link:hover svg {
    stroke: var(--color-bg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--color-text);
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-text-dim);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-text);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .hero-container {
        gap: 60px;
    }

    .product-img {
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .product-img {
        max-width: 280px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-text {
        max-width: 100%;
    }

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

    .products-showcase {
        grid-template-columns: 1fr;
    }

    .farmers-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .farmers-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-benefits {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        flex: 1 1 100px;
        text-align: center;
    }

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

    .farmers-stats {
        grid-template-columns: 1fr;
    }

    .farmers-card {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== One Product Landing Page ===== */
body {
    margin: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #221710;
    background:
        radial-gradient(1200px 600px at 12% -10%, rgba(232, 186, 112, 0.45) 0%, transparent 60%),
        radial-gradient(1000px 520px at 88% 0%, rgba(217, 132, 52, 0.22) 0%, transparent 62%),
        #efe6d4;
}

.new-landing {
    position: relative;
    min-height: 100vh;
}

.new-landing * {
    box-sizing: border-box;
}

.new-landing a {
    color: inherit;
    text-decoration: none;
}

.landing-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 0;
    backdrop-filter: blur(12px);
    background: rgba(239, 230, 212, 0.85);
    border-bottom: 1px solid rgba(78, 48, 24, 0.12);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.site-logo-mark {
    width: clamp(128px, 14vw, 188px);
    height: auto;
    display: block;
    filter: sepia(1) saturate(5.4) hue-rotate(-14deg) brightness(0.72) contrast(1.08) drop-shadow(0 8px 14px rgba(235, 85, 37, 0.22));
}

.landing-footer-brand {
    margin: 0;
    color: #fff1de;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.35rem);
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.landing-footer-brand span {
    color: #eb5525;
}

.site-footer {
    margin-top: 42px;
    padding: 0 0 40px;
    scroll-margin-top: 100px;
}

.footer-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 182, 106, 0.18), transparent 26%),
        radial-gradient(circle at 0% 100%, rgba(255, 134, 72, 0.12), transparent 26%),
        linear-gradient(155deg, rgba(53, 20, 10, 0.98), rgba(84, 33, 18, 0.96));
    border: 1px solid rgba(255, 214, 175, 0.18);
    box-shadow:
        0 34px 80px rgba(49, 18, 8, 0.22),
        inset 0 1px 0 rgba(255, 241, 223, 0.1);
}

.footer-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 14% 100%, rgba(255, 192, 120, 0.12), transparent 28%);
}

.footer-shell > * {
    position: relative;
    z-index: 1;
}

.footer-intro-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 241, 223, 0.08), rgba(255, 183, 119, 0.05));
    border: 1px solid rgba(255, 214, 175, 0.12);
}

.footer-intro-copy,
.footer-bottom p {
    margin: 0;
    color: rgba(255, 234, 212, 0.84);
    line-height: 1.7;
}

.footer-intro-copy {
    max-width: 64ch;
}

.footer-intro-links,
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-cta-link,
.footer-secondary-link,
.footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-cta-link {
    background: linear-gradient(135deg, #c5531b, #ef8f2e);
    color: #fff;
    box-shadow: 0 14px 30px rgba(123, 44, 18, 0.28);
}

.footer-secondary-link,
.footer-bottom-links a {
    color: rgba(255, 239, 221, 0.92);
    background: rgba(255, 241, 223, 0.06);
    border: 1px solid rgba(255, 214, 175, 0.16);
}

.footer-cta-link:hover,
.footer-secondary-link:hover,
.footer-bottom-links a:hover {
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.95fr));
    gap: 18px;
}

.footer-brand-block,
.footer-column {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 241, 223, 0.05);
    border: 1px solid rgba(255, 214, 175, 0.1);
    backdrop-filter: blur(8px);
}

.footer-brand-block {
    background:
        linear-gradient(180deg, rgba(255, 170, 103, 0.08), rgba(255, 241, 223, 0.04)),
        rgba(255, 241, 223, 0.04);
}

.footer-brand-copy {
    margin: 0;
    max-width: 28ch;
    color: rgba(255, 236, 216, 0.9);
    font-size: 1.02rem;
    line-height: 1.72;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 244, 231, 0.08);
    border: 1px solid rgba(255, 214, 175, 0.12);
    color: rgba(255, 233, 209, 0.88);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-legal-warning {
    margin: 4px 0 0;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 241, 223, 0.08);
    border: 1px solid rgba(255, 209, 160, 0.12);
    color: rgba(255, 219, 183, 0.84);
    font-size: 0.85rem;
    line-height: 1.65;
}

.footer-eyebrow {
    margin: 0;
    color: #ffcf9b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-footer-links {
    display: grid;
    gap: 12px;
}

.landing-footer-links a,
.footer-contact-card a,
.footer-column-note a {
    width: fit-content;
    color: rgba(255, 237, 219, 0.9);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.landing-footer-links a:hover,
.footer-contact-card a:hover,
.footer-column-note a:hover {
    color: #ffcf9b;
}

.footer-column-note {
    margin: 2px 0 0;
    color: rgba(255, 225, 198, 0.74);
    font-size: 0.88rem;
    line-height: 1.65;
}

.footer-contact-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(24, 10, 5, 0.2);
    border: 1px solid rgba(255, 214, 175, 0.08);
}

.footer-contact-card p {
    margin: 0;
    color: rgba(255, 234, 212, 0.82);
    line-height: 1.65;
}

.footer-contact-title {
    color: #fff3e1;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 214, 175, 0.12);
    font-size: 0.88rem;
}

@media (max-width: 1080px) {
    .footer-intro-bar {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .site-footer {
        margin-top: 28px;
        padding-bottom: 24px;
    }

    .footer-shell {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .footer-intro-bar,
    .footer-brand-block,
    .footer-column {
        padding: 18px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-intro-links,
    .footer-bottom-links {
        width: 100%;
    }

    .footer-cta-link,
    .footer-secondary-link,
    .footer-bottom-links a {
        flex: 1 1 100%;
    }
}

.site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    font-weight: 600;
    color: #4f3322;
    font-size: 0.93rem;
}

.site-nav a {
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-action {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 20px;
    background: linear-gradient(130deg, #ef6633, #ff9d2e);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 20px rgba(206, 97, 41, 0.28);
}

.mobile-nav {
    display: none;
}

.hero-section {
    padding: 34px 0 18px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 32px;
    min-height: 560px;
    padding: clamp(30px, 4.4vw, 52px) clamp(22px, 3.2vw, 42px) 92px;
    display: block;
    color: #fff;
    border: 1px solid rgba(255, 219, 179, 0.28);
    background: #28150f;
    box-shadow:
        0 26px 42px rgba(39, 20, 11, 0.36),
        inset 0 1px 0 rgba(255, 245, 233, 0.18);
    animation: landingReveal 0.65s ease-out;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 14%, rgba(255, 220, 177, 0.22) 0%, rgba(255, 220, 177, 0) 44%),
        radial-gradient(circle at 56% 54%, rgba(255, 214, 166, 0.14) 0%, rgba(255, 214, 166, 0.04) 34%, rgba(255, 214, 166, 0) 58%),
        linear-gradient(92deg, rgba(20, 9, 6, 0.9) 0%, rgba(20, 9, 6, 0.78) 30%, rgba(20, 9, 6, 0.56) 44%, rgba(20, 9, 6, 0.34) 56%, rgba(20, 9, 6, 0.22) 66%, rgba(20, 9, 6, 0.3) 100%);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(255, 224, 193, 0.18);
    background: none;
    opacity: 1;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    filter: saturate(1.06) contrast(1.08) brightness(0.78);
    opacity: 0.9;
    transform: scale(1.08);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 24%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.84) 61%, rgba(0, 0, 0, 1) 73%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 24%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.84) 61%, rgba(0, 0, 0, 1) 73%);
}

.hero-copy {
    width: min(100%, 620px);
    max-width: min(52%, 620px);
    position: relative;
    z-index: 6;
}

.hero-copy::before {
    content: none;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 159, 66, 0.55);
    color: #f9b35f;
    background: rgba(255, 176, 92, 0.08);
    font-size: 0.79rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
}

.hero-copy h1 {
    margin: 0;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3.2rem, 8vw, 5.7rem);
    line-height: 0.93;
    letter-spacing: 0.018em;
    text-wrap: balance;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
    margin: 20px 0 0;
    max-width: 500px;
    color: rgba(255, 238, 219, 0.94);
    font-size: 1.04rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-pills {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 214, 175, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 232, 210, 0.95);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-pills svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: #ffca7b;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.landing-btn.primary {
    background: linear-gradient(135deg, #ff7036, #ffad31);
    color: #fff;
    box-shadow: 0 14px 24px rgba(237, 105, 48, 0.3);
}

.landing-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffe6cb;
    border: 1px solid rgba(255, 217, 182, 0.35);
}

.landing-btn.contrast {
    background: linear-gradient(140deg, #ff6b37, #ff8f37);
    color: #fff;
    box-shadow: 0 12px 24px rgba(244, 104, 53, 0.34);
}

.landing-btn:hover {
    transform: translateY(-2px);
}

.play-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffcb6f;
    box-shadow: 0 0 0 5px rgba(255, 203, 111, 0.24);
}

.hero-art {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: 0;
    overflow: hidden;
    cursor: auto;
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 18%, rgba(255, 224, 184, 0.16), rgba(255, 224, 184, 0) 42%),
        linear-gradient(180deg, rgba(19, 8, 6, 0.12) 0%, rgba(19, 8, 6, 0.34) 86%);
}

.hero-art::after {
    content: none;
}

.hero-elements {
    position: absolute;
    right: clamp(-6px, -0.5vw, 0px);
    top: 0;
    width: min(64%, 760px);
    height: 100%;
    z-index: 4;
    cursor: auto;
}

.hero-elements::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 58% 72%, rgba(8, 3, 2, 0.42) 0%, rgba(8, 3, 2, 0.2) 32%, rgba(8, 3, 2, 0) 62%);
}

.hero-pack-glow {
    position: absolute;
    left: 50%;
    top: 56%;
    width: min(82%, 470px);
    height: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 221, 176, 0.52) 0%, rgba(255, 221, 176, 0.2) 30%, rgba(255, 221, 176, 0) 72%);
    filter: blur(10px);
    opacity: 0.86;
    z-index: 2;
    animation: heroGlowPulse 8.4s ease-in-out infinite;
}

.hero-float {
    position: absolute;
    margin: 0;
    --drag-x: 0px;
    --drag-y: 0px;
    will-change: transform;
    pointer-events: auto;
    touch-action: none;
    cursor: grab;
    isolation: isolate;
}

.hero-float,
.hero-float * {
    cursor: grab !important;
}

.hero-float.is-dragging {
    cursor: grabbing;
    animation-play-state: paused;
}

.hero-float.is-dragging,
.hero-float.is-dragging * {
    cursor: grabbing !important;
}

.hero-float img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: saturate(1.16) contrast(1.1) brightness(1.08);
}

.hero-float-pack {
    left: 50%;
    top: 56%;
    width: clamp(194px, 25vw, 286px);
    z-index: 6;
    transform: translate(calc(-50% + var(--drag-x)), calc(-50% + var(--drag-y))) rotate(-2deg);
    filter: drop-shadow(0 30px 42px rgba(8, 3, 2, 0.62));
    animation: heroPackFloat 8.6s ease-in-out infinite;
}

.hero-float-chip {
    transform: translate(var(--drag-x), var(--drag-y));
    filter: drop-shadow(0 16px 24px rgba(10, 3, 2, 0.42));
    transform-origin: center center;
}

.hero-float-chip-a {
    left: 6%;
    top: 56%;
    width: clamp(84px, 9.6vw, 128px);
    z-index: 9;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(-12deg);
    animation: heroItemDrift 10.2s ease-in-out infinite;
}

.hero-float-chip-b {
    right: 8%;
    top: 34%;
    width: clamp(68px, 8vw, 108px);
    z-index: 7;
    opacity: 0.9;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(11deg);
    animation: heroItemDrift 11.6s ease-in-out infinite reverse;
}

.hero-float-chip-c {
    left: 21%;
    top: 18%;
    width: clamp(54px, 6.2vw, 82px);
    z-index: 5;
    opacity: 0.82;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(-8deg);
    animation: heroItemDrift 12.2s ease-in-out infinite reverse;
}

.hero-float-chip-d {
    right: 21%;
    top: 16%;
    width: clamp(60px, 7vw, 94px);
    z-index: 5;
    opacity: 0.84;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(14deg);
    animation: heroItemDrift 12.8s ease-in-out infinite;
}

.hero-float-chip-e {
    right: 6%;
    top: 58%;
    width: clamp(74px, 8.6vw, 118px);
    z-index: 8;
    opacity: 0.88;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(16deg);
    animation: heroItemDrift 10.9s ease-in-out infinite reverse;
}

.hero-float-chip-f {
    left: 30%;
    top: 69%;
    width: clamp(56px, 6.6vw, 88px);
    z-index: 7;
    opacity: 0.8;
    transform: translate(var(--drag-x), var(--drag-y)) rotate(-16deg);
    animation: heroItemDrift 10.8s ease-in-out infinite;
}

.hero-float-salt-main {
    right: 10%;
    top: 56%;
    width: clamp(80px, 9.2vw, 124px);
    z-index: 8;
    transform: translate(var(--drag-x), var(--drag-y));
    filter: drop-shadow(0 20px 26px rgba(14, 4, 3, 0.46));
    animation: heroSaltDrift 9.6s ease-in-out infinite;
}

.hero-float-salt-sub {
    left: 20%;
    top: 29%;
    width: clamp(68px, 8vw, 106px);
    z-index: 6;
    opacity: 0.86;
    transform: translate(var(--drag-x), var(--drag-y));
    filter: drop-shadow(0 14px 20px rgba(14, 4, 3, 0.36));
    animation: heroSaltDrift 12.2s ease-in-out infinite reverse;
}

.benefits-section {
    padding: 20px 0 62px;
}

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

.benefit-card {
    position: relative;
    --icon-glow-rgb: 232, 136, 74;
    --icon-shadow-rgb: 134, 84, 44;
    background: linear-gradient(165deg, #fbf8f3 0%, #f7f1e8 48%, #efe5d8 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 26px 22px 24px;
    min-height: 220px;
    box-shadow:
        0 18px 36px rgba(104, 72, 46, 0.1),
        0 2px 8px rgba(96, 67, 43, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        inset 0 -1px 0 rgba(182, 150, 118, 0.24);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    pointer-events: none;
    background: linear-gradient(128deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.14) 36%, rgba(255, 255, 255, 0) 62%);
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 42px rgba(104, 72, 46, 0.13),
        0 3px 10px rgba(96, 67, 43, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(182, 150, 118, 0.24);
}

.benefits-shell > .benefit-card:nth-child(1) {
    --icon-glow-rgb: 168, 137, 233;
    --icon-shadow-rgb: 101, 84, 168;
}

.benefits-shell > .benefit-card:nth-child(2) {
    --icon-glow-rgb: 119, 188, 255;
    --icon-shadow-rgb: 69, 128, 188;
}

.benefits-shell > .benefit-card:nth-child(3) {
    --icon-glow-rgb: 255, 201, 93;
    --icon-shadow-rgb: 173, 126, 45;
}

.benefit-index {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(92, 65, 46, 0.32);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.benefit-icon {
    position: relative;
    isolation: isolate;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

.benefit-icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(var(--icon-glow-rgb), 0.44) 0%, rgba(var(--icon-glow-rgb), 0.2) 34%, rgba(var(--icon-glow-rgb), 0) 74%);
    filter: blur(2px);
    z-index: 0;
}

.benefit-icon img {
    width: 56px;
    height: 56px;
    position: relative;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(var(--icon-shadow-rgb), 0.1)) drop-shadow(0 0 18px rgba(var(--icon-glow-rgb), 0.12));
}

.benefit-card h3 {
    margin: 16px 0 12px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 2.05rem;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    color: #27170f;
}

.benefit-card p {
    margin: 0;
    color: #5d4636;
    font-size: 0.95rem;
    line-height: 1.58;
}

.orbit-panel {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(145deg, #f7f2e8 20%, #ece3d1 100%);
    border: 1px solid rgba(103, 73, 42, 0.12);
    overflow: hidden;
    min-height: 220px;
    display: grid;
    place-items: center;
}

.orbit-ring {
    position: absolute;
    width: clamp(220px, 30vw, 320px);
    aspect-ratio: 1;
    border: 16px solid rgba(141, 113, 85, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 10px rgba(220, 198, 170, 0.26);
    animation: ringSpin 20s linear infinite;
}

.orbit-image {
    position: relative;
    z-index: 1;
    width: clamp(130px, 18vw, 188px);
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    border: 7px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 22px rgba(106, 73, 44, 0.24);
}

.orbit-tag {
    position: absolute;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4f2f1b;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(96, 61, 34, 0.12);
}

.tag-a { top: 20px; left: 20px; }
.tag-b { right: 12px; top: 50%; transform: translateY(-50%); }
.tag-c { bottom: 18px; left: 50%; transform: translateX(-50%); }

.product-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 62px 0;
    background: linear-gradient(152deg, #8a2b11 0%, #b34718 34%, #d86f22 68%, #7c220d 100%);
}

.product-section::before,
.product-section::after {
    content: "";
    position: absolute;
    inset: -192px;
    pointer-events: none;
}

.product-section::before {
    z-index: 0;
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 207, 147, 0.32) 0%, transparent 36%),
        radial-gradient(circle at 82% 78%, rgba(92, 24, 10, 0.34) 0%, transparent 40%);
}

.product-section::after {
    z-index: 1;
    opacity: 0;
    background: none;
}

.product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    grid-template-rows: auto 1fr;
    gap: clamp(20px, 3.6vw, 58px);
    align-items: stretch;
    position: relative;
    z-index: 2;
    --product-panel-height: clamp(460px, 42vw, 560px);
}

.product-intro {
    grid-column: 1 / -1;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 2.9vw, 32px) clamp(18px, 3.1vw, 40px);
    border-radius: 28px;
    border: 1px solid rgba(255, 218, 180, 0.38);
    background:
        radial-gradient(circle at 88% -20%, rgba(255, 211, 162, 0.4), transparent 56%),
        linear-gradient(152deg, rgba(74, 22, 9, 0.7), rgba(74, 22, 9, 0.3));
    box-shadow:
        0 20px 34px rgba(35, 11, 4, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(3px);
}

.product-intro::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 27px;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%);
    opacity: 0.7;
}

.product-intro::after {
    content: "";
    position: absolute;
    left: clamp(18px, 3.1vw, 40px);
    right: clamp(18px, 3.1vw, 40px);
    bottom: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 225, 188, 0), rgba(255, 225, 188, 0.58), rgba(255, 225, 188, 0));
}

.product-intro > * {
    position: relative;
    z-index: 1;
}

.product-section .product-intro .section-chip {
    margin-bottom: 12px;
    background: rgba(47, 13, 5, 0.42);
    border: 1px solid rgba(255, 218, 176, 0.4);
    color: #ffe3c0;
}

.product-intro h2 {
    margin: 0;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3rem, 6.1vw, 4.8rem);
    line-height: 0.93;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff8ef;
    text-shadow: 0 4px 16px rgba(51, 16, 8, 0.34);
}

.product-marquee {
    margin-top: 16px;
    width: 100%;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 216, 174, 0.34);
    background:
        linear-gradient(120deg, rgba(49, 15, 7, 0.54), rgba(90, 27, 10, 0.36)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 210, 157, 0.14) 0 2px,
            transparent 2px 18px
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 8px 18px rgba(35, 10, 4, 0.22);
}

.product-marquee-track {
    display: inline-flex;
    width: max-content;
    min-width: 100%;
    animation: productMarquee 52s linear infinite;
    will-change: transform;
}

.product-marquee-track span {
    display: inline-flex;
    align-items: center;
    padding: 12px 0 12px 16px;
    padding-inline-end: 46px;
    white-space: nowrap;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 236, 210, 0.95);
    text-shadow: 0 1px 0 rgba(43, 12, 5, 0.45);
}

.product-copy {
    color: #fff;
    border-radius: 26px;
    padding: 18px 18px 16px;
    background: linear-gradient(170deg, rgba(64, 18, 7, 0.52), rgba(64, 18, 7, 0.2));
    border: 1px solid rgba(255, 212, 171, 0.24);
    backdrop-filter: blur(3px);
    box-shadow:
        0 18px 30px rgba(39, 11, 4, 0.3),
        inset 0 1px 0 rgba(255, 241, 223, 0.14);
    min-height: var(--product-panel-height);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-section .section-chip {
    background: rgba(64, 18, 7, 0.44);
    border: 1px solid rgba(255, 209, 160, 0.4);
    color: #ffe2bf;
}

.product-section .landing-btn.contrast {
    background: linear-gradient(140deg, #fff2dd, #ffd5a8);
    color: #6a2d12;
    border: 1px solid rgba(123, 47, 19, 0.22);
    min-height: 56px;
    padding: 16px 34px;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    box-shadow: 0 12px 24px rgba(73, 25, 10, 0.28);
}

.tag-row {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #6b2f14;
    background: #f5d8b0;
    border: 1px solid rgba(121, 51, 21, 0.3);
}

.product-key-points {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    max-width: 620px;
    display: grid;
    gap: 6px;
}

.product-key-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 11px;
    border-radius: 10px;
    background: rgba(57, 15, 6, 0.34);
    border: 1px solid rgba(255, 208, 162, 0.26);
    color: rgba(255, 238, 223, 0.96);
    font-size: 0.84rem;
    line-height: 1.45;
}

.product-key-points li::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 0.28rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: radial-gradient(circle at 36% 36%, #fff4e3 0%, #ffd39f 66%, #f3ab58 100%);
}

.pack-selector {
    margin-top: 14px;
    max-width: 620px;
    border-radius: 16px;
    padding: 11px 12px;
    background: rgba(54, 14, 6, 0.44);
    border: 1px solid rgba(255, 207, 158, 0.34);
}

.pack-selector-label {
    margin: 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffd9b3;
}

.pack-options {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pack-option {
    margin: 0;
    appearance: none;
    border: 1px solid rgba(255, 211, 169, 0.24);
    background: rgba(60, 16, 7, 0.42);
    border-radius: 14px;
    padding: 12px 12px;
    color: #ffe8d0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 3px;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.pack-option:focus-visible {
    outline: 2px solid rgba(255, 241, 222, 0.88);
    outline-offset: 2px;
}

.pack-option:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 218, 180, 0.52);
}

.pack-option.is-active {
    background: linear-gradient(145deg, rgba(255, 236, 211, 0.24), rgba(255, 189, 120, 0.2));
    border-color: rgba(255, 227, 190, 0.72);
    box-shadow: 0 10px 22px rgba(56, 15, 7, 0.32);
}

.pack-option-title {
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 700;
}

.pack-option-meta {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 223, 190, 0.86);
}

.pack-option-footnote {
    margin: 8px 0 0;
    color: rgba(255, 230, 204, 0.95);
    font-size: 0.8rem;
    line-height: 1.4;
}

.ingredients-box {
    margin-top: 20px;
    max-width: 460px;
    border-radius: 16px;
    padding: 16px;
    background: rgba(61, 16, 7, 0.34);
    border: 1px solid rgba(255, 217, 174, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 244, 226, 0.08);
}

.ingredients-box h4 {
    margin: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #ffd8ae;
}

.ingredients-box p {
    margin: 6px 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}

.origin-facts {
    margin-top: 16px;
    max-width: 620px;
    border-radius: 16px;
    padding: 15px 16px;
    background: rgba(55, 14, 6, 0.36);
    border: 1px solid rgba(255, 214, 167, 0.34);
}

.origin-facts h4 {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffd4a6;
}

.origin-facts ul {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.origin-facts li {
    color: rgba(255, 237, 220, 0.95);
    font-size: 0.88rem;
    line-height: 1.48;
}

.origin-facts li::marker {
    color: #ffc483;
}

.buy-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.buy-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.buy-actions .landing-btn {
    min-width: 316px;
    min-height: 82px;
    padding-inline: 32px;
    font-size: 0.92rem;
}

.price-note {
    margin: 6px 0 0;
    color: rgba(255, 225, 194, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-copy > .shipping-note {
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 233, 210, 0.95);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.shipping-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #ffd5a2;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3.1rem, 5vw, 3.8rem);
    line-height: 0.9;
    color: #fff8ef;
    letter-spacing: 0.01em;
}

.product-visual {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    min-height: var(--product-panel-height);
    height: 100%;
    padding: 14px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 244, 228, 0.68), rgba(255, 244, 228, 0) 50%),
        linear-gradient(170deg, rgba(253, 227, 195, 0.9), rgba(236, 188, 132, 0.74));
    border: 1px solid rgba(255, 221, 184, 0.52);
    box-shadow:
        0 22px 34px rgba(44, 14, 6, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.pack-stage {
    position: relative;
    width: min(100%, 470px);
    height: clamp(300px, 44vw, 450px);
    margin-block: auto;
    margin-inline: auto;
    --stage-rx: 0deg;
    --stage-ry: 0deg;
    --glow-x: 50%;
    --glow-y: 34%;
    transform-style: preserve-3d;
    transform: perspective(1150px) rotateX(var(--stage-rx)) rotateY(var(--stage-ry));
    transition: transform 460ms cubic-bezier(0.22, 0.86, 0.32, 1);
}

.pack-stage::before,
.pack-stage::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.pack-stage::before {
    bottom: 8px;
    width: 88%;
    height: 26%;
    background: radial-gradient(ellipse at center, rgba(65, 21, 9, 0.35) 0%, rgba(65, 21, 9, 0) 68%);
    filter: blur(1px);
}

.pack-stage::after {
    top: 4px;
    width: 82%;
    height: 56%;
    background: radial-gradient(ellipse at var(--glow-x) var(--glow-y), rgba(255, 239, 219, 0.52) 0%, transparent 72%);
}

.pack-item {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: clamp(132px, 20vw, 228px);
    height: auto;
    opacity: 0;
    z-index: var(--z, 1);
    transform: translate3d(calc(-50% + var(--tx, 0px)), var(--ty, 42px), var(--tz, 0px)) rotate(var(--rot, 0deg)) scale(var(--scale, 0.82));
    transform-origin: center bottom;
    filter: drop-shadow(0 8px 12px rgba(42, 10, 4, 0.2));
    transition:
        transform 680ms cubic-bezier(0.2, 0.85, 0.26, 1),
        opacity 430ms ease,
        filter 560ms ease;
    transition-delay: var(--delay, 0ms);
    will-change: transform, opacity;
    backface-visibility: hidden;
    pointer-events: none;
}

.pack-item.is-visible {
    opacity: 1;
    filter: drop-shadow(0 24px 30px rgba(61, 18, 7, 0.36));
}

.pack-stage.is-switching .pack-item {
    transition-duration: 560ms;
}

.pack-stage[data-pack-count="1"] .pack-item[data-pack-item="1"].is-visible {
    animation: singlePackBreath 4.8s ease-in-out infinite;
}

.pack-visual-caption {
    margin: 0;
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(79, 26, 10, 0.9);
    background: rgba(255, 239, 218, 0.76);
    border: 1px solid rgba(146, 74, 35, 0.26);
}

.reviews-section {
    position: relative;
    padding: 34px 0 88px;
    overflow: clip;
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 213, 153, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%);
}

.reviews-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
}

.reviews-header {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 18px;
}

.reviews-header .section-chip {
    margin: 0;
    background: linear-gradient(135deg, rgba(248, 233, 211, 0.96), rgba(241, 222, 194, 0.88));
    border: 1px solid rgba(156, 92, 43, 0.2);
    color: #8c532a;
    box-shadow:
        0 12px 24px rgba(121, 70, 37, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.reviews-scoreband {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 233, 215, 0.96));
    border: 2px solid rgba(191, 118, 52, 0.86);
    box-shadow:
        0 18px 28px rgba(109, 57, 29, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: #8b562d;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.reviews-stars,
.review-stars {
    color: #d5892e;
    letter-spacing: 0.18em;
    text-shadow: 0 4px 12px rgba(213, 137, 46, 0.16);
}

.reviews-header h2 {
    display: none;
}

.reviews-header p {
    display: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.review-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(240, 230, 214, 0.98));
    border: 1px solid rgba(187, 116, 54, 0.38);
    box-shadow:
        0 24px 36px rgba(96, 46, 22, 0.1),
        0 4px 10px rgba(96, 46, 22, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.review-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: linear-gradient(90deg, #9f461b 0%, #d96d1f 52%, #f39b36 100%);
    opacity: 0.96;
}

.review-card-raised {
    transform: translateY(26px);
}

.review-card-media {
    aspect-ratio: 0.86;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(115, 54, 24, 0.12), rgba(115, 54, 24, 0.03));
}

.review-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
}

.review-card-home .review-card-media img {
    object-position: center 52%;
}

.review-card-chip .review-card-media img {
    object-position: center center;
}

.review-card-party .review-card-media img {
    object-position: center 44%;
}

.review-card-office .review-card-media img {
    object-position: center 48%;
}

.review-card-body {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px 18px 22px;
}

.review-stars {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.review-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.18;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    color: #9b551f;
}

.review-card-body > p:last-of-type {
    margin: 0;
    color: #2f231c;
    font-size: 0.98rem;
    line-height: 1.62;
    text-align: center;
}

.review-meta {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(186, 118, 58, 0.18);
    color: #6a4b38;
    font-size: 0.9rem;
}

.review-author {
    font-weight: 600;
    color: #6b4324;
    letter-spacing: -0.01em;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(249, 236, 214, 0.92), rgba(241, 224, 197, 0.92));
    border: 1px solid rgba(196, 137, 77, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    color: #a16834;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.review-verified::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 34% 34%, #fff2d8 0%, #df9d41 72%, #ba6d22 100%);
    box-shadow: 0 0 0 4px rgba(219, 151, 63, 0.1);
}

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

    .review-card-raised {
        transform: none;
    }

}

@media (max-width: 760px) {
    .reviews-section {
        padding: 18px 0 64px;
    }

    .reviews-shell {
        gap: 22px;
    }

    .reviews-header {
        justify-items: start;
        text-align: left;
        margin-bottom: 16px;
    }

    .reviews-scoreband {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
        padding: 11px 16px;
        font-size: 0.78rem;
    }

    .reviews-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(286px, 84vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        scroll-snap-align: start;
        border-radius: 24px;
        box-shadow: none;
    }

    .review-card-raised {
        transform: none;
    }

    .review-card::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .reviews-header .section-chip {
        padding: 8px 13px 7px;
    }

    .reviews-stars,
    .review-stars {
        letter-spacing: 0.12em;
    }

    .review-card-media {
        aspect-ratio: 0.9;
    }

    .review-card-body {
        gap: 12px;
        padding: 16px 16px 18px;
    }

    .review-card h3 {
        font-size: 0.97rem;
    }

    .review-card-body > p:last-of-type {
        font-size: 0.91rem;
        line-height: 1.56;
    }

    .review-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        font-size: 0.84rem;
    }

    .review-verified {
        width: fit-content;
    }
}

.story-section {
    padding: 84px 0 92px;
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 224, 186, 0.24), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(207, 122, 52, 0.12), transparent 24%),
        linear-gradient(180deg, #f8f1e6 0%, #f2e5d4 100%);
}

.story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 30px;
    align-items: start;
}

.story-copy {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    display: grid;
    gap: 18px;
}

.story-copy .section-chip {
    justify-self: start;
    padding: 10px 18px;
    background: rgba(255, 246, 233, 0.72);
    border-color: rgba(171, 103, 54, 0.22);
    color: #9c5e35;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 12px 24px rgba(130, 81, 47, 0.08);
}

.story-copy h2 {
    margin: 0;
    max-width: none;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3.7rem, 7.2vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
    color: #2f170d;
    text-wrap: balance;
}

.story-copy p {
    margin: 0;
    max-width: 70ch;
    color: rgba(77, 47, 28, 0.84);
    font-size: 1.08rem;
    line-height: 1.8;
}

.story-media-card {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 24px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(101, 39, 15, 0.98), rgba(148, 82, 42, 0.9));
    border: 1px solid rgba(255, 214, 177, 0.22);
    box-shadow:
        0 28px 46px rgba(72, 27, 10, 0.2),
        inset 0 1px 0 rgba(255, 244, 230, 0.12);
    overflow: hidden;
}

.story-media-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 218, 170, 0.18), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.story-media-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.story-media-kicker {
    color: #ffd6a6;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-media-head p {
    margin: 0;
    color: rgba(255, 241, 222, 0.9);
    font-size: 1rem;
    line-height: 1.65;
}

.story-media-frame {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    background: #150905;
    border: 1px solid rgba(255, 228, 198, 0.16);
    box-shadow:
        0 18px 32px rgba(19, 7, 3, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.story-inline-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #120805;
}

.story-list {
    display: grid;
    gap: 16px;
    align-self: center;
}

.story-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 22px 20px;
    border-radius: 28px;
    background: rgba(255, 251, 245, 0.84);
    border: 1px solid rgba(166, 102, 57, 0.12);
    box-shadow:
        0 22px 36px rgba(120, 78, 44, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.story-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(242, 248, 237, 0.96), rgba(224, 234, 215, 0.98));
    border: 1px solid rgba(157, 176, 145, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(120, 149, 105, 0.12);
}

.story-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.story-item h4 {
    margin: 2px 0 10px;
    color: #2f170d;
    font-size: 1.55rem;
    line-height: 1.05;
}

.story-item p {
    margin: 0;
    color: rgba(77, 47, 28, 0.84);
    font-size: 1rem;
    line-height: 1.68;
}

@media (max-width: 1080px) {
    .story-shell {
        grid-template-columns: 1fr;
    }

    .story-list {
        align-self: stretch;
    }
}

@media (max-width: 820px) {
    .story-section {
        padding: 64px 0 74px;
    }

    .story-shell {
        gap: 18px;
    }

    .story-copy {
        gap: 14px;
    }

    .story-copy h2 {
        max-width: none;
        font-size: clamp(2.6rem, 11.5vw, 4.1rem);
        line-height: 0.94;
    }

    .story-copy p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .story-media-card {
        padding: 18px;
        border-radius: 26px;
    }

    .story-media-frame {
        border-radius: 22px;
    }

    .story-item {
        padding: 18px 18px 17px;
        border-radius: 22px;
    }

    .story-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .story-icon img {
        width: 44px;
        height: 44px;
    }

    .story-item h4 {
        font-size: 1.28rem;
    }

    .story-item p {
        font-size: 0.94rem;
        line-height: 1.62;
    }
}

@media (max-width: 560px) {
    .story-section {
        padding: 54px 0 62px;
    }

    .story-copy .section-chip {
        padding: 8px 14px;
        font-size: 0.72rem;
    }

    .story-copy h2 {
        font-size: clamp(2.2rem, 12vw, 3.15rem);
    }

    .story-media-card {
        padding: 16px;
        gap: 14px;
        border-radius: 22px;
    }

    .story-media-kicker {
        font-size: 0.76rem;
    }

    .story-media-head p,
    .story-copy p {
        font-size: 0.94rem;
    }

    .story-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .story-icon {
        width: 58px;
        height: 58px;
    }
}

/* ===== One-page Shop Upgrade ===== */
#product,
#buy,
#checkout,
#story {
    scroll-margin-top: 110px;
}

body.shop-overlay-open {
    overflow: hidden;
}

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

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(71, 37, 18, 0.08);
    border: 1px solid rgba(95, 55, 27, 0.16);
    color: #4c2d1a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cart-pill span,
.cart-pill strong {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(140deg, #ff7a3d, #ffb03c);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.cart-pill:hover,
.cart-fab:hover {
    transform: translateY(-2px);
}

.cart-pill-compact {
    min-height: 42px;
    padding-inline: 14px;
}

.landing-btn.subtle {
    background: rgba(255, 240, 219, 0.14);
    color: #fff4e5;
    border: 1px solid rgba(255, 214, 168, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 249, 239, 0.12);
}

.buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.buy-actions .landing-btn {
    min-width: 210px;
}


.order-trust {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.order-trust li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 231, 203, 0.88);
    font-size: 0.84rem;
    line-height: 1.5;
}

.order-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd175;
    box-shadow: 0 0 0 4px rgba(255, 209, 117, 0.18);
}

.checkout-section {
    position: relative;
    padding: 76px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(255, 205, 139, 0.2), transparent 28%),
        radial-gradient(circle at bottom right, rgba(179, 88, 31, 0.18), transparent 26%),
        linear-gradient(180deg, #f7efe5 0%, #efe1d0 100%);
    color: #3e271c;
}

.checkout-shell {
    display: grid;
    gap: 32px;
}

.checkout-intro {
    max-width: 760px;
}

.checkout-intro h2 {
    margin: 14px 0 12px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: #5a2f19;
}

.checkout-intro p {
    max-width: 680px;
    color: rgba(70, 39, 22, 0.82);
    font-size: 1rem;
}

.shop-progress {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-progress span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(110, 63, 31, 0.08);
    border: 1px solid rgba(104, 57, 28, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.checkout-form-column,
.checkout-summary-column {
    min-width: 0;
}

.checkout-card,
.checkout-summary-card {
    border-radius: 26px;
    padding: 28px;
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(108, 64, 32, 0.1);
    box-shadow: 0 22px 40px rgba(118, 78, 43, 0.08);
}

.checkout-form-column {
    display: grid;
    gap: 18px;
}

.checkout-summary-card {
    position: sticky;
    top: 112px;
}

.checkout-card-head,
.checkout-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.checkout-card-head h3,
.checkout-summary-head h3 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.1;
    color: #4b2817;
}

.checkout-card-head p,
.checkout-summary-head p,
.checkout-summary-kicker {
    margin: 6px 0 0;
    color: rgba(74, 44, 27, 0.68);
    font-size: 0.9rem;
}

.checkout-step-index {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ff8a44, #ffbd58);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.checkout-form-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-form-grid-address {
    margin-top: 0;
}

.checkout-field {
    display: grid;
    gap: 7px;
}

.checkout-field span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(82, 49, 28, 0.72);
}

.checkout-field-full {
    grid-column: 1 / -1;
}

.checkout-input {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(121, 79, 50, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #45291d;
    font-size: 0.96rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-input:focus {
    border-color: rgba(231, 111, 52, 0.65);
    box-shadow: 0 0 0 4px rgba(244, 150, 87, 0.14);
}

.checkout-input.is-invalid {
    border-color: rgba(201, 73, 73, 0.72);
    box-shadow: 0 0 0 4px rgba(201, 73, 73, 0.12);
}

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

.checkout-option-list {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.checkout-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(121, 79, 50, 0.12);
    background: rgba(255, 255, 255, 0.58);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-option:hover {
    transform: translateY(-1px);
}

.checkout-option.is-selected {
    border-color: rgba(235, 118, 58, 0.48);
    box-shadow: 0 16px 30px rgba(228, 127, 70, 0.12);
    background: rgba(255, 250, 244, 0.9);
}

.checkout-option input {
    width: 18px;
    height: 18px;
    accent-color: #eb743e;
}

.checkout-option-content {
    display: grid;
    gap: 3px;
}

.checkout-option-content strong {
    color: #4b2817;
    font-size: 0.98rem;
}

.checkout-option-content small,
.checkout-inline-note,
.checkout-helper,
.summary-guarantees li,
.checkout-empty span {
    color: rgba(74, 44, 27, 0.67);
    font-size: 0.84rem;
    line-height: 1.5;
}

.checkout-option-price {
    font-size: 0.92rem;
    font-weight: 800;
    color: #a3471a;
}

.checkout-toggle-fields {
    margin-top: 16px;
}

.pickup-field-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.pickup-widget-btn {
    width: auto;
    min-width: 160px;
    color: #582d18;
    background: rgba(102, 52, 23, 0.08);
    border-color: rgba(109, 58, 28, 0.16);
}

.checkout-actions-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.checkout-submit {
    min-width: 260px;
}

.text-action {
    color: rgba(76, 40, 21, 0.74);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.checkout-summary-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.73rem;
}

.checkout-summary-items {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.checkout-empty {
    padding: 18px;
    border-radius: 18px;
    background: rgba(120, 73, 43, 0.05);
    border: 1px dashed rgba(106, 62, 33, 0.16);
}

.checkout-empty p {
    margin: 0 0 6px;
    color: #4b2817;
    font-weight: 700;
}

.summary-item,
.cart-line-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(113, 67, 36, 0.08);
}

.summary-item-image,
.cart-line-item-image {
    width: 66px;
    aspect-ratio: 1 / 1.2;
    object-fit: contain;
    padding: 6px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 247, 235, 0.96), rgba(255, 238, 214, 0.84));
}

.summary-item-copy,
.cart-line-item-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.summary-item-copy strong,
.cart-line-item-copy strong {
    color: #492716;
    line-height: 1.2;
}

.summary-item-copy span,
.summary-item-copy small,
.cart-line-item-copy span {
    color: rgba(74, 44, 27, 0.68);
    line-height: 1.4;
}

.cart-line-item-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-line-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(120, 71, 42, 0.08);
}

.cart-line-qty button,
.cart-line-remove,
.cart-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(94, 50, 24, 0.08);
    color: #582f18;
    font-size: 1rem;
}

.cart-line-remove {
    background: rgba(136, 74, 43, 0.06);
}

.checkout-summary-pricing {
    margin-top: 20px;
    display: grid;
    gap: 4px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(102, 57, 28, 0.12);
    color: rgba(74, 44, 27, 0.8);
}

.summary-row strong {
    color: #432414;
}

.summary-total-row {
    margin-top: 4px;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 1.02rem;
}

.summary-total-row strong {
    color: #c4511b;
    font-size: 1.2rem;
}

.summary-guarantees {
    margin: 22px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.cart-drawer[hidden],
.checkout-success[hidden],
.shop-toast[hidden] {
    display: none;
}

.cart-drawer,
.checkout-success {
    position: fixed;
    inset: 0;
    z-index: 130;
}

.cart-drawer-backdrop,
.checkout-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 11, 8, 0.62);
    backdrop-filter: blur(8px);
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 100%);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(180deg, #fff8ef 0%, #f1e2d1 100%);
    color: #3e251a;
    box-shadow: -24px 0 48px rgba(23, 12, 8, 0.24);
}

.cart-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cart-drawer-kicker,
.checkout-success-kicker {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(84, 46, 24, 0.62);
}

.cart-drawer-head h3,
.checkout-success-card h3 {
    margin: 0;
    color: #4b2817;
    font-size: 1.42rem;
    line-height: 1.08;
}

.cart-drawer-items {
    display: grid;
    align-content: start;
    gap: 12px;
    overflow: auto;
}

.cart-drawer-footer {
    display: grid;
    gap: 14px;
}

.cart-drawer-actions,
.checkout-success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-drawer-actions .landing-btn,
.checkout-success-actions .landing-btn {
    flex: 1 1 180px;
}

.cart-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5f2410, #cb5f1f 68%, #f2a33c 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(95, 36, 16, 0.3);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.cart-fab.is-footer-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
}

.shop-toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 140;
    transform: translate(-50%, 12px);
    min-width: min(92vw, 380px);
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(42, 20, 11, 0.92);
    color: #fff5e8;
    text-align: center;
    box-shadow: 0 18px 34px rgba(24, 10, 6, 0.24);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.shop-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.checkout-success {
    display: grid;
    place-items: center;
    padding: 20px;
}

.checkout-success-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff9f1 0%, #f6e9da 100%);
    color: #422415;
    box-shadow: 0 28px 52px rgba(27, 13, 8, 0.22);
}

.checkout-success-card p {
    margin-top: 10px;
    color: rgba(70, 41, 24, 0.78);
}

.checkout-success-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(96, 51, 25, 0.06);
    border: 1px solid rgba(104, 58, 29, 0.12);
    color: #4b2817;
    white-space: pre-wrap;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    max-height: 300px;
    overflow: auto;
}

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

    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .nav-shell {
        grid-template-columns: auto 1fr auto;
    }

    .header-actions {
        display: none;
    }

    .checkout-card,
    .checkout-summary-card,
    .cart-drawer-panel,
    .checkout-success-card {
        padding: 22px;
    }

    .checkout-form-grid,
    .pickup-field-row {
        grid-template-columns: 1fr;
    }

    .buy-actions {
        width: 100%;
    }

    .buy-actions .landing-btn {
        min-width: 0;
        flex: 1 1 100%;
        min-height: 64px;
        padding-inline: 24px;
    }
}

@media (max-width: 560px) {
    .checkout-actions-row,
    .cart-drawer-actions,
    .checkout-success-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-option,
    .summary-item,
    .cart-line-item {
        grid-template-columns: auto 1fr;
    }

    .checkout-option-price,
    .summary-item > strong,
    .cart-line-remove {
        grid-column: 2;
        justify-self: start;
    }

    .cart-line-remove {
        margin-top: -4px;
    }

    .cart-fab {
        right: 14px;
        left: 14px;
        justify-content: center;
    }

    .checkout-intro h2 {
        font-size: clamp(2.3rem, 12vw, 3.2rem);
    }
}

/* ===== Mobile Shop Refresh ===== */
@media (max-width: 820px) {
    .site-header {
        padding: 12px 0;
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .mobile-nav summary {
        min-height: 48px;
        padding: 0 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(248, 241, 230, 0.96);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .benefits-section {
        padding: 18px 0 46px;
    }

    .benefits-shell {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 84vw);
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .benefits-shell::-webkit-scrollbar {
        display: none;
    }

    .benefit-card,
    .orbit-panel {
        scroll-snap-align: start;
    }

    .benefit-card {
        min-height: 230px;
        padding: 24px 20px 22px;
        box-shadow: none;
    }

    .benefit-card h3 {
        font-size: 1.82rem;
    }

    .orbit-panel {
        grid-column: auto;
        min-height: 230px;
        box-shadow: none;
    }

    .orbit-ring {
        animation: none;
    }

    .product-section {
        padding: 38px 0 64px;
    }

    .product-shell {
        gap: 12px;
    }

    .product-intro {
        padding: 18px 16px;
        border-radius: 24px;
        background:
            radial-gradient(circle at 88% -10%, rgba(255, 211, 162, 0.26), transparent 50%),
            linear-gradient(155deg, rgba(70, 21, 9, 0.72), rgba(93, 31, 12, 0.36));
    }

    .product-intro::before,
    .product-intro::after {
        display: none;
    }

    .product-intro h2 {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }

    .product-marquee-track span {
        font-size: 0.72rem;
        padding: 10px 0 10px 12px;
        padding-inline-end: 28px;
    }

    .product-visual {
        order: 1;
        min-height: 320px;
        padding: 22px 16px 54px;
        border-radius: 30px 30px 24px 24px;
        background:
            radial-gradient(circle at 50% 18%, rgba(255, 249, 240, 0.98), rgba(255, 249, 240, 0) 56%),
            linear-gradient(180deg, rgba(255, 247, 235, 0.98), rgba(241, 214, 176, 0.96));
        border: 1px solid rgba(255, 225, 190, 0.68);
        box-shadow:
            0 24px 34px rgba(62, 23, 10, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .product-copy {
        order: 2;
        min-height: 0;
        margin-top: -18px;
        padding: 22px 16px 18px;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(250, 243, 233, 0.98), rgba(241, 230, 211, 0.96));
        border: 1px solid rgba(145, 86, 47, 0.14);
        color: #4d2d1d;
        box-shadow:
            0 20px 30px rgba(47, 16, 7, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
        backdrop-filter: none;
    }

    .product-copy > * {
        width: 100%;
        max-width: none;
    }

    .tag-row {
        order: 1;
        margin-top: 0;
        justify-content: flex-start;
        gap: 6px;
    }

    .tag-row span {
        padding: 6px 10px;
        font-size: 0.69rem;
        background: rgba(255, 247, 234, 0.94);
        color: #7a4522;
        border-color: rgba(151, 84, 42, 0.2);
    }

    .pack-selector {
        order: 2;
        margin-top: 14px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 252, 247, 0.92);
        border: 1px solid rgba(151, 86, 46, 0.16);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            0 12px 20px rgba(111, 66, 36, 0.08);
    }

    .pack-selector-label {
        color: #955f39;
        font-size: 0.8rem;
        letter-spacing: 0.09em;
    }

    .pack-options {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
    }

    .pack-option {
        min-height: 0;
        padding: 14px 16px 13px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        color: #4e2d1c;
        border: 1px solid rgba(145, 86, 47, 0.14);
        box-shadow: 0 8px 18px rgba(111, 66, 36, 0.06);
        transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .pack-option:hover {
        transform: none;
    }

    .pack-option.is-active {
        background: linear-gradient(145deg, rgba(255, 237, 207, 0.98), rgba(255, 225, 180, 0.96));
        border-color: rgba(196, 111, 54, 0.3);
        box-shadow: 0 12px 24px rgba(119, 66, 30, 0.12);
    }

    .pack-option-title {
        font-size: 1.08rem;
    }

    .pack-option-meta {
        margin-top: 8px;
        font-size: 0.72rem;
        color: rgba(124, 77, 45, 0.84);
    }

    .pack-option-footnote {
        margin-top: 12px;
        color: #7c4a29;
        font-size: 0.84rem;
    }

    .buy-row {
        order: 3;
        margin-top: 16px;
        display: grid;
        gap: 12px;
        align-items: stretch;
    }

    .price {
        font-size: clamp(3.1rem, 15vw, 4rem);
        line-height: 0.88;
        color: #552d18;
    }

    .buy-actions {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .buy-actions .landing-btn,
    .buy-row .landing-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .product-section .landing-btn.contrast {
        min-height: 58px;
        box-shadow: 0 14px 26px rgba(108, 58, 25, 0.16);
    }

    .landing-btn.subtle {
        background: linear-gradient(145deg, rgba(120, 43, 16, 0.92), rgba(214, 106, 33, 0.92));
        color: #fff4e7;
        border-color: rgba(255, 228, 194, 0.16);
    }

    .price-note {
        order: 4;
        margin-top: 2px;
        color: rgba(96, 58, 35, 0.84);
        font-size: 0.85rem;
    }

    .product-copy > .shipping-note {
        order: 5;
        margin-top: 12px;
        padding: 13px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.66);
        border: 1px solid rgba(147, 88, 49, 0.12);
        color: #603827;
    }

    .shipping-note svg {
        stroke: #c06a2d;
    }

    .order-trust {
        order: 6;
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.54);
        border: 1px solid rgba(146, 88, 48, 0.12);
    }

    .order-trust li {
        color: #5e3927;
    }

    .product-key-points {
        order: 7;
        margin-top: 14px;
        gap: 8px;
    }

    .product-key-points li {
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(138, 83, 47, 0.12);
        color: #5b3724;
        padding: 10px 12px;
    }

    .pack-stage {
        width: min(100%, 340px);
        height: 254px;
    }

    .pack-item {
        width: clamp(120px, 34vw, 170px);
    }

    .pack-stage::after {
        top: 2px;
        width: 92%;
        height: 62%;
    }

    .pack-visual-caption {
        top: auto;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.64rem;
        color: #76401f;
        background: rgba(255, 247, 233, 0.9);
    }

    .cart-fab {
        left: auto;
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        min-height: 52px;
        padding: 0 18px;
        gap: 10px;
        justify-content: center;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        box-shadow: 0 18px 30px rgba(88, 36, 14, 0.3);
    }
}

@media (max-width: 560px) {
    .landing-container {
        width: min(1180px, calc(100% - 24px));
    }

    .hero-card {
        padding: 24px 18px 16px;
    }

    .hero-art {
        min-height: 282px;
    }

    .hero-elements {
        height: 282px;
    }

    .benefits-shell {
        grid-auto-columns: 88vw;
    }

    .benefit-card,
    .orbit-panel {
        min-height: 216px;
    }

    .benefit-card {
        padding: 22px 18px 20px;
    }

    .benefit-card h3 {
        font-size: 1.66rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .orbit-tag {
        font-size: 0.64rem;
        padding: 7px 10px;
    }

    .product-section {
        padding: 34px 0 66px;
    }

    .product-intro {
        display: block;
    }

    .product-shell {
        gap: 0;
    }

    .product-visual {
        min-height: 292px;
        padding: 18px 12px 50px;
        border-radius: 28px 28px 22px 22px;
    }

    .product-copy {
        margin-top: -16px;
        padding: 20px 14px 18px;
        border-radius: 24px;
    }

    .tag-row {
        margin-top: 2px;
    }

    .tag-row span {
        font-size: 0.67rem;
        padding: 6px 9px;
    }

    .pack-selector {
        padding: 14px;
        border-radius: 22px;
    }

    .pack-option {
        padding: 13px 14px 12px;
    }

    .pack-option-title {
        font-size: 1.02rem;
    }

    .pack-option-footnote {
        font-size: 0.82rem;
    }

    .price {
        font-size: 2.9rem;
    }

    .pack-stage {
        width: min(100%, 292px);
        height: 228px;
    }

    .pack-item {
        width: clamp(108px, 36vw, 148px);
    }

    .product-key-points li,
    .product-copy > .shipping-note,
    .order-trust {
        border-radius: 16px;
    }

    .cart-fab {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        min-height: 50px;
        padding: 0 16px;
        font-size: 0.76rem;
    }
}


/* ===== Mobile Product Art Direction ===== */
@media (max-width: 820px) {
    .product-shell {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-intro {
        order: 1;
        padding: 14px 16px 16px;
        border-radius: 22px;
        background:
            radial-gradient(circle at 86% -8%, rgba(255, 208, 154, 0.22), transparent 46%),
            linear-gradient(155deg, rgba(69, 21, 9, 0.72), rgba(96, 33, 13, 0.4));
        box-shadow:
            0 18px 28px rgba(43, 15, 7, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .product-intro::before,
    .product-intro::after,
    .product-marquee {
        display: none;
    }

    .product-intro .section-chip {
        margin-bottom: 10px;
        padding: 5px 11px;
        font-size: 0.68rem;
    }

    .product-intro h2 {
        font-size: clamp(2.15rem, 9.8vw, 3rem);
        line-height: 0.95;
    }

    .product-copy {
        display: contents;
    }

    .tag-row {
        order: 2;
        margin: 2px 2px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .tag-row span {
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 246, 231, 0.9);
        color: #824922;
        border-color: rgba(151, 84, 42, 0.18);
        box-shadow: 0 8px 14px rgba(111, 66, 36, 0.05);
    }

    .product-visual {
        order: 3;
        min-height: 306px;
        margin-top: 2px;
        padding: 18px 16px 48px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 50% 16%, rgba(255, 249, 239, 0.98), rgba(255, 249, 239, 0) 56%),
            linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(242, 217, 182, 0.96));
        border: 1px solid rgba(255, 228, 194, 0.72);
        box-shadow:
            0 24px 36px rgba(61, 23, 10, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .pack-stage {
        width: min(100%, 332px);
        height: 244px;
    }

    .pack-item {
        width: clamp(118px, 33vw, 164px);
    }

    .pack-visual-caption {
        top: auto;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 247, 233, 0.92);
        color: #794120;
    }

    .pack-selector {
        order: 4;
        margin-top: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(249, 243, 234, 0.96);
        border: 1px solid rgba(151, 86, 46, 0.14);
        box-shadow:
            0 16px 24px rgba(98, 58, 31, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .pack-selector-label {
        color: #9a643d;
        font-size: 0.76rem;
        letter-spacing: 0.09em;
    }

    .pack-options {
        margin-top: 12px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .pack-option {
        min-height: 96px;
        padding: 12px 10px 11px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        color: #4f2d1c;
        border: 1px solid rgba(146, 86, 47, 0.14);
        box-shadow: 0 8px 16px rgba(108, 61, 31, 0.06);
    }

    .pack-option.is-active {
        background: linear-gradient(145deg, rgba(255, 239, 210, 0.98), rgba(255, 223, 182, 0.96));
        border-color: rgba(190, 108, 53, 0.28);
        box-shadow: 0 12px 20px rgba(117, 65, 30, 0.12);
    }

    .pack-option-title {
        font-size: 0.94rem;
        line-height: 1.15;
    }

    .pack-option-meta {
        margin-top: 7px;
        font-size: 0.61rem;
        line-height: 1.35;
        letter-spacing: 0.08em;
        color: rgba(125, 78, 46, 0.8);
    }

    .pack-option-footnote {
        margin-top: 10px;
        color: #7d4b2b;
        font-size: 0.8rem;
    }

    .buy-row {
        order: 5;
        margin-top: 12px;
        display: grid;
        gap: 12px;
        align-items: stretch;
    }

    .price {
        font-size: clamp(3rem, 14vw, 3.85rem);
        line-height: 0.9;
        color: #562d18;
    }

    .buy-actions {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .buy-actions .landing-btn,
    .buy-row .landing-btn {
        width: 100%;
        min-width: 0;
    }

    .product-section .landing-btn.contrast {
        min-height: 56px;
        justify-content: center;
        box-shadow: 0 14px 24px rgba(105, 57, 25, 0.14);
    }

    .landing-btn.subtle {
        justify-content: center;
        background: rgba(255, 255, 255, 0.56);
        color: #7a4220;
        border: 1px solid rgba(147, 88, 49, 0.14);
        box-shadow: none;
    }

    .price-note {
        order: 6;
        margin: 2px 4px 0;
        color: rgba(97, 58, 35, 0.82);
    }

    .product-copy > .shipping-note {
        order: 7;
        margin-top: 10px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(145, 87, 49, 0.12);
    }

    .order-trust {
        order: 8;
        margin-top: 12px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.52);
        border: 1px solid rgba(145, 87, 49, 0.12);
    }

    .product-key-points {
        order: 9;
        margin-top: 12px;
        gap: 7px;
    }

    .product-key-points li {
        padding: 9px 11px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.56);
        border: 1px solid rgba(140, 84, 47, 0.1);
        color: #5c3926;
    }

    .cart-fab {
        left: auto;
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        min-height: 48px;
        padding: 0 16px;
        gap: 8px;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 560px) {
    .product-intro {
        display: block;
        padding: 14px 14px 15px;
        margin-bottom: 10px;
        border-radius: 24px;
        background:
            radial-gradient(circle at 86% -8%, rgba(255, 206, 149, 0.2), transparent 46%),
            linear-gradient(160deg, rgba(86, 27, 11, 0.82), rgba(125, 54, 21, 0.46));
        box-shadow:
            0 18px 28px rgba(43, 15, 7, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .product-intro h2 {
        font-size: clamp(1.95rem, 10vw, 2.5rem);
        line-height: 0.94;
    }

    .product-intro .section-chip {
        margin-bottom: 8px;
        padding: 5px 10px;
        font-size: 0.64rem;
    }

    .tag-row {
        gap: 6px;
    }

    .tag-row span {
        font-size: 0.66rem;
        padding: 6px 9px;
    }

    .product-visual {
        min-height: 282px;
        padding: 16px 12px 44px;
        border-radius: 26px;
    }

    .pack-stage {
        width: min(100%, 292px);
        height: 222px;
    }

    .pack-item {
        width: clamp(106px, 35vw, 146px);
    }

    .pack-selector {
        padding: 13px;
        border-radius: 20px;
    }

    .pack-options {
        gap: 7px;
    }

    .pack-option {
        min-height: 92px;
        padding: 11px 8px 10px;
        border-radius: 14px;
    }

    .pack-option-title {
        font-size: 0.88rem;
    }

    .pack-option-meta {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }

    .pack-option-footnote {
        font-size: 0.78rem;
    }

    .price {
        font-size: 2.75rem;
    }

    .product-key-points li,
    .product-copy > .shipping-note,
    .order-trust {
        border-radius: 14px;
    }

    .cart-fab {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}


/* ===== Mobile Cart Polish ===== */
@media (max-width: 560px) {
    .cart-drawer-panel {
        gap: 16px;
        padding: 20px 18px 18px;
    }

    .cart-drawer-head h3 {
        font-size: 1.18rem;
    }

    .cart-line-item {
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .cart-line-item-image {
        width: 58px;
        border-radius: 12px;
    }

    .cart-line-item-copy strong {
        font-size: 0.98rem;
    }

    .cart-line-item-copy span {
        font-size: 0.78rem;
    }

    .cart-line-item-meta {
        gap: 10px;
    }

    .cart-line-qty {
        gap: 8px;
        padding: 4px 7px;
    }

    .cart-drawer-footer {
        gap: 12px;
    }

    .cart-drawer-actions .landing-btn,
    .checkout-success-actions .landing-btn {
        min-height: 54px;
        padding: 0 18px;
        border-radius: 18px;
        font-size: 0.94rem;
        letter-spacing: 0.04em;
        box-shadow: none;
    }

    .cart-drawer-actions .landing-btn.subtle,
    .checkout-success-actions .landing-btn.subtle {
        background: rgba(255, 255, 255, 0.72);
        color: #7a4220;
        border: 1px solid rgba(147, 88, 49, 0.12);
    }

    .cart-drawer-actions .landing-btn.contrast,
    .checkout-success-actions .landing-btn.contrast {
        background: linear-gradient(145deg, #ff7b39, #ff8f3f);
        color: #fff8f0;
        border: 0;
        box-shadow: 0 12px 26px rgba(217, 104, 42, 0.22);
    }
}


/* ===== Mobile Cart Fix ===== */
@media (max-width: 560px) {
    .cart-line-item {
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: start;
    }

    .cart-line-item-copy {
        gap: 4px;
        padding-top: 2px;
    }

    .cart-line-item-meta {
        margin-top: 8px;
    }

    .cart-line-remove {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        margin-top: 0;
    }

    .cart-drawer-actions,
    .checkout-success-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cart-drawer-actions .landing-btn,
    .checkout-success-actions .landing-btn {
        flex: 0 0 auto;
        width: 100%;
        min-height: 54px;
        height: auto;
    }
}


/* ===== Buy Anchor ===== */
#buy-focus {
    scroll-margin-top: 128px;
}

@media (max-width: 820px) {
    #buy-focus {
        scroll-margin-top: 86px;
    }
}

@media (max-width: 560px) {
    #buy-focus {
        scroll-margin-top: 70px;
    }
}

/* ===== Mobile Hero Header Refinement ===== */
@media (max-width: 820px) {
    .site-header {
        padding: 7px 0;
        background: linear-gradient(180deg, rgba(248, 243, 236, 0.92), rgba(248, 243, 236, 0.7));
        border-bottom: 1px solid rgba(118, 69, 38, 0.08);
        backdrop-filter: blur(18px);
    }

    .nav-shell {
        gap: 8px;
        align-items: center;
    }

    .site-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
        justify-self: end;
    }

    .site-logo-mark {
        width: clamp(96px, 27vw, 118px);
    }

    .mobile-nav {
        position: relative;
        z-index: 60;
    }

    .mobile-nav:not([open]) > .mobile-nav-panel {
        display: none;
    }

    .mobile-nav summary {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #5b3520;
        background: rgba(249, 242, 232, 0.92);
        border: 1px solid rgba(121, 72, 40, 0.14);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.92),
            0 10px 24px rgba(79, 43, 20, 0.08);
    }

    body.mobile-nav-open .site-header {
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
    }

    body.mobile-nav-open .site-logo,
    body.mobile-nav-open .site-nav,
    body.mobile-nav-open .header-actions {
        opacity: 0;
        pointer-events: none;
    }

    body.mobile-nav-open .nav-shell {
        display: block;
    }

    .mobile-nav[open] {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        max-width: none;
        margin: 0;
        padding: 82px 18px 24px;
        display: block;
        overflow: auto;
        background:
            radial-gradient(circle at 18% 14%, rgba(255, 214, 165, 0.38), transparent 26%),
            linear-gradient(180deg, rgba(249, 241, 231, 0.995), rgba(243, 229, 209, 0.995));
        z-index: 140;
        isolation: isolate;
    }

    .mobile-nav[open]::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(47, 20, 9, 0.12);
        backdrop-filter: blur(18px);
        z-index: -1;
    }

    .mobile-nav[open] summary {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 42px;
        min-height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 999px;
        font-size: 0;
        background: rgba(251, 245, 237, 0.98);
        box-shadow: 0 16px 36px rgba(58, 24, 8, 0.16);
        z-index: 3;
    }

    .mobile-nav[open] summary::after {
        content: '\00d7';
        font-size: 1.55rem;
        font-weight: 400;
        line-height: 1;
        color: #4f2d1a;
    }

    .mobile-nav[open] .mobile-nav-panel {
        position: relative;
        width: 100%;
        min-width: 0;
        display: grid;
        align-content: start;
        gap: 12px;
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
        z-index: 1;
    }

    .mobile-nav[open] .mobile-nav-panel::before {
        content: 'TIYAPUY';
        margin-bottom: 10px;
        color: #9a633c;
        font-family: 'Bebas Neue', Impact, sans-serif;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .mobile-nav[open] .mobile-nav-panel a {
        min-height: 60px;
        padding: 18px 18px;
        display: flex;
        align-items: center;
        border-radius: 22px;
        background: rgba(255, 251, 246, 0.94);
        border: 1px solid rgba(145, 86, 47, 0.12);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.94),
            0 14px 28px rgba(111, 66, 36, 0.08);
        font-size: 1.08rem;
        font-weight: 600;
        color: #4d2e1d;
    }

    .mobile-nav[open] .mobile-nav-panel a[href='/checkout'] {
        background: linear-gradient(135deg, #f18f38, #d76d21);
        color: #fff8ef;
        border-color: transparent;
        box-shadow: 0 18px 34px rgba(178, 89, 31, 0.24);
    }

    .hero-section {
        padding: 12px 0 24px;
    }

    .hero-card {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        padding: 18px 18px 16px;
        gap: 12px;
        border-radius: 30px;
        background:
            radial-gradient(circle at 22% 12%, rgba(255, 184, 120, 0.16), transparent 28%),
            linear-gradient(160deg, #3c190d 0%, #5c2b15 44%, #261008 100%);
        box-shadow:
            0 26px 44px rgba(50, 17, 7, 0.24),
            inset 0 1px 0 rgba(255, 232, 205, 0.1);
    }

    .hero-copy {
        display: contents;
    }

    .hero-label {
        order: 1;
        justify-self: start;
        padding: 8px 14px;
        background: rgba(255, 231, 199, 0.1);
        border: 1px solid rgba(255, 216, 168, 0.16);
        color: #ffdcb4;
        box-shadow: none;
    }

    .hero-copy h1 {
        order: 2;
        margin-top: 6px;
        max-width: 8.2ch;
        font-size: clamp(2.8rem, 13vw, 4rem);
        line-height: 0.9;
        letter-spacing: 0.01em;
        text-shadow: 0 12px 26px rgba(18, 7, 3, 0.24);
    }

    .hero-copy p {
        order: 3;
        margin-top: 6px;
        max-width: 19ch;
        font-size: 0.98rem;
        line-height: 1.52;
        color: rgba(255, 241, 224, 0.88);
    }

    .hero-art {
        order: 4;
        position: relative;
        min-height: 344px;
        margin-top: 4px;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(255, 226, 191, 0.14);
        background: linear-gradient(180deg, rgba(53, 20, 9, 0.48), rgba(22, 8, 4, 0.68));
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 18px 34px rgba(31, 10, 4, 0.18);
    }

    .hero-art::before {
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(31, 11, 5, 0.1), rgba(15, 6, 3, 0.44)),
            radial-gradient(circle at 50% 58%, rgba(255, 194, 127, 0.18), transparent 38%);
    }

    .hero-video-bg {
        z-index: 0;
        filter: saturate(0.92) contrast(1.08) brightness(0.56);
        opacity: 0.54;
    }

    .hero-elements {
        z-index: 6;
        width: 100%;
        height: 100%;
    }

    .hero-elements::before {
        z-index: 1;
        background:
            radial-gradient(circle at 50% 56%, rgba(255, 200, 132, 0.28), transparent 40%),
            linear-gradient(180deg, rgba(18, 7, 3, 0.04), rgba(18, 7, 3, 0.2));
    }

    .hero-float img {
        filter: saturate(1.18) contrast(1.12) brightness(1.16);
    }

    .hero-pack-glow {
        width: min(76%, 360px);
        top: 60%;
        opacity: 0.86;
    }

    .hero-float-pack {
        width: clamp(228px, 66vw, 294px);
        top: 59%;
        z-index: 9;
    }

    .hero-float-chip {
        width: clamp(52px, 14vw, 74px);
        opacity: 0.98;
        z-index: 10;
    }

    .hero-float-chip-a {
        left: 3%;
        top: 53%;
        width: clamp(62px, 17vw, 92px);
    }

    .hero-float-chip-b {
        right: 7%;
        top: 31%;
        width: clamp(54px, 15vw, 78px);
    }

    .hero-float-chip-c {
        left: 17%;
        top: 16%;
        width: clamp(42px, 12vw, 60px);
    }

    .hero-float-chip-d {
        right: 20%;
        top: 14%;
        width: clamp(46px, 13vw, 66px);
    }

    .hero-float-chip-e {
        right: 2%;
        top: 54%;
        width: clamp(58px, 16vw, 84px);
    }

    .hero-float-chip-f {
        left: 34%;
        top: 69%;
        width: clamp(42px, 12vw, 60px);
        z-index: 7;
    }

    .hero-float-salt-main {
        right: 12%;
        top: 58%;
        width: clamp(56px, 14vw, 78px);
        opacity: 0.88;
        z-index: 8;
    }

    .hero-float-salt-sub {
        left: 14%;
        top: 34%;
        width: clamp(42px, 11vw, 58px);
        opacity: 0.62;
        z-index: 8;
    }

    .hero-buttons {
        order: 5;
        margin-top: 10px;
        padding: 0 10px;
        display: grid;
        gap: 10px;
        width: 100%;
        position: relative;
        z-index: 6;
    }

    .hero-buttons .landing-btn {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        border-radius: 999px;
    }

    .hero-buttons .landing-btn.primary {
        background: linear-gradient(135deg, #ef8d37, #d66f21);
        border-color: transparent;
        color: #fff7ed;
        box-shadow: 0 18px 34px rgba(186, 91, 32, 0.26);
    }

    .hero-buttons .landing-btn.ghost {
        min-height: 48px;
        background: rgba(255, 241, 222, 0.08);
        border-color: rgba(255, 225, 188, 0.16);
        color: #fff1df;
        backdrop-filter: blur(10px);
    }

    .hero-pills-rail {
        position: static;
        order: 6;
        transform: none;
        width: 100%;
        margin-top: 4px;
        display: grid;
        gap: 10px;
    }

    .hero-pills li {
        width: 100%;
        min-height: 54px;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 18px;
        background: rgba(255, 244, 228, 0.08);
        border: 1px solid rgba(255, 226, 191, 0.1);
        color: rgba(255, 243, 225, 0.92);
        box-shadow: none;
    }

    .hero-pills li svg {
        width: 18px;
        height: 18px;
        stroke: #ffbe83;
    }
}

@media (max-width: 560px) {
    .landing-container {
        width: min(1180px, calc(100% - 20px));
    }

    .site-header {
        padding: 6px 0;
    }

    .site-logo-mark {
        width: clamp(92px, 27vw, 108px);
    }

    .mobile-nav summary {
        min-height: 38px;
        padding: 0 13px;
        font-size: 0.64rem;
    }

    .mobile-nav[open] {
        padding: 78px 16px 22px;
    }

    body.mobile-nav-open .site-logo,
    body.mobile-nav-open .site-nav,
    body.mobile-nav-open .header-actions {
        display: none;
    }

    .hero-section {
        padding: 10px 0 22px;
    }

    .hero-card {
        display: grid;
        grid-template-columns: 1fr;
        padding: 16px 16px 14px;
        border-radius: 26px;
    }

    .hero-copy h1 {
        max-width: 8.4ch;
        font-size: clamp(2.45rem, 12.8vw, 3.4rem);
    }

    .hero-copy p {
        max-width: none;
        font-size: 0.94rem;
    }

    .hero-art {
        min-height: 334px;
        border-radius: 24px;
    }

    .hero-elements {
        height: 334px;
    }

    .hero-float-pack {
        width: clamp(220px, 69vw, 284px);
        top: 58%;
    }

    .hero-float-chip-a {
        left: 2%;
        top: 54%;
        width: clamp(56px, 17vw, 80px);
    }

    .hero-float-chip-b {
        right: 7%;
        top: 31%;
        width: clamp(48px, 15vw, 70px);
    }

    .hero-float-chip-c {
        left: 16%;
        top: 18%;
        width: clamp(38px, 11vw, 54px);
    }

    .hero-float-chip-d {
        right: 19%;
        top: 15%;
        width: clamp(42px, 12vw, 60px);
    }

    .hero-float-chip-e {
        right: 1%;
        top: 55%;
        width: clamp(54px, 16vw, 78px);
    }

    .hero-float-chip-f {
        left: 34%;
        top: 70%;
        width: clamp(38px, 11vw, 54px);
    }

    .hero-float-salt-main {
        right: 12%;
        top: 58%;
        width: clamp(42px, 12vw, 58px);
    }

    .hero-float-salt-sub {
        left: 13%;
        top: 36%;
        width: clamp(34px, 10vw, 48px);
    }

    .hero-buttons {
        margin-top: 12px;
        padding: 0 8px;
        gap: 8px;
    }

    .hero-buttons .landing-btn.primary {
        min-height: 54px;
    }

    .hero-buttons .landing-btn.ghost {
        min-height: 46px;
    }

    .hero-pills li {
        min-height: 50px;
        font-size: 0.86rem;
    }
}
