/* Plan Page Specific Styles */

.page-header {
    margin-top: 0;
    padding-top: 120px; /* Header height offset + extra spacing */
    padding-bottom: 60px;
    background-color: var(--color-bg-teal);
    text-align: center;
}

.page-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-title);
    letter-spacing: 0.1em;
}

.price-section {
    padding: 60px 0;
}

.price-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 15px auto 0;
}

.price-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Centered, Elegant 3-Line Layout */
.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    gap: 24px;
}

.price-item:last-child {
    border-bottom: none;
}

.menu-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-title);
    line-height: 1.4;
    width: 100%;
}

/* Line 2: Duration & Main Price Pairs */
.price-row-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 32px;
    /* Row gap 12px, Column gap 32px */
    width: 100%;
    color: var(--color-title);
    font-family: var(--font-en);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Group Time and Price as one unit (e.g. 70min ¥18,000) */
.price-pair {
    white-space: nowrap;
}

/* Line 3: Repeater Price */
.price-row-sub {
    font-size: 0.95rem;
    color: #888;
    font-family: var(--font-jp);
}

/* Separator for pairs (e.g., / ) */
.pair-separator {
    display: inline-block;
    color: #ccc;
    font-weight: 300;
}

/* Hide separator on very small screens if wrapped */
@media (max-width: 480px) {
    .pair-separator {
        display: none;
    }

    .price-row-main {
        flex-direction: column;
        gap: 8px;
    }
}

.price-note {
    font-size: 0.85rem;
    font-weight: normal;
    color: #999;
    display: block;
    margin-top: 8px;
    line-height: 1.4;
}

/* Highlight Box for Main Menu */
.highlight-box {
    background: #fff;
    border: 1px solid var(--color-accent);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
}