@charset "UTF-8";

/* ====================================================
   Reset & Base (ABC Clinic Style: Clean, Trust, Medical)
   ==================================================== */
:root {
    --primary-text: #111111;
    --secondary-text: #333333;
    --primary-gold: #B08D55;
    --gold-light: #F4EBD0;
    --bg-light: #FFFFFF;
    --bg-accent: #F9F9F9;
    --white: #ffffff;
    --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-secondary: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    /* Unified Sans */
}

html {
    font-size: 112.5%;
    /* Base 18px */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--primary-text);
    line-height: 1.8;
    background-color: #f5f5f5;
    /* Light Gray for Contrast */
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Global Body Text Bump */
p {
    font-size: 1.05rem !important;
    /* Force override for readability */
}

/* Keep Blog Content Standard */
.blog-content p,
.blog-body p,
.article-content p {
    font-size: 1rem;
    /* Keep as base 18px */
}

/* ====================================================
   Typography & Utilities
   ==================================================== */
.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.text-gold {
    color: var(--primary-gold);
}

.gothic {
    font-family: var(--font-base);
}

.serif {
    font-family: var(--font-base);
    /* ABC Style uses Sans for Trust */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    /* Reduced from 100px for sub-pages */
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary-text);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ====================================================
   Header & Navigation
   ==================================================== */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    /* Solid White */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    /* Black for Logo */
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    font-size: 0.85rem;
    /* Reverted to avoid wrapping */
    font-weight: 600;
    color: #444;
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-btn-link {
    background: var(--primary-gold);
    color: #fff !important;
    padding: 14px 25px !important;
    border-radius: 4px;
    font-size: 1.05rem !important;
    transition: background 0.3s;
    font-weight: 700;
}

.nav-btn-link:hover {
    background: #a3864d;
    opacity: 1;
}

.nav-btn-link::after {
    display: none !important;
}

/* ====================================================
   Hero Section
   ==================================================== */
.hero {
    position: relative;
    width: 100%;
    /* height: 600px; Removed fixed height to let image dictate size */
    height: auto;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove small inline gap */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    .hero picture {
        display: block;
        width: 100%;
    }

    .hero-bg {
        /* Remove object-fit to let image naturally fill width */
        object-fit: initial !important;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 60px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 2.2rem;
    margin: 0 0 20px;
    line-height: 1.4;
    font-family: var(--font-secondary);
}

.hero-text {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 0;
}

/* ====================================================
   News Section
   ==================================================== */
.news-section {
    max-width: 900px;
    margin: 60px auto;
}

.news-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
}

.news-heading h2 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--primary-text);
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    border-bottom: 1px solid #eee;
}

.news-link {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: background 0.2s;
}

.news-link:hover {
    background: #fafafa;
    opacity: 1;
}

.news-date {
    font-size: 1.0rem;
    color: #999;
    margin-right: 20px;
}

.news-cat {
    font-size: 0.9rem;
    background: var(--primary-text);
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 15px;
}

.news-title {
    font-size: 1rem;
    flex: 1;
}

/* ====================================================
   Teasers (Concept, Menu)
   ==================================================== */
.teaser-section {
    padding: 100px 0;
}

.teaser-bg-gray {
    background-color: var(--bg-accent);
}

.teaser-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.teaser-row.reverse {
    flex-direction: row-reverse;
}

.teaser-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.teaser-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.teaser-image:hover img {
    transform: scale(1.05);
}

.teaser-text {
    flex: 1;
}

.teaser-label {
    color: var(--primary-gold);
    font-weight: bold;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.teaser-head {
    font-size: 1.8rem;
    margin: 0 0 20px;
    line-height: 1.4;
    font-family: var(--font-secondary);
}

.teaser-desc {
    color: var(--secondary-text);
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: justify;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-text);
    font-weight: bold;
    border-bottom: 1px solid var(--primary-text);
    padding-bottom: 5px;
}

.btn-arrow::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.2s;
}

.btn-arrow:hover::after {
    transform: translateX(5px);
}

/* ====================================================
   Card Grids
   ==================================================== */
.staff-grid,
.menu-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

/* Page Background Helper */
.bg-light-gray {
    background-color: #f7f7f7 !important;
}

.staff-card,
.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.staff-card:hover,
.blog-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.staff-img,
.blog-thumb {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.staff-info,
.blog-body {
    padding: 20px;
}

/* ====================================================
   FAQ (Accordion)
   ==================================================== */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-details {
    border: 1px solid #e0dfd5;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 2px;
}

.accordion-summary {
    padding: 20px 25px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-summary::before {
    content: "Q.";
    color: var(--primary-gold);
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 15px;
}

.accordion-summary:hover {
    background-color: var(--bg-light);
}

.accordion-summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    font-family: monospace;
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 300;
}

.accordion-details[open] .accordion-summary::after {
    content: "-";
}

.accordion-content {
    padding: 0 25px 25px 50px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--secondary-text);
    border-top: 1px dotted #eee;
    padding-top: 20px;
}

/* ====================================================
   CTA Section (ABC Style: Clean, White, Gold)
   ==================================================== */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background: #f9f9f9;
}

.cta-frame {
    background: #ffffff;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-top: 5px solid var(--primary-gold);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-title {
    color: var(--primary-text);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.btn-reserve,
.btn-line {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 20px 0;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border: none;
}

.btn-reserve {
    background: var(--primary-gold);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.btn-reserve:hover {
    background: #a3864d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 162, 101, 0.3);
}

.btn-line {
    background: #06c755;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s;
}

/* Force PC size */
@media (min-width: 768px) {
    .btn-line {
        font-size: 1.0rem !important;
    }
}

@media (max-width: 767px) {
    .btn-line {
        font-size: 1.2rem;
        /* Keep mobile readable */
    }
}

.btn-line:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* Standardized CTA Styles (Migrated from Inline) */
.cta-frame-std {
    max-width: 800px;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.cta-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-gold);
    color: #fff;
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom-right-radius: 10px;
}

.cta-title-std {
    margin-bottom: 25px;
    color: var(--primary-text);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
}

.cta-desc-std {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.9;
    font-family: var(--font-secondary);
    color: #444;
    text-align: center;
}

.cta-menu-box {
    background: #fafaf8;
    border: 2px solid var(--primary-gold);
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.cta-menu-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #fff !important;
    padding: 5px 30px;
    border-radius: 5px;
    /* Changed from 20px */
    font-weight: bold;
    font-size: 1.0rem !important;
    /* Force smaller size */
    /* Reduced from 1.2rem */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    /* Added */
    transition: opacity 0.3s;
    /* Added */
}

.cta-menu-title {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
    font-weight: bold;
}

.cta-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    /* Fix: Prevent shrinking to content width */
}

.cta-price-large {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-gold);
}

.cta-reason-box {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.cta-highlight-marker {
    background: linear-gradient(transparent 60%, #fff3cd 60%);
    padding: 0 5px;
}

.cta-split-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.btn-cta-reserve,
.btn-cta-line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-reserve {
    background: var(--primary-gold);
    color: #fff;
    width: 70%;
}

.btn-cta-reserve:hover {
    background: #a3864d;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-cta-line {
    background: #06c755;
    color: #fff;
    width: 30%;
}

.btn-cta-line:hover {
    background: #05b34c;
    transform: translateY(-2px);
    opacity: 1;
}

.cta-main-text {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

/* ====================================================
   Blog Renewal (Sidebar & Horizontal List)
   ==================================================== */

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-layout-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Main Column */
.blog-main {
    flex: 1;
    min-width: 0;
}

/* Sidebar Column */
.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.section-title-left {
    font-size: 1.8rem;
    color: var(--primary-text);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-gold);
    padding-left: 15px;
    font-weight: 700;
}

/* Horizontal Blog Card (Desktop List Style) */
.blog-card,
.blog-card-horizontal {
    background: #fff;
    border-bottom: 1px solid #eee;
    /* Divider style */
    margin-bottom: 20px;
    padding-bottom: 20px;
    transition: opacity 0.3s;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-card-link,
.blog-card-link-horizontal {
    display: flex;
    /* Image Left, Content Right */
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
    gap: 20px;
}

/* Image Wrapper */
.blog-thumb-wrapper {
    width: 220px;
    /* Fixed width for desktop */
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f9f9f9;
}

.blog-thumb,
.blog-thumb-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

/* Content Wrapper */
.blog-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Tab Navigation (Scrollable) */
.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: thin;
    /* Firefox */
}

.category-tabs::-webkit-scrollbar {
    height: 6px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.category-tab {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    flex-shrink: 0;
    /* Prevent tab shrinking */
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

/* Pagination Buttons */
.pagination-container {
    margin-top: 40px;
    text-align: center;
}

.pagination-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 4px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.pagination-btn.active,
.pagination-btn:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.widget-title {
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px dashed #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: block;
    padding: 10px 5px;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
}

.category-list a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
    background: #fafafa;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .blog-layout-wrapper {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        order: 2;
        /* Sidebar below content on mobile? Or above? User said "optimized stack" */
        /* Usually Categories below is better for SEO/UX if main content is key, 
           BUT for navigation, maybe a compact menu above?
           I will put it below for now as typical for mobile blogs. */
    }

    .blog-card-horizontal .blog-card-link-horizontal {
        flex-direction: column;
    }

    .blog-thumb-wrapper {
        width: 100%;
        height: 200px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0;
    }

    .blog-content-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-split-container {
        flex-direction: column;
    }

    .btn-cta-reserve,
    .btn-cta-line {
        width: 100%;
    }

    .cta-main-text {
        font-size: 1.05rem;
    }

    /* Fix for "Why cheap" section text density */
    .cta-frame-std {
        padding: 30px 15px;
    }

    .cta-menu-box {
        padding: 20px 15px;
    }

    .cta-reason-box {
        padding: 12px;
        font-size: 0.85rem;
        /* Ensure it takes full width of parent flex container */
        width: 100%;
        box-sizing: border-box;
    }

    .cta-price-large {
        font-size: 2.5rem;
    }
}

/* ====================================================
   Footer (ABC Style: Compact, Dark)
   ==================================================== */
footer {
    background: #252525;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    padding: 30px 0;
}

.info-item h4 {
    color: var(--primary-gold);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.info-item p {
    color: #ccc;
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-gold);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ====================================================
   Footer Embeds (Map & Insta)
   ==================================================== */
.footer-map-container {
    width: 100%;
    height: 200px;
    margin-top: 15px;
    border: 1px solid #444;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-insta-area {
    margin-top: 15px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.insta-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #333;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-link-text {
    color: #fff;
    font-size: 1.0rem;
    text-decoration: underline;
    opacity: 0.8;
}

.insta-link-text:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* ====================================================
   Footer Redesign (Phase 5) - High Visibility
   ==================================================== */
footer {
    background: #111;
    /* Deeper black for high contrast with white text */
    color: #fff;
    padding: 60px 0 30px;
    font-size: 1rem;
    /* Base size up */
}

.footer-inner .footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 20px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3 Column Standard */
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.info-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    display: inline-block;
    min-width: 150px;
}

.info-item p {
    line-height: 1.8;
    color: #ddd;
    /* Softer white for reading */
    font-size: 1rem;
}

/* Map Container Refined */
.footer-map-container {
    width: 100%;
    height: 250px;
    /* Taller */
    margin-top: 20px;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

/* Instagram Embed Container (Single Post) */
.footer-insta-container {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    min-height: 480px;
    /* Typical Insta Embed Height */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #333;
}

.footer-insta-container iframe {
    width: 100% !important;
    border: none !important;
    border-radius: 4px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-item h4 {
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }
}

/* ====================================================
   Instagram Static Card Styles
   ==================================================== */
.insta-card-mock {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.insta-card-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #efefef;
    text-decoration: none;
    color: #262626;
    background: #fff;
}

.insta-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fafafa;
    border: 1px solid #dbdbdb;
    margin-right: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.insta-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-username {
    font-weight: 600;
    font-size: 16px;
    color: #262626;
}

.insta-card-image {
    width: 100%;
    height: auto;
    display: block;
    background: #fafafa;
}

.insta-card-footer {
    padding: 14px 15px;
    background: #fff;
}

.insta-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: #262626;
}

.insta-likes {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    color: #262626;
}

.insta-caption {
    font-size: 16px;
    line-height: 1.5;
    color: #262626;
    margin-bottom: 6px;
}

.insta-time {
    font-size: 10px;
    color: #8e8e8e;
    text-transform: uppercase;
}

/* ====================================================
   LP Integrated Styles (Flow, Voice, Features)
   ==================================================== */
.red-marker {
    background: linear-gradient(transparent 60%, #ffdfdf 60%);
    font-weight: bold;
}

/* Button Gold */
.btn-gold {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 20px 10px;
    background: linear-gradient(to right, #C2A265, #D4AF37, #C2A265);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(194, 162, 101, 0.4);
    position: relative;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: transform 0.2s;
    overflow: hidden;
    text-align: center;
}

.btn-gold:hover {
    opacity: 1;
    color: #fff;
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(2px);
}

.btn-gold::after {
    content: "笆ｶ";
    margin-left: 10px;
    font-size: 0.8em;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.btn-sub-text {
    display: block;
    font-size: 0.75rem;
    margin-top: 5px;
    font-weight: normal;
    opacity: 0.9;
}

/* Problem Section */
.problem-box {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.check-item {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.check-item::before {
    content: "✔";
    color: var(--primary-gold);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Features (Reasons) */
.features-container {
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    margin-bottom: 50px;
    text-align: center;
}

.feature-num {
    color: var(--primary-gold);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

.feature-head {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
    color: var(--primary-text);
}

.feature-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    background: #eee;
    margin: 0 auto 25px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-body {
    font-size: 1rem;
    text-align: left;
    padding: 0 10px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits (5 Problems) */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0E9D8;
}

.benefit-item.full-width {
    grid-column: 1 / -1;
}

.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    border-bottom: 2px solid #FCE8AC;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* Voice / Results */
.results-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    width: 45%;
    max-width: 300px;
    text-align: center;
}

.result-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ba-label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Flow Section */
.flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.flow-item {
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-gold);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flow-item h3 {
    font-size: 1.2rem;
    color: var(--primary-text);
    margin-bottom: 15px;
    font-weight: bold;
}

.flow-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.flow-item img {
    border-radius: 8px;
    margin-top: 10px;
}

/* ====================================================
   Mobile Menu (Restored)
   ==================================================== */
.mobile-logo {
    display: none;
    /* Hide on PC */
}

@media (max-width: 768px) {
    .mobile-logo {
        display: block;
        /* Show on Mobile */
    }
}

.mobile-menu-btn {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    width: 30px;
    height: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    transition: all 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1900;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-links li {
    margin-bottom: 20px;
}

.mobile-menu-links a {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-text);
}

@media (max-width: 768px) {
    .global-nav {
        display: none;
        /* Hide Desktop Nav on Mobile */
    }

    .mobile-menu-btn {
        display: flex;
    }
}


/* ====================================================
   Menu Page Styles (Restored)
   ==================================================== */
.menu-section {
    max-width: 800px;
    margin: 0 auto;
}

.menu-block {
    margin-bottom: 60px;
}

.menu-head {
    font-size: 1.5rem;
    font-weight: bold;
    border-left: 5px solid var(--primary-gold);
    padding-left: 15px;
    margin-bottom: 30px;
    color: var(--primary-text);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.menu-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--secondary-text);
}

.menu-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-text);
}

.menu-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Specific overrides for mobile */
@media (max-width: 600px) {
    .menu-item {
        flex-direction: column;
    }

    .menu-price {
        margin-top: 5px;
        align-self: flex-end;
    }
}


/* ====================================================
   Menu Card Redesign (Restored & Enhanced)
   ==================================================== */
.menu-card-trial {
    background: #FFFCF5;
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(176, 141, 85, 0.15);
    position: relative;
    overflow: hidden;
}

.menu-card-trial::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.menu-card-basic {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.menu-head {
    font-size: 1.6rem;
    font-weight: bold;
    border-left: 5px solid var(--primary-gold);
    padding-left: 15px;
    margin-bottom: 25px;
    color: var(--primary-text);
}


/* ====================================================
   Menu Header Redesign (Solid Backgrounds)
   ==================================================== */
.menu-card-trial .menu-head {
    background: var(--primary-gold);
    color: #fff;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 30px -30px;
    /* Pull to edges of card */
    border-left: none;
    text-align: center;
}

.menu-card-basic .menu-head {
    background: #f0f0f0;
    color: var(--primary-text);
    padding: 15px;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 30px -30px;
    /* Pull to edges of card */
    border-left: none;
    border-bottom: 1px solid #ddd;
    text-align: center;
}


/* ====================================================
   CTA Split Buttons (Restored)
   ==================================================== */
.cta-split-container {
    display: flex;
    gap: 15px;
    align-items: stretch;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.btn-cta-line {
    flex: 3;
    background: #06c755;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}

.btn-cta-reserve {
    flex: 7;
    background: var(--primary-gold);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(186, 155, 101, 0.4);
    transition: transform 0.2s;
}

/* Standardized CTA Container (PC Default: Row) */
.cta-split-container {
    display: flex;
    gap: 15px;
    align-items: stretch;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 20px 0;
    /* Reduced drastically as requested */
}

.page-header {
    margin-bottom: 20px;
    /* Reduced space after header */
}

.cta-main-text,
.cta-sub-text {
    font-size: 1.2rem !important;
    /* Reduced to prevent wrapping */
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

.cta-sub-text {
    margin-top: 5px;
    opacity: 1;
}

/* FORCE LINE BUTTON TEXT SIZE GLOBALLY */
a[href*="lin.ee"] span:first-child,
.btn-cta-line span:first-child,
.btn-line span:first-child {
    font-size: 1.4rem;
    font-weight: bold;
}

a[href*="lin.ee"] span:last-child,
.btn-cta-line span:last-child,
.btn-line span:last-child {
    font-size: 1.8rem;
    /* Global: LINE Official */
    font-weight: bold;
    line-height: 1.2;
}

@media (max-width: 480px) {
    .cta-main-text {
        font-size: 1.1rem;
    }
}


/* ====================================================
   Mobile Optimization Extras
   ==================================================== */
@media (max-width: 600px) {

    /* Optimize Menu Cards for Mobile */
    .menu-card-trial,
    .menu-card-basic {
        padding: 20px;
        margin-bottom: 30px;
    }

    .menu-card-trial .menu-head,
    .menu-card-basic .menu-head {
        margin: -20px -20px 25px -20px;
        /* Adjust pull for smaller padding */
        padding: 12px;
        font-size: 1.3rem;
        /* Slightly smaller header */
    }

    /* Optimize CTA Buttons for Mobile */
    .cta-split-container {
        gap: 8px;
        /* Reduce gap */
    }

    .btn-cta-line,
    .btn-cta-reserve {
        padding: 12px 5px;
        /* Tighter padding */
    }

    .cta-main-text {
        font-size: 1.0rem;
        /* Ensure it fits */
    }

    .btn-cta-line span[style*='font-size: 1.1rem'] {
        font-size: 0.9rem !important;
        /* Force resize line text */
    }
}

/* ====================================================
   Mobile Responsive Overrides (Comprehensive Fix)
   ==================================================== */

/* ====================================================
   PC Layout Fixes
   ==================================================== */
/* Prevent Flow images from being too large */
/* ====================================================
   PC Layout Fixes
/* Prevent Flow images from being too large and center them */
.flow-item img {
    max-width: 100%;
    width: auto;
    max-height: 400px;
    /* Limit height */
    object-fit: contain;
    display: block;
    /* Ensure block for margin auto */
    margin: 15px auto 0;
    /* Center image with top margin */
    border-radius: 8px;
    /* Restore border radius */
}


/* Fix Menu Image Aspect Ratio */
.menu-section .teaser-image img {
    object-fit: cover;
    /* Ensure it doesn't stretch weirdly */
}


/* ====================================================
   Mobile Responsive Overrides (Comprehensive Fix)
   ==================================================== */
@media (max-width: 768px) {

    /* Base Typography Reset */
    html {
        font-size: 15px;
        /* Slightly smaller base */
    }

    body {
        padding-top: 60px;
        /* Smaller header adjustment */
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Hero Section Fix */
    .hero {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background: #fff;
    }

    .hero-bg {
        position: relative;
        height: 300px;
        /* Display image clearly */
        width: 100%;
    }

    .hero-overlay {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin: -40px 15px 0;
        /* Overlap slightly */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        /* Prevent overflow */
    }

    /* Stack Teaser Rows (Image + Text) */
    .teaser-row,
    .teaser-row.reverse {
        flex-direction: column;
    }

    .teaser-image {
        width: 100%;
    }

    .teaser-image img {
        height: 250px;
    }

    /* Stack Features */
    .features-container {
        display: block;
    }

    .feature-card {
        margin-bottom: 60px;
    }

    /* Hide Desktop Nav */
    .global-nav {
        display: none;
    }

    /* Fix Mobile Menu Text Sizing */
    .mobile-menu-links a {
        font-size: 1.1rem;
    }

    /* Mobile Menu Btn Visibility */
    .mobile-menu-btn {
        display: flex;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.8);
        /* Background visibility */
        padding: 5px;
        border-radius: 4px;
        box-sizing: content-box;
    }

    /* Fix Menu Items Stacking */
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-price {
        margin-top: 5px;
        align-self: flex-end;
        font-size: 1.2rem;
    }

    /* CTA Section Optimizations */
    .cta-frame {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-reserve,
    .btn-line,
    .btn-cta-reserve,
    .btn-cta-line {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        flex: auto !important;
        padding: 15px 10px;
    }

    .cta-main-text {
        font-size: 1.8rem !important;
        /* Main CTA Text */
        font-weight: bold;
        line-height: 1.2;
    }

    .cta-sub-text {
        font-size: 1.3rem !important;
        margin-top: 5px;
        opacity: 1 !important;
    }

    /* FORCE LINE BUTTON TEXT SIZE GLOBALLY */
    a[href*="lin.ee"] span:first-child,
    .btn-cta-line span:first-child,
    .btn-line span:first-child {
        font-size: 1.4rem !important;
        font-weight: bold;
    }

    a[href*="lin.ee"] span:last-child,
    .btn-cta-line span:last-child,
    .btn-line span:last-child {
        font-size: 1.8rem !important;
        /* LINE Official - MUCH BIGGER */
        font-weight: bold;
        line-height: 1.2;
    }

    /* Force Vertical Stack for Menu Page Split Container */
    .cta-split-container {
        flex-direction: column !important;
        gap: 15px;
    }

    .cta-split-container a {
        width: 100% !important;
        flex: auto !important;
    }

    /* Menu Image Centering */
    .menu-image {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        width: auto;
        border-radius: 4px;
    }


    /* Footer */
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .info-item h4 {
        display: block;
        margin: 0 auto 15px;
        border-bottom: 2px solid #555;
        width: auto;
    }

    .footer-info-grid {
        text-align: center;
    }

    /* News Section */
    .news-section {
        margin: 30px auto;
    }

    /* News Section Mobile Fix */
    .news-heading {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        /* Force single line */
        gap: 5px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--primary-gold);
    }

    .news-heading h2 {
        font-size: 1.1rem !important;
        /* Smaller on mobile */
        white-space: nowrap !important;
    }

    /* Adjust View All Button if needed */
    .news-heading .btn-arrow {
        font-size: 0.8rem !important;
        padding: 4px 10px !important;
        white-space: nowrap !important;
    }

    .news-link {
        flex-direction: column !important;
        /* Stack date and title */
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee;
        /* Ensure separator */
    }

    .news-date {
        font-size: 0.8rem !important;
        /* Readable size */
        color: #888;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .news-title {
        font-size: 0.95rem !important;
        /* Readable size */
        line-height: 1.4;
        white-space: nowrap !important;
        /* Force Single Line */
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        letter-spacing: normal !important;
        width: 100%;
        /* Ensure it takes full width to truncate properly */
        display: block;
    }



    /* Problem Checks */
    .problem-box {
        padding: 15px 10px;
        margin-top: 20px;
    }

    .check-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    /* Before/After Photos Stack */
    .results-grid {
        display: flex !important;
        /* Override any grid display */
        flex-direction: column !important;
        /* Force stack */
        gap: 30px;
        grid-template-columns: none !important;
        /* Reset grid cols just in case */
    }

    .result-item {
        width: 100% !important;
        max-width: 300px;
        /* Keep reasonable width */
        margin: 0 auto;
    }
}

/* Instagram Centering */
.footer-insta-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-insta-container iframe,
.footer-insta-container blockquote {
    margin: 0 auto !important;
}

/* ====================================================
   Mobile Menu Overlay (Added)
   ==================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay would be nice but requires nth-child */
.mobile-menu-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-links li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-links li:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-menu-links li:nth-child(8) {
    transition-delay: 0.45s;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    font-family: var(--font-secondary);
}

.mobile-menu-reserve {
    background: var(--primary-gold);
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 30px;
    margin-top: 10px;
    display: inline-block;
}


/* ====================================================
   NEW BLOG LIST STYLE (HotPepper Clone)
   ==================================================== */
.blog-list-item {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    transition: background 0.2s;
}

.blog-list-item:hover {
    background: #fafafa;
}

.blog-list-link {
    display: flex;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

/* Thumbnail (Left) */
.blog-list-thumb {
    width: 160px;
    /* PC Width */
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
}

.blog-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content (Right) */
.blog-list-content {
    flex: 1;
    min-width: 0;
}

/* Meta Row (Badge, Date, Author) */
.blog-list-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #888;
}

.blog-list-badge {
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 2px;
    background: #eee;
    color: #555;
    /* Default */
}

/* HotPepper-ish Badge Colors */
.badge-news,
.badge-salon {
    background: #81d4fa;
    color: #01579b;
}

/* Blue */
.badge-face,
.badge-menu {
    background: #ffccbc;
    color: #bf360c;
}

/* Orange/Pink */
.badge-shoulder {
    background: #ffe0b2;
    color: #e65100;
}

.badge-body {
    background: #e1bee7;
    color: #4a148c;
}

.badge-diet {
    background: #f0f4c3;
    color: #827717;
}

.badge-general {
    background: #f5f5f5;
    color: #616161;
}

.blog-list-date,
.blog-list-author {
    display: inline-block;
}

/* Title */
.blog-list-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s;
}

.blog-list-item:hover .blog-list-title {
    color: var(--primary-gold);
}

/* Excerpt (PC Only) */
.blog-list-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow (PC - Hide) */
.blog-list-arrow {
    display: none;
}


/* ====================================================
   MOBILE OPTIMIZATION (Strict Match)
   ==================================================== */
@media (max-width: 768px) {
    .blog-layout-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .blog-sidebar {
        width: 100% !important;
        position: static !important;
    }

    .blog-main {
        width: 100% !important;
        max-width: 100%;
    }

    /* FORCE NO SPACING */
    .blog-grid {
        display: block !important;
        gap: 0 !important;
    }

    .blog-list-item {
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Category Tabs Mobile */
    .category-tabs {
        gap: 8px;
        margin-bottom: 20px;
        padding: 0 0 10px 0;
    }

    .category-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .blog-list-link {
        flex-direction: row;
        /* Horizontal Image Left, Text Right */
        align-items: flex-start;
        padding: 0;
        gap: 12px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 0;
    }

    /* Thumbnail Fixed Small Size */
    .blog-list-thumb {
        width: 80px;
        height: 80px;
        /* Square for better mobile display */
        flex-shrink: 0;
        margin-right: 0;
        border-radius: 6px;
        overflow: hidden;
    }

    .blog-list-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Content Side */
    .blog-list-content {
        padding: 0;
        width: auto;
        flex: 1;
        /* Take remaining space */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
        /* Prevent overflow */
    }

    /* Meta Row (Keep Compact) */
    .blog-list-meta {
        font-size: 0.75rem;
        margin-bottom: 6px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .blog-list-badge {
        padding: 2px 8px;
        font-size: 0.7rem;
        display: none;
        /* Hide badge on mobile to save space */
    }

    .blog-list-date {
        font-size: 0.75rem;
        color: #999;
    }

    .blog-list-title {
        font-size: 1rem;
        margin-bottom: 4px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    /* Hide Excerpt to prevent scrolling */
    .blog-list-excerpt {
        display: none !important;
    }

    /* Arrow Show */
    .blog-list-arrow {
        display: none;
        /* Hide arrow on mobile */
    }

    /* Blog Post Detail Page */
    .post-header {
        padding: 0;
    }

    .post-title {
        font-size: 1.4rem !important;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .post-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }

    .post-image {
        max-height: 250px;
        margin-top: 15px;
    }
}

/* ====================================================
   Blog Page 2-Column Layout (Shared by List & Post)
   ==================================================== */
.blog-layout-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Main Content Area */
.blog-main {
    flex: 1;
    /* Takes remaining space */
    width: 0;
    /* Prevents overflow issues */
    min-width: 0;
}

#blog-article {
    width: 100%;
}

/* Sidebar Area */
.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

/* Mobile: Stack Vertical */
@media (max-width: 900px) {
    .blog-layout-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .blog-main {
        width: 100%;
        max-width: 100%;
        flex: auto;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
        order: 2;
        /* Sidebar below content on mobile */
    }
}

.nav-card-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.nav-card {
    display: block;
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.nav-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.nav-card:hover .nav-card-img {
    filter: brightness(1);
}

.nav-card-content {
    padding: 25px;
    text-align: center;
}

.nav-card-title {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-text);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.nav-card-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.nav-card-arrow {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.nav-card:hover .nav-card-arrow {
    border-bottom-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .nav-card-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ====================================================
   Reviews Carousel (Scroll Snap)
   ==================================================== */
.reviews-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: none;
    /* Hidden on PC by default, shown on mobile via media query if needed or just always show? */
    /* User said "mobile top page", but usually good for all touch. Let's show always or mobile only? */
    /* Let's show always for now as requested "horizontal slide is hard to understand" */
    display: block;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* iOS Momentum */
    padding-bottom: 20px;
    gap: 20px;
    /* Show scrollbar */
    scrollbar-width: auto;
}

.carousel-container::-webkit-scrollbar {
    display: block;
    height: 8px;
    /* Slightly smaller for mobile */
}

.carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.carousel-slide {
    flex: 0 0 85%;
    /* Mobile: Show 85% of one slide to encourage scroll */
    min-width: 280px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .carousel-container {
        /* Keep sliding behavior on PC */
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        /* Show scrollbar on PC for mouse users */
        scrollbar-width: auto;
    }

    .carousel-container::-webkit-scrollbar {
        display: block;
        height: 10px;
    }

    .carousel-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
    }

    .carousel-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 5px;
    }

    .carousel-container::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

    .carousel-slide {
        flex: 0 0 350px;
        /* Fixed width for slider cards on PC */
        margin-right: 20px;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    /* Reduced gap */
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.pagination-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.pagination-btn.active {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

.pagination-nav {
    font-weight: bold;
    color: var(--primary-gold);
}

.pagination-nav.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #f9f9f9;
    color: #ccc;
    border-color: #eee;
}

@media (max-width: 768px) {
    .pagination {
        gap: 5px;
        /* Even tighter for mobile */
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* Top Page News Mobile Optimization */
    .news-link {
        padding: 6px 0;
        /* Reduced from 15px 10px */
        gap: 2px;
    }

    /* Sidebar Category List Mobile Optimization */
    .category-list a {
        padding: 6px 0;
        /* Reduced from 10px 5px */
    }
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Sticky Footer CTA */
#sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    overflow: visible;
    /* Allow badge to pop out */
}

#sticky-footer * {
    box-sizing: border-box;
}

#sticky-footer.is-visible {
    transform: translateY(0);
}

/* Urgency Badge (Balloon) */
.sticky-urgency-badge {
    position: absolute;
    top: -35px;
    /* Float above */
    left: 50%;
    transform: translateX(-50%);
    background: #d32f2f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    animation: bounce 2s infinite;
    z-index: 10000;
}

/* Little triangle for balloon */
.sticky-urgency-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #d32f2f;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.sticky-btn-line {
    /* Removed or Hidden if not used, but keeping defined just in case */
    display: none;
}

.sticky-btn-reserve {
    background: var(--primary-gold);
    color: #fff;
    width: 100%;
    max-width: 600px;
    /* Max width for PC */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: bold;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(176, 141, 85, 0.4);
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.sticky-btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.sticky-btn-reserve:hover {
    background: #a3864d;
    transform: translateY(-2px);
    opacity: 1;
}

/* Specific Override for Reserve Main Text (Make it bigger) */
.sticky-btn-reserve .sticky-main-text {
    font-size: 1.2rem;
    /* Larger */
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}

/* Specific Override for Reserve Button Subtext (Check Availability - Make it bigger) */
.sticky-btn-reserve .sticky-sub-text {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
    transform: none;
}

/* Ensure standard footer doesn't get hidden */
footer {
    padding-bottom: 100px;
    /* Increased space for taller sticky footer */
}

/* Standardized CTA Styles (Restored for Menu Page) */
.cta-frame-std {
    max-width: 800px;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.cta-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-gold);
    color: #fff;
    padding: 5px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom-right-radius: 10px;
}

.cta-title-std {
    margin-bottom: 25px;
    color: var(--primary-text);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
}

.cta-desc-std {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.9;
    font-family: var(--font-secondary);
    color: #444;
    text-align: center;
}

.cta-menu-box {
    background: #fafaf8;
    border: 2px solid var(--primary-gold);
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.cta-menu-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #fff !important;
    padding: 5px 30px;
    border-radius: 5px;
    /* Changed from 20px */
    font-weight: bold;
    font-size: 1.0rem !important;
    /* Force smaller size */
    /* Reduced from 1.2rem */
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    /* Added */
    transition: opacity 0.3s;
    /* Added */
}

.cta-menu-title {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
    font-weight: bold;
}

.cta-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    /* Fix: Prevent shrinking to content width */
}

.cta-price-large {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-gold);
}

.cta-reason-box {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    background: #fff;
    padding: 15px 5px;
    /* Reduced side padding from 15px to 5px to widen text */
    border-radius: 4px;
    border: 1px solid #eee;
    width: 100%;
    /* Force full width */
    box-sizing: border-box;
    /* Ensure padding includes in width */

}

.cta-highlight-marker {
    background: linear-gradient(transparent 60%, #fff3cd 60%);
    padding: 0 5px;
}

.cta-split-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.btn-cta-reserve,
.btn-cta-line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-reserve {
    background: var(--primary-gold);
    color: #fff;
    width: 100%;
    /* Match Header Reserve Button EXACTLY */
    border-radius: 4px;
    font-weight: 700;
    box-shadow: none;
    /* Header has no shadow, match it? Or keep shadow? Header has no shadow. */
    /* Wait, header nav-btn-link has no shadow defined in lines 196-204 */
}

.btn-cta-reserve:hover {
    background: #a3864d;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-cta-line {
    background: #06c755;
    color: #fff;
    width: 100%;
    /* Keep wide for visibility */
}

.cta-main-text {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

/* ====================================================
   Carousel Overlay & Navigation - REMOVED TO FIX DOUBLE ARROWS
   ==================================================== */
/* The styles here were conflicting with carousel_clean.css and causing double arrows. */
/* They have been removed. */

/* Reduce spacing below page headers */
.page-header {
    margin-bottom: 0 !important;
    padding-bottom: 30px !important;
    /* increased from 20px */
}

.page-header+.section {
    padding-top: 30px !important;
    /* increased from 20px */
}

/* Mobile Compaction for Menu CTA Frame & Single Screen Fit (Restored & Tuned) */
@media (max-width: 768px) {

    /* Main Frame */
    .cta-frame-std {
        padding: 25px 10px !important;
        /* Increased top padding to avoid squeezing */
        overflow: visible !important;
        /* Fix badge cut-off */
    }

    .cta-badge {
        font-size: 0.7rem !important;
        padding: 2px 10px !important;
        top: -10px !important;
    }

    /* Hide Description to save space */
    .cta-desc-std {
        display: none !important;
    }

    /* Titles & Text - Relaxed Spacing */
    .cta-title-std {
        margin-top: 20px !important;
        /* Increased from 15px */
        margin-bottom: 20px !important;
        /* Increased from 10px */
        font-size: 1.25rem !important;
        line-height: 1.8 !important;
        /* Much more breathing room (was 1.3) */
        letter-spacing: 0.05em !important;
        /* Add slight breathing room for characters */
    }

    .cta-highlight-marker {
        padding: 4px 6px !important;
        /* Add padding to marker to separate from text */
        display: inline-block;
        /* Ensure padding works */
        line-height: 1.2 !important;
        /* Reset line-height for the marker itself if needed */
    }

    /* Menu Box */
    .cta-menu-box {
        padding: 15px 10px !important;
        margin-bottom: 15px !important;
        border-width: 1px !important;
        margin-top: 10px !important;
    }

    .cta-menu-badge {
        font-size: 0.75rem !important;
        padding: 3px 10px !important;
        top: -10px !important;
    }

    .cta-menu-title {
        font-size: 1.0rem !important;
        margin: 8px 0 !important;
        padding-bottom: 8px !important;
    }

    /* Price & layout */
    .cta-price-large {
        font-size: 2.2rem !important;
    }

    .cta-price-container p {
        font-size: 0.8rem !important;
    }

    /* Reason Box */
    .cta-reason-box {
        margin-top: 10px !important;
        padding: 10px !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        width: 100% !important;
        /* Force width again */
    }

    /* Buttons */
    .cta-split-container {
        gap: 8px !important;
        margin-top: 0 !important;
    }

    .btn-cta-reserve,
    .btn-cta-line {
        padding: 8px 0 !important;
    }
}

.cta-main-text {
    font-size: 1.0rem !important;
}

.cta-sub-text {
    font-size: 0.7rem !important;
}

/* Elegant Dark Footer */
footer {
    background-color: #3b302c !important;
    color: #fff;
}

/* Footer Text Visibility Fix */
footer .footer-logo-text,
footer h4,
footer a {
    color: #f2ebd4 !important;
}


/* ====================================================
   Final Push CTA Section (Enhanced)
   ==================================================== */
.final-cta-section {
    padding: 80px 20px;
    background-color: #fdfbf7;
    /* Warm beige base */
    background-image: radial-gradient(#C2A265 1px, transparent 1px);
    background-size: 20px 20px;
    /* Polka dot pattern for texture */
    text-align: center;
}

.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 3px solid #C2A265;
    /* Strong Gold Border */
    border-radius: 16px;
    padding: 60px 30px;
    box-shadow: 0 15px 50px rgba(176, 141, 85, 0.3);
    position: relative;
    overflow: hidden;
}

/* "Recommended" Ribbon */
.final-cta-box::before {
    content: "WEB予約限定";
    position: absolute;
    top: 30px;
    right: -30px;
    background: #d32f2f;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.final-cta-catch {
    font-size: 1.5rem;
    font-weight: bold;
    color: #54463d;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: var(--font-secondary);
}

.final-cta-title {
    font-size: 1.8rem;
    color: #fff;
    background: #54463d;
    /* Dark Brown Background */
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 35px;
    border-radius: 50px;
    font-weight: 700;
}

.final-cta-price-box {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: #fffbf0;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #C2A265;
}

.final-old-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.final-arrow {
    display: none;
    /* Hide standard text arrow, using layout */
}

/* Super Huge Price */
.final-new-price {
    font-size: 3rem;
    /* Ultra Huge? No, just Large now */
    font-weight: 900;
    color: #d32f2f;
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
    background: linear-gradient(transparent 70%, #fff3cd 70%);
    /* Marker effect */
    padding: 0 10px;
    letter-spacing: -2px;
}

.final-new-price .currency {
    font-size: 1.8rem;
    vertical-align: 0.3rem;
    /* Adjusted alignment */
    margin-right: 3px;
    color: #333;
}

.final-new-price .tax {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
}

.final-cta-btn {
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    background: linear-gradient(to right, #B08D55, #d4af37, #B08D55);
    background-size: 200% auto;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    padding: 25px 10px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(176, 141, 85, 0.5);
    transition: all 0.3s;
    animation: gradientMove 3s infinite linear, pulseBtn 2s infinite;
    position: relative;
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 1;
    color: #fff;
    animation: none;
    /* Stop pulse on hover */
}

.final-cta-btn .btn-arrow {
    margin-left: 15px;
    transition: margin-left 0.3s;
    background: #fff;
    color: #B08D55;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 50px 15px;
    }

    .final-cta-box {
        padding: 40px 20px;
        border-width: 2px;
    }

    .final-cta-catch {
        font-size: 1.15rem;
    }

    .final-cta-title {
        font-size: 1.2rem;
        padding: 8px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .final-new-price {
        font-size: 2.5rem;
        /* Also bigger on mobile */
    }

    .final-cta-btn {
        font-size: 1.3rem;
        padding: 20px 10px;
    }

    .final-cta-box::before {
        font-size: 0.8rem;
        padding: 3px 30px;
        right: -35px;
        top: 20px;
    }
}