/* Luna Fortune Salon - Foreign Page PC Styles (768px and above) */
/* このCSSはforeign/index.phpのみに適用されます */

/* Reset & Base - scoped to body to avoid affecting other pages */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #3B3028;
    background-color: #FAF8F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #3B3028;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Utility Classes */
.text-accent {
    color: #C9A56A;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-white {
    background-color: #ffffff;
}

.section-beige {
    background-color: #F5F1EC;
}

.section-cta {
    background-color: #C9A56A;
    color: white;
    text-align: center;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #8B7355;
    margin-top: 1rem;
}

.section-text {
    font-size: 1.125rem;
    color: #6B5D52;
    line-height: 1.8;
    max-width: 800px;
    margin: 2rem auto 0;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Section Dividers */
.section-divider-single {
    width: 4rem;
    height: 1px;
    background-color: #C9A56A;
    margin: 0 auto;
}

.section-divider-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.divider-line {
    width: 4rem;
    height: 1px;
    background-color: #C9A56A;
}

.divider-icon {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.divider-icon.star-small::before {
    content: "★";
    color: #C9A56A;
    font-size: 12px;
}

.divider-icon.moon-small::before {
    content: "☾";
    color: #C9A56A;
    font-size: 14px;
}

.divider-icon.sparkles-small::before {
    content: "✨";
    font-size: 12px;
    filter: grayscale(1) brightness(0.7);
}

/* Decorative Elements */
.section-decorative {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.section-decorative.star-top-right {
    top: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
}

.section-decorative.sparkles-bottom-left {
    bottom: 5rem;
    left: 2.5rem;
    width: 3rem;
    height: 3rem;
}

.section-decorative.floating-moon-left {
    top: 5rem;
    left: 1.25rem;
    width: 5rem;
    height: 5rem;
}

/* Buttons */
.btn-primary,
.btn-hero,
.btn-cta,
.btn-map {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #C9A56A;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #B8935A;
    transform: scale(1.02);
}

.btn-hero {
    background-color: #C9A56A;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background-color: #B8935A;
    transform: scale(1.02);
}

.btn-cta {
    background-color: white;
    color: #C9A56A;
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.btn-map {
    width: 100%;
    background-color: #C9A56A;
    color: white;
    margin-top: 2rem;
}

.btn-map:hover {
    background-color: #B8935A;
    transform: scale(1.02);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.main-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-img {
    height: 3rem;
    width: auto;
    transition: 0.2s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    color: #6B5D52;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: 0.2s ease;
}

.nav-link:hover {
    color: #C9A56A;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: #C9A56A;
    transition: 0.3s ease;
}

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

.desktop-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(250, 248, 245, 0.5),
        rgba(250, 248, 245, 0.7),
        rgba(250, 248, 245, 1)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.hero-divider {
    width: 4rem;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #C9A56A,
        transparent
    );
    margin: 0 auto 1.5rem;
}

.hero-location {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8B7355;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #3B3028;
    margin-bottom: 2rem;
}

.hero-title-accent {
    color: #C9A56A;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6B5D52;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Floating decorative elements */
.floating-star,
.floating-moon,
.floating-sparkles {
    position: absolute;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.floating-star {
    top: 5rem;
    left: 2.5rem;
    width: 2rem;
    height: 2rem;
}

.floating-star::before {
    content: "★";
    color: #C9A56A;
    font-size: 2rem;
}

.floating-moon {
    top: 10rem;
    right: 5rem;
    width: 3rem;
    height: 3rem;
    animation-delay: 1s;
    animation-duration: 8s;
}

.floating-moon::before {
    content: "☾";
    color: #C9A56A;
    font-size: 3rem;
}

.floating-sparkles {
    bottom: 8rem;
    left: 25%;
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: 2s;
    animation-duration: 10s;
}

.floating-sparkles::before {
    content: "✨";
    font-size: 1.5rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.8s ease-out 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, #C9A56A, transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Fortune Teller Card */
.fortune-teller-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: white;
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fortune-teller-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #F5F1EC;
}

.fortune-teller-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.fortune-teller-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.badge {
    display: inline-block;
    width: fit-content;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(201, 165, 106, 0.1);
    border: 1px solid rgba(201, 165, 106, 0.2);
    color: #C9A56A;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.fortune-teller-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.fortune-teller-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #8B7355;
    margin-bottom: 1.5rem;
}

.fortune-teller-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #6B5D52;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #F5F1EC;
    transition: 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #C9A56A;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.125rem;
    color: #6B5D52;
    margin: 0;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: white;
    transition: 0.3s ease;
}

.topic-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.topic-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.topic-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.topic-desc {
    color: #8B7355;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #F5F1EC;
    text-align: center;
    transition: 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card-popular {
    background-color: #C9A56A;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background-color: #3B3028;
    font-size: 0.75rem;
    color: white;
}

.pricing-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 1.5rem;
    color: #C9A56A;
}

.pricing-card-popular .pricing-icon {
    color: white;
}

.pricing-time {
    margin-bottom: 0.75rem;
}

.pricing-time-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #3B3028;
}

.pricing-card-popular .pricing-time-number {
    color: white;
}

.pricing-time-unit {
    margin-left: 0.5rem;
    color: #8B7355;
}

.pricing-card-popular .pricing-time-unit {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 500;
    color: #C9A56A;
}

.pricing-card-popular .pricing-price {
    color: white;
}

.pricing-note {
    text-align: center;
    color: #8B7355;
    font-size: 1.125rem;
    margin-top: 2.5rem;
}

/* CTA Section */
.cta-icon {
    width: 3rem;
    height: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Access Grid */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.access-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-card {
    padding: 2.5rem;
    border-radius: 1rem;
    background-color: #F5F1EC;
}

.access-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #6B5D52;
}

.access-detail-border {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 165, 106, 0.2);
}

.access-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.access-value {
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
}

/* Notes Card */
.notes-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.note-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #C9A56A;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.note-item p {
    font-size: 1.125rem;
    color: #6B5D52;
    margin: 0;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: white;
    border-top: 1px solid #F5F1EC;
    text-align: center;
}

.footer-divider {
    width: 4rem;
    height: 1px;
    background-color: #C9A56A;
    margin: 0 auto 1.5rem;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #6B5D52;
    margin-bottom: 0.5rem;
}

.footer-moon {
    font-size: 1.5rem;
    color: #C9A56A;
}

/* ============================================================
   Booking & Cancel Form Styles
   ============================================================ */

/* Form wrapper */
.booking-form-wrap {
    max-width: 780px;
    margin: 0 auto;
    background-color: #FAF8F5;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    overflow: hidden;
}

/* Form group - table-like row layout */
.booking-form-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 165, 106, 0.15);
    padding: 1rem 0;
}

.booking-form-group:last-of-type {
    border-bottom: none;
}

/* Label column */
.booking-label {
    flex: 0 0 200px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3B3028;
    padding-right: 1.5rem;
}

.booking-label .required {
    color: #C9A56A;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Input / Select column */
.booking-input,
.booking-select {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 0.5rem;
    background-color: #ffffff;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: #3B3028;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-input:focus,
.booking-select:focus {
    border-color: #C9A56A;
    box-shadow: 0 0 0 3px rgba(201, 165, 106, 0.15);
}

.booking-input::placeholder {
    color: #B8A99A;
}

/* Select arrow */
.booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A56A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Two-column row (Name fields, Hour/Min) */
.booking-form-row {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 165, 106, 0.15);
    padding: 1rem 0;
}

.booking-form-row .booking-form-group {
    border-bottom: none;
    padding: 0;
}

.booking-form-row .booking-form-group .booking-label {
    flex: 0 0 auto;
    min-width: 0;
    padding-right: 0.75rem;
}

.booking-form-half {
    flex: 1;
    min-width: 0;
}

/* Radio group */
.booking-radio-group {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.booking-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #6B5D52;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.booking-radio-label:hover {
    color: #C9A56A;
}

.booking-radio-label input[type="radio"] {
    accent-color: #C9A56A;
    width: 1rem;
    height: 1rem;
}

/* Submit area */
.booking-form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 165, 106, 0.15);
}

.booking-submit-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 9999px;
    background-color: #C9A56A;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-submit-btn:hover:not(:disabled) {
    background-color: #B8935A;
    transform: scale(1.02);
}

.booking-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Note text */
.booking-note {
    text-align: center;
    font-size: 0.875rem;
    color: #8B7355;
    margin-top: 1.25rem;
}

.booking-note-small {
    font-size: 0.8125rem;
    color: #8B7355;
    margin-top: 0.5rem;
    padding-left: 200px;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Loading spinner */
.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: #8B7355;
}

.booking-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid rgba(201, 165, 106, 0.2);
    border-top-color: #C9A56A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================================
   Booking Ajax Steps (Calendar, Customer Info, Confirmation)
   ============================================================ */

/* Step header */
.booking-step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #3B3028;
    margin-bottom: 0.75rem;
}

.booking-step-desc {
    font-size: 0.9375rem;
    color: #8B7355;
}

/* Calendar table */
.booking-calendar-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 0.75rem;
}

.booking-calendar {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: center;
}

.booking-calendar thead {
    background-color: #FAF8F5;
}

.booking-calendar th,
.booking-calendar td {
    padding: 0.625rem 0.5rem;
    border: 1px solid rgba(201, 165, 106, 0.15);
}

.booking-calendar th {
    font-weight: 500;
    color: #3B3028;
}

.calendar-header-label {
    background-color: #C9A56A;
    color: #ffffff;
    font-weight: 500;
    min-width: 60px;
}

.calendar-month td {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C9A56A;
    background-color: #FAF8F5;
}

.calendar-date td {
    font-weight: 500;
    color: #3B3028;
}

.calendar-date td.sun {
    color: #D4726A;
}

.calendar-date td.sat {
    color: #5B8DB8;
}

.calendar-store td {
    font-size: 0.8125rem;
    color: #8B7355;
    background-color: #FAF8F5;
}

.time-label {
    font-weight: 500;
    color: #3B3028;
    background-color: #FAF8F5;
    min-width: 60px;
}

.slot-ok {
    background-color: #ffffff;
}

.slot-link {
    display: inline-block;
    width: 100%;
    color: #C9A56A;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.slot-link:hover {
    color: #B8935A;
    background-color: rgba(201, 165, 106, 0.1);
    border-radius: 0.25rem;
}

.slot-off {
    color: #D4D0CC;
}

.slot-closed {
    color: #D4726A;
    font-size: 0.875rem;
}

/* Customer form (Step 3) */
.booking-customer-form {
    max-width: 780px;
    margin: 0 auto;
    background-color: #FAF8F5;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    overflow: hidden;
}

/* Confirmation (Step 4 & 5) */
.booking-confirmation {
    max-width: 780px;
    margin: 0 auto 1.5rem;
    background-color: #FAF8F5;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
}

.booking-confirmation.booking-complete {
    border-color: #C9A56A;
    background-color: rgba(201, 165, 106, 0.05);
}

.booking-confirm-list {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
}

.booking-confirm-list dt {
    padding: 0.875rem 1rem;
    font-weight: 500;
    color: #3B3028;
    background-color: rgba(201, 165, 106, 0.08);
    border-bottom: 1px solid rgba(201, 165, 106, 0.15);
    font-size: 0.9375rem;
}

.booking-confirm-list dd {
    padding: 0.875rem 1rem;
    margin: 0;
    color: #6B5D52;
    border-bottom: 1px solid rgba(201, 165, 106, 0.15);
    font-size: 0.9375rem;
}

.booking-confirm-list dt:last-of-type,
.booking-confirm-list dd:last-of-type {
    border-bottom: none;
}

/* Navigation buttons */
.booking-nav {
    max-width: 780px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(201, 165, 106, 0.3);
    border-radius: 9999px;
    background-color: #ffffff;
    color: #8B7355;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    border-color: #C9A56A;
    color: #C9A56A;
}

/* Thank you message */
.booking-thankyou {
    text-align: center;
    font-size: 1rem;
    color: #6B5D52;
    line-height: 1.8;
    padding: 1rem 0;
}

/* Cancel Toggle Button */
.cancel-toggle-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.cancel-toggle-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    background-color: transparent;
    color: #8B7355;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: 1px solid rgba(201, 165, 106, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.cancel-toggle-btn:hover {
    border-color: #C9A56A;
    color: #C9A56A;
    background-color: rgba(201, 165, 106, 0.05);
}

.cancel-toggle-btn.active {
    border-color: #C9A56A;
    color: #C9A56A;
}

.cancel-form-area {
    animation: fadeIn 0.4s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* ============================================================
   Responsive: PC -> SP (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

    /* --- Sections --- */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .section-text {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .section-divider-single {
        width: 3rem;
    }

    .divider-line {
        width: 3rem;
    }

    /* --- Navigation --- */
    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }

    .logo-img {
        height: 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
        padding: 0.5rem;
        color: #6B5D52;
        transition: 0.2s ease;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .hamburger {
        display: block;
        width: 1.5rem;
        height: 14px;
        position: relative;
        background: transparent;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        transition: 0.2s ease;
    }

    .hamburger::before {
        top: 0;
        box-shadow: 0 6px 0 currentColor;
    }

    .hamburger::after {
        bottom: 0;
    }

    .mobile-menu-btn.active .hamburger::before {
        top: 6px;
        transform: rotate(45deg);
        box-shadow: none;
    }

    .mobile-menu-btn.active .hamburger::after {
        bottom: 6px;
        transform: rotate(-45deg);
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        z-index: 999;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .mobile-nav-link {
        font-size: 1.125rem;
        color: #6B5D52;
        transition: 0.2s ease;
        padding: 0.5rem 0;
    }

    .mobile-cta {
        margin-top: 1rem;
        padding: 1rem 2rem;
        text-align: center;
    }

    /* --- Hero --- */
    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-divider {
        width: 3rem;
        margin: 0 auto 1rem;
    }

    .hero-location {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .floating-star,
    .floating-moon,
    .floating-sparkles {
        display: none;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .scroll-line {
        height: 2rem;
    }

    /* --- Fortune Teller --- */
    .fortune-teller-card {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .fortune-teller-content {
        padding: 0;
    }

    .fortune-teller-name {
        font-size: 2rem;
    }

    .fortune-teller-tagline {
        font-size: 1.125rem;
    }

    /* --- Features Grid --- */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    /* --- Topics Grid --- */
    .topics-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .topic-item {
        padding: 1.5rem;
    }

    .topic-icon {
        width: 2rem;
        height: 2rem;
    }

    .topic-title {
        font-size: 1.125rem;
    }

    /* --- Pricing Grid --- */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 1rem;
    }

    .pricing-time-number {
        font-size: 2.5rem;
    }

    .pricing-price {
        font-size: 1.5rem;
    }

    .pricing-note {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    /* --- CTA Section --- */
    .cta-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    /* --- Access Grid --- */
    .access-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .access-map {
        height: 300px;
        border-radius: 0.75rem;
    }

    .access-card {
        padding: 2rem;
    }

    .access-card-title {
        font-size: 1.25rem;
    }

    .access-value {
        font-size: 1rem;
    }

    /* --- Notes Card --- */
    .notes-card {
        gap: 1.25rem;
        padding: 2rem;
    }

    .note-item {
        gap: 1rem;
    }

    .note-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .note-item p {
        font-size: 1rem;
    }

    /* --- Footer --- */
    .footer {
        padding: 3rem 0;
    }

    .footer-text {
        font-size: 1.25rem;
    }

    .footer-moon {
        font-size: 1.25rem;
    }

    /* --- Booking & Cancel Forms --- */
    .booking-form-wrap {
        max-width: none;
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .booking-form-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .booking-label {
        flex: none;
        font-size: 0.875rem;
        padding-right: 0;
    }

    .booking-input,
    .booking-select {
        width: 100%;
        font-size: 1rem;
    }

    .booking-form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form-row .booking-form-group {
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(201, 165, 106, 0.15);
    }

    .booking-form-row .booking-form-group:last-child {
        border-bottom: none;
    }

    .booking-form-row .booking-form-group .booking-label {
        flex: none;
        padding-right: 0;
    }

    .booking-radio-group {
        flex-wrap: wrap;
    }

    .booking-radio-label {
        white-space: normal;
    }

    .booking-note-small {
        padding-left: 0;
    }

    .booking-submit-btn {
        width: 100%;
        max-width: 320px;
    }

    /* --- Booking Ajax Steps --- */
    .booking-customer-form {
        max-width: none;
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .booking-confirmation {
        max-width: none;
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .booking-confirm-list {
        grid-template-columns: 1fr;
    }

    .booking-confirm-list dt {
        padding: 0.625rem 0.75rem 0.25rem;
        font-size: 0.8125rem;
        color: #8B7355;
        background-color: transparent;
        border-bottom: none;
    }

    .booking-confirm-list dd {
        padding: 0.25rem 0.75rem 0.625rem;
        font-size: 0.9375rem;
    }

    .booking-nav {
        max-width: none;
        flex-direction: column;
        align-items: center;
    }

    .btn-back {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        order: 2;
    }

    .booking-nav .booking-submit-btn {
        order: 1;
    }

    .booking-step-title {
        font-size: 1.5rem;
    }

    .booking-step-desc {
        font-size: 0.875rem;
    }

    .booking-calendar {
        min-width: 500px;
        font-size: 0.75rem;
    }

    .booking-calendar th,
    .booking-calendar td {
        padding: 0.5rem 0.375rem;
    }

    .calendar-header-label {
        min-width: 48px;
    }

    .slot-link {
        font-size: 0.875rem;
    }

    .booking-thankyou {
        font-size: 0.9375rem;
    }

    /* Decorative elements */
    .section-decorative {
        opacity: 0.05;
    }
}
