grid-template-columns: 1fr;
    }

    .venue-card.full-width {
        grid-column: span 1;
    }

    .venue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .see-menu-btn {
        width: 100%;
        text-align: center;
    }
}

/* Booking Flow */
.booking-main {
    padding-top: 100px;
}

.booking-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.booking-title-box {
    border: 1px solid #969696;
    padding: 16px 32px;
}

.booking-title-box h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #2c0303;
    margin: 0;
}

.booking-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 800px;
    padding: 24px 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
}

.progress-step.active {
    opacity: 1;
}

.step-num {
    width: 28px;
    height: 28px;
    background-color: #2c0303;
    color: #fff7e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 14px;
}

.step-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c0303;
}

.progress-line {
    flex-grow: 1;
    height: 1px;
    background-color: #969696;
}

.booking-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
}

.booking-controls {
    display: flex;
    gap: 20px;
    background-color: transparent;
    border: 1px solid #969696;
    padding: 24px;
    margin-bottom: 40px;
}

.control-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-group label {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c0303;
}

.date-input-wrapper {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    background-color: #fff;
    border: 1px solid #969696;
    height: 56px;
    transition: border-color 0.3s;
}

.date-input-wrapper img {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    display: block;
}

.date-input-wrapper input {
    border: none;
    background: transparent;
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c0303;
    width: 100%;
    outline: none;
    padding: 0 16px;
}

.date-input-wrapper input::-webkit-calendar-picker-indicator {
    display: none;
}

.date-input-wrapper input {
    cursor: pointer;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    font-family: 'Unbounded', sans-serif !important;
    border: 1px solid #969696 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2c0303 !important;
    border-color: #2c0303 !important;
    color: #fff7e1 !important;
}

.flatpickr-day:hover {
    background: #fceec5 !important;
    border-color: #2c0303 !important;
}

.flatpickr-months .flatpickr-month {
    background: #2c0303 !important;
    color: #fff7e1 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #2c0303 !important;
    color: #fff7e1 !important;
}

.flatpickr-weekdays {
    background: #fceec5 !important;
}

.flatpickr-weekday {
    color: #2c0303 !important;
    font-weight: 700 !important;
}

.flatpickr-day.today {
    border-color: #ecbf36 !important;
}

.flatpickr-day.today:hover {
    background: #ecbf36 !important;
    color: #2c0303 !important;
}

.flatpickr-day.disabled {
    color: #ccc !important;
}

.promo-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #969696;
    padding: 10px 12px;
    gap: 8px;
}

.promo-input-wrapper input {
    border: none;
    background: transparent;
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2c0303;
    width: 100%;
    outline: none;
}

.date-input-wrapper input::placeholder,
.promo-input-wrapper input::placeholder {
    color: #999;
    opacity: 0.7;
}

.promo-btn {
    background: #2c0303;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-btn img {
    width: 18px;
    height: 18px;
}

.booking-options-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 16px;
}

.booking-options-header p {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c0303;
    margin-bottom: 24px;
    line-height: 1.5;
}

.booking-filters {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #969696;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    margin-bottom: 30px;
}

.sort-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-selector label {
    font-size: 14px;
    font-weight: 400;
}

.sort-selector select {
    border: 1px solid #969696;
    background-color: #fff;
    padding: 6px 12px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c0303;
    cursor: pointer;
    outline: none;
    min-width: 180px;
}

.sort-selector select:hover {
    border-color: #2c0303;
}

.sort-selector img {
    width: 12px;
    height: 12px;
}

/* No Rooms Available Message */
.no-rooms-message {
    display: flex;
    gap: 20px;
    padding: 40px;
    border: 1px solid #969696;
    margin-top: 30px;
    background-color: #fff;
}

.no-rooms-icon {
    width: 48px;
    height: 48px;
    background-color: #2c0303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.no-rooms-icon::before {
    content: '!';
    color: #fff7e1;
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.no-rooms-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 12px;
}

.no-rooms-content p {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c0303;
    line-height: 1.6;
}

.room-selection-card {
    display: flex;
    gap: 30px;
    padding: 24px;
    border: 1px solid #969696;
    margin-bottom: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.room-selection-card:hover {
    background-color: #fceec5;
}

.room-selection-card.selected {
    background-color: #fceec5;
    border-color: #2c0303;
    border-width: 2px;
}

.room-sel-img {
    width: 240px;
    height: 160px;
}

.room-sel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-sel-info {
    flex: 1;
}

.room-sel-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.room-sel-header h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #2c0303;
}

.room-sel-price {
    text-align: right;
}

.room-sel-price .price {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #2c0303;
}

.room-sel-price .per-night {
    font-size: 12px;
    color: #666;
}

.select-room-btn {
    margin-top: 12px;
    padding: 8px 24px;
    background-color: #2c0303;
    color: #fff7e1;
    border: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-room-btn:hover {
    background-color: #1a0101;
}

/* Guest Details Form */
.guest-details-form {
    padding: 40px;
    border: 1px solid #969696;
    background-color: #fff;
}

.guest-details-form h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2c0303;
}

.form-group input,
.form-group textarea {
    border: 1px solid #969696;
    background-color: #fff;
    padding: 12px 16px;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    color: #2c0303;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2c0303;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #d32f2f;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

.back-btn,
.continue-btn,
.confirm-btn {
    padding: 14px 32px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.back-btn {
    background-color: transparent;
    color: #2c0303;
    border: 1px solid #969696;
}

.back-btn:hover {
    background-color: #f5f5f5;
}

.continue-btn,
.confirm-btn {
    background-color: #2c0303;
    color: #fff7e1;
}

.continue-btn:hover,
.confirm-btn:hover {
    background-color: #1a0101;
}

.continue-btn:disabled,
.confirm-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Review Section */
.booking-review {
    padding: 40px;
    border: 1px solid #969696;
    background-color: #fff;
}

.booking-review h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #2c0303;
    margin-bottom: 32px;
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: #fceec5;
    border: 1px solid #969696;
}

.review-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
}

.review-item strong {
    font-weight: 700;
    color: #2c0303;
}

.review-item span {
    font-weight: 500;
    color: #2c0303;
}

.payment-placeholder {
    padding: 24px;
    background-color: #f5f5f5;
    border: 1px solid #969696;
    margin-bottom: 32px;
}

.payment-placeholder p {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    color: #2c0303;
    line-height: 1.6;
    margin: 0;
}

.error-message {
    color: #d32f2f;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.booking-controls.has-error {
    border-color: #d32f2f;
}

/* Sidebar */
.booking-summary-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summary-box {
    border: 1px solid #969696;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
}

.summary-box h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #2c0303;
    border-bottom: 1px solid #969696;
    padding-bottom: 12px;
}

.summary-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sum-date {
    flex: 1;
}

.sum-date strong {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #2c0303;
    display: block;
    margin-bottom: 8px;
}

.sum-date p {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    color: #2c0303;
    margin: 0;
}

.sum-arrow {
    flex-shrink: 0;
}

.sum-arrow img {
    width: 20px;
    height: 20px;
}

.summary-room strong {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.summary-room p {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.summary-pricing {
    border-top: 1px solid #969696;
    padding-top: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.price-row.total {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #969696;
}

.sidebar-continue-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c0303;
    color: #fff7e1;
    border: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.sidebar-continue-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.hotel-info-card {
    background-color: #fff;
    border: 1px solid #969696;
    padding: 20px;
}

.hotel-info-card h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c0303;
}

.hotel-info-card p {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c0303;
}

.hotel-info-card ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 12px;
}

.hotel-info-card li {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    margin-bottom: 6px;
    color: #2c0303;
}

.see-more-link {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
    color: #2c0303;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hotel-rate-details {
    margin-top: 12px;
}

.hotel-rate-details p {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #2c0303;
    margin-bottom: 8px;
}

.hotel-rate-details ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 12px;
}

.hotel-rate-details li {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    margin-bottom: 6px;
    color: #2c0303;
}

.hotel-rate-note {
    font-weight: 600;
    margin-bottom: 12px;
}

.booking-legal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 100px;
}

.legal-section h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height:1.5;
}

/* Success State Styles */
.booking-success {
    text-align: center;
    padding: 80px 0;
}

.booking-success img {
    margin-bottom: 32px;
}

.booking-success h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
}

.home-link {
    display: inline-block;
    margin-top: 32px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: #2c0303;
}

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-summary-sidebar {
        order: 1;
    }

    .booking-steps-container {
        order: 2;
    }
}

@media (max-width: 768px) {
    .booking-main {
        padding-top: 80px;
    }

    .booking-header {
        gap: 24px;
        margin-bottom: 30px;
    }

    .booking-title-box {
        padding: 12px 24px;
    }

    .booking-title-box h1 {
        font-size: 28px;
    }
    
    .booking-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .progress-line {
        display: none;
    }

    .booking-controls {
        flex-direction: column;
        gap: 16px;
    }
    
    .room-selection-card {
        flex-direction: column;
    }
    
    .room-sel-img {
        width: 100%;
        height: 200px;
    }

    .booking-legal {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .guest-details-form,
    .booking-review {
        padding: 24px;
    }

    .form-actions {
        flex-direction: column;
    }

    .back-btn,
    .continue-btn,
    .confirm-btn {
        width: 100%;
    }
}
