/* Breadcrumb */
.va-breadcrumb a {
    color: var(--va-secondary-dark);
}

.va-breadcrumb .sep {
    color: var(--va-secondary-dark);
}

/* Venue Header */
.venue-header {
    margin-top: 1rem;
}

/* Shifts Container */
.shifts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 186px));
    gap: 0.85rem;
    margin-top: 1.25rem;
    justify-content: start;
}

.shift-card {
    background: rgba(255, 44, 44, 0.04);
    border: 1.5px solid rgba(255, 44, 44, 0.18);
    border-radius: 14px;
    padding: 0.9rem 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}

.shift-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        transparent 65%
    );
    pointer-events: none;
    border-radius: inherit;
}

.shift-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 44, 44, 0.12);
    border-color: rgba(255, 44, 44, 0.35);
    background: rgba(255, 44, 44, 0.07);
}

.shift-card-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.shift-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--va-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 44, 44, 0.35);
}

.shift-body {
    flex: 1;
    min-width: 0;
}

.shift-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--va-secondary-dark);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shift-time {
    font-size: 0.7rem;
    color: var(--va-gray-500);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shift-time i {
    font-size: 0.6rem;
    color: var(--va-primary);
    opacity: 0.7;
}

.shift-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--va-primary);
    background: rgba(255, 44, 44, 0.1);
    border: 1px solid rgba(255, 44, 44, 0.22);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Responsive shifts */
@media (max-width: 768px) {
    .shifts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .shift-card {
        padding: 0.75rem 0.75rem 0.6rem;
    }

    .shift-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .shift-name {
        font-size: 0.8rem;
    }

    .shift-time {
        font-size: 0.65rem;
    }

    .shift-price-badge {
        font-size: 0.75rem;
    }
}

/* Section Titles */
.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
    margin-bottom: 0.8rem;
}

/* Facilities Section */
.facilities-section {
    margin-bottom: 1.5rem;
}

.facilities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.facility-tag {
    background: rgba(255, 44, 44, 0.07);
    color: var(--va-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 44, 44, 0.15);
    transition: all 0.2s ease;
}

.facility-tag:hover {
    background: rgba(255, 44, 44, 0.12);
    border-color: rgba(255, 44, 44, 0.25);
    transform: translateY(-1px);
}

.facility-tag i {
    font-size: 0.65rem;
}

/* About Section */
.about-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    /* padding: 1.5rem; */
    border-radius: 12px;
    background: var(--va-50);
}

.about-text {
    font-size: 0.88rem;
    color: var(--va-gray-600);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

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

/* Vendor Section */
.vendor-section {
    margin-bottom: 1.5rem;
}

.vendor-info {
    flex-grow: 1;
}

.vendor-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
}

.vendor-meta {
    font-size: 0.78rem;
    color: var(--va-gray-500);
    margin-bottom: 5px;
}

.vendor-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Price Breakdown */
.price-breakdown {
    padding: 1rem;
    border-radius: 8px;
    background: var(--va-50);
    margin-bottom: 1rem;
}

/* Advance Note */
.advance-note {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(255, 44, 44, 0.06);
    border: 1px solid rgba(255, 44, 44, 0.15);
}

.advance-note-text {
    font-size: 0.8rem;
    color: var(--va-secondary-dark);
}

/* Mobile Bottom Bar */
.mobile-price-info {
    flex: 1;
}

.mobile-price-label {
    font-size: 0.75rem;
    color: var(--va-gray-400);
}

.mobile-price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--va-secondary-dark);
}

/* ═══════════════════════════════════════════════════════════
   BOOKING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* Booking Venue Summary */
.booking-venue-summary .venue-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
}

.booking-venue-summary .venue-location {
    font-size: 0.82rem;
    color: var(--va-gray-500);
    margin-bottom: 0.5rem;
}

.booking-venue-summary .venue-rating {
    font-size: 0.82rem;
    color: var(--va-gray-500);
}

/* Input with Icon */
.va-input-wrap .va-input.with-icon {
    padding-left: 38px;
}

.va-input-wrap select.with-icon {
    padding-left: 38px;
    appearance: auto;
}

/* Additional Services Text */
.addon-services-text {
    font-size: 0.8rem;
    color: var(--va-gray-400);
    margin-bottom: 1rem;
}

/* Terms Checkbox Label */
.form-check-label.terms-label {
    font-size: 0.84rem;
    color: var(--va-gray-600);
}

/* Order Summary Title */
.order-summary-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--va-secondary-dark);
}

/* Payment Option */
.pay-option-title {
    font-size: 0.9rem;
    color: var(--va-secondary-dark);
}

.pay-option-desc {
    font-size: 0.8rem;
    color: var(--va-gray-500);
}

.pay-option-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--va-primary);
    margin-top: 6px;
}

.pay-option-amount.full-payment {
    color: var(--va-green);
}

/* Coupon Hint */
.coupon-hint {
    font-size: 0.75rem;
    color: var(--va-gray-400);
    margin-top: 0.4rem;
}

/* Payment Method Name */
.pay-method-name {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
    color: var(--va-secondary-dark);
}

/* Security Note */
.security-note-box {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.security-note-text {
    font-size: 0.8rem;
    color: var(--va-secondary-dark);
}

/* Booking Success */
.booking-success-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--va-secondary-dark);
    margin-bottom: 0.4rem;
}

.booking-success-subtitle {
    font-size: 0.92rem;
    color: var(--va-gray-500);
    margin-bottom: 0.3rem;
}

/* Confirmation Summary Card */
.confirmation-summary-card {
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-summary-card .booking-venue-summary {
    margin-bottom: 0;
}

.confirmation-summary-card hr {
    border-color: var(--va-gray-200);
    margin: 1rem 0;
}

.confirmation-summary-card .venue-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
}

.confirmation-summary-card .venue-location {
    font-size: 0.8rem;
    color: var(--va-gray-500);
}

.confirmation-summary-card .price-breakdown-row.total span:last-child {
    color: var(--va-green);
}

/* Confirmation Email Note */
.confirmation-email-note {
    background: rgba(255, 44, 44, 0.06);
    border: 1px dashed rgba(255, 44, 44, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.confirmation-email-text {
    font-size: 0.82rem;
    color: var(--va-gray-600);
    line-height: 1.7;
}

/* Booking Sticky Sidebar */
.booking-sticky {
    position: sticky;
    top: 90px;
}

.booking-summary-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--va-secondary-dark);
    margin-bottom: 1.2rem;
}

.sidebar-venue-img {
    width: 64px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-venue-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
}

.sidebar-venue-location {
    font-size: 0.75rem;
    color: var(--va-gray-400);
}

.sidebar-hr {
    border-color: var(--va-gray-100);
}

.sidebar-price-row {
    font-size: 0.82rem;
}

.sidebar-price-row .advance-amount {
    color: var(--va-primary);
    font-weight: 800;
}

/* Cancellation Policy Box */
.cancellation-policy-box {
    background: rgba(34, 197, 94, 0.07);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.cancellation-policy-text {
    font-size: 0.78rem;
    color: var(--va-gray-600);
}

/* Venue Security Section */
.venue-security-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--va-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.security-tag {
    font-size: 0.7rem;
    background: rgba(255, 44, 44, 0.07);
    color: var(--va-primary);
    padding: 3px 9px;
    border-radius: 50px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING CARD – TAB SYSTEM
   ═══════════════════════════════════════════════════════════ */

.booking-card {
    /* background: #fff; */
    /* border: 1px solid #e5e7eb; */
    /* border-radius: 16px; */
    /* padding: 1.25rem; */
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
}

/* Price Row */
.booking-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.booking-price-big {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--va-secondary-dark);
    line-height: 1;
}

.booking-price-unit {
    font-size: 0.82rem;
    color: var(--va-gray-400);
    font-weight: 500;
}

/* Tabs */
.booking-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.booking-tab {
    background: #fff;
    border: none;
    padding: 0.75rem 0.4rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    outline: none;
    color: var(--va-gray-600);
    border: 1.5px solid var(--va-gray-300);
    border-radius: 8px;
}

.booking-tab.active {
    background: color-mix(in srgb, var(--va-primary) 5%, transparent);
    border: 1.5px solid var(--va-primary-light);
    font-weight: 700;
    /* color: var(--va-primary); */
}

.booking-tab:hover:not(.active) {
    background: color-mix(in srgb, var(--va-primary) 5%, transparent);
    border: 1.5px solid var(--va-primary-light);
}

/* Shift Pills */
.shift-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.shift-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.65rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s;
    text-align: left;
    line-height: 1.3;
    border-color: #00da00;
}

.shift-pill:hover {
    border-color: var(--va-primary);
    color: var(--va-primary);
}

.shift-pill.disabled,
.shift-pill:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
    border-color: var(--va-gray-400, #ccc);
    color: var(--va-gray-500, #aaa);
    background: transparent;
}

.shift-pill.active {
    background: var(--va-primary);
    border-color: var(--va-primary);
    color: #fff;
}

.pill-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.55rem;
    margin-left: 4px;
    opacity: 0.5;
}

.shift-pill.active .pill-check {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.pill-booked-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1px 7px;
    margin-left: 5px;
    text-transform: uppercase;
}

.pill-temp-booked-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: 5px;
}

.pill-temp-booked-label .temp-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.12);
    color: #ff8c00;
    border: 1px solid rgba(255, 165, 0, 0.35);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 1px 7px;
    text-transform: uppercase;
}

.pill-temp-booked-label .temp-timer {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff8c00;
    white-space: nowrap;
}

/* Booking Price Summary */
.booking-price-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: var(--va-primary-light, rgba(255, 44, 44, 0.07)); */
    border: 1px solid #7777772e;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.booking-total-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--va-gray-500, #666);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-total-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--va-primary, #ff2c2c);
}

/* Booking Card Mini-Calendar */
.bk-cal-wrap {
    position: relative;
}

.bk-cal-trigger {
    cursor: pointer;
    user-select: none;
}

.bk-cal-display {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    color: var(--va-secondary-dark);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-cal-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    width: 18rem;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bk-cal-dropdown.open {
    display: block;
    animation: bkCalFade 0.15s ease;
}

@keyframes bkCalFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Week Strip */
.week-strip-wrapper {
    background: #fff8f8;
    border: 1px solid rgba(255, 44, 44, 0.12);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.week-nav-btn {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #4b5563;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.week-nav-btn:hover {
    border-color: var(--va-primary);
    color: var(--va-primary);
}

.week-month-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
}

.week-strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
}

.week-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0.3rem 0.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.week-day:hover {
    background: rgba(255, 44, 44, 0.06);
}

.week-day-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: transparent;
    background: #fff;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}

.week-day.selected .week-day-check {
    background: var(--va-primary);
    border-color: var(--va-primary);
    color: #fff;
}

.week-day-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
    line-height: 1;
}

.week-day-label {
    font-size: 0.6rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

/* Weekly Per-Day Booking Entry */
.weekly-booking-entry {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
}

.weekly-entry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.weekly-entry-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.25rem;
}

.weekly-entry-date {
    background: #fff8f8;
    border: 1px solid rgba(255, 44, 44, 0.2);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--va-primary);
    width: 100%;
    outline: none;
}

.weekly-entry-guests {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.82rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.weekly-entry-guests:focus {
    border-color: var(--va-primary);
}

.va-input-wrap .icon {
    color: var(--va-secondary-dark);
}

.va-guest-select {
    height: 48px;
}

#bk-hold-info {
    font-size: 0.9rem;
    color: var(--va-green);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    text-align: center;
    padding: 6px 18px;
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 994px) {
    #bk-hold-info {
        width: 100%;
        margin-bottom: 10px;
    }
}
