﻿@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;
}

/* Vertical Teaser Variant (Added 2026-01-11) */
.teaser-row.teaser-vertical {
    flex-direction: column;
    gap: 30px;
}

.teaser-row.teaser-vertical .teaser-image {
    width: 100%;
    margin: 0 auto;
}

.teaser-row.teaser-vertical .teaser-image img {
    height: auto;
    object-fit: contain;
}

.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;
}

/* ====================================================
   Message Section (Added for Mobile Line Height Fix)
   ==================================================== */
.message-heading {
    font-size: 2.0rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-text);
}

.message-body {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .message-heading {
        font-size: 1.3rem !important;
        /* Smaller: ~23px */
        line-height: 1.4 !important;
        /* Tighter: ~32px */
        overflow-wrap: break-word;
        /* Prevent overflow */
        padding: 0 10px;
        /* Safety padding */
    }

    .message-body {
        font-size: 1rem;
        line-height: 1.5 !important;
        padding: 0 10px;
    }
}

.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;
        gap: 20px;
    }

    .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;
    }
}

.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: 8px 5px;
    /* Reduced padding */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;

    display: flex;
    justify-content: center;
    gap: 8px;
    /* Reduced gap */

    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

#sticky-footer * {
    box-sizing: border-box;
}

#sticky-footer.is-visible {
    transform: translateY(0);
}

.sticky-btn-line {
    background-color: #06c755;
    color: #fff;
    flex: 0 0 35%;
    /* Slightly wider for LINE text */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 0;
}

.sticky-btn-reserve {
    background: var(--primary-gold);
    /* Match Header Button */
    color: #fff;
    flex: 1;
    /* Take remaining space */
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 0;
}

/* Base class - used as fallback */
.sticky-main-text {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.2;
    display: block;
    margin-bottom: 2px;
}

/* Specific Override for LINE Main Text (Force Small) */
.sticky-btn-line .sticky-main-text {
    font-size: 0.65rem !important;
    /* Force small size */
}

/* Specific Override for Reserve Main Text (Make it bigger) */
.sticky-btn-reserve .sticky-main-text {
    font-size: 1.1rem;
    /* Increased size */
}

.sticky-sub-text {
    font-size: 0.65rem;
    font-weight: normal;
    display: block;
    opacity: 0.9;
    white-space: nowrap;
    transform: scale(0.95);
}

/* Specific Override for Reserve Button Subtext (Check Availability - Make it bigger) */
.sticky-btn-reserve .sticky-sub-text {
    font-size: 0.9rem;
    /* Increased size */
    font-weight: bold;
    margin-top: 2px;
    opacity: 1;
    transform: none;
}

/* Ensure standard footer doesn't get hidden */
footer {
    padding-bottom: 80px;
    /* Space for 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;
    font-weight: bold;
    font-size: 1.0rem !important;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: opacity 0.3s;
}

.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%;
}

.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;
}

.cta-main-text {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

/* ====================================================
   Carousel Overlay & Navigation
   ==================================================== */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Hide scrollbar of wrapper */
}

.carousel-nav-layer {
    position: absolute;
    top: 0;
    bottom: 20px;
    /* Leave space for scrollbar depending on layout, or cover it? */
    /* Let's cover mostly, but .carousel-container has padding-bottom: 20px */
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    z-index: 50;
    cursor: pointer;
    /* pointer-events: none; Removed to allow clicking */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-layer.prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 10px;
}

.carousel-nav-layer.next {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    justify-content: flex-end;
    padding-right: 10px;
}

/* Arrow Indicators */
.carousel-nav-layer::after {
    content: '';
    width: 30px;
    /* Increased from 20px */
    height: 30px;
    /* Increased from 20px */
    border-top: 6px solid var(--primary-gold);
    /* Increased from 4px */
    border-right: 6px solid var(--primary-gold);
    /* Increased from 4px */
    display: block;
    animation: bounceX 2s infinite;
    opacity: 0.9;
}

.carousel-nav-layer.prev::after {
    transform: rotate(-135deg);
    margin-left: 5px;
    animation: bouncePrev 2s infinite;
}

.carousel-nav-layer.next::after {
    transform: rotate(45deg);
    margin-right: 5px;
}

@keyframes bounceX {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(5px, -5px);
    }
}

@keyframes bouncePrev {

    0%,
    100% {
        transform: rotate(-135deg) translate(0, 0);
    }

    50% {
        transform: rotate(-135deg) translate(5px, 5px);
    }
}

/* 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;
}



/* ====================================================
   Message Section (Added for Line Height Control)
   ==================================================== */
.message-heading {
    font-size: 1.8rem;
    line-height: 1.5;
    /* Default PC */
    margin-bottom: 40px;
    font-family: var(--font-secondary);
    color: var(--primary-text);
}

.message-body {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    /* Default PC (Reduced from 2.0) */
    color: var(--secondary-text);
}

@media (max-width: 768px) {
    .message-heading {
        font-size: 1.4rem;
        /* Slightly smaller for SP */
        line-height: 1.3 !important;
        /* Tighter for SP */
        margin-bottom: 20px !important;
    }

    .message-body {
        font-size: 1rem;
        line-height: 1.3 !important;
        /* Tighter for SP */
    }
}

/ *   R e v a m p e d   S t i c k y   F o o t e r   C T A   * /     # s t i c k y - f o o t e r    {
                 p o s i t i o n :    f i x e d ;
                 b o t t o m :    0 ;
                 l e f t :    0 ;
                 w i d t h :    1 0 0 % ;
                 z - i n d e x :    9 9 9 9 ;
                 / *   H i g h   Z - i n d e x   * /             p a d d i n g :    0 ;
                 b a c k g r o u n d :    t r a n s p a r e n t ;
                 p o i n t e r - e v e n t s :    n o n e ;
                 d i s p l a y :    n o n e ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 a l i g n - i t e m s :    f l e x - e n d ;
         
}

         # s t i c k y - f o o t e r . i s - v i s i b l e    {
                 d i s p l a y :    f l e x ;
         
}

         . s t i c k y - c o n t a i n e r    {
                 p o s i t i o n :    r e l a t i v e ;
                 w i d t h :    1 0 0 % ;
                 m a x - w i d t h :    6 0 0 p x ;
                 / *   M o b i l e   f o c u s e d   m a x   w i d t h   * /             p o i n t e r - e v e n t s :    a u t o ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 5 ) ;
                 b o r d e r - t o p :    1 p x   s o l i d   # e e e ;
                 b o x - s h a d o w :    0   - 4 p x   1 5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 ) ;
                 p a d d i n g :    1 0 p x   1 5 p x   1 5 p x ;
                 / *   T o p   L / R   B o t t o m   * /             b o x - s i z i n g :    b o r d e r - b o x ;
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 a l i g n - i t e m s :    c e n t e r ;
         
}

         . s t i c k y - b a d g e    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    - 1 5 p x ;
                 b a c k g r o u n d :    # f f 4 d 4 d ;
                 c o l o r :    w h i t e ;
                 f o n t - s i z e :    0 . 8 5 r e m ;
                 f o n t - w e i g h t :    b o l d ;
                 p a d d i n g :    4 p x   1 6 p x ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 2 ) ;
                 l e t t e r - s p a c i n g :    0 . 0 5 e m ;
         
}

         . s t i c k y - b t n - r e s e r v e    {
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 w i d t h :    1 0 0 % ;
                 b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    # 0 0 b 8 9 4 ,    # 0 0 a 3 8 3 ) ;
                 c o l o r :    w h i t e    ! i m p o r t a n t ;
                 t e x t - d e c o r a t i o n :    n o n e ;
                 b o r d e r - r a d i u s :    8 p x ;
                 p a d d i n g :    1 2 p x   0 ;
                 b o x - s h a d o w :    0   4 p x   1 0 p x   r g b a ( 0 ,    1 8 4 ,    1 4 8 ,    0 . 3 ) ;
                 t r a n s i t i o n :    t r a n s f o r m   0 . 2 s ,    b o x - s h a d o w   0 . 2 s ;
         
}

         . s t i c k y - b t n - r e s e r v e : a c t i v e    {
                 t r a n s f o r m :    s c a l e ( 0 . 9 8 ) ;
         
}

         . s t i c k y - m a i n - t e x t - l a r g e    {
                 f o n t - s i z e :    1 . 2 5 r e m ;
                 f o n t - w e i g h t :    b o l d ;
                 l i n e - h e i g h t :    1 . 3 ;
                 l e t t e r - s p a c i n g :    0 . 0 5 e m ;
                 d i s p l a y :    b l o c k ;
         
}

         . s t i c k y - s u b - t e x t - s m a l l    {
                 f o n t - s i z e :    0 . 7 5 r e m ;
                 o p a c i t y :    0 . 9 5 ;
                 m a r g i n - t o p :    2 p x ;
                 d i s p l a y :    b l o c k ;
                 f o n t - w e i g h t :    n o r m a l ;
         
}

     / *   S t i c k y   C T A   U p d a t e :   F u l l   W i d t h   &   S p e e c h   B u b b l e   * /     . s t i c k y - c o n t a i n e r    {
                 m a x - w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 / *   F u l l   w i d t h   * /             w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 p a d d i n g :    1 0 p x   1 0 p x   1 5 p x    ! i m p o r t a n t ;
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 8 )    ! i m p o r t a n t ;
         
}

         . s t i c k y - b a d g e    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    - 2 4 p x    ! i m p o r t a n t ;
                 / *   M o v e   h i g h e r   * /             b a c k g r o u n d :    # f f 4 d 4 d ;
                 c o l o r :    w h i t e ;
                 f o n t - s i z e :    0 . 9 r e m    ! i m p o r t a n t ;
                 / *   L a r g e r   f o n t   * /             p a d d i n g :    6 p x   1 8 p x    ! i m p o r t a n t ;
                 b o x - s h a d o w :    0   4 p x   8 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 2 5 ) ;
                 z - i n d e x :    1 0 0 0 0 ;
         
}

         / *   S p e e c h   B u b b l e   T r i a n g l e   * /     . s t i c k y - b a d g e : : a f t e r    {
                 c o n t e n t :    ' '  ;
                 p o s i t i o n :    a b s o l u t e ;
                 b o t t o m :    - 6 p x ;
                 l e f t :    5 0 % ;
                 t r a n s f o r m :    t r a n s l a t e X ( - 5 0 % ) ;
                 b o r d e r - w i d t h :    6 p x   6 p x   0 ;
                 b o r d e r - s t y l e :    s o l i d ;
                 b o r d e r - c o l o r :    # f f 4 d 4 d   t r a n s p a r e n t   t r a n s p a r e n t   t r a n s p a r e n t ;
         
}

         . s t i c k y - b t n - r e s e r v e    {
                 b o r d e r - r a d i u s :    6 p x    ! i m p o r t a n t ;
                 / *   S l i g h t l y   s h a r p e r   f o r   f u l l   w i d t h   f e e l   * /             b a c k g r o u n d :    l i n e a r - g r a d i e n t ( 1 3 5 d e g ,    # 0 0 b 8 9 4 ,    # 0 0 8 f 7 2 )    ! i m p o r t a n t ;
         
}

         . s t i c k y - m a i n - t e x t - l a r g e    {
                 f o n t - s i z e :    1 . 3 r e m    ! i m p o r t a n t ;
                 / *   L a r g e r   * /     
}

     / *   C T A   F I X   V 3 :   F o r c e   F u l l   W i d t h   &   P r o p e r   B u b b l e   * /         # s t i c k y - f o o t e r    {
                 p a d d i n g :    0    ! i m p o r t a n t ;
                 / *   R e m o v e   p a r e n t   p a d d i n g   t o   a l l o w   f u l l   w i d t h   * /             w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 b o t t o m :    0    ! i m p o r t a n t ;
                 l e f t :    0    ! i m p o r t a n t ;
         
}

         . s t i c k y - c o n t a i n e r    {
                 w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 m a x - w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 b o r d e r - r a d i u s :    0    ! i m p o r t a n t ;
                 / *   s m o o t h   e d g e   t o   e d g e   * /             p a d d i n g :    1 5 p x   1 5 p x   2 0 p x    ! i m p o r t a n t ;
                 / *   I n t e r n a l   p a d d i n g   * /             b o x - s h a d o w :    0   - 5 p x   2 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 5 )    ! i m p o r t a n t ;
                 m a r g i n :    0    ! i m p o r t a n t ;
                 b o r d e r :    n o n e    ! i m p o r t a n t ;
                 o v e r f l o w :    v i s i b l e    ! i m p o r t a n t ;
                 / *   A l l o w   b a d g e   t o   s t i c k   o u t   * /     
}

         / *   B a d g e :   R e d   S p e e c h   B u b b l e   * /     . s t i c k y - b a d g e    {
                 p o s i t i o n :    a b s o l u t e    ! i m p o r t a n t ;
                 t o p :    - 3 5 p x    ! i m p o r t a n t ;
                 / *   F l o a t   w e l l   a b o v e   * /             l e f t :    5 0 %    ! i m p o r t a n t ;
                 t r a n s f o r m :    t r a n s l a t e X ( - 5 0 % )    ! i m p o r t a n t ;
                 b a c k g r o u n d :    # f f 0 0 0 0    ! i m p o r t a n t ;
                 / *   P u r e   R e d   f o r   u r g e n c y   * /             c o l o r :    # f f f    ! i m p o r t a n t ;
                 f o n t - w e i g h t :    b o l d    ! i m p o r t a n t ;
                 f o n t - s i z e :    1 4 p x    ! i m p o r t a n t ;
                 p a d d i n g :    8 p x   2 0 p x    ! i m p o r t a n t ;
                 b o r d e r - r a d i u s :    5 0 p x    ! i m p o r t a n t ;
                 / *   P i l l   s h a p e   * /             b o x - s h a d o w :    0   4 p x   1 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 3 )    ! i m p o r t a n t ;
                 w h i t e - s p a c e :    n o w r a p    ! i m p o r t a n t ;
                 z - i n d e x :    1 0 0 0 2    ! i m p o r t a n t ;
                 d i s p l a y :    b l o c k    ! i m p o r t a n t ;
         
}

         / *   T h e   l i t t l e   t r i a n g l e   a t   t h e   b o t t o m   o f   t h e   b a d g e   * /     . s t i c k y - b a d g e : : a f t e r    {
                 c o n t e n t :    ' '     ! i m p o r t a n t ;
                 p o s i t i o n :    a b s o l u t e    ! i m p o r t a n t ;
                 b o t t o m :    - 8 p x    ! i m p o r t a n t ;
                 / *   P u s h   d o w n   * /             l e f t :    5 0 %    ! i m p o r t a n t ;
                 t r a n s f o r m :    t r a n s l a t e X ( - 5 0 % )    ! i m p o r t a n t ;
                 w i d t h :    0    ! i m p o r t a n t ;
                 h e i g h t :    0    ! i m p o r t a n t ;
                 b o r d e r - l e f t :    8 p x   s o l i d   t r a n s p a r e n t    ! i m p o r t a n t ;
                 b o r d e r - r i g h t :    8 p x   s o l i d   t r a n s p a r e n t    ! i m p o r t a n t ;
                 b o r d e r - t o p :    8 p x   s o l i d   # f f 0 0 0 0    ! i m p o r t a n t ;
                 / *   R e d   t r i a n g l e   p o i n t i n g   d o w n   * /             z - i n d e x :    1 0 0 0 2    ! i m p o r t a n t ;
         
}

         . s t i c k y - b t n - r e s e r v e    {
                 w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 m a x - w i d t h :    1 0 0 %    ! i m p o r t a n t ;
                 b o x - s i z i n g :    b o r d e r - b o x    ! i m p o r t a n t ;
                 b o r d e r - r a d i u s :    5 0 p x    ! i m p o r t a n t ;
                 / *   R o u n d   b u t t o n   i n s i d e   s q u a r e   c o n t a i n e r   l o o k s   m o d e r n ,
       o r   u s e   0   f o r   b a r ?   U s e r   s a i d   ' f u l l   w i d t h   o f   f r a m e '    u s u a l l y   m e a n s   s t a n d a r d   b u t t o n   b u t   f r a m e   i s   w i d e .   L e t ' s   k e e p   b u t t o n   s l i g h t l y   g r o u n d e d   o r   f u l l .   * / 
            / *   U s e r   s a i d   " H o r i z o n t a l   f r a m e   f u l l "  .   * /             / *   L e t ' s   m a k e   t h e   B U T T O N   f i l l   t h e   c o n t a i n e r ,   a n d   t h e   C O N T A I N E R   f i l l   t h e   s c r e e n .   * / 
            b o r d e r - r a d i u s :    8 p x    ! i m p o r t a n t ;
                 / *   S t a n d a r d   a e s t h e t i c   * /             p a d d i n g :    1 5 p x   0    ! i m p o r t a n t ;
         
}

         . s t i c k y - m a i n - t e x t - l a r g e    {
                 f o n t - s i z e :    2 0 p x    ! i m p o r t a n t ;
                 d i s p l a y :    i n l i n e - b l o c k    ! i m p o r t a n t ;
         
}

     
/* ====================================================
   FINAL CTA FIX (V5): Full Width, Red Bubble, GOLD COLOR
   ==================================================== */

/* 1. Reset Parent Container */
#sticky-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    pointer-events: none;
    /* Allow clicks through empty areas if any */
    display: none;
    /* Toggled by JS */
    justify-content: center !important;
    align-items: flex-end !important;
}

#sticky-footer.is-visible {
    display: flex !important;
}

/* 2. Full Width Container */
.sticky-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-top: 1px solid #ddd !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15) !important;
    padding: 20px 15px 20px !important;
    /* Top padding creates space for badge */
    margin: 0 !important;
    border-radius: 0 !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
    /* CRITICAL for badge visibility */
}

/* 3. Red Speech Bubble Badge */
.sticky-badge {
    position: absolute !important;
    top: -20px !important;
    /* Floats above container */
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #E8A7B8 !important;
    /* Urgent Red */
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    white-space: nowrap !important;
    z-index: 10002 !important;
    display: block !important;
    line-height: 1.2 !important;
}

/* Triangle for Speech Bubble */
.sticky-badge::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 6px solid transparent !important;
    border-right: 6px solid transparent !important;
    border-top: 6px solid #E8A7B8 !important;
}

/* 4. Button Design - GOLD UPDATE */
.sticky-btn-reserve {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    /* Brand Gold */
    background: #B08D55 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    padding: 12px 0 !important;
    box-shadow: 0 4px 10px rgba(176, 141, 85, 0.4) !important;
    transition: transform 0.2s, background 0.3s !important;
}

.sticky-btn-reserve:hover {
    background: #a3864d !important;
    /* Darker Gold Hover */
}

.sticky-btn-reserve:active {
    transform: scale(0.98) !important;
}

/* 5. Typography */
.sticky-main-text-large {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
    display: block !important;
}

.sticky-sub-text-small {
    font-size: 0.75rem !important;
    opacity: 0.95 !important;
    display: block !important;
    font-weight: normal !important;
    margin-top: 2px !important;
}