/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Super Playful American Pop Colors! */
    --primary-red: #FF3B3F;
    --primary-orange: #FF6B35;
    --primary-yellow: #FFC312;
    --lime-green: #00D25B;
    --sky-blue: #00A8FF;
    --hot-pink: #FF006E;
    --purple: #8B5CF6;

    /* Background & Neutrals */
    --bg-cream: #FFF5E1;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #8B8B8B;
    --white: #ffffff;

    /* Legacy Support */
    --primary-red-light: #FF6B6B;
    --gold: #FFC312;
    --green: #00D25B;
    --black: #1A1A1A;
    --overlay: rgba(255, 59, 63, 0.3);
    --overlay-dark: rgba(255, 59, 63, 0.5);
}

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

body {
    font-family: 'Nunito', 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFAF0 50%, var(--bg-cream) 100%);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

/* Fade-in animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 231, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 248, 231, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled .nav-container {
    padding: 15px 60px;
}

.logo-link {
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-link {
    opacity: 1;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.nav-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: none;
}

.navbar.scrolled .nav-logo {
    height: 40px;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-top: 4px solid var(--primary-orange);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    padding: 15px 20px;
    border-radius: 15px;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu a:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8C42 50%, #FFD93D 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFF8E7' d='M0,50 Q360,100 720,50 T1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/mapo-varieties.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    filter: brightness(1.3) contrast(1.15);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 107, 0.2) 0%,
        rgba(255, 140, 66, 0.2) 50%,
        rgba(255, 217, 61, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 40px;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-logo-container {
    margin-bottom: 40px;
    padding: 0 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: logoFadeIn 1.5s ease-out 0.3s both;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    width: 100%;
    max-width: 450px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.hero-title-jp {
    font-family: 'Fredoka', 'Noto Sans JP', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow:
        2px 2px 12px rgba(0, 0, 0, 0.9),
        4px 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 4px;
    line-height: 1.2;
    color: #FFFFFF;
}

.hero-title-en {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-shadow:
        2px 2px 12px rgba(0, 0, 0, 0.9),
        4px 4px 20px rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
}

.hero-tagline {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    color: #FFFFFF;
    text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.9),
        3px 3px 15px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Noto Sans JP', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.9),
        3px 3px 15px rgba(0, 0, 0, 0.7);
}

.hero-subtitle-en {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.9),
        3px 3px 15px rgba(0, 0, 0, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollFadeIn 2s ease-out 1s both, bounce 2s ease-in-out 2s infinite;
}

@keyframes scrollFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-arrow-wrapper {
    animation: scrollBounce 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-arrow-wrapper svg {
    color: var(--white);
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Section Styles */
section {
    padding: 150px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 120px;
}

.section-title-en {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    filter: drop-shadow(3px 3px 0px rgba(255, 107, 107, 0.3));
    transform: rotate(-1.5deg);
    display: inline-block;
}

.section-title-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* News Section (Instagram Style) */
.news-section {
    background: linear-gradient(135deg,
        #fafafa 0%,
        #ffffff 25%,
        #fff9f0 50%,
        #ffffff 75%,
        #fafafa 100%);
    padding: 100px 0 140px;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--hot-pink) 2px, transparent 2px),
        radial-gradient(circle, var(--sky-blue) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px;
    background-position: 0 0, 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

.news-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-top: -20px;
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 0px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 3px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 8px 0px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-orange);
}

.news-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--lime-green), #66bb6a);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.news-badge.hot {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

.news-badge.award {
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.news-date {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

.news-category {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.news-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: linear-gradient(135deg, #f5f5f5, #eeeeee);
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--white);
    transform: scale(1.05);
}

/* Instagram CTA */
.instagram-cta {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 20px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow:
        0 8px 0px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(188, 24, 136, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-8px) scale(1.05) rotate(-2deg);
    box-shadow:
        0 12px 0px rgba(0, 0, 0, 0.25),
        0 20px 50px rgba(188, 24, 136, 0.6);
    animation: wiggle 0.5s ease;
}

.instagram-btn svg {
    width: 28px;
    height: 28px;
}

.instagram-handle {
    font-style: italic;
    opacity: 0.9;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 107, 107, 0.05) 20px,
        rgba(255, 107, 107, 0.05) 40px
    );
    animation: slideStripes 20s linear infinite;
    pointer-events: none;
}

@keyframes slideStripes {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

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

.about-text {
    padding: 20px;
}

.lead-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lead-text-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 400;
}

.lead-text-en {
    font-size: 1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 30px 0;
}

.text-en {
    color: #666;
    font-size: 0.95rem;
    margin-top: 15px;
}

.about-image {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe6e6 100%);
    padding: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

/* Our Story Section */
.our-story-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(139, 0, 0, 0.3);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.story-text {
    padding: 40px 0;
}

.story-text .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.story-main {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.6;
}

.story-detail {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.story-body {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.story-body-en {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
}

/* Awards & Certifications Section */
.awards-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.award-card {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 8px 0px rgba(0, 0, 0, 0.1),
        0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 4px solid var(--lime-green);
}

.award-card.featured {
    border: 4px solid var(--primary-yellow);
    position: relative;
}

.award-card.featured::before {
    content: '⭐ AWARDED! ⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 195, 18, 0.5);
    transform: rotate(-5deg);
    text-transform: uppercase;
}

.award-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(-2deg);
    box-shadow:
        0 12px 0px rgba(0, 0, 0, 0.15),
        0 35px 80px rgba(107, 203, 119, 0.4);
}

.award-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.award-card:hover .award-image {
    transform: scale(1.05);
}

.award-info {
    padding: 40px;
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.award-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.award-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Menu Section */
.menu-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFE5CC 50%, var(--bg-cream) 100%);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--primary-yellow) 3px, transparent 3px),
        radial-gradient(circle, var(--sky-blue) 2px, transparent 2px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    opacity: 0.1;
    pointer-events: none;
    animation: floatDots 30s linear infinite;
}

@keyframes floatDots {
    0% { transform: translateY(0); }
    100% { transform: translateY(-80px); }
}

.menu-note {
    text-align: center;
    color: var(--green);
    font-weight: 600;
    margin-top: 10px;
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-grid-single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.menu-card {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 8px 0px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    border: 5px solid transparent;
    transform: translateY(0);
}

/* Colorful card variants */
.menu-card:nth-child(1) {
    border-color: var(--primary-red);
}

.menu-card:nth-child(2) {
    border-color: var(--primary-orange);
}

.menu-card:nth-child(3) {
    border-color: var(--primary-yellow);
}

.menu-card:nth-child(4) {
    border-color: var(--lime-green);
}

.menu-card:nth-child(5) {
    border-color: var(--sky-blue);
}

.menu-card:nth-child(6) {
    border-color: var(--primary-red);
}

.menu-card:hover {
    transform: translateY(-25px) scale(1.08) rotate(-3deg);
    box-shadow:
        0 12px 0px rgba(0, 0, 0, 0.2),
        0 35px 70px rgba(255, 59, 63, 0.5);
    border-width: 6px;
}

.menu-image {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
    border-radius: 26px 26px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

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

.simple-mapo {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.tantan-mapo {
    background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%);
}

.mapo-noodle {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.menu-info {
    padding: 35px;
    position: relative;
    z-index: 1;
}

.vegan-tag {
    background: linear-gradient(135deg, var(--lime-green) 0%, #5DB869 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(107, 203, 119, 0.5);
    transform: rotate(-3deg);
}

.badge-group {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.popular-tag {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.6);
    transform: rotate(2deg);
}

.recommend-tag {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.menu-name-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.menu-name-en {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.menu-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 40px;
}

.spice-level {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    animation: spicePulse 2s infinite;
}

@keyframes spicePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chili {
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(255, 107, 107, 0.4));
    transition: transform 0.3s ease;
}

.menu-card:hover .chili {
    transform: rotate(15deg) scale(1.2);
    animation: wiggle 0.5s ease infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    }
    25% {
        transform: scale(1.2) rotate(-10deg);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.5));
    }
    75% {
        transform: scale(1.15) rotate(-5deg);
        filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.7));
    }
}

.menu-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Fredoka', sans-serif;
    text-shadow: 2px 2px 0px rgba(255, 107, 107, 0.2);
}

/* Special Section */
.special-section {
    background: var(--bg-white);
}

.special-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.special-image {
    height: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6e6 100%);
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.special-content:hover .special-image img {
    transform: scale(1.05);
}

.special-badge {
    background: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}


.special-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.special-title-en {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.special-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.special-items {
    list-style: none;
    margin: 30px 0;
}

.special-items li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.special-description {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 30px;
}

.special-description-en {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
    font-style: italic;
}

.special-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Appetizer Section */
.appetizer-category {
    background: linear-gradient(135deg,
        #fff9f0 0%,
        #ffe8cc 25%,
        #fff0f5 50%,
        #e8f5e9 75%,
        #fff9f0 100%);
    padding: 60px 40px;
    border-radius: 40px;
    margin-bottom: 100px !important;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.15);
}

.appetizer-category::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.2;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.appetizer-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.appetizer-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 50px;
    font-style: italic;
}

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

.appetizer-card {
    background: var(--card-color, #fff);
    padding: 30px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow:
        0 6px 0px rgba(0, 0, 0, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 4px solid rgba(255, 255, 255, 0.8);
    position: relative;
    cursor: pointer;
}

.appetizer-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(-2deg);
    box-shadow:
        0 12px 0px rgba(0, 0, 0, 0.18),
        0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-orange);
}

.appetizer-card.special-card {
    border-color: var(--hot-pink);
    background: linear-gradient(135deg, var(--card-color), #ffd6e7);
}

.appetizer-card.special-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(2deg);
}

.appetizer-card.gyoza-card {
    border-color: var(--primary-orange);
}

.appetizer-card.featured-gyoza {
    border-color: var(--primary-red);
    border-width: 5px;
}

.appetizer-card.platter-card {
    border-color: var(--purple);
    background: linear-gradient(135deg, var(--card-color), #f3e5f5);
}

.appetizer-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

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

.appetizer-card:hover .appetizer-icon {
    animation: spin 0.6s ease-in-out;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--primary-red), var(--hot-pink));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.5);
    transform: rotate(12deg);
    animation: pulse 2s ease-in-out infinite;
}

.appetizer-name-jp {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.appetizer-name-en {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* Side Menu Section */
.side-menu-section {
    background: linear-gradient(135deg,
        #fff9f0 0%,
        #ffe8e8 20%,
        #fff0f5 40%,
        #f0f9ff 60%,
        #fff9f0 80%,
        #ffe8e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.side-menu-section::before {
    content: '🥗';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 6rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.side-menu-section::after {
    content: '🥟';
    position: absolute;
    bottom: 50px;
    right: 5%;
    font-size: 6rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.side-menu-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.side-menu-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.beer-column {
    display: flex;
}

.side-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -15px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Regular Side Items (Beer Section) */
.side-item {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.side-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.side-item.featured {
    border: 2px solid var(--primary-red);
}

.side-item h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.side-item-en {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.side-item-note {
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.side-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 15px;
}

.side-prices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-option .quantity {
    font-size: 0.9rem;
    color: #666;
}

.price-option .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Side Items with Images */
.side-item.side-item-with-image {
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.side-item.side-item-with-image:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.3);
}

.side-item.salad-card {
    border-top: 8px solid var(--lime-green);
}

.side-item.gyoza-card {
    border-top: 8px solid var(--primary-orange);
}

/* Salad Card Image */
.side-item-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.side-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.side-item-with-image:hover .side-item-image {
    transform: scale(1.05);
}

/* Gyoza Card Images */
.gyoza-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    height: 350px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 15px;
}

.gyoza-image-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.gyoza-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    padding: 10px;
}

.side-item-with-image:hover .gyoza-image {
    transform: scale(1.05);
}

.gyoza-image-item:first-child .gyoza-image {
    transform-origin: center center;
}

.gyoza-image-item:last-child .gyoza-image {
    transform-origin: center center;
}

.side-item-with-image:hover .gyoza-image-item:first-child .gyoza-image {
    transform: scale(1.05);
}

.side-item-with-image:hover .gyoza-image-item:last-child .gyoza-image {
    transform: scale(1.05);
}

/* Item Content */
.side-item-content {
    padding: 40px 35px;
    text-align: center;
    position: relative;
}

.side-item-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--lime-green), #66bb6a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.side-item-badge.featured {
    background: linear-gradient(135deg, var(--primary-orange), #ff9800);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.side-item-title-jp {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.side-item-title-en {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.side-item-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

/* Single Price */
.side-item-price-single {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.price-amount {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Price Options */
.side-item-price-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.price-option-card {
    flex: 1;
    max-width: 140px;
    background: linear-gradient(135deg, var(--purple), var(--hot-pink));
    padding: 20px 15px;
    border-radius: 20px;
    box-shadow:
        0 6px 0px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.price-option-card:hover {
    transform: translateY(-5px) rotate(3deg);
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(255, 0, 110, 0.5);
}

.option-quantity {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.option-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Beer Section */
.side-item.beer-section {
    padding: 40px 35px;
    text-align: left;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 50%, #fff4e6 100%);
    width: 100%;
    height: 100%;
}

.side-item.beer-section h4 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.side-item.beer-section .side-item-en {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.beer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.beer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--white);
    border-radius: 16px;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.beer-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-orange);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.25);
}

.beer-item.special {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: var(--lime-green);
}

.beer-item.special:hover {
    border-color: #66bb6a;
    box-shadow: 0 6px 25px rgba(102, 187, 106, 0.3);
}

.beer-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

.beer-item.special .beer-icon {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.beer-info {
    flex: 1;
    min-width: 0;
}

.beer-info h5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.beer-item.special .beer-info h5 {
    color: var(--lime-green);
}

.beer-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 3px;
    font-weight: 500;
}

.beer-english {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

.beer-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-orange);
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.rating-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    padding: 60px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.stars-large {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.stars-large .star {
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.rating-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-max {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-gray);
}

.rating-source {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.rating-details {
    display: flex;
    gap: 60px;
}

.rating-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    font-size: 3rem;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.review-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow:
        0 6px 0px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border-left: 6px solid var(--primary-red);
}

.review-card:nth-child(2) {
    border-left-color: var(--primary-orange);
}

.review-card:nth-child(3) {
    border-left-color: var(--lime-green);
}

.review-card:nth-child(4) {
    border-left-color: var(--sky-blue);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: 'Noto Serif JP', serif;
    color: var(--bg-cream);
    line-height: 1;
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(-1deg);
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.12),
        0 30px 70px rgba(255, 59, 63, 0.25);
}

.review-stars {
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 6px;
    position: relative;
    z-index: 1;
}

.star-icon {
    display: inline-block;
    font-size: 1.8rem;
    filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
}

.star-icon:hover {
    animation: starTwinkle 1s ease-in-out infinite;
}

.review-text-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.review-text-en {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.google-icon {
    color: #4285F4;
}

.google-map-section {
    text-align: center;
    padding: 60px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.map-header {
    margin-bottom: 40px;
}

.map-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.map-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 400;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover {
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.2);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.view-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.view-map-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.5);
    animation: wiggle 0.5s ease;
}

.view-map-btn svg {
    transition: transform 0.3s ease;
}

.view-map-btn:hover svg:last-child {
    transform: translateX(5px);
}

.google-reviews-link {
    text-align: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    border-radius: 20px;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, #3B7DD6 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0px;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.view-all-reviews-btn:hover {
    background: linear-gradient(135deg, #3B7DD6 0%, var(--lime-green) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.5);
    animation: wiggle 0.5s ease;
}

.view-all-reviews-btn svg {
    transition: transform 0.3s ease;
}

.view-all-reviews-btn:hover svg:last-child {
    transform: translateX(5px);
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 50%, #FFF8E7 100%);
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, var(--primary-yellow) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.reservation-section > * {
    position: relative;
    z-index: 1;
}

.reservation-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 15px;
    letter-spacing: 0px;
}

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-card {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--primary-orange);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reservation-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(255, 140, 66, 0.3);
    border-width: 6px;
}

.reservation-header {
    text-align: center;
    margin-bottom: 30px;
}

.store-badge-small {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transform: rotate(-3deg);
}

.reservation-store-jp {
    font-family: 'Fredoka', 'Noto Sans JP', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.reservation-store-en {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.reservation-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hotpepper-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF6B35 100%);
    color: var(--white);
}

.hotpepper-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, var(--primary-yellow) 100%);
    transform: translateY(-8px) scale(1.1) rotate(-2deg);
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.25),
        0 25px 60px rgba(255, 107, 53, 0.6);
    animation: wiggle 0.5s ease;
}

.phone-btn {
    background: linear-gradient(135deg, var(--lime-green) 0%, #5DB869 100%);
    color: var(--white);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #5DB869 0%, #4CAF50 100%);
    transform: translateY(-8px) scale(1.1) rotate(2deg);
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.25),
        0 25px 60px rgba(0, 210, 91, 0.6);
    animation: wiggle 0.5s ease;
}

.btn-icon {
    font-size: 2.5rem;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.btn-text-jp {
    font-size: 1.3rem;
    letter-spacing: 0px;
}

.btn-text-en {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-arrow {
    font-size: 1.5rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.reservation-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Visit Section */
.visit-section {
    background: var(--bg-white);
}

.locations-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.location-card {
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
}

.location-header {
    background: var(--bg-white);
    padding: 40px;
    text-align: center;
    position: relative;
}

.store-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.store-name-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.store-name-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

.location-map {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location-info {
    padding: 40px;
}

.info-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.info-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.info-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-red-light);
}

.directions-btn {
    display: block;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.directions-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.5);
    animation: wiggle 0.5s ease;
}

.location-name-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-name-en {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.address-text-en {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-text {
    font-size: 1.1rem;
}

.contact-text a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-red);
}

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

.access-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.access-list li:last-child {
    border-bottom: none;
}

.station-jp {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.station-en {
    font-size: 0.9rem;
    color: #666;
}

.hours-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hours-row .day {
    font-weight: 600;
    min-width: 150px;
}

.hours-row .times {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hours-row.closed {
    color: #999;
}

.qr-section {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.qr-code {
    flex: 1;
}

.qr-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-cream);
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.visit-map {
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Quality Ingredients Section (Rice) */
.quality-ingredients {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 3px dashed var(--lime-green);
}

.quality-ingredients .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ingredient-title-en {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--lime-green), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.ingredient-title-jp {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
}

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

.ingredient-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(107, 203, 119, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotate(-2deg);
}

.ingredient-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.15),
        0 30px 70px rgba(107, 203, 119, 0.5);
}

.rice-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ingredient-image:hover .rice-img {
    transform: scale(1.1);
}

.ingredient-text {
    padding: 30px;
}

.ingredient-lead {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.4;
}

.ingredient-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.ingredient-en {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

/* Limited Time Menu */
.limited-time-category {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5E5 100%);
    border-radius: 40px;
    border: 6px solid var(--hot-pink);
    position: relative;
    box-shadow:
        0 12px 0px rgba(255, 0, 110, 0.2),
        0 20px 60px rgba(255, 0, 110, 0.3);
}

.limited-badge-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--hot-pink), var(--primary-orange));
    color: var(--white);
    padding: 15px 50px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
    animation: pulse 2s ease-in-out infinite;
    transform: rotate(-3deg);
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
    }
    50% {
        transform: rotate(-3deg) scale(1.05);
    }
}

.limited-card {
    border: 6px solid var(--hot-pink);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 100%);
}

.limited-card:hover {
    border-color: var(--primary-orange);
    box-shadow:
        0 15px 0px rgba(255, 0, 110, 0.25),
        0 40px 80px rgba(255, 0, 110, 0.4);
}

.limited-tag {
    background: linear-gradient(135deg, var(--hot-pink), var(--primary-red));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
    animation: wiggle 3s ease-in-out infinite;
}

.price-group {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.price-item {
    flex: 1;
    min-width: 140px;
    background: var(--bg-cream);
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-orange);
}

.price-label {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ginger-benefits {
    background: linear-gradient(135deg, #FFF8E7, #FFFBF0);
    padding: 25px;
    border-radius: 20px;
    margin-top: 25px;
    border: 3px solid var(--lime-green);
    box-shadow: 0 6px 20px rgba(0, 210, 91, 0.2);
}

.benefits-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Take Out Section */
.takeout-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFF5E1 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.takeout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--primary-orange) 3px, transparent 3px),
        radial-gradient(circle, var(--primary-yellow) 2px, transparent 2px);
    background-size: 100px 100px, 140px 140px;
    background-position: 0 0, 50px 50px;
    opacity: 0.08;
    animation: floatDots 40s linear infinite;
}

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

.takeout-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.15),
        0 25px 70px rgba(255, 107, 53, 0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotate(2deg);
    border: 8px solid var(--primary-orange);
}

.takeout-image-wrapper:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow:
        0 20px 0px rgba(0, 0, 0, 0.2),
        0 40px 100px rgba(255, 107, 53, 0.6);
}

.takeout-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.takeout-image-wrapper:hover .takeout-img {
    transform: scale(1.1);
}

.takeout-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-yellow);
    transform: rotate(-2deg);
}

.takeout-lead {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.3;
    transform: rotate(2deg);
}

.takeout-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 600;
}

/* Online Store Section */
.online-store-section {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--purple) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.online-store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 255, 255, 0.05) 30px,
        rgba(255, 255, 255, 0.05) 60px
    );
    animation: slideStripes 30s linear infinite;
}

.online-store-section .section-header {
    position: relative;
    z-index: 1;
}

.online-store-title {
    font-size: clamp(3rem, 8vw, 6rem) !important;
    font-weight: 900 !important;
    color: var(--white) !important;
    text-shadow:
        4px 4px 0px rgba(0, 0, 0, 0.3),
        8px 8px 20px rgba(0, 0, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
    background: none !important;
    -webkit-text-fill-color: var(--white) !important;
}

.online-store-section .section-title-jp {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.online-store-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.store-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 20px 0px rgba(0, 0, 0, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 10px solid var(--white);
    transform: rotate(-3deg);
}

.store-image-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow:
        0 25px 0px rgba(0, 0, 0, 0.4),
        0 50px 120px rgba(0, 0, 0, 0.6);
}

.store-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.store-image-wrapper:hover .store-img {
    transform: scale(1.1) rotate(2deg);
}

.store-cta {
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.2),
        0 25px 70px rgba(0, 0, 0, 0.4);
    transform: rotate(2deg);
}

.store-lead {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--hot-pink);
    margin-bottom: 20px;
    line-height: 1.3;
}

.store-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 600;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--hot-pink));
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 0px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(139, 92, 246, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.store-btn:hover {
    background: linear-gradient(135deg, var(--hot-pink), var(--purple));
    transform: translateY(-8px) scale(1.1) rotate(-2deg);
    box-shadow:
        0 15px 0px rgba(0, 0, 0, 0.25),
        0 25px 60px rgba(255, 0, 110, 0.6);
    animation: wiggle 0.5s ease;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-brand-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand-en {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.social-link:hover {
    color: var(--gold);
}

.footer-message {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .about-content,
    .special-content,
    .visit-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .side-menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .side-menu-column {
        gap: 20px;
    }

    .side-item.beer-section {
        padding: 35px 30px;
    }

    .beer-list {
        gap: 12px;
    }

    .beer-item {
        padding: 15px;
    }

    .beer-icon {
        font-size: 1.8rem;
    }

    .beer-info h5 {
        font-size: 1rem;
    }

    .beer-price {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 20px 40px;
    }

    .navbar.scrolled .nav-container {
        padding: 15px 40px;
    }

    .nav-logo {
        height: 45px;
    }

    .navbar.scrolled .nav-logo {
        height: 40px;
    }

    .hero-logo {
        max-width: 380px;
        height: 90px;
    }

    .hero-logo-container {
        padding: 0 25px;
        margin-bottom: 45px;
    }

    .hero-title-jp {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero-title-en {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .hero-divider {
        width: 60px;
        margin: 30px auto;
    }

    section {
        padding: 100px 0;
    }

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

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

    .special-image {
        order: -1;
        height: 500px;
    }

    .about-image {
        height: 450px;
    }

    .visit-map {
        height: 400px;
    }

    .hours-row {
        flex-direction: column;
    }

    .access-list li {
        padding: 12px 0;
    }

    .station-jp,
    .station-en {
        font-size: 0.9rem;
    }

    .menu-image {
        height: 320px;
    }

    .menu-card {
        margin-bottom: 20px;
    }

    .menu-grid {
        gap: 40px;
    }

    .menu-grid-single {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-image-wrapper {
        height: 240px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-description {
        font-size: 0.9rem;
    }

    .instagram-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .news-section {
        padding: 80px 0 100px;
    }

    .instagram-cta {
        margin-top: 60px;
        padding-bottom: 15px;
    }

    .appetizer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .appetizer-category {
        padding: 40px 30px;
        margin-bottom: 60px !important;
    }

    .appetizer-title {
        font-size: 2rem;
    }

    .appetizer-card {
        padding: 25px 20px;
    }

    .appetizer-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .appetizer-name-jp {
        font-size: 1.1rem;
    }

    .appetizer-name-en {
        font-size: 0.8rem;
    }

    .side-prices {
        flex-direction: row;
        gap: 15px;
    }

    .rating-stats {
        flex-direction: column;
        gap: 50px;
        padding: 40px;
    }

    .rating-details {
        gap: 40px;
    }

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

    .story-text .section-header {
        text-align: center;
    }

    .story-body {
        font-size: 1rem;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .google-map-section {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .map-container iframe {
        height: 400px;
    }

    .google-reviews-link {
        padding: 30px 30px;
    }

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

    .reservation-card {
        padding: 30px;
    }

    .reservation-store-jp {
        font-size: 1.6rem;
    }

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

    .location-header {
        padding: 30px;
    }

    .store-name-jp {
        font-size: 1.8rem;
    }

    .location-info {
        padding: 30px;
    }

    .info-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    /* New Sections Responsive */
    .ingredient-content,
    .takeout-content,
    .online-store-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ingredient-image,
    .takeout-image-wrapper,
    .store-image-wrapper {
        transform: rotate(0deg);
    }

    .takeout-text,
    .store-cta {
        transform: rotate(0deg);
    }

    .limited-time-category {
        padding: 40px 25px;
        border-radius: 30px;
        border-width: 4px;
    }

    .limited-badge {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .price-group {
        flex-direction: column;
    }

    .price-item {
        min-width: 100%;
    }

    .ingredient-lead,
    .takeout-lead {
        font-size: 2rem;
    }

    .store-lead {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title-jp {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 15px 25px;
    }

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

    .nav-logo {
        height: 40px;
    }

    .navbar.scrolled .nav-logo {
        height: 38px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-logo {
        max-width: 320px;
        height: 80px;
    }

    .hero-logo-container {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .hero-title-jp {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .hero-title-en {
        font-size: 1.3rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .hero-divider {
        width: 50px;
        margin: 25px auto;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero-subtitle-en {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .story-main {
        font-size: 1.4rem;
    }

    .story-detail {
        font-size: 1rem;
    }

    .story-body {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .story-body-en {
        font-size: 0.9rem;
    }

    .award-info {
        padding: 30px;
    }

    .award-title {
        font-size: 1.6rem;
    }

    .award-subtitle {
        font-size: 0.8rem;
    }

    .award-description {
        font-size: 0.95rem;
    }

    .footer-logo-img {
        height: 70px;
    }

    section {
        padding: 80px 0;
    }

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

    .section-title-en {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .menu-card {
        margin-bottom: 30px;
    }

    .menu-image {
        height: 280px;
    }

    .menu-info {
        padding: 25px;
    }

    .special-image {
        height: 350px;
    }

    .about-image {
        height: 350px;
    }

    .qr-section {
        flex-direction: column;
    }

    .menu-description {
        min-height: auto;
        font-size: 0.85rem;
    }

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

    .side-menu-column {
        gap: 18px;
    }

    .side-item.beer-section {
        padding: 30px 25px;
    }

    .side-item.beer-section h4 {
        font-size: 1.4rem;
    }

    .beer-list {
        gap: 10px;
    }

    .beer-item {
        padding: 14px;
        gap: 12px;
    }

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

    .beer-info h5 {
        font-size: 0.95rem;
    }

    .beer-description {
        font-size: 0.75rem;
    }

    .beer-english {
        font-size: 0.7rem;
    }

    .beer-price {
        font-size: 1.1rem;
    }

    .beer-note {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .news-image-wrapper {
        height: 200px;
    }

    .news-content {
        padding: 18px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-description {
        font-size: 0.85rem;
    }

    .news-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .instagram-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 10px;
    }

    .instagram-btn svg {
        width: 24px;
        height: 24px;
    }

    .news-section {
        padding: 60px 0 80px;
    }

    .instagram-cta {
        margin-top: 50px;
        padding-bottom: 10px;
    }

    .appetizer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .appetizer-category {
        padding: 30px 20px;
        margin-bottom: 40px !important;
        border-radius: 30px;
    }

    .appetizer-title {
        font-size: 1.6rem;
    }

    .appetizer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .appetizer-card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .appetizer-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .appetizer-name-jp {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .appetizer-name-en {
        font-size: 0.75rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: -10px;
        right: -10px;
    }

    .location-name-jp {
        font-size: 1.5rem;
    }

    .visit-map {
        height: 350px;
    }

    .rating-stats {
        padding: 30px 20px;
        gap: 40px;
    }

    .stars-large {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .rating-number {
        font-size: 3rem;
    }

    .rating-max {
        font-size: 1.5rem;
    }

    .rating-details {
        flex-direction: column;
        gap: 30px;
    }

    .detail-icon {
        font-size: 2rem;
    }

    .detail-number {
        font-size: 2rem;
    }

    .review-card {
        padding: 30px;
    }

    .review-text-jp {
        font-size: 1rem;
    }

    .review-text-en {
        font-size: 0.9rem;
    }

    .google-map-section {
        padding: 30px 20px;
    }

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

    .map-title-en {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .map-title-jp {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .view-map-btn {
        padding: 14px 25px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .google-reviews-link {
        padding: 25px 20px;
    }

    .view-all-reviews-btn {
        padding: 16px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .reservation-grid {
        gap: 25px;
    }

    .reservation-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .reservation-store-jp {
        font-size: 1.5rem;
    }

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

    .btn-text-jp {
        font-size: 1rem;
    }

    .btn-text-en {
        font-size: 0.8rem;
    }

    .store-badge-small {
        transform: rotate(0deg);
    }

    .locations-grid {
        gap: 30px;
    }

    .location-header {
        padding: 25px 20px;
    }

    .store-name-jp {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .store-name-en {
        font-size: 1.1rem;
    }

    .location-map {
        height: 280px;
    }

    .location-info {
        padding: 25px 20px;
    }

    .info-item {
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .info-item h5 {
        font-size: 0.85rem;
    }

    .info-item p,
    .info-item ul li {
        font-size: 0.9rem;
    }

    .directions-btn {
        padding: 14px;
        font-size: 0.9rem;
    }

    /* New Sections Mobile */
    .ingredient-title-en,
    .online-store-title {
        font-size: 2.5rem !important;
    }

    .ingredient-title-jp {
        font-size: 1.2rem;
    }

    .ingredient-lead {
        font-size: 1.5rem;
    }

    .ingredient-description {
        font-size: 1.1rem;
    }

    .ingredient-en {
        font-size: 1rem;
    }

    .limited-time-category {
        padding: 30px 20px;
        border-radius: 25px;
        border-width: 4px;
    }

    .limited-badge {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .benefits-title {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .takeout-section,
    .online-store-section {
        padding: 80px 0;
    }

    .takeout-image-wrapper,
    .store-image-wrapper {
        border-width: 6px;
        border-radius: 30px;
    }

    .takeout-text,
    .store-cta {
        padding: 30px 25px;
        border-radius: 25px;
        border-width: 3px;
    }

    .takeout-lead {
        font-size: 1.6rem;
    }

    .takeout-description {
        font-size: 1rem;
    }

    .store-lead {
        font-size: 1.5rem;
    }

    .store-description {
        font-size: 1rem;
    }

    .store-btn {
        padding: 20px 35px;
    }

    .store-btn .btn-icon {
        font-size: 2rem;
    }

    .store-btn .btn-text-jp {
        font-size: 1.1rem;
    }

    .store-btn .btn-text-en {
        font-size: 0.9rem;
    }

    .ginger-benefits {
        padding: 20px;
    }

    .quality-ingredients {
        margin-top: 60px;
        padding-top: 60px;
    }

    /* Side Menu Section Mobile */
    .side-menu-section {
        padding: 60px 0;
    }

    .side-subtitle {
        font-size: 0.95rem;
    }

    .side-item-image-wrapper,
    .gyoza-images-wrapper {
        height: 280px;
    }

    .side-item-content {
        padding: 30px 25px;
    }

    .side-item-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .side-item-title-jp {
        font-size: 1.6rem;
    }

    .side-item-title-en {
        font-size: 0.95rem;
    }

    .side-item-description {
        font-size: 0.9rem;
    }

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

    .side-item-price-options {
        gap: 15px;
    }

    .price-option-card {
        padding: 16px 12px;
        max-width: 120px;
    }

    .option-quantity {
        font-size: 1rem;
    }

    .option-price {
        font-size: 1.4rem;
    }
}

/* ===================================
   Floating Reserve Button
   =================================== */

.floating-reserve-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
    box-shadow:
        0 4px 0px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(255, 107, 107, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: floatingPulse 2s ease-in-out infinite;
}

@keyframes floatingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 0px rgba(0, 0, 0, 0.2),
            0 8px 25px rgba(255, 107, 107, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 6px 0px rgba(0, 0, 0, 0.2),
            0 12px 35px rgba(255, 107, 107, 0.8);
    }
}

.floating-reserve-btn:hover {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FFD93D 100%);
    box-shadow:
        0 8px 0px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(255, 140, 66, 0.8);
    animation: none;
}

.floating-reserve-btn:active {
    transform: scale(1.05) rotate(5deg);
    box-shadow:
        0 2px 0px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(255, 107, 107, 0.6);
}

.reserve-icon {
    font-size: 1.8rem;
    margin-bottom: 2px;
    line-height: 1;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.reserve-text {
    font-family: 'Fredoka', 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .floating-reserve-btn {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

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

    .reserve-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .floating-reserve-btn {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .reserve-icon {
        font-size: 1.4rem;
    }

    .reserve-text {
        font-size: 0.6rem;
    }
}
