/* ========================================
   Variables & Reset
   ======================================== */
:root {
    --color-primary: #2995BD;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-bg: #F9FAFB;
    --color-white: #FFFFFF;

    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Outfit', sans-serif;

    --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
    font-family: var(--font-ja);
    color: var(--color-text);
    line-height: 2;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

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

/* ========================================
   Cursor
   ======================================== */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    display: none;
    /* Enable via JS if needed, hidden for now to avoid complexity */
}

/* ========================================
   Floating Shop Button
   ======================================== */
.floating-shop-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: var(--color-primary);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(41, 149, 189, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.floating-shop-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-shop-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.floating-shop-button:hover {
    background: #237a9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(41, 149, 189, 0.5);
}

.floating-shop-button svg {
    transition: transform 0.3s ease;
}

.floating-shop-button:hover svg {
    transform: translate(2px, -2px);
}


/* ========================================
   Splash Screen
   ======================================== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    animation: splashBgFadeOut 1s ease-in-out forwards;
    animation-delay: 2.5s;
}

.splash-content {
    opacity: 0;
    animation: splashContentIn 0.8s ease forwards, splashContentSlideUp 1s ease-in-out forwards;
    animation-delay: 0.3s, 2.5s;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.splash-frame {
    /* Only bottom border is on the element itself */
    border-bottom: 1px solid white;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Width will be determined by content + padding */
    margin-bottom: 30px;
}

/* Vertical lines extending to top */
.splash-frame::before,
.splash-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 200vh;
    /* Extend way above viewport */
    background: white;
}

.splash-frame::before {
    left: 0;
}

.splash-frame::after {
    right: 0;
}

.splash-logo-main img {
    height: auto;
    width: 220px;
    /* Fixed width for mobile */
    filter: brightness(0) invert(1);
    display: block;
}

.splash-logo-farm img {
    height: auto;
    width: 220px;
    /* Exactly match CHITA logo width */
    filter: brightness(0) invert(1);
    display: block;
}

/* Desktop adjustments for Splash Screen */
@media (min-width: 768px) {
    .splash-frame {
        padding: 90px 50px 50px;
        margin-bottom: 50px;
    }

    .splash-logo-main img {
        width: 360px;
        /* Larger on PC */
    }

    .splash-logo-farm img {
        width: 360px;
        /* Match CHITA logo width */
    }
}

@keyframes splashContentIn {
    to {
        opacity: 1;
    }
}

@keyframes splashBgFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes splashContentSlideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh);
        /* Move completely off screen up */
        opacity: 0;
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: padding 0.3s ease, background 0.3s ease;
}

.nav-fixed.scrolled {
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.nav-logo {
    position: absolute;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 24px;
}

.logo-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    white-space: nowrap;
}

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

.nav-links a {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: width 0.3s var(--easing);
}

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

.nav-instagram {
    position: absolute;
    right: 50px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-instagram:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-instagram::after {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    padding-top: 60px;
    /* Offset for nav */
    opacity: 0;
    transform: scale(0.95);
    animation: heroAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 3.5s;
}

@keyframes heroAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    text-align: left;
}

.hero-catch {
    font-size: 18px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: normal;
    word-break: keep-all;
}

.hero-sub-text {
    font-size: 16px;
    line-height: 2;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: white;
    animation: scrollLine 2s infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ========================================
   Common Styles
   ======================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
}

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

.section-subtitle {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.text-white {
    color: white !important;
}

/* ========================================
   Taste Section
   ======================================== */
.taste-features {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    /* 4:3 (Landscape) */
}

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


.feature-number {
    font-family: var(--font-en);
    font-size: 80px;
    font-weight: 300;
    color: #E0E0E0;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
}

.feature-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.feature-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.feature-text {
    color: var(--color-text-light);
    line-height: 2;
}

/* ========================================
   Story Section
   ======================================== */
.section-story {
    padding: 0;
    background: #fff;
}

.story-intro {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

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

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.intro-content {
    position: relative;
    z-index: 3;
}

.story-details {
    padding: 120px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-category {
    margin-bottom: 120px;
}

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

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-primary);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(41, 149, 189, 0.3);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.story-text {
    padding: 30px;
}

.story-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-text);
    line-height: 1.4;
}

.story-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   Movie Section
   ======================================== */
.section-movie {
    background: #111;
    color: white;
    overflow: hidden;
    padding: 80px 0 120px 0;
}

.section-movie .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.movie-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
    min-height: 560px;
}

.movie-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.shorts-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.shorts-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.shorts-item {
    flex: 0 0 auto;
    width: 275px;
    height: 490px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shorts-item:hover {
    transform: scale(1.02);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: background 0.3s;
    padding-left: 4px;
    /* Optical center for triangle */
}

.shorts-item:hover .play-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* ========================================
   Organic Section
   ======================================== */
.section-organic {
    background-image: url('img/section-organic-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--color-text);
    padding: 160px 0;
}

.section-organic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

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

.organic-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.organic-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.organic-title {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.organic-text {
    color: var(--color-text-light);
}

/* ========================================
   Farm Section
   ======================================== */
.section-farm {
    background: var(--color-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.video-intro {
    max-width: 700px;
    margin: 40px auto 30px;
    text-align: center;
}

.video-intro p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.farm-heading {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.farm-heading h3 {
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 600;
}

.farm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.farm-info-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.farm-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row dt {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-row dd {
    margin: 0;
    font-size: 16px;
    color: var(--color-text);
}

.farm-media-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.farm-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.farm-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.farm-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.farm-map iframe {
    width: 100%;
    height: 300px;
    display: block;
}


/* ========================================
   Shops Section
   ======================================== */
.section-shops {
    background-image: url('img/taste-texture.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-shops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

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

.shops-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.shop-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.shop-info p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.shop-info small {
    font-size: 12px;
    color: #999;
}

.shop-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-button:hover {
    background: #237a9f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 149, 189, 0.3);
}

.furusato-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-button-small {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-button-small:hover {
    background: var(--color-primary);
    color: white;
}

.shop-contact {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.contact-text {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(41, 149, 189, 0.2);
}

.contact-button:hover {
    background: #237a9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 149, 189, 0.3);
}


/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-primary);
    padding: 80px 0 40px;
    text-align: center;
    color: white;
}

.footer-logo img {
    height: 40px;
    margin: 0 auto 40px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-en);
}

/* ========================================
   Animations
   ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-fixed {
        padding: 20px;
    }

    .nav-logo {
        left: 20px;
    }

    .logo-text {
        display: block;
        font-size: 11px;
    }

    .nav-instagram {
        right: max(20px, env(safe-area-inset-right));
    }

    .nav-logo {
        left: max(20px, env(safe-area-inset-left));
    }

    .nav-links {
        display: none;
    }

    /* Simplified for mobile */
    .hero-section {
        display: block;
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(30px);
        animation: heroAppearMobile 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        animation-delay: 3.5s;
    }

    @keyframes heroAppearMobile {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    .hero-image img {
        max-width: 260px;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .scroll-indicator {
        display: none;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-number {
        font-size: 60px;
    }

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

    .story-details {
        padding: 60px 20px;
    }

    .shop-item {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .furusato-buttons {
        width: 100%;
    }

    .shop-button,
    .shop-button-small {
        width: 100%;
        text-align: center;
    }

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

    .farm-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .farm-media-column {
        gap: 20px;
    }

    .floating-shop-button {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Removed text override to show "購入はこちら" on mobile too */

    .floating-shop-button svg {
        width: 24px;
        height: 24px;
    }

    /* Movie Section Swipe */
    .movie-carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0;
        min-height: auto;
    }

    .movie-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .shorts-track {
        animation: none;
        transform: none;
        width: max-content;
        gap: 15px;
        padding: 0 20px;
    }

    .shorts-track:hover {
        animation-play-state: running;
        /* Reset hover state */
    }

    .shorts-item {
        scroll-snap-align: center;
        width: 280px;
        height: 500px;
    }
}