/* =============================================
   SiapTour — Accommodation Styles
   Archive page, single page, booking sidebar
   CSS variable-driven
   ============================================= */
/* =============================================
   1. FILTERS — Trigger Button + Dropdown
   ============================================= */
.acc-filters {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.acc-filters__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: var(--secondary-size);
    font-weight: 700;
    color: var(--heading-color);
    background: var(--bg-color);
    border: 1px solid rgba(var(--heading-color-rgb), 0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}
.acc-filters__trigger:hover,
.acc-filters__trigger.is-active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.acc-filters__trigger svg {
    width: 18px;
    height: 18px;
}
.acc-filters__badge {
    background: var(--primary-color);
    color: var(--cta-text-color);
    font-size: var(--xs-size);
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.acc-filters__reset {
    padding: 8px 16px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    transition: all 0.2s;
}
.acc-filters__reset:hover {
    color: var(--primary-color);
    opacity: 1;
}
/* Active Filter Chips */
.acc-filters__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.acc-filters__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--body-font);
}
.acc-filters__chip:hover {
    background: rgba(var(--primary-color-rgb), 0.15);
    border-color: var(--primary-color);
}
.acc-filters__chip-label {
    font-size: var(--xs-size);
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.5;
}
.acc-filters__chip-close {
    font-size: var(--button-size);
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.acc-filters__chip:hover .acc-filters__chip-close {
    opacity: 1;
}
/* Dropdown — moved to components.css */
.acc-filters__group {
    margin-bottom: 16px;
}
.acc-filters__group:last-child {
    margin-bottom: 0;
}
.acc-filters__label {
    display: block;
    font-size: var(--xs-size);
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.acc-filters__tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.acc-filters .filter-tab {
    padding: 7px 16px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--heading-color);
    background: rgba(var(--heading-color-rgb), 0.04);
    border: 1px solid rgba(var(--heading-color-rgb), 0.08);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}
.acc-filters .filter-tab:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
    color: var(--primary-color);
}
.acc-filters .filter-tab--active {
    background: var(--primary-color);
    color: var(--cta-text-color);
    border-color: var(--primary-color);
}
.acc-filters .filter-tab--active:hover {
    background: var(--primary-color);
    color: var(--cta-text-color);
    filter: brightness(1.1);
}
/* Place Select */
.acc-filters__select {
    display: block;
    width: 100%;
    padding: 8px 32px 8px 12px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--heading-color);
    background: rgba(var(--heading-color-rgb), 0.02);
    border: 1px solid rgba(var(--heading-color-rgb), 0.1);
    border-radius: 8px;
    font-family: var(--body-font);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    transition: border-color 0.3s ease;
}
.acc-filters__select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.acc-filters__select option {
    background: var(--bg-color);
}
/* =============================================
   2. GRID — 3 Column Archive
   ============================================= */
.acc-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.acc-card.is-hidden {
    display: none;
}
/* =============================================
   3. CARD — Extends .tour-card (loaded from tour.css)
   Only card-specific overrides + dual button styles
   ============================================= */
/* Filter visibility */
.acc-card.is-hidden {
    display: none;
}
/* Dual button row: View Details + WA icon */
.acc-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.acc-card__actions .tour-card__btn {
    flex: 1;
}
.acc-card__wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
    padding: 8px;
    color: var(--wa-color);
    background: rgba(var(--wa-color-rgb), 0.08);
    border: 1px solid rgba(var(--wa-color-rgb), 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.acc-card__wa-icon svg {
    width: 18px;
    height: 18px;
}
.acc-card__wa-icon:hover {
    background: var(--wa-color);
    color: var(--cta-text-color);
    border-color: var(--wa-color);
}
/* Remove old acc-card standalone styles — now using .tour-card classes */
/* Old acc-card standalone styles removed — now using .tour-card classes
   Only keeping: .acc-card.is-hidden, .acc-card__actions, .acc-card__wa-icon, .acc-card__wa-full
   (defined above)
*/
/* (old card styles removed) */
/* =============================================
   4. SINGLE PAGE LAYOUT
   ============================================= */
.acc-single {
    max-width: var(--content-max-width, 1200px);
    margin: 0 auto;
    padding: 32px 0;
}
.acc-single__header {
    margin-bottom: 32px;
}
.acc-single__title {
    font-size: var(--h2-size);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.2;
}
.acc-single__place-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.08);
    border: 1px solid rgba(var(--primary-color-rgb), 0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}
.acc-single__place-badge:hover {
    background: rgba(var(--primary-color-rgb), 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.acc-single__place-badge svg {
    width: 14px;
    height: 14px;
}
.acc-single__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.acc-single__spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: var(--xs-size);
    font-weight: 600;
    color: var(--text-color);
    background: rgba(var(--heading-color-rgb), 0.04);
    border: 1px solid rgba(var(--heading-color-rgb), 0.08);
    border-radius: 50px;
}
.acc-single__spec-badge svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}
.acc-single-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 60px;
}
.acc-single__content {
    min-width: 0;
    overflow-x: hidden;
}
.acc-single__sidebar {
    position: sticky;
    top: 100px;
}
/* =============================================
   5. TABS
   ============================================= */
.acc-tab__nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid rgba(var(--heading-color-rgb), 0.08);
    margin-bottom: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.acc-tab__nav::-webkit-scrollbar {
    display: none;
}
.acc-tab__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: var(--secondary-size);
    font-weight: 600;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    color: var(--text-color);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}
.acc-tab__btn:hover {
    color: var(--text-color);
}
.acc-tab__btn:hover svg {
    opacity: 0.8;
}
.acc-tab__btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.acc-tab__btn--active {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom-color: var(--primary-color);
}
.acc-tab__btn--active svg {
    opacity: 1;
    color: var(--primary-color);
}
.acc-tab__panel {
    display: none;
    overflow-x: hidden;
    word-wrap: break-word;
}
.acc-tab__panel--active {
    display: block;
    animation: accTabFadeIn 0.3s ease;
}
@keyframes accTabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* =============================================
   6. TAB: ROOM CONTENT — Facilities
   ============================================= */
.acc-facilities {
    list-style: none;
    margin: 0;
    padding: 0;
}
.acc-facilities__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--heading-color-rgb), 0.06);
    font-size: var(--secondary-size);
    color: var(--text-color);
}
.acc-facilities__item:last-child {
    border-bottom: none;
}
.acc-facilities__item--include::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(var(--success-color-rgb), 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.acc-facilities__item--exclude {
    opacity: 0.8;
}
.acc-facilities__name {
    flex: 1;
    min-width: 0;
}
.acc-facilities__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--small-size);
    color: var(--text-color);
    opacity: 0.5;
    text-align: right;
    flex-shrink: 0;
}
.acc-facilities__meta .scope {
    font-size: var(--xs-size);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}
.acc-facilities__meta .price {
    font-weight: 700;
    color: var(--primary-color);
    opacity: 1;
}
/* =============================================
   7. TAB: PLACE CONTENT
   ============================================= */
/* Place info: uses acc-single__place-info-* classes (defined in section 12) */
/* =============================================
   8. TAB: GALLERY
   ============================================= */
.acc-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.acc-gallery__item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.acc-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.acc-gallery__item:hover .acc-gallery__img {
    transform: scale(1.08);
}
/* =============================================
   9. BOOKING SIDEBAR
   ============================================= */
.acc-booking {
    background: var(--bg-color);
    border: 1px solid rgba(var(--heading-color-rgb), 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.acc-booking__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--h5-size);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(var(--heading-color-rgb), 0.08);
}
.acc-booking__title svg {
    color: var(--primary-color);
}
/* Price badges (compact inline) */
.acc-booking__price-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.acc-price-badge {
    flex: 1;
    background: rgba(var(--heading-color-rgb), 0.03);
    border: 1px solid rgba(var(--heading-color-rgb), 0.06);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}
.acc-price-badge__label {
    display: block;
    font-size: calc(var(--xs-size) - 1px);
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}
.acc-price-badge__value {
    display: block;
    font-size: calc(var(--small-size) - 1px);
    font-weight: 700;
    color: var(--heading-color);
    white-space: nowrap;
}
/* Form fields */
.acc-booking__field {
    margin-bottom: 14px;
}
.acc-booking__field label {
    display: block;
    font-size: var(--xs-size);
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.5;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.acc-booking__input,
.acc-booking__field input,
.acc-booking__field textarea,
.acc-booking__field select {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: var(--small-size);
    color: var(--heading-color);
    border: 1px solid rgba(var(--heading-color-rgb), 0.1);
    border-radius: 8px;
    background: rgba(var(--heading-color-rgb), 0.02);
    font-family: var(--body-font);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.acc-booking__input:focus,
.acc-booking__field input:focus,
.acc-booking__field textarea:focus,
.acc-booking__field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}
.acc-booking__field textarea {
    resize: vertical;
    min-height: 70px;
}
/* Select arrow */
select.acc-booking__input,
.acc-booking__field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    padding-right: 24px;
}
select.acc-booking__input option,
.acc-booking__field select option {
    background: var(--bg-color);
}
/* Date input styling */
.acc-booking__field input[type="date"] {
    padding-right: 12px;
}
.acc-booking__field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(0.4);
}
.acc-booking__date-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    pointer-events: none;
}
/* Day Breakdown Tags */
.acc-booking__breakdown {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    overflow: visible;
}
.acc-booking__breakdown-tag {
    position: relative;
    font-size: var(--xs-size);
    font-weight: 600;
    color: var(--heading-color);
    padding: 3px 8px;
    border-radius: 4px;
    cursor: help;
}
.acc-booking__breakdown-tag--active {
    background: rgba(var(--success-color-rgb), 0.1);
    color: var(--success-color);
}
.acc-booking__breakdown-tag--inactive {
    background: rgba(var(--heading-color-rgb), 0.04);
    color: var(--text-color);
    opacity: 0.5;
    cursor: default;
}
/* Tooltip */
.acc-booking__tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--heading-color);
    color: var(--bg-color);
    font-size: var(--xs-size);
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 100;
    line-height: 1.5;
    pointer-events: none;
}
.acc-booking__tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 12px;
    border: 5px solid transparent;
}
.acc-booking__breakdown-tag--active:hover .acc-booking__tooltip {
    display: block;
}
/* Addon styles now use .booking-addon-item from booking.css (shared with tour) */
/* Cost lines */
.acc-booking__cost-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--xs-size);
    color: var(--text-color);
    opacity: 0.5;
    padding: 3px 0;
}
.acc-booking__cost-line .label {
    flex: 1;
}
.acc-booking__cost-line .value {
    font-weight: 600;
    text-align: right;
}
/* Breakdown label inside tag */
.breakdown-label {
    font-size: inherit;
}
/* Grand total */
.acc-booking__grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 16px 0;
    border-top: 2px solid var(--heading-color);
    border-bottom: 2px solid var(--heading-color);
}
.acc-booking__grand-total .label {
    font-size: var(--body-size);
    font-weight: 800;
    color: var(--heading-color);
    text-transform: uppercase;
}
.acc-booking__grand-total .value {
    font-size: var(--h4-size);
    font-weight: 900;
    color: var(--primary-color);
}
/* Submit button */
.acc-booking__submit {
    width: 100%;
    padding: 14px;
    font-size: var(--body-size);
    font-weight: 700;
    color: var(--cta-text-color);
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}
.acc-booking__submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-color-rgb), 0.3);
}
.acc-booking__submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: none;
}
/* Messages */
.acc-booking__message {
    margin-top: 12px;
    font-size: var(--small-size);
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    min-height: 20px;
}
.acc-booking__message--success {
    color: var(--success-color);
}
.acc-booking__message--error {
    color: var(--error-color);
}
/* WA-only notice */
.acc-booking__wa-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: var(--small-size);
    line-height: 1.5;
    background: rgba(var(--heading-color-rgb), 0.03);
    border: 1px dashed rgba(var(--heading-color-rgb), 0.1);
    border-radius: 12px;
}
.acc-booking__wa-notice svg {
    flex-shrink: 0;
    opacity: 0.5;
}
/* WA button */
.acc-booking__wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-size: var(--body-size);
    font-weight: 700;
    color: var(--cta-text-color);
    background: var(--wa-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}
.acc-booking__wa-btn svg {
    width: 20px;
    height: 20px;
}
.acc-booking__wa-btn:hover {
    background: var(--wa-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--wa-color-rgb), 0.3);
    color: var(--cta-text-color);
}
/* =============================================
   10. RELATED ROOMS
   ============================================= */
.acc-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(var(--heading-color-rgb), 0.08);
}
.acc-related__title {
    font-size: var(--h3-size);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 24px;
}
.acc-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* =============================================
   11. RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    /* Single layout: 1 column */
    .acc-single-layout {
        grid-template-columns: 1fr;
        padding-top: 32px;
        padding-bottom: 48px;
    }
    .acc-single__sidebar {
        position: static;
    }
    .tour-facilities-grid {
        grid-template-columns: 1fr;
    }
    .acc-single__place-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Grid: 2 columns */
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Related: 2 columns */
    .acc-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Filter dropdown: full width */
    .acc-filters__dropdown {
        min-width: 0;
        left: 0;
        right: 0;
        max-width: none;
    }
    /* Grid: 1 column */
    .acc-grid {
        grid-template-columns: 1fr;
    }
    /* Gallery: 3 columns */
    .acc-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Tabs: match tour mobile — icon only */
    .acc-tab__btn {
        padding: 12px 14px;
        font-size: var(--small-size);
        gap: 6px;
    }
    .acc-tab__btn span {
        display: none;
    }
    .acc-tab__btn svg {
        width: 20px;
        height: 20px;
    }
    /* Single header */
    .acc-single__title {
        font-size: var(--h3-size);
    }
    .acc-single__place-info-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    /* Card actions: flex row */
    .acc-card__actions {
        flex-direction: row;
    }
    .acc-card__view-btn {
        flex: 1;
    }
    /* Ask button: icon only (hide text) */
    .acc-card__ask-btn {
        padding: 10px 12px;
        justify-content: center;
    }
    .acc-card__ask-btn .ask-text {
        display: none;
    }
    /* WA-only card: full width, show text */
    .acc-card__ask-btn--full {
        flex: 1;
        padding: 10px 20px;
    }
    .acc-card__ask-btn--full span {
        display: inline !important;
    }
    /* Gallery: 2 columns */
    .acc-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Booking fields: stack */
    .acc-booking__field + .acc-booking__field {
        margin-top: 10px;
    }
    /* Related: 1 column */
    .acc-related__grid {
        grid-template-columns: 1fr;
    }
}
/* =============================================
   12. SINGLE PAGE — Missing selectors
   (template uses acc-single-layout, acc-single__*, etc.)
   ============================================= */
/* Description */
.acc-single__description {
    line-height: 1.8;
    font-size: var(--body-size);
    color: var(--text-color);
    margin-bottom: 32px;
}
.acc-single__description p {
    margin-bottom: 16px;
}
/* Section title (used in facilities, video, gallery, map) */
.acc-single__section-title {
    font-size: var(--h5-size);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--heading-color-rgb), 0.08);
}
/* Facilities: uses tour-card CSS classes (tour-facilities-grid, facility-item, etc.) from tour.css */
/* Facility Term Tags */
.acc-single__facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acc-single__facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-sm, 6px);
    background: rgba(var(--primary-color-rgb, 99, 102, 241), 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.acc-single__facility-tag:hover {
    background: var(--primary-color);
    color: var(--cta-text-color, #fff);
}

.acc-single__facility-tag svg {
    flex-shrink: 0;
    color: currentColor;
}

/* Video */
.acc-single__video {
    margin-bottom: 32px;
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Place tab — image */
.acc-single__place-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}
.acc-single__place-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
/* Place description */
.acc-single__place-desc {
    line-height: 1.8;
    font-size: var(--body-size);
    color: var(--text-color);
    margin-bottom: 24px;
}
/* Place info grid */
.acc-single__place-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.acc-single__place-info-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(var(--heading-color-rgb), 0.02);
    border: 1px solid rgba(var(--heading-color-rgb), 0.06);
    border-radius: 10px;
    padding: 14px 16px;
}
.acc-single__place-info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.acc-single__place-info-label {
    display: block;
    font-size: var(--xs-size);
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.5;
    margin-bottom: 2px;
}
.acc-single__place-info-value {
    display: block;
    font-size: var(--secondary-size);
    font-weight: 700;
    color: var(--heading-color);
}
/* Place map */
.acc-single__place-map {
    margin-bottom: 28px;
}
.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
/* Place gallery */
.acc-single__place-gallery {
    margin-bottom: 28px;
}
/* Room gallery — no-gallery message */
.acc-single__no-gallery {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
    opacity: 0.5;
    font-size: var(--secondary-size);
}
/* Booking card wrapper */
.acc-booking__card {
    background: var(--bg-color);
    border: 1px solid rgba(var(--heading-color-rgb), 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow-x: hidden;
}
@media (max-width: 480px) {
    .acc-booking__card {
        padding: 16px;
    }
}
/* Grand total — label + value */
.acc-booking__grand-total-label {
    font-size: var(--body-size);
    font-weight: 800;
    color: var(--heading-color);
    text-transform: uppercase;
}
.acc-booking__grand-total-value {
    font-size: var(--h4-size);
    font-weight: 900;
    color: var(--primary-color);
}
/* Separator */
.acc-booking__separator {
    border: none;
    border-top: 2px solid rgba(var(--heading-color-rgb), 0.08);
    margin: 20px 0;
}
/* Related rooms — template uses class "related-rooms" */
.related-rooms {
    border-top: 1px solid rgba(var(--heading-color-rgb), 0.06);
}
/* CTA bar: uses shared .single-cta-bar from style.css */
