:root {
    --color-bg: #FFFDF0;
    /* Light yellow background */
    --color-sub-bg: #FFF5F5;
    /* Very pale red for sections */
    --color-text: #333333;
    --color-text-light: #777777;
    --color-accent-red: #A52125;
    /* Brighter, pop red */
    --color-accent-red-dark: #D34646;
    --color-accent-green: #6B8E23;
    --color-border: #F0F0F0;
    --font-heading: "ads-yutampo", sans-serif;
    --font-main: 'M PLUS Rounded 1c', sans-serif;
    --font-catch: 'Zen Maru Gothic', sans-serif;
    --font-handwriting: "sictake-fubuki", sans-serif;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --shadow-float: 0 10px 30px rgba(230, 57, 70, 0.15);
    /* Red-tinted shadow */
    --radius-lg: 30px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    /* More breathing room */
    font-size: 16px;
    padding-bottom: 0;
    /* Footer handles spacing */
    /* overflow-x: hidden; Removed to prevent double scrollbar */
    letter-spacing: 0.05em;
    /* Rounded font looks better with spacing */
    min-width: 320px;
    position: relative;
    width: 100%;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.container {
    padding: 0 24px;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Extra bold for rounded font */
    /* Extra bold for rounded font */
    line-height: 1.4;
    color: var(--color-accent-red);
    /* Headings in Red by default or mostly */
    letter-spacing: -0.02em;
    /* Tighter letter spacing for ads-yutampo */
}

/* Wavy Decoration (Canvas) */
.wave-container-top {
    width: 100%;
    height: 60px;
    /* Adjust based on wave height */
    margin-bottom: -5px;
    /* Overlap slightly to avoid gaps */
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.wave-container-bottom {
    /* display: none; Removed to show bottom wave */
    width: 100%;
    height: 60px;
    margin-top: -5px;
    position: relative;
    z-index: 3;
    overflow: hidden;
    transform: rotate(180deg);
    /* Flip for bottom */
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    background: var(--color-sub-bg);
    /* Pink background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: var(--color-accent-red);
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

.loading-logo-container {
    width: 200px;
    /* Larger logo */
    height: 200px;
    position: relative;
}

.svg-shape {
    width: 100%;
    height: 100%;
    display: block;
}

/* Base layer (White) */
.loading-base .svg-shape {
    filter: brightness(0) invert(1);
    /* Make it pure white */
    opacity: 1;
    /* Fully visible white base */
}

/* Fill layer wrapper */
.loading-fill-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* This will be animated by height logic in inner div or masking */
}

.loading-fill-anim {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Start empty */
    overflow: hidden;
    animation: fillApple 2s ease-in-out forwards;
}

.loading-fill-anim .svg-shape.tinted-red {
    /* Use the red color from SVG or filter */
    /* If SVG has specific color, it shows. If we need to force red: */
    /* filter: drop-shadow(0 0 0 var(--color-accent-red)); works if transparent bg */
    width: 200px;
    /* Match container */
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes fillApple {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom for Ken Burns effect potentially */
    transition: opacity 2s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero direct fade in without scroll trigger needed initially */
.fade-up-direct {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    background: var(--color-accent-red);
    /* backdrop-filter: blur(10px); */
    /* Removing blur since it's solid red now */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    border-bottom: none;
    border-radius: 0 0 50% 50% / 0 0 15px 15px;
    /* Gentle curve */
    box-shadow: 0 4px 15px rgba(165, 33, 37, 0.4);
    /* Red tint shadow */
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    z-index: 101;
    position: relative;
    /* Logo SVG should be red by default or styled here if inline */
}

.logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Change colored SVG to white */
}

/* Desktop Nav */
.site-nav.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .site-nav.desktop-only {
        display: flex;
        gap: 24px;
        font-size: 1rem;
        font-weight: 700;
        align-items: center;
        color: white;
        /* Changed from red to white */
    }
}

.btn-nav {
    background-color: white;
    /* Changed to white */
    color: var(--color-accent-red) !important;
    /* Changed to red */
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    /* User requested to remove menu button on mobile */
}

/* Back to Top Button */
.btn-back-to-top {
    position: absolute;
    /* Relative to sticky-cta container */
    top: -60px;
    /* Position above the CTA */
    right: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent-red);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    background-color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    /* White hamburger on red */
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.hamburger-btn span:nth-child(1) {
    transform: translateY(-7px);
}

.hamburger-btn span:nth-child(2) {
    transform: translateY(0);
}

.hamburger-btn span:nth-child(3) {
    transform: translateY(7px);
}

/* Active Hamburger State */
.hamburger-btn.is-active {
    background: white;
}

.hamburger-btn.is-active span {
    background-color: var(--color-accent-red);
}

.hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    /* White overlay */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* Prevent clicks when hidden */
    transform: translateY(20px);
    /* Start slightly down */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    /* Slide up to position */
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-nav a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-accent-red);
    /* Red text */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Cascade animation */
.mobile-menu.is-active .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-active .mobile-nav a:nth-child(1) {
    transition-delay: 0.1s;
}

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

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

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

.mobile-btn-nav {
    background-color: var(--color-accent-red);
    color: white !important;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

/* Hero */
.hero {
    /* Background handled by .hero-slider */
    background-color: #333;
    width: 100%;
    min-height: 85vh;
    /* Taller hero */
    position: relative;
    display: flex;
    align-items: center;
    /* Center content */
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    padding-bottom: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 80px;
    text-align: left;
    /* Left align text */
}

/* Left Column Text */
.hero-col-text {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

/* Right Column Visual */
.hero-col-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bottle-img {
    max-width: 100%;
    height: auto;
    max-height: 65vh;
    /* Large bottle */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.catchphrase-sub {
    font-size: 2.3rem;
    color: var(--color-accent-red);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-catch);
    word-break: keep-all;
    line-height: 1.8;
}

.catchphrase-main {
    margin-bottom: -20px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: var(--color-accent-red);
}

.hero-title-text {
    background-color: #fff;
    color: var(--color-accent-red);
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 50px;
    display: block;
    width: fit-content;
    margin: 0 0 10px 0;
    /* Left align */
    font-weight: 800;
    letter-spacing: 0.15em;
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic Pro", sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-line {
    display: block;
    margin-top: 10px;
}

/* Hero Text Underline Animation (Only for main catchphrase now) */
.hero-col-text .text-line {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-col-text .catchphrase-sub .text-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 0.6em;
    /* Relative height */
    background-color: #FAEA48;
    /* Yellow */
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    /* Changed from -1 to 0 so it stays within the text-line effectively */
    mix-blend-mode: multiply;
    /* Helps the yellow blend neatly behind the white text */
    border-radius: 2px;
}

.hero-col-text .catchphrase-sub .text-line {
    /* Ensure stacking context for mix-blend-mode */
    isolation: isolate;
}

/* Adjust for logo */
.logo-line::after {
    bottom: 10px !important;
    height: 20px !important;
    opacity: 0 !important;
    /* hide the logo line underline completely */
}

/* Trigger Animation */
.hero-col-text.is-visible .catchphrase-sub .text-line::after {
    transform: scaleX(1);
}

/* Stagger Delays */
.hero-col-text.is-visible .catchphrase-sub .text-line:nth-child(1)::after {
    transition-delay: 0.2s;
}

.hero-col-text.is-visible .catchphrase-sub .text-line:nth-child(3)::after {
    /* nth-child(2) is br, so 3 is second line */
    transition-delay: 0.6s;
}

.hero-col-text.is-visible .logo-line::after {
    transition-delay: 1.0s;
}

.hero-title-logo {
    height: 7.5rem;
    /* Larger Logo */
    width: auto;
    vertical-align: middle;
    /* filter drop-shadow removed */
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Left align */
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--color-accent-red);
    font-weight: 700;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-accent-red);
    /* Red border */
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
    box-shadow: none;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.35);
}

.benefit-icon {
    display: none;
}

.benefit-item p {
    line-height: 1;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.hero-price .price-single {
    font-size: 1rem;
    color: var(--color-text);
    display: block;
    margin-bottom: 5px;
}

.hero-price .price-double {
    font-size: 1.8rem;
    color: var(--color-accent-red);
    font-weight: 800;
    line-height: 1;
}

.hero-price .tax {
    font-size: 0.8rem;
    font-weight: normal;
    color: #888;
}

.badge-rec {
    background: var(--color-accent-green);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: text-top;
    margin-left: 5px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
    margin: 0;
    /* Left align */
}

.btn-primary {
    background-color: var(--color-accent-red);
    color: white;
    padding: 20px;
    border-radius: 50px;
    font-weight: 800;
    display: block;
    text-align: center;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid white;
    /* Pop style border */
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: block;
    background-color: #FFFFFF;
    color: var(--color-accent-red);
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid var(--color-accent-red);
    font-size: 1.1rem;
    margin-top: 10px;
    /* Space from price */
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.25);
    background-color: #FFF5F5;
}

/* Hero Product Image */
.hero-product-visual {
    position: relative;
    z-index: 2;
    margin-top: -80px;
    /* Move it up slightly */
    /* Overlap slightly on mobile */
    max-width: 450px;
    /* Larger on mobile */
    /* Smaller on mobile */
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: floatVertical 4s ease-in-out infinite;
}

@keyframes floatVertical {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Empathy */
.empathy {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-bg);
    position: relative;
    z-index: 2;
}

.section-divider {
    margin-bottom: 40px;
}

.section-divider p {
    font-weight: 800;
    color: var(--color-accent-red);
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #FFF0F0;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.text-lead {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 40px;
    color: var(--color-text);
}

.text-body {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(transparent 70%, #FFE4E4 70%);
    /* Marker style */
    display: inline;
}

/* Taste */
.taste {
    padding: 100px 0;
    background-color: var(--color-sub-bg);
    /* Pale Red structure */
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--color-accent-red);
    position: relative;
    display: inline-block;
    word-break: keep-all;
    opacity: 0;
    /* Initial state for animation */
}

.section-title span {
    /* Highlighter Effect on text span */
    background: linear-gradient(transparent 60%, rgba(255, 240, 0, 0.8) 60%);
    padding: 0 10px;
    /* Ensure highlight applies to each line */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.section-title.is-visible {
    animation: cutIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes cutIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) skewX(-20deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(0);
    }
}

/* Remove the old underline */
.section-title::after {
    display: none;
}

.taste-desc p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    word-break: keep-all;
}

.texture-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex: 0 0 auto;
    /* Stop shrinking */
}

/* Taste Section Text Group */
.taste-text-group {
    flex: 1;
    /* Take up remaining space */
    min-width: 280px;
    /* Prevent becoming too narrow */
}

.circle-visual {
    width: 130px;
    height: 130px;
    background: white;
    border: 3px solid var(--color-accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-accent-red);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
    font-size: 2rem;
    /* Larger for Yutampo */
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    /* ads-yutampo */
    transition: all 0.3s ease;
}

.visual-toro {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    /* Organic Blob */
    background: #FFF5F5;
}


/* Hide original text in Su via color:transparent? 
   Better approach: Wrapper div? 
   Or just rotate the whole container and rotate the text back. 
   But "Su" is text content. 
   Let's try a different shape for Su that doesn't require rotation, or use a pseudo element for the shape.
*/

/* Re-thinking Su: A clean circle is fine, but maybe "Sharp"? 
   How about a slightly skewed circle?
*/
.visual-su {
    border-radius: 50%;
    /* Reset to circle */
    /* Make it look "Sharp" - maybe just a clean circle but with a "speed" shadow or line? */
    /* Or teardrop pointing RIGHT? */
    border-top-right-radius: 5px;
    transform: rotate(45deg);
    background: white;
}

.visual-su span {
    display: inline-block;
    transform: rotate(-45deg);
}

.arrow-visual {
    font-size: 2.5rem;
    color: var(--color-accent-red);
    opacity: 0.5;
}

/* Commitment & Scenes */
.commitment,
.scenes {
    background-color: var(--color-bg);
    padding: 80px 0;
}

.image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    transform: rotate(1deg);
    /* Slight fun rotation */
    margin-bottom: 30px;
}

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

.is-visible .image-wrapper img {
    transform: scale(1.1);
}

.scene-item .container,
.commitment .container {
    padding: 20px;
    text-align: center;
}

/* Floating Card Style for Text */


/* Scenes */
.scene-item {
    margin-bottom: 60px;
}

.scene-item h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    background: #A52125;
    /* Red Background */
    display: inline-block;
    padding: 10px 40px;
    /* More side padding for cut effect */
    border-radius: 4px;
    /* Sharper corners */
    font-family: var(--font-handwriting);
    /* sictake-fubuki */
    letter-spacing: 0.05em;
    font-weight: 800;
    white-space: nowrap;
    /* Desktop 1 line */
    transform: skewX(-15deg);
    /* 15 deg skew */
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Initial state for animation */
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

/* Un-skew text for readability if needed, but 15deg is usually fine styling. */

/* Animations for Scene Headers */
.scene-item h4.cut-in-left.is-visible {
    animation: cutInLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.scene-item h4.cut-in-right.is-visible {
    animation: cutInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes cutInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50vw) skewX(-30deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(-15deg);
    }
}

@keyframes cutInRight {
    0% {
        opacity: 0;
        transform: translateX(50vw) skewX(0deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(-15deg);
    }
}

@media (max-width: 768px) {
    .scene-item h4 {
        white-space: normal;
        /* Mobile multi-line allowed */
        font-size: 1.2rem;
        border-radius: 20px;
        padding: 8px 15px;
    }
}

/* Scroll Animations */
.pop-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pop-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pop-in-left.is-visible,
.pop-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Comparison */
.comparison {
    padding: 80px 0;
    background: var(--color-white);
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comp-table th,
.comp-table td {
    padding: 20px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    width: 25%;
    /* distribute equally */
}

.comp-table th {
    background: #f9f9f9;
    font-weight: 800;
    color: var(--color-text);
}

.comp-table .our-product {
    background: #FFF0F0;
    color: var(--color-accent-red);
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 1px solid #FFD0D0;
}

.comp-table thead .our-product {
    background: var(--color-accent-red);
    color: white;
}

/* Purchase */
.purchase {
    padding: 100px 0;
    background-color: var(--color-sub-bg);
    text-align: center;
    position: relative;
}

.purchase-desc {
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.product-card {
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 50px 30px 40px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: transform 0.3s;
}

.product-card.recommended {
    border: 4px solid var(--color-accent-red);
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-area {
    margin: 20px 0;
    color: var(--color-accent-red);
    font-weight: 800;
}

.price-main {
    font-size: 2rem;
}

.tax-info {
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
}

.price-unit {
    font-size: 0.6em;
    font-weight: normal;
    margin-left: 2px;
}

.btn-purchase {
    background: var(--color-accent-red);
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    display: block;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    border: 2px solid white;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
}

.badge {
    position: absolute;
    top: -18px;
    /* Move up to overlap border */
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-red);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(165, 33, 37, 0.3);
    /* Subtle red shadow */
}

.product-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: var(--font-catch);
    /* Handwritten font like reference */
    color: var(--color-accent-red);
    letter-spacing: 0.1em;
}

.product-card .price {
    font-size: 2.2rem;
    /* Larger price */
    font-weight: 800;
    font-family: var(--font-main);
    color: var(--color-accent-red);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.product-card .price-unit {
    font-size: 1rem;
    /* Smaller unit */
    font-weight: bold;
    color: var(--color-accent-red);
    margin-left: 2px;
}

.product-card .shipping-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.btn-wide {
    width: 100%;
}

.micro-copy {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--color-text-light);
}

/* Reviews */
.reviews {
    padding: 60px 0;
    background: var(--color-white);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: var(--color-bg);
    padding: 20px;
    border-radius: 8px;
}

.review-rate {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    text-align: right;
    color: var(--color-text-light);
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--color-bg);
}

details {
    background: var(--color-white);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
}

details[open] {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    list-style: none;
    /* remove default triangle */
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    font-weight: normal;
    color: var(--color-accent-green);
    transition: transform 0.3s;
}

details[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

details p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 10px;
}

/* Footer */
.site-footer {
    padding: 40px 0 80px;
    /* Extra padding for sticky footer */
    background: var(--color-accent-red);
    color: white;
    text-align: center;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
    display: inline-block;
    margin: 0 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.sticky-btn {
    display: block;
    background: linear-gradient(135deg, var(--color-accent-red), #e57373);
    color: white;
    text-align: center;
    padding: 12px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.sticky-btn:active {
    transform: scale(0.98);
}

.sticky-btn .sub {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

.sticky-btn .main {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Desktop Polish & Responsive Design */
@media (min-width: 1025px) {
    .container {
        max-width: 1000px;
        padding: 0 40px;
    }

    /* Hero */
    .hero {
        align-items: center;
        /* Center vertically */
        justify-content: flex-start;
        /* Align content to the left */
        padding-left: 0;
        padding-top: 80px;
        /* Fix menu overlap */
        margin-top: 0;
        z-index: 1;
        /* Lower z-index for hero */
    }

    .hero-message-section {
        margin-top: -300px;
        /* Much more overlap on Desktop */
        position: relative;
        z-index: 20;
        background-color: transparent;
        pointer-events: none;
        /* Allow clicks through empty space if needed */
    }

    .hero-content {
        pointer-events: auto;
        /* Re-enable pointer events for content */
        /* Floating Box on Desktop */
        margin: 0 auto;
        /* Center content */
        margin-left: auto;
        /* Reset left margin */
        padding: 300px 100px 240px;
        /* Shift text down */
        /* Extremely large padding on desktop to show whole mark */
        /* Removed card styles to use mark background */
        background-color: transparent;
        background-size: 100% 100%;
        max-width: 1250px;
        /* Increase max width for desktop */
        background-position: center top;
        background-repeat: no-repeat;
        border-radius: 0;
        backdrop-filter: none;
        /* Constrain width on desktop to prevent explosion */
        width: 100%;
        aspect-ratio: 16 / 9;
        /* More reasonable aspect ratio for desktop */
        border: none;
        box-shadow: none;
        text-align: center;
        /* Center text */
    }

    .hero-benefits {
        justify-content: center;
        /* Center benefits */
    }



    .hero-benefits {
        justify-content: flex-start;
        /* Align benefits to left */
    }

    .hero-cta {
        margin: 0;
        /* Align CTA to left (remove auto margin) */
    }

    .hero-product-visual {
        position: absolute;
        bottom: -150px;
        /* Increased overlap with next section */
        right: 8vw;
        max-width: 700px;
        /* Even larger on desktop */
        /* Larger on desktop */
        margin: 0;
        z-index: 3;
    }

    /* Sections - Zig Zag */
    .taste .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 80px;
        text-align: left;
    }

    .section-title {
        font-size: 4rem;
        text-align: left;
        width: auto;
    }

    .catchphrase-main {
        font-size: 4rem;
    }

    .taste-desc {
        max-width: 500px;
    }

    .texture-visual {
        margin-top: 0;
    }

    .catchphrase-sub {
        font-size: 1.8rem;
    }

    .hero-title-text {
        font-size: 1.0rem;
    }

    /* Commitment Override */
    .commitment {
        display: flex;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 0;
        gap: 50px;
    }

    .commitment .image-wrapper {
        width: 55%;
        height: 600px;
        border-radius: 40px;
        margin-left: 50px;
        /* "Floating" overlap feeling can be achieved */
        transform: rotate(-2deg);
        z-index: 1;
    }

    .commitment .container {
        width: 45%;
        text-align: left;
        padding: 60px;
        background: white;
        border-radius: 40px;
        box-shadow: var(--shadow-float);
        z-index: 2;
        margin-left: -50px;
        /* Overlap */
        transform: rotate(2deg);
    }

    /* Scenes - Grid with offsets */
    .scenes {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 100px;
    }

    .scene-item {
        width: 45%;
        margin: 0 20px 80px;
        display: flex;
        flex-direction: column;
    }

    .scene-item:nth-child(even) {
        margin-top: 80px;
        /* Offset grid */
    }

    .scene-item .image-wrapper {
        height: 400px;
        border-radius: 30px;
    }

    /* Purchase */
    .purchase .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .purchase .section-title,
    .purchase .purchase-desc {
        width: 100%;
    }

    .product-card {
        width: calc(50% - 40px);
        max-width: 400px;
    }

    /* Footer */
    .sticky-cta {
        bottom: 30px;
        transform: translateY(150%);
        /* Hide on desktop often, OR keep it */
        /* If we hide it, ensure there are buttons in the page. LPs often keep it. */
        /* Let's keep it but make it smaller */
        width: auto;
        right: 30px;
        left: auto;
        transform: none;
    }

    .sticky-btn {
        padding: 15px 40px;
        border-radius: 50px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Catch Copy with Underline Animation */
.catch-copy {
    font-size: 3.8rem;
    /* Significantly larger */
    margin-bottom: 60px;
    color: var(--color-accent-red);
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.1em;
    /* Add breathing room */
}

/* Yellow Square */


/* Underline Animation */
.catch-copy .text-line {
    position: relative;
    display: inline-block;
    z-index: 1;
    /* Create stacking context */
    white-space: nowrap;
}

.catch-copy .text-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    /* Slightly lower for marker effect */
    width: 100%;
    height: 15px;
    /* Thicker for marker effect */
    background-color: #FAEA48;
    /* Yellow Marker */
    opacity: 0.8;
    /* Higher opacity */
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    /* Behind text */
}

/* Trigger animation when visible */
.catch-copy.is-visible .text-line::after {
    transform: scaleX(1);
}

/* Stagger the second line */
.catch-copy.is-visible .text-line:nth-child(3)::after {
    /* nth-child(3) because of <br> */
    transition-delay: 0.4s;
}

@media (max-width: 1024px) {
    .site-header {
        padding: 10px 10px;
        /* Reduce side padding on mobile */
    }

    .header-inner {
        justify-content: center;
        /* Center the logo on mobile */
    }

    .logo {
        margin-left: 0;
        margin-right: 0;
    }

    .logo img {
        height: 38px;
        /* Adjust logo size slightly on mobile for better centering and visibility */
    }

    /* Mobile Hero Layout: Stacked */
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
        /* Header space */
        padding-bottom: 0px;
    }

    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        border-radius: 0;
        margin: 0;
    }

    .hero-container {
        flex-direction: column;
        padding: 40px 20px 20px;
        justify-content: center;
        text-align: left;
    }

    .hero-col-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-col-visual {
        max-width: 100%;
    }

    .hero-bottle-img {
        max-height: 45vh;
        /* Smaller bottle on mobile */
    }

    .catchphrase-sub {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .catchphrase-main {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .hero-title-text {
        font-size: 0.8rem;
        margin: 0 0 10px 0;
    }

    .hero-title-logo {
        height: 3.5rem;
        filter: none;
        margin-top: 5px;
    }

    .hero-benefits {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 5px;
    }

    .benefit-item {
        padding: 6px 14px;
        font-size: 0.75rem;
        background-color: rgba(255, 255, 255, 0.6);
        border: 1px solid var(--color-accent-red);
        color: var(--color-accent-red);
        border-radius: 999px;
        box-shadow: none;
    }

    .catch-copy {
        font-size: 2.0rem;
        line-height: 1.4;
        margin-bottom: 40px;
    }

    .catch-copy::before {
        width: 15px;
        height: 15px;
    }

    /* Scene Header Adjustments for Mobile */
    .scene-item h4 {
        font-size: 1.0rem;
        /* Reduced further to fit on one line */
        margin-top: -20px;
        padding: 8px 15px;
        /* Slightly more side padding for balance */
        margin-left: 15px;
        /* Adjust spacing */
        margin-right: 15px;
        line-height: 1.4;
        width: auto;
        /* Let it shrink/grow */
        display: inline-block;
        /* Or block with max-width */
        max-width: calc(100% - 30px);
        /* Prevent overflow */
    }

    .scene-item .container {
        padding: 30px 20px;
    }
}

/* Global rule for hero bottle to apply on desktop too */
.hero-center-bottle {
    display: block;
    width: 20%;
    max-width: 120px;
    height: auto;
    margin: 20px auto;
}