.booking-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 18px;
    background: var(--color-white);
    box-shadow: 0 16px 42px rgba(45,28,15,.12);
}

.booking-card-head {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    align-items: end;
    margin-bottom: 10px;
}

.booking-card-head span {
    color: var(--color-muted);
    font-size: 13px;
}

.booking-card-head strong,
.booking-card > strong {
    display: block;
    color: var(--color-text);
    font-size: 22px;
    line-height: 1.1;
    text-align: right;
}

.date-trigger {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    min-height: 52px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    transition: border .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.date-trigger:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(154,90,24,.08);
}

.date-trigger-copy {
    min-width: 0;
}

.date-trigger-copy > span {
    display: block;
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 2px;
}

.date-trigger-copy strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.booking-reset-dates {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-soft);
    color: var(--color-primary);
    border: 1px solid var(--color-secondary);
}

.booking-reset-dates:hover {
    color: var(--color-primary-dark);
    background: var(--color-soft);
}

.booking-reset-dates[hidden] {
    display: none;
}

.booking-reset-dates svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guest-counter {
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: max-height .28s ease, margin .28s ease, opacity .2s ease, border-color .2s ease;
}

.booking-card.is-expanded .guest-counter,
.booking-card:focus-within .guest-counter {
    max-height: 220px;
    margin: 0 0 18px;
    border-color: var(--color-border);
    opacity: 1;
    pointer-events: auto;
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.guest-row:last-child {
    border-bottom: none;
}

.guest-row > strong,
.guest-row > span {
    display: block;
}

.guest-row > strong {
    min-width: 112px;
    font-size: 13px;
    line-height: 1.2;
}

.guest-row > span {
    flex: 1;
    font-size: 11px;
    color: var(--color-muted);
    text-align: center;
}

.guest-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.guest-controls button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.guest-controls button:disabled {
    opacity: .42;
    cursor: not-allowed;
}

.guest-value {
    min-width: 18px;
    text-align: center;
    font-size: 14px !important;
    font-weight: 700;
    color: var(--color-text) !important;
}


.price-mini-line {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 13px;
    color: var(--color-muted);
    margin: 0 0 14px;
}

.price-breakdown-toggle {
    background: none !important;
    color: var(--color-text) !important;
    padding: 0 !important;
    width: auto !important;
    border: none !important;
    font-size: 13px !important;
    text-decoration: underline;
    cursor: pointer;
}

.price-breakdown-content {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--space-md);
    margin-bottom: 16px;
    font-size: 14px;
    background: var(--color-soft);
}

.price-breakdown-content div {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.booking-extra-guest-alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(187, 132, 93, .32);
    border-radius: 8px;
    background: rgba(187, 132, 93, .12);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.price-breakdown-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-sm) 0;
}

.booking-card button:not(.date-trigger):not(.booking-reset-dates):not(.price-breakdown-toggle):not(.guest-minus):not(.guest-plus) {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.booking-card button:not(.date-trigger):not(.booking-reset-dates):not(.price-breakdown-toggle):not(.guest-minus):not(.guest-plus):hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.booking-card-note {
    max-height: 48px;
    margin: 12px 0 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.45;
    opacity: 1;
    text-align: center;
    transition: max-height .22s ease, margin .22s ease, opacity .18s ease;
}

.booking-card:not(.is-expanded) .booking-card-note {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}

.booking-notice,
.booking-error {
    display: none;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.booking-error,
.booking-notice.booking-error {
    background: #fff1f1;
    color: #b3261e;
}

.booking-success {
    display: block;
    background: #eefaf0;
    color: #176b2c;
}

.booking-error.is-visible {
    display: block;
}
