/**
 * Booking Frontend Styles
 * 
 * Styles for booking package cards, forms, and checkout flow.
 * Uses a warm accent color to distinguish from membership pricing tables.
 * 
 * @package pbfh_Paintball_Field_Hub
 * @since 4.6.0
 */

/* ==================================
   CSS VARIABLES
   ================================== */

:root {
    /* Booking Accent Colors (can be overridden by Display Settings) */
    --pbfh-booking-accent: var(--pbfh-accent, #E67E22);
    --pbfh-booking-accent-dark: #d35400;
    --pbfh-booking-accent-light: #f39c12;
    --pbfh-booking-success: #27ae60;
    --pbfh-booking-error: #e74c3c;
    
    /* Text colors (can be overridden) */
    --pbfh-booking-text: var(--pbfh-form-text, #2c3e50);
    --pbfh-booking-text-light: var(--pbfh-form-label, #7f8c8d);
    
    /* Background and borders (can be overridden) */
    --pbfh-booking-border: var(--pbfh-form-border, #dcdde1);
    --pbfh-booking-bg: var(--pbfh-form-bg, #f8f9fa);
    --pbfh-booking-white: var(--pbfh-input-bg, #ffffff);
    
    /* Shadows and radius */
    --pbfh-booking-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --pbfh-booking-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    --pbfh-booking-radius: 12px;
    
    /* Input fields */
    --pbfh-input-text-color: var(--pbfh-input-text, #111827);
    --pbfh-input-bg-color: var(--pbfh-input-bg, #ffffff);
    --pbfh-input-border-color: var(--pbfh-input-border, #d1d5db);
    
    /* Buttons */
    --pbfh-btn-primary-bg-color: var(--pbfh-btn-primary-bg, #3b82f6);
    --pbfh-btn-primary-text-color: var(--pbfh-btn-primary-text, #ffffff);
    --pbfh-btn-secondary-bg-color: var(--pbfh-btn-secondary-bg, #f3f4f6);
    --pbfh-btn-secondary-text-color: var(--pbfh-btn-secondary-text, #374151);
    
    /* Page & Content background */
    --pbfh-page-bg-color: var(--pbfh-page-bg, #f8fafc);
    --pbfh-content-bg-color: var(--pbfh-content-bg, transparent);
    
    /* Form */
    --pbfh-form-bg-color: var(--pbfh-form-bg, transparent);
    --pbfh-form-border-color: var(--pbfh-form-border, transparent);
    --pbfh-form-title-color: var(--pbfh-form-title, #1e3a5f);
    --pbfh-form-label-color: var(--pbfh-form-label, #374151);
    
    /* Step indicator */
    --pbfh-step-active-color: var(--pbfh-step-active, #22c55e);
    --pbfh-step-active-text-color: var(--pbfh-step-active-text, #ffffff);
    --pbfh-step-inactive-color: var(--pbfh-step-inactive, #9ca3af);
    --pbfh-step-inactive-text-color: var(--pbfh-step-inactive-text, #ffffff);
    --pbfh-step-label-active-color: var(--pbfh-step-label-active, #22c55e);
    --pbfh-step-label-inactive-color: var(--pbfh-step-label-inactive, #6b7280);
    --pbfh-step-line-color: var(--pbfh-step-line, #d1d5db);
    
    /* Summary card */
    --pbfh-summary-header-bg-color: var(--pbfh-header-bg, #1e3a5f);
    --pbfh-summary-header-text-color: var(--pbfh-header-text, #ffffff);
    --pbfh-summary-bg-color: var(--pbfh-summary-bg, var(--pbfh-summary-body-bg, #1e3a5f));
    --pbfh-summary-border-color: var(--pbfh-summary-border, #e2e8f0);
    --pbfh-summary-price-color: var(--pbfh-summary-price, #e67e22);
    --pbfh-summary-meta-color: var(--pbfh-summary-meta, #94a3b8);
    
    /* Badge (tier badge) */
    --pbfh-badge-bg-color: var(--pbfh-badge-bg, #e67e22);
    --pbfh-badge-text-color: var(--pbfh-badge-text, #ffffff);
    
    /* Equipment pills */
    --pbfh-pill-bg-color: var(--pbfh-pill-bg, #ffffff);
    --pbfh-pill-text-color: var(--pbfh-pill-text, #0369a1);
    --pbfh-pill-border-color: var(--pbfh-pill-border, #e2e8f0);
    
    /* Calendar */
    --pbfh-calendar-header-bg-color: var(--pbfh-calendar-header-bg, #3b82f6);
    --pbfh-calendar-header-text-color: var(--pbfh-calendar-header-text, #ffffff);
    --pbfh-calendar-day-header-color: var(--pbfh-calendar-day-header, #6b7280);
    --pbfh-calendar-available-color: var(--pbfh-calendar-available, #dcfce7);
    --pbfh-calendar-available-text-color: var(--pbfh-calendar-available-text, #166534);
    --pbfh-calendar-selected-color: var(--pbfh-calendar-selected, #3b82f6);
    --pbfh-calendar-selected-text-color: var(--pbfh-calendar-selected-text, #ffffff);
    --pbfh-calendar-today-border-color: var(--pbfh-calendar-today-border, #f97316);
    
    /* Time slots */
    --pbfh-timeslot-bg-color: var(--pbfh-timeslot-bg, #ffffff);
    --pbfh-timeslot-border-color: var(--pbfh-timeslot-border, #e5e7eb);
    --pbfh-timeslot-text-color: var(--pbfh-timeslot-text, #1e3a5f);
    --pbfh-timeslot-available-color: var(--pbfh-timeslot-available, #22c55e);
    --pbfh-timeslot-selected-color: var(--pbfh-timeslot-selected, #f97316);
}

/* ==================================
   PACKAGES GRID
   ================================== */

.pbfh-booking-packages {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.pbfh-booking-packages.pbfh-columns-1 {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.pbfh-booking-packages.pbfh-columns-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.pbfh-booking-packages.pbfh-columns-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.pbfh-booking-packages.pbfh-columns-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .pbfh-booking-packages.pbfh-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pbfh-booking-packages.pbfh-columns-2,
    .pbfh-booking-packages.pbfh-columns-3,
    .pbfh-booking-packages.pbfh-columns-4 {
        grid-template-columns: 1fr;
    }
}

/* ==================================
   PACKAGE CARD
   ================================== */

.pbfh-booking-package-card {
    background: transparent;
    border-radius: var(--pbfh-booking-radius);
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pbfh-booking-package-card:hover {
    transform: translateY(-2px);
}

/* ==================================
   PACKAGE CARDS GRID ([pbfh_booking_packages])
   ================================== */

.pbfh-booking-packages {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

/* Package Card Container - Always full width */
.pbfh-package-card {
    background: var(--pkg-card-bg, transparent);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.pbfh-package-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pbfh-package-card-header {
    padding: 20px 20px 10px;
}

.pbfh-package-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--pkg-title-color, #ffffff);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pbfh-package-card-desc {
    font-size: 14px;
    color: var(--pkg-desc-color, rgba(255,255,255,0.7));
    line-height: 1.5;
}

/* Tier Options Grid */
.pbfh-package-card-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px 20px;
}

/* Individual Tier Option */
.pbfh-tier-option {
    background: var(--tier-bg, #ffffff);
    border: 2px solid var(--tier-border, #dcdde1);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pbfh-tier-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Tier Option */
.pbfh-tier-option.featured {
    background: var(--feat-tier-bg, #1d2327);
    border-color: var(--feat-tier-border, #E67E22);
}

.pbfh-tier-option.featured .pbfh-tier-name {
    color: var(--feat-tier-name-color, #ffffff);
}

.pbfh-tier-option.featured .pbfh-tier-price {
    color: var(--feat-tier-price-color, #E67E22);
}

.pbfh-tier-option.featured .pbfh-tier-features li {
    color: var(--feat-tier-text-color, #ffffff);
}

.pbfh-tier-option.featured .pbfh-tier-features .dashicons {
    color: var(--feat-tier-icon-color, #E67E22);
}

.pbfh-tier-option.featured .pbfh-tier-deposit {
    background: rgba(255, 255, 255, 0.1);
    color: var(--feat-tier-text-color, rgba(255, 255, 255, 0.8));
}

.pbfh-tier-option.featured .pbfh-select-tier {
    background: var(--feat-tier-btn-bg, #E67E22);
    color: var(--feat-tier-btn-color, #ffffff);
}

.pbfh-tier-option.featured .pbfh-select-tier:hover {
    background: var(--feat-tier-btn-hover, #d35400);
}

/* Badge */
.pbfh-tier-option .pbfh-tier-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--feat-badge-bg, #E67E22);
    color: var(--feat-badge-color, #ffffff);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tier Name */
.pbfh-tier-option .pbfh-tier-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--tier-name-color, #1d2327);
    margin-bottom: 5px;
}

/* Tier Price */
.pbfh-tier-option .pbfh-tier-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--tier-price-color, #E67E22);
    margin-bottom: 15px;
}

/* Tier Features */
.pbfh-tier-option .pbfh-tier-features {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.pbfh-tier-option .pbfh-tier-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
    color: var(--tier-text-color, #2c3e50);
}

.pbfh-tier-option .pbfh-tier-features .dashicons {
    color: var(--tier-icon-color, #27ae60);
    font-size: 16px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Tier Deposit */
.pbfh-tier-option .pbfh-tier-deposit {
    background: #f8f9fa;
    color: #666;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
}

/* Book Button */
.pbfh-tier-option .pbfh-select-tier {
    width: 100%;
    padding: 12px 20px;
    background: var(--tier-btn-bg, #E67E22);
    color: var(--tier-btn-color, #ffffff);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pbfh-tier-option .pbfh-select-tier:hover {
    background: var(--tier-btn-hover, #d35400);
    transform: translateY(-1px);
}

.pbfh-package-header {
    padding: 24px 24px 20px;
    text-align: center;
    position: relative;
}

.pbfh-package-header .pbfh-package-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.pbfh-package-header h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pbfh-booking-text);
}

.pbfh-package-header .pbfh-package-audience {
    font-size: 13px;
    color: var(--pbfh-booking-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pbfh-package-description {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pbfh-booking-text-light);
    text-align: center;
}

/* ==================================
   TIER CARDS
   ================================== */

.pbfh-package-tiers {
    padding: 0;
    background: transparent;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}

/* ==================================
   TIER CARDS (Match Preview Styling)
   ================================== */

.pbfh-tier-card {
    background: var(--bg-color, #ffffff);
    border: 2px solid var(--border-color, #dcdde1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 550px;
}

/* Stack on mobile */
@media (max-width: 768px) {
    .pbfh-package-tiers {
        flex-direction: column;
    }
    
    .pbfh-tier-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.pbfh-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pbfh-tier-card.selected {
    border-color: var(--accent-color, #1876BA);
    box-shadow: 0 0 0 3px rgba(24, 118, 186, 0.15);
}

/* Featured Card - Enhanced Styling */
.pbfh-tier-card.featured {
    border-color: var(--border-color, #E67E22);
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.pbfh-tier-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Featured card inner borders - use rgba for transparency */
.pbfh-tier-card.featured .pbfh-tier-header {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pbfh-tier-card.featured .pbfh-tier-quick-info {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pbfh-tier-card.featured .pbfh-tier-footer {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Featured card section title adjust */
.pbfh-tier-card.featured .pbfh-section-title {
    opacity: 0.8;
}

/* Badge */
.pbfh-tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--badge-color, #E67E22);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

/* Header */
.pbfh-tier-header {
    padding: 25px 20px 15px 20px;
    border-bottom: 1px solid var(--border-color, #dcdde1);
}

.pbfh-tier-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #1d2327);
    margin: 0 0 10px 0;
}

.pbfh-tier-price-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--price-color, #E67E22);
    line-height: 1;
}

/* Body */
.pbfh-tier-body {
    padding: 20px;
}

.pbfh-tier-description {
    margin: 0 0 15px 0;
    color: var(--text-color, #2c3e50);
    font-size: 14px;
    line-height: 1.6;
}

/* Quick Info (Duration & Players) */
.pbfh-tier-quick-info {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color, #dcdde1);
    margin-bottom: 20px;
}

.pbfh-quick-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color, #2c3e50);
    font-size: 14px;
}

.pbfh-quick-info-item .dashicons {
    color: var(--text-color, #2c3e50);
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Sections */
.pbfh-tier-section {
    margin-bottom: 20px;
}

.pbfh-tier-section:last-child {
    margin-bottom: 0;
}

.pbfh-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color, #2c3e50);
    opacity: 0.6;
    margin: 0 0 12px 0;
}

.pbfh-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbfh-tier-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color, #2c3e50);
    font-size: 14px;
}

.pbfh-tier-list .dashicons {
    color: var(--icon-color, #27ae60);
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pbfh-item-qty {
    color: var(--text-color, #2c3e50);
    opacity: 0.6;
    font-size: 13px;
    margin-left: 4px;
}

/* Old compatibility - features list */
.pbfh-tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbfh-tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color, #2c3e50);
    font-size: 14px;
}

.pbfh-tier-features .dashicons {
    color: var(--icon-color, #27ae60);
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Footer */
.pbfh-tier-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color, #dcdde1);
}

.pbfh-tier-button {
    width: 100%;
    padding: 12px 24px;
    background: var(--accent-color, #1876BA);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pbfh-tier-button:hover {
    background: color-mix(in srgb, var(--accent-color, #1876BA) 80%, black);
    transform: translateY(-2px);
}

/* Old class compatibility */
.pbfh-tier-price {
    text-align: right;
}

.pbfh-tier-price .price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--price-color, #E67E22);
    line-height: 1;
}

.pbfh-tier-price .price-type {
    font-size: 12px;
    color: var(--pbfh-booking-text-light);
    margin-top: 2px;
}

.pbfh-tier-deposit {
    margin-top: 15px;
    padding: 10px 15px;
    background: var(--pbfh-booking-bg);
    border-radius: 6px;
    font-size: 13px;
    color: var(--pbfh-booking-text-light);
}

.pbfh-tier-deposit strong {
    color: var(--pbfh-booking-text);
}

/* ==================================
   EQUIPMENT LIST
   ================================== */

.pbfh-tier-equipment {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pbfh-booking-border);
}

.pbfh-tier-equipment h4,
.pbfh-tier-included h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--pbfh-booking-text-light);
    margin: 0 0 12px 0;
}

.pbfh-equipment-list,
.pbfh-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbfh-equipment-list li,
.pbfh-included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pbfh-booking-text);
}

.pbfh-equipment-list .dashicons,
.pbfh-included-list .dashicons {
    color: var(--pbfh-booking-accent);
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pbfh-tier-included {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pbfh-booking-border);
}

.pbfh-item-qty {
    color: var(--pbfh-booking-text-light);
    font-size: 13px;
    margin-left: 4px;
}

/* ==================================
   BOOKING FORM
   ================================== */

.pbfh-booking-form-wrapper {
    width: 100%;
    padding: 30px 0;
}

.pbfh-booking-form {
    background: var(--pbfh-form-bg-color, transparent);
    border-radius: var(--pbfh-booking-radius);
    box-shadow: none;
    overflow: hidden;
}

.pbfh-form-section {
    padding: 25px 30px;
    border-bottom: 1px solid var(--pbfh-booking-border);
}

.pbfh-form-section:last-child {
    border-bottom: none;
}

.pbfh-form-section h4 {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--pbfh-booking-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pbfh-form-section h4 .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--pbfh-booking-accent);
    color: white;
    border-radius: 50%;
    font-size: 14px;
}

.pbfh-form-row {
    margin-bottom: 20px;
}

.pbfh-form-row:last-child {
    margin-bottom: 0;
}

.pbfh-form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pbfh-form-label-color, var(--pbfh-booking-text, #374151));
    margin-bottom: 8px;
}

.pbfh-form-row label .required {
    color: var(--pbfh-booking-error);
}

.pbfh-form-row input,
.pbfh-form-row select,
.pbfh-form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pbfh-booking-border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--pbfh-booking-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--pbfh-booking-white);
    box-sizing: border-box;
}

.pbfh-form-row input:focus,
.pbfh-form-row select:focus,
.pbfh-form-row textarea:focus {
    outline: none;
    border-color: var(--pbfh-booking-accent);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.pbfh-form-row .description {
    font-size: 12px;
    color: var(--pbfh-booking-text-light);
    margin-top: 5px;
}

.pbfh-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Headcount Selector */
.pbfh-headcount-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pbfh-headcount-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--pbfh-booking-border);
    border-radius: 8px;
    background: var(--pbfh-booking-white);
    font-size: 24px;
    font-weight: bold;
    color: var(--pbfh-booking-text);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pbfh-headcount-btn:hover {
    border-color: var(--pbfh-booking-accent);
    color: var(--pbfh-booking-accent);
}

.pbfh-headcount-selector input {
    width: 80px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.pbfh-headcount-limits {
    font-size: 13px;
    color: var(--pbfh-booking-text-light);
}

/* ==================================
   DATE & TIME PICKER
   ================================== */

.pbfh-date-picker {
    position: relative;
}

.pbfh-date-picker input {
    cursor: pointer;
}

.pbfh-time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.pbfh-time-slot {
    padding: 12px 15px;
    border: 2px solid var(--pbfh-booking-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 600;
}

.pbfh-time-slot:hover:not(.unavailable) {
    border-color: var(--pbfh-booking-accent);
}

.pbfh-time-slot.selected {
    background: var(--pbfh-booking-accent);
    border-color: var(--pbfh-booking-accent);
    color: white;
}

.pbfh-time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pbfh-time-slot .availability {
    display: block;
    font-size: 11px;
    font-weight: normal;
    margin-top: 2px;
    color: var(--pbfh-booking-success);
}

.pbfh-time-slot.selected .availability {
    color: rgba(255,255,255,0.8);
}

.pbfh-loading-times {
    text-align: center;
    padding: 30px;
    color: var(--pbfh-booking-text-light);
}

/* ==================================
   ADD-ONS SECTION
   ================================== */

.pbfh-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.pbfh-addon-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--pbfh-booking-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.pbfh-addon-option:hover {
    border-color: var(--pbfh-booking-accent);
}

.pbfh-addon-option.selected {
    border-color: var(--pbfh-booking-accent);
    background: #fff9f5;
}

.pbfh-addon-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
}

.pbfh-addon-details {
    flex: 1;
}

.pbfh-addon-name {
    font-weight: 600;
    color: var(--pbfh-booking-text);
    margin-bottom: 3px;
}

.pbfh-addon-description {
    font-size: 13px;
    color: var(--pbfh-booking-text-light);
    margin-bottom: 5px;
}

.pbfh-addon-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--pbfh-booking-accent);
}

.pbfh-addon-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.pbfh-addon-quantity label {
    font-size: 13px;
    margin: 0;
}

.pbfh-addon-quantity input {
    width: 60px;
    padding: 6px 10px;
}

/* ==================================
   PRICE SUMMARY
   ================================== */

.pbfh-price-summary {
    background: var(--pbfh-booking-bg);
    border-radius: 10px;
    padding: 20px;
}

.pbfh-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.pbfh-price-row.pbfh-price-total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--pbfh-booking-border);
    font-size: 18px;
    font-weight: 700;
}

.pbfh-price-row.pbfh-price-total .pbfh-price-value {
    color: var(--pbfh-booking-accent);
}

.pbfh-price-summary hr {
    border: none;
    border-top: 1px dashed var(--pbfh-booking-border);
    margin: 15px 0;
}

.pbfh-deposit-row {
    background: #e8f4fd;
    margin: 0 -20px;
    padding: 12px 20px !important;
    font-weight: 600;
}

.pbfh-deposit-amount {
    color: var(--pbfh-booking-accent-dark);
}

/* ==================================
   SUBMIT BUTTON
   ================================== */

.pbfh-booking-submit {
    padding: 25px 30px;
    background: var(--pbfh-booking-bg);
}

.pbfh-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: var(--pbfh-booking-accent);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pbfh-submit-btn:hover {
    background: var(--pbfh-booking-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.pbfh-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pbfh-submit-btn.loading {
    pointer-events: none;
}

.pbfh-submit-btn .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: pbfh-spin 0.8s linear infinite;
}

@keyframes pbfh-spin {
    to { transform: rotate(360deg); }
}

/* ==================================
   MESSAGES & ERRORS
   ================================== */

.pbfh-form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.pbfh-form-message.error {
    background: #fdf2f2;
    border: 1px solid #f8d7da;
    color: var(--pbfh-booking-error);
}

.pbfh-form-message.success {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    color: var(--pbfh-booking-success);
}

.pbfh-field-error {
    font-size: 12px;
    color: var(--pbfh-booking-error);
    margin-top: 5px;
}

.pbfh-form-row.has-error input,
.pbfh-form-row.has-error select {
    border-color: var(--pbfh-booking-error);
}

/* ==================================
   CONFIRMATION PAGE
   ================================== */

.pbfh-booking-confirmation {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.pbfh-confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--pbfh-booking-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pbfh-confirmation-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.pbfh-booking-confirmation h2 {
    margin: 0 0 10px;
    font-size: 28px;
    color: var(--pbfh-booking-text);
}

.pbfh-booking-confirmation .booking-number {
    font-size: 16px;
    color: var(--pbfh-booking-text-light);
    margin-bottom: 30px;
}

.pbfh-confirmation-details {
    background: var(--pbfh-booking-white);
    border-radius: var(--pbfh-booking-radius);
    box-shadow: var(--pbfh-booking-shadow);
    padding: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.pbfh-confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--pbfh-booking-border);
}

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

.pbfh-confirmation-label {
    color: var(--pbfh-booking-text-light);
}

.pbfh-confirmation-value {
    font-weight: 600;
    color: var(--pbfh-booking-text);
}

/* ==================================
   NO PACKAGES MESSAGE
   ================================== */

.pbfh-no-packages {
    text-align: center;
    padding: 60px 20px;
    background: var(--pbfh-booking-bg);
    border-radius: var(--pbfh-booking-radius);
    color: var(--pbfh-booking-text-light);
    font-size: 16px;
}

/* ==================================
   RESPONSIVE
   ================================== */

@media (max-width: 992px) {
    .pbfh-booking-packages.pbfh-columns-4,
    .pbfh-booking-packages.pbfh-columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pbfh-booking-packages.pbfh-columns-4,
    .pbfh-booking-packages.pbfh-columns-3,
    .pbfh-booking-packages.pbfh-columns-2 {
        grid-template-columns: 1fr;
    }
    
    .pbfh-form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .pbfh-tier-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .pbfh-tier-price {
        text-align: left;
    }
    
    .pbfh-tier-info {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pbfh-time-slots .pbfh-time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pbfh-addons-grid {
        grid-template-columns: 1fr;
    }
    
    .pbfh-form-section {
        padding: 20px;
    }
    
    .pbfh-booking-submit {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pbfh-time-slots .pbfh-time-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .pbfh-headcount-selector {
        justify-content: center;
    }
}

/* ==================================
   BOOKING FORM WIZARD
   ================================== */

/* Form Wrapper - Hidden by default */
.pbfh-booking-form-wrapper {
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pbfh-booking-form-wrapper.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

/* Form Card - Full width to match summary card */
.pbfh-booking-form-card {
    background: var(--pbfh-bkp-content-bg, var(--pbfh-bkp-form-bg, transparent));
    border: none;
    border-radius: var(--pbfh-bkp-form-radius, 12px);
    overflow: hidden;
}

/* Step Indicator */
.pbfh-step-indicator {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: transparent;
    border-bottom: none;
}

.pbfh-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
}

.pbfh-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pbfh-step-inactive-color, #9ca3af);
    color: var(--pbfh-step-inactive-text-color, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pbfh-step-item.active .pbfh-step-number {
    background: var(--pbfh-step-active-color, #22c55e);
    color: var(--pbfh-step-active-text-color, #ffffff);
    transform: scale(1.1);
}

.pbfh-step-item.completed .pbfh-step-number {
    background: var(--pbfh-step-active-color, #22c55e);
    color: var(--pbfh-step-active-text-color, #ffffff);
}

.pbfh-step-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--pbfh-step-label-inactive-color, #6b7280);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.pbfh-step-item.active .pbfh-step-label {
    color: var(--pbfh-step-label-active-color, #22c55e);
}

.pbfh-step-item.completed .pbfh-step-label {
    color: var(--pbfh-step-label-active-color, #22c55e);
}

.pbfh-step-divider {
    flex: 1;
    height: 2px;
    background: var(--pbfh-step-line-color, #d1d5db);
    margin: 0 8px;
    max-width: 50px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.pbfh-step-item.completed + .pbfh-step-divider {
    background: var(--pbfh-step-active-color, #22c55e);
}

/* Form Container */
.pbfh-booking-form-container {
    padding: 16px;
}

/* Form Steps */
.pbfh-form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pbfh-form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pbfh-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pbfh-form-title-color, #1e293b);
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

/* ================================================
   DATE/TIME SLIDER PANELS
   ================================================ */

.pbfh-datetime-slider {
    position: relative;
    overflow: hidden;
}

/* Slider panels should always be full width - never grid */
.pbfh-slider-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* Override any grid from form-row */
}

.pbfh-slider-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Time slots wrapper - full width container */
.pbfh-time-slots-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

/* Calendar panel slides left when exiting */
.pbfh-calendar-panel.slide-out {
    transform: translateX(-100%);
    opacity: 0;
}

/* Times panel slides in from right */
.pbfh-times-panel.slide-in {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Fixed height for time slots to prevent loading jump */
.pbfh-times-panel .pbfh-time-slots {
    min-height: 300px;
}

/* Loading state centered in fixed height area */
.pbfh-times-panel .pbfh-loading-times {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Back to calendar header */
.pbfh-times-header {
    margin-bottom: 16px;
}

.pbfh-back-to-calendar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--pbfh-btn-secondary-bg-color, #f3f4f6);
    border: 1px solid var(--pbfh-form-border-color, #e5e7eb);
    border-radius: 8px;
    color: var(--pbfh-btn-secondary-text-color, #4b5563);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pbfh-back-to-calendar:hover {
    background: var(--pbfh-btn-secondary-bg-color, #e5e7eb);
    filter: brightness(0.95);
    color: var(--pbfh-btn-secondary-text-color, #1f2937);
}

/* Split navigation - Change Date left, Continue right */
.pbfh-step-nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.pbfh-step-nav-split .pbfh-back-to-calendar {
    margin: 0;
}

.pbfh-back-to-calendar .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Selected date display */
.pbfh-selected-date {
    display: block;
    color: var(--pbfh-calendar-selected-color, #3b82f6);
    font-weight: 700;
}

/* Full-width Calendar (Step 1: Date & Time) */
.pbfh-calendar-full {
    margin-bottom: 24px;
    width: 100%;
}

.pbfh-calendar-full .pbfh-calendar-container {
    width: 100%;
    max-width: 100%;
}

.pbfh-calendar-full .pbfh-calendar {
    width: 100%;
    max-width: 100%;
}

.pbfh-calendar-full .pbfh-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.pbfh-calendar-full .pbfh-cal-day {
    padding: 16px 8px;
    font-size: 16px;
}

.pbfh-calendar-full .pbfh-cal-header-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.pbfh-calendar-full .pbfh-cal-header-days span {
    font-size: 13px;
    font-weight: 600;
}

/* Times row spans full width */
.pbfh-times-row {
    border-top: 1px solid var(--pbfh-form-border-color, #e5e7eb);
    padding-top: 20px;
    margin-top: 0;
}

/* Disabled button state */
.pbfh-btn-primary:disabled,
.pbfh-btn-primary[disabled] {
    background: #d1d5db !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.pbfh-btn-primary:disabled:hover,
.pbfh-btn-primary[disabled]:hover {
    background: #d1d5db !important;
    transform: none;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .pbfh-calendar-full .pbfh-cal-day {
        padding: 12px 4px;
        font-size: 14px;
    }
}

/* Form Fields */
.pbfh-form-row {
    margin-bottom: 20px;
}

/* Override pricing-table grid for booking form - form rows should be single column stacked */
.pbfh-booking-form-container .pbfh-form-row,
.pbfh-booking-page .pbfh-form-row {
    display: block;
    grid-template-columns: none;
}

.pbfh-form-row label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--pbfh-form-label-color, var(--pbfh-form-label, #374151));
    margin-bottom: 8px;
}

.pbfh-form-row input[type="text"],
.pbfh-form-row input[type="email"],
.pbfh-form-row input[type="tel"],
.pbfh-form-row input[type="date"],
.pbfh-form-row textarea,
.pbfh-form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color, #dcdde1);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.pbfh-form-row input:focus,
.pbfh-form-row textarea:focus,
.pbfh-form-row select:focus {
    outline: none;
    border-color: var(--accent-color, #1876BA);
    box-shadow: 0 0 0 3px rgba(24, 118, 186, 0.1);
}

.pbfh-field-hint {
    font-size: 12px;
    color: #9ca3af;
    margin: 6px 0 0 0;
}

/* Number Input */
/* Time Slots */
.pbfh-time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#pbfh-time-slots {
    width: 100%;
}

.pbfh-time-slot {
    padding: 12px;
    border: 2px solid var(--border-color, #dcdde1);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.pbfh-time-slot:hover {
    border-color: var(--accent-color, #1876BA);
    background: rgba(24, 118, 186, 0.05);
}

.pbfh-time-slot.selected {
    background: var(--accent-color, #1876BA);
    color: #fff;
    border-color: var(--accent-color, #1876BA);
}

/* Buttons */
.pbfh-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.pbfh-btn-primary {
    background: var(--accent-color, #1876BA);
    color: #fff;
}

.pbfh-btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color, #1876BA) 80%, black);
    transform: translateY(-2px);
}

.pbfh-btn-secondary {
    background: transparent;
    color: var(--text-color, #2c3e50);
    border: 2px solid var(--border-color, #dcdde1);
}

.pbfh-btn-secondary:hover {
    border-color: var(--accent-color, #1876BA);
    color: var(--accent-color, #1876BA);
}

.pbfh-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .pbfh-step-label {
        display: none;
    }
    
    .pbfh-step-indicator {
        padding: 20px 10px;
    }
    
    .pbfh-booking-form-container {
        padding: 25px 20px;
    }
    
    .pbfh-step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ==================================
   BOOKING PAGE (Standalone)
   ================================== */

.pbfh-booking-page {
    /* Visual Designer Variable Mapping (--pbfh-bkp-* → local vars) */
    --pbfh-page-bg-color: var(--pbfh-bkp-page-bg, var(--pbfh-page-bg, #f8fafc));
    --pbfh-content-bg-color: var(--pbfh-bkp-content-bg, var(--pbfh-content-bg, transparent));
    --pbfh-form-title-color: var(--pbfh-bkp-form-title, var(--pbfh-form-title, #1e3a5f));
    --pbfh-form-label-color: var(--pbfh-bkp-form-label, var(--pbfh-form-label, #374151));
    --pbfh-input-bg-color: var(--pbfh-bkp-input-bg, var(--pbfh-input-bg, #ffffff));
    --pbfh-input-border-color: var(--pbfh-bkp-input-border, var(--pbfh-input-border, #d1d5db));
    --pbfh-input-text-color: var(--pbfh-bkp-input-text, var(--pbfh-input-text, #111827));
    --pbfh-btn-primary-bg-color: var(--pbfh-bkp-btn-primary-bg, var(--pbfh-btn-primary-bg, #3b82f6));
    --pbfh-btn-primary-text-color: var(--pbfh-bkp-btn-primary-text, var(--pbfh-btn-primary-text, #ffffff));
    --pbfh-btn-secondary-bg-color: var(--pbfh-bkp-btn-secondary-bg, var(--pbfh-btn-secondary-bg, #f3f4f6));
    --pbfh-btn-secondary-text-color: var(--pbfh-bkp-btn-secondary-text, var(--pbfh-btn-secondary-text, #374151));
    
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--pbfh-page-bg-color, transparent);
    border-radius: 12px;
}

.pbfh-booking-form-wrapper {
    background: var(--pbfh-bkp-content-bg, transparent);
    border-radius: 12px;
}

/* Summary Card */
.pbfh-booking-summary-card {
    background: var(--pbfh-summary-bg-color, #ffffff);
    border: 2px solid var(--pbfh-summary-border-color, #dcdde1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pbfh-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--pbfh-summary-header-bg-color, #1876BA);
    color: var(--pbfh-summary-header-text-color, #ffffff);
}

.pbfh-summary-header * {
    color: var(--pbfh-summary-header-text-color, #ffffff);
}

.pbfh-summary-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.pbfh-summary-tier {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pbfh-summary-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 20px;
    background: var(--pbfh-summary-header-bg-color, #1e3a5f);
}

.pbfh-summary-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-decoration: none !important;
}

.pbfh-summary-item span {
    text-decoration: none !important;
    border-bottom: none !important;
    color: rgba(255, 255, 255, 0.85);
}

.pbfh-summary-item .dashicons {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    width: 15px;
    height: 15px;
}

.pbfh-summary-price {
    margin-left: auto;
    font-size: 20px;
    font-weight: 700;
    color: var(--pbfh-summary-price-color, #f97316);
}

/* Error Message */
.pbfh-error-message {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 2px solid #dcdde1;
    border-radius: 12px;
}

.pbfh-error-message h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.pbfh-error-message p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 25px 0;
}

.pbfh-error-message .pbfh-btn {
    display: inline-block;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pbfh-summary-header {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .pbfh-summary-title {
        font-size: 18px;
    }
    
    .pbfh-summary-tier {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .pbfh-summary-details {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
    }
    
    .pbfh-summary-item {
        font-size: 12px;
    }
    
    .pbfh-summary-price {
        font-size: 18px;
    }
    
    .pbfh-summary-equipment,
    .pbfh-summary-includes {
        padding: 8px 16px;
    }
}

/* ==================================
   VISUAL CALENDAR
   ================================== */

.pbfh-calendar-container {
    margin: 10px 0;
    width: 100%;
}

.pbfh-calendar {
    background: transparent;
    border: none;
    border-radius: var(--pbfh-booking-radius);
    overflow: hidden;
    width: 100%;
}

/* Calendar Header */
.pbfh-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--pbfh-bkp-cal-header-bg, var(--pbfh-calendar-header-bg-color, #3b82f6));
    color: var(--pbfh-bkp-cal-header-text, var(--pbfh-calendar-header-text-color, white));
}

.pbfh-cal-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pbfh-cal-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.pbfh-cal-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.pbfh-cal-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pbfh-cal-nav svg {
    width: 20px;
    height: 20px;
}

/* Weekday Headers */
.pbfh-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: transparent;
    border-bottom: none;
}

.pbfh-cal-weekday {
    padding: 6px 2px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--pbfh-bkp-cal-day-header, var(--pbfh-calendar-day-header-color, #6b7280));
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Calendar Days Grid */
.pbfh-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 6px;
    background: var(--pbfh-bkp-cal-grid-bg, transparent);
}

.pbfh-cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pbfh-bkpg-cal-disabled-bg, var(--pbfh-bkp-cal-day-bg, #ffffff));
    border-radius: 5px;
    min-height: 38px;
    padding: 4px 2px;
    cursor: default;
    transition: all 0.2s ease;
    position: relative;
}

.pbfh-cal-day .day-number {
    font-size: 13px;
    font-weight: 500;
    color: var(--pbfh-bkpg-cal-disabled, var(--pbfh-bkp-cal-day-text, #333333));
}

.pbfh-cal-day .day-status {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-top: 1px;
}

/* Weather overlay on calendar days (Phase 3B) */
.pbfh-cal-weather {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 1px;
    line-height: 1;
}
.pbfh-cal-weather-icon {
    width: 22px;
    height: 22px;
    display: block;
    margin: -2px 0;
}
.pbfh-cal-weather-emoji {
    font-size: 12px;
    line-height: 1;
}
.pbfh-cal-weather-temp {
    font-size: 9px;
    font-weight: 600;
    color: var(--pbfh-bkp-cal-day-text, #475569);
    line-height: 1;
}
.pbfh-cal-weather-rain {
    font-size: 8px;
    color: #3b82f6;
    line-height: 1;
}

/* Expand day cells slightly when weather is present */
.pbfh-cal-day:has(.pbfh-cal-weather) {
    min-height: 62px;
    padding: 3px 2px 2px;
}

/* Hide weather details on very small screens / full-width calendar variant */
@media (max-width: 380px) {
    .pbfh-cal-weather-temp,
    .pbfh-cal-weather-rain { display: none; }
    .pbfh-cal-weather-icon { width: 18px; height: 18px; }
}

/* Other month days */
.pbfh-cal-day.other-month {
    background: var(--pbfh-bkpg-cal-disabled-bg, rgba(128, 128, 128, 0.1));
    opacity: 0.5;
}

.pbfh-cal-day.other-month .day-number {
    color: var(--pbfh-bkpg-cal-disabled, #9ca3af);
    opacity: 0.6;
}

/* Past days - use disabled colors for consistency */
.pbfh-cal-day.past {
    background: var(--pbfh-bkpg-cal-disabled-bg, var(--pbfh-bkpg-cal-past-bg, transparent));
}

.pbfh-cal-day.past .day-number {
    color: var(--pbfh-bkpg-cal-disabled, var(--pbfh-bkpg-cal-past-text, #9ca3af));
}

/* Today */
.pbfh-cal-day.today {
    border: 2px solid var(--pbfh-bkpg-cal-today, var(--pbfh-bkp-cal-today-border, var(--pbfh-calendar-today-border-color, #f97316)));
}

/* Available days */
.pbfh-cal-day.available {
    background: var(--pbfh-bkpg-cal-available-bg, var(--pbfh-bkp-cal-available-bg, var(--pbfh-calendar-available-color, #dcfce7)));
    cursor: pointer;
    border-width: var(--pbfh-bkpg-cal-available-border-width, 0);
    border-style: var(--pbfh-bkpg-cal-available-border-style, solid);
    border-color: var(--pbfh-bkpg-cal-available-border, transparent);
}

.pbfh-cal-day.available .day-number {
    color: var(--pbfh-bkpg-cal-available-text, var(--pbfh-bkp-cal-available-text, var(--pbfh-calendar-available-text-color, #166534)));
    font-weight: 600;
}

.pbfh-cal-day.available:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    z-index: 1;
}

/* Full days */
.pbfh-cal-day.full {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.pbfh-cal-day.full .day-number {
    color: #e65100;
}

.pbfh-cal-day.full .day-status {
    color: #e65100;
}

/* Closed days */
.pbfh-cal-day.closed {
    background: var(--pbfh-bkpg-cal-disabled-bg, var(--pbfh-bkp-cal-day-bg, #f5f5f5));
    opacity: 0.7;
}

.pbfh-cal-day.closed .day-number {
    color: var(--pbfh-bkpg-cal-disabled, #7a7a7a);
}

/* No-bookings days (field open but no online bookings) */
.pbfh-cal-day.no-bookings {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
}

.pbfh-cal-day.no-bookings .day-number {
    color: #0277bd;
}

.pbfh-cal-day.no-bookings .day-status {
    font-size: 9px;
    color: #0277bd;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Loading state */
.pbfh-cal-day.loading {
    background: var(--pbfh-bkp-cal-day-bg, #fafafa);
}

.pbfh-cal-day.loading::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #ddd 25%, #eee 50%, #ddd 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Selected day */
.pbfh-cal-day.selected {
    background: var(--pbfh-bkpg-cal-selected-bg, var(--pbfh-bkp-cal-selected-bg, var(--pbfh-calendar-selected-color, #3b82f6))) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: scale(1.08);
    z-index: 2;
    border-width: var(--pbfh-bkpg-cal-selected-border-width, 0) !important;
    border-style: var(--pbfh-bkpg-cal-selected-border-style, solid) !important;
    border-color: var(--pbfh-bkpg-cal-selected-border, transparent) !important;
}

.pbfh-cal-day.selected .day-number {
    color: var(--pbfh-bkpg-cal-selected-text, var(--pbfh-bkp-cal-selected-text, white)) !important;
    font-weight: 700;
}

.pbfh-cal-day.selected .day-status {
    color: rgba(255, 255, 255, 0.9);
}

/* Calendar Legend */
.pbfh-cal-legend {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 8px 12px;
    background: transparent;
    flex-wrap: wrap;
}

.pbfh-cal-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--pbfh-bkp-cal-day-text, var(--pbfh-booking-text-light, #9ca3af));
}

.pbfh-cal-legend .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.pbfh-cal-legend .legend-dot.available {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.pbfh-cal-legend .legend-dot.full {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
}

.pbfh-cal-legend .legend-dot.closed {
    background: #e0e0e0;
}

.pbfh-cal-legend .legend-dot.no-bookings {
    background: linear-gradient(135deg, #b3e5fc 0%, #81d4fa 100%);
}

/* ==================================
   ENHANCED TIME SLOTS
   ================================== */

.pbfh-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 5px 0;
    width: 100%;
}

/* Show 4 columns on wider screens */
@media (min-width: 900px) {
    .pbfh-time-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Show 5 columns on even wider screens */
@media (min-width: 1100px) {
    .pbfh-time-slots-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.pbfh-time-slots-grid .pbfh-time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: var(--pbfh-timeslot-bg-color, #ffffff);
    border: 2px solid var(--pbfh-timeslot-border-color, #e5e7eb);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 70px;
}

.pbfh-time-slots-grid .pbfh-time-slot:hover:not(.unavailable):not(:disabled) {
    border-color: var(--pbfh-timeslot-selected-color, #f97316);
    background: #fff9f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.15);
}

.pbfh-time-slots-grid .pbfh-time-slot.selected {
    background: var(--pbfh-timeslot-bg-color, #ffffff);
    border-color: var(--pbfh-timeslot-selected-color, #f97316);
    border-width: 3px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.pbfh-time-slots-grid .pbfh-time-slot.unavailable,
.pbfh-time-slots-grid .pbfh-time-slot:disabled {
    background: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pbfh-time-slots-grid .time-display {
    font-size: 16px;
    font-weight: 600;
    color: var(--pbfh-timeslot-text-color, #1e3a5f);
}

.pbfh-time-slots-grid .pbfh-time-slot.selected .time-display {
    color: var(--pbfh-timeslot-text-color, #1e3a5f);
}

.pbfh-time-slots-grid .availability {
    font-size: 11px;
    color: var(--pbfh-timeslot-available-color, #22c55e);
    margin-top: 4px;
}

.pbfh-time-slots-grid .pbfh-time-slot.selected .availability {
    color: var(--pbfh-timeslot-available-color, #22c55e);
}

.pbfh-time-slots-grid .pbfh-time-slot.unavailable .availability {
    color: #999;
}

.pbfh-time-help {
    font-size: 13px;
    color: var(--pbfh-booking-text-light);
    margin-top: 12px;
    text-align: center;
}

/* Loading state */
.pbfh-loading-times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    color: var(--pbfh-booking-text-light);
    font-size: 14px;
}

.pbfh-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-top-color: var(--pbfh-booking-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pbfh-no-times,
.pbfh-error {
    padding: 20px;
    text-align: center;
    color: var(--pbfh-booking-text-light);
    background: #f8f9fa;
    border-radius: 8px;
    margin: 10px 0;
}

.pbfh-error {
    color: var(--pbfh-booking-error);
    background: #fef2f2;
}

/* ==================================
   ENHANCED NUMBER INPUT (Player Count)
   ================================== */

.pbfh-number-input {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.pbfh-number-input input[type="number"] {
    width: 60px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    padding: 0;
    background: #fff;
    -moz-appearance: textfield;
}

.pbfh-number-input input[type="number"]::-webkit-outer-spin-button,
.pbfh-number-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pbfh-qty-minus,
.pbfh-qty-plus {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.pbfh-qty-minus {
    border-radius: 0;
}

.pbfh-qty-plus {
    border-radius: 0;
}

.pbfh-qty-minus:hover,
.pbfh-qty-plus:hover {
    background: #e5e7eb;
    color: #111827;
}

.pbfh-qty-minus:active,
.pbfh-qty-plus:active {
    transform: scale(0.95);
}

/* Responsive Calendar */
@media (max-width: 480px) {
    .pbfh-cal-header {
        padding: 12px 15px;
    }
    
    .pbfh-cal-title {
        font-size: 16px;
    }
    
    .pbfh-cal-nav {
        width: 32px;
        height: 32px;
    }
    
    .pbfh-cal-weekday {
        padding: 4px 2px;
        font-size: 9px;
    }
    
    .pbfh-cal-days {
        gap: 2px;
        padding: 4px;
    }
    
    .pbfh-cal-day {
        min-height: 32px;
        border-radius: 4px;
        padding: 3px 2px;
    }
    
    .pbfh-cal-day .day-number {
        font-size: 12px;
    }
    
    .pbfh-cal-day .day-status {
        font-size: 7px;
    }
    
    .pbfh-cal-legend {
        gap: 8px;
        padding: 5px 6px;
    }
    
    .pbfh-cal-legend .legend-item {
        font-size: 8px;
    }
    
    .pbfh-time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Availability Notice Box */
.pbfh-availability-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.pbfh-availability-notice.warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.pbfh-availability-notice .notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pbfh-availability-notice .notice-content {
    flex: 1;
}

.pbfh-availability-notice .notice-content p {
    margin: 0 0 8px 0;
}

.pbfh-availability-notice .notice-content p:last-child {
    margin-bottom: 0;
}

.pbfh-availability-notice .next-available,
.pbfh-availability-notice .reduce-headcount {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.pbfh-availability-notice button {
    background: #fff;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 8px;
}

.pbfh-availability-notice button:hover {
    background: #007bff;
    color: #fff;
}

.pbfh-select-alternative {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.pbfh-select-alternative:hover {
    background: #218838 !important;
    border-color: #218838 !important;
}

/* Capacity Info Header */
.pbfh-capacity-info {
    background: #e9ecef;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

/* Enhanced Time Slot Availability */
.pbfh-time-slot .availability {
    display: block;
    font-size: 11px;
    margin-top: 4px;
}

.pbfh-time-slot .availability.available {
    color: #28a745;
}

.pbfh-time-slot .availability.limited {
    color: #856404;
}

.pbfh-time-slot .availability.full {
    color: #dc3545;
}

.pbfh-time-slot.unavailable {
    opacity: 0.6;
    cursor: not-allowed;
}

.pbfh-time-slot.unavailable:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .pbfh-availability-notice {
        flex-direction: column;
        gap: 8px;
    }
    
    .pbfh-availability-notice .notice-icon {
        font-size: 20px;
    }
}

/* ================================================
   BYO (Bring Your Own) Gear Section
   ================================================ */

/* Package Includes Info Box */
.pbfh-rental-info-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #81c784;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.pbfh-rental-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 12px;
}

.pbfh-rental-info-header .dashicons {
    color: #43a047;
}

.pbfh-rental-included {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pbfh-equip-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pbfh-equip-tag .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #666;
}

/* BYO Section */
.pbfh-byo-section {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.pbfh-byo-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.pbfh-byo-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.pbfh-byo-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    margin-left: 28px;
}

.pbfh-byo-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.pbfh-byo-intro {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.pbfh-byo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.pbfh-byo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.pbfh-byo-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.pbfh-byo-item label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #666;
}

.pbfh-byo-input {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pbfh-byo-input button {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pbfh-byo-input button:hover {
    background: #e0e0e0;
}

.pbfh-byo-input input {
    width: 45px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
    font-size: 14px;
}

.pbfh-byo-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e3f2fd;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #90caf9;
}

.pbfh-byo-summary-label {
    font-weight: 500;
    color: #1565c0;
}

.pbfh-byo-summary-count {
    font-weight: 700;
    font-size: 16px;
    color: #1565c0;
}

/* Responsive */
@media (max-width: 480px) {
    .pbfh-byo-grid {
        grid-template-columns: 1fr;
    }
    
    .pbfh-rental-included {
        flex-direction: column;
    }
    
    .pbfh-equip-tag {
        justify-content: center;
    }
}

/* ================================================
   Time Slots Grid - Enhanced Layout
   ================================================ */

/* AM/PM Period Toggle - Horizontal layout */
.pbfh-time-period-toggle {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.pbfh-period-btn {
    padding: 10px 20px;
    border: 2px solid var(--pbfh-bkp-slot-border, var(--pbfh-booking-border, #e0e0e0));
    background: var(--pbfh-bkp-slot-bg, #f8fafc);
    color: var(--pbfh-bkp-slot-text, #374151);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pbfh-period-btn:hover {
    border-color: var(--pbfh-booking-accent, #e67e22);
    color: var(--pbfh-booking-accent, #e67e22);
}

.pbfh-period-btn.active {
    background: var(--pbfh-booking-accent, #e67e22);
    border-color: var(--pbfh-booking-accent, #e67e22);
    color: #fff;
}

/* Override existing time slots grid for proper 3-column layout */
.pbfh-time-slots .pbfh-time-slots-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 4px;
    width: 100%;
}

/* Mobile: 2 columns */
@media (max-width: 600px) {
    .pbfh-time-slots .pbfh-time-slots-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pbfh-period-btn {
        flex: 1;
        text-align: center;
        min-width: 80px;
    }
}

/* Ensure Continue buttons are clickable */
.pbfh-next-step,
.pbfh-prev-step {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.pbfh-btn {
    cursor: pointer;
}

/* ================================================
   Review & Confirm - Fix header colors
   ================================================ */

.pbfh-booking-summary h4,
.pbfh-summary-section h4 {
    color: var(--pbfh-form-title-color, #333);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--pbfh-input-border-color, #e0e0e0);
    padding-bottom: 8px;
}

/* Review Summary */
.pbfh-booking-summary {
    color: var(--pbfh-form-label-color, #333);
}

.pbfh-summary-section {
    margin-bottom: 20px;
}

.pbfh-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--pbfh-input-border-color, #f0f0f0);
}

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

.pbfh-summary-label {
    color: var(--pbfh-form-label-color, #333);
    font-weight: 500;
}

.pbfh-summary-value {
    color: var(--pbfh-input-text-color, #333);
    font-weight: 600;
}

.pbfh-summary-total {
    border-top: 2px solid var(--pbfh-input-border-color, #e0e0e0);
    margin-top: 8px;
    padding-top: 12px;
}

.pbfh-summary-total .pbfh-summary-label,
.pbfh-summary-total .pbfh-summary-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--pbfh-form-title-color, #1a1a1a);
}

.pbfh-summary-total .pbfh-tax-note {
    font-size: 13px;
    font-weight: 500;
}

.pbfh-summary-deposit .pbfh-summary-value {
    color: var(--pbfh-booking-accent, #e67e22);
    font-weight: 700;
}

.pbfh-summary-deposit .pbfh-tax-note {
    color: var(--pbfh-booking-accent, #e67e22);
}

.pbfh-summary-tax-note {
    border: none !important;
    padding-top: 0 !important;
}

.pbfh-tax-note {
    font-size: 12px;
    color: var(--pbfh-form-label-color, #666);
    font-style: italic;
    font-weight: 400;
    margin-left: 4px;
}

/* Terms Checkbox Section */
.pbfh-form-row.pbfh-terms {
    margin-top: 20px;
    padding: 16px;
    background: var(--pbfh-input-bg-color, #f8fafc);
    border-radius: 8px;
    border: 1px solid var(--pbfh-input-border-color, #e5e7eb);
}

.pbfh-form-row.pbfh-terms label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--pbfh-form-label-color, #374151);
    cursor: pointer;
}

.pbfh-form-row.pbfh-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pbfh-terms-link {
    color: var(--pbfh-btn-primary-bg-color, #3b82f6);
    text-decoration: underline;
}

.pbfh-terms-link:hover {
    text-decoration: none;
}

/* ================================================
   Equipment Step Styles
   ================================================ */

.pbfh-equipment-included {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.pbfh-subsection-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #166534;
    margin: 0 0 8px 0;
}

.pbfh-subsection-title .dashicons {
    color: #22c55e;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.pbfh-equipment-note {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 16px;
}

.pbfh-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.pbfh-equipment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pbfh-equipment-icon {
    color: #1876BA;
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pbfh-equipment-name {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

.pbfh-equipment-qty {
    font-weight: 700;
    color: #059669;
    white-space: nowrap;
}

/* BYO Equipment Section */
.pbfh-byo-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.pbfh-byo-section .pbfh-subsection-title {
    color: #1876BA;
}

.pbfh-byo-section .pbfh-subsection-title .dashicons {
    color: #1876BA;
}

.pbfh-byo-note {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.pbfh-byo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.pbfh-byo-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    transition: border-color 0.2s;
}

.pbfh-byo-item:hover {
    border-color: #1876BA;
}

.pbfh-byo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pbfh-byo-header .dashicons {
    color: #6b7280;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.pbfh-byo-name {
    font-weight: 600;
    color: var(--pbfh-form-label-color, #374151);
}

.pbfh-byo-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.pbfh-byo-input label {
    font-size: 13px;
    color: var(--pbfh-form-label-color, #6b7280);
}

.pbfh-byo-number {
    transform: scale(0.85);
    transform-origin: right center;
}

.pbfh-byo-number input {
    width: 50px !important;
}

.pbfh-byo-summary {
    font-size: 12px;
    color: #6b7280;
    text-align: right;
}

.pbfh-rentals-needed strong {
    color: #059669;
}

/* Tier Card - Horizontal Equipment Layout */
.pbfh-tier-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbfh-tier-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 13px;
    color: #4b5563;
}

.pbfh-tier-list li .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #1876BA;
}

/* Equipment included row spans full width on tier card */
.pbfh-tier-section.pbfh-equipment-full-width {
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .pbfh-booking-form-card {
        max-width: 100% !important;
    }
    
    .pbfh-equipment-grid,
    .pbfh-byo-grid {
        grid-template-columns: 1fr;
    }
    
    .pbfh-tier-list {
        flex-direction: column;
    }
    
    .pbfh-tier-list li {
        justify-content: flex-start;
    }
}

/* BYO Gear Intro Section */
.pbfh-byo-intro {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.pbfh-byo-intro-text {
    color: #1e40af;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.pbfh-byo-note-small {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

.pbfh-byo-note-small .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #0ea5e9;
    flex-shrink: 0;
    margin-top: 1px;
}

/* BYO Summary Section */
.pbfh-byo-total-summary {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--pbfh-bkp-input-border, #e5e7eb);
}

.pbfh-byo-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--pbfh-bkp-form-label, #374151);
}

.pbfh-byo-summary-row strong {
    color: var(--pbfh-bkp-btn-primary-bg, #1876BA);
    font-size: 16px;
}

/* No BYO Equipment Message */
.pbfh-no-byo {
    text-align: center;
    padding: 30px 20px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
}

.pbfh-no-byo .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #22c55e;
    margin-bottom: 12px;
}

.pbfh-no-byo p {
    color: #166534;
    font-size: 15px;
    margin: 0;
}

/* BYO Item Improvements */
.pbfh-byo-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.pbfh-byo-item:hover {
    border-color: #1876BA;
    box-shadow: 0 2px 8px rgba(24, 118, 186, 0.1);
}

.pbfh-rentals-label {
    font-size: 12px;
    color: #6b7280;
    margin-right: 4px;
}

.pbfh-rentals-needed {
    font-size: 14px;
}

.pbfh-rentals-needed strong {
    color: #059669;
    font-weight: 700;
}

/* BYO Section in step - remove extra background */
.pbfh-form-step .pbfh-byo-section {
    background: transparent;
    border: none;
    padding: 0;
}

.pbfh-form-step .pbfh-byo-section .pbfh-subsection-title {
    color: #374151;
    margin-bottom: 16px;
}

.pbfh-form-step .pbfh-byo-section .pbfh-subsection-title .dashicons {
    color: #1876BA;
}

/* ================================================
   Selected Package Header
   ================================================ */

.pbfh-selected-package-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    padding: 20px 24px;
}

.pbfh-selected-package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.pbfh-selected-package-name {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pbfh-selected-package-name h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.pbfh-tier-badge {
    background: #1876BA;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pbfh-selected-package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--pbfh-booking-accent, #e67e22);
}

.pbfh-selected-package-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.pbfh-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
}

.pbfh-info-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.pbfh-section-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.pbfh-selected-package-equipment,
.pbfh-selected-package-includes {
    margin-top: 12px;
}

.pbfh-equipment-pills,
.pbfh-includes-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pbfh-equipment-pill,
.pbfh-include-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--pbfh-pill-bg-color, #f0f9ff);
    border: 1px solid var(--pbfh-pill-border-color, #bae6fd);
    border-radius: 20px;
    font-size: 13px;
    color: var(--pbfh-pill-text-color, #0369a1);
}

.pbfh-equipment-pill .dashicons,
.pbfh-include-pill .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--pbfh-pill-text-color, #0369a1);
}

.pbfh-include-pill .dashicons {
    color: #22c55e;
}

.pbfh-include-pill.food .dashicons {
    color: #f97316;
}

.pbfh-item-qty {
    color: #94a3b8;
    font-size: 12px;
}

/* ================================================
   BYO Layout - Stacked
   ================================================ */

.pbfh-byo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pbfh-byo-item {
    background: var(--pbfh-input-bg-color, #fff);
    border: 1px solid var(--pbfh-input-border-color, #e5e7eb);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s;
}

.pbfh-byo-item:hover {
    border-color: var(--pbfh-btn-primary-bg-color, #1876BA);
    box-shadow: 0 2px 8px rgba(24, 118, 186, 0.1);
}

.pbfh-byo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pbfh-byo-header .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--pbfh-btn-primary-bg-color, #1876BA);
}

.pbfh-byo-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--pbfh-form-label-color, #1e293b);
}

.pbfh-byo-label {
    font-size: 12px;
    color: var(--pbfh-form-label-color, #64748b);
    margin-bottom: 10px;
}

.pbfh-byo-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pbfh-byo-number {
    transform: none !important;
}

.pbfh-byo-number input {
    width: 60px !important;
    text-align: center;
}

.pbfh-byo-rentals {
    font-size: 12px;
    color: var(--pbfh-form-label-color, #64748b);
}

.pbfh-byo-rentals strong {
    color: var(--pbfh-booking-success, #059669);
    font-weight: 700;
}

@media (max-width: 500px) {
    .pbfh-byo-grid {
        grid-template-columns: 1fr;
    }
    
    .pbfh-selected-package-top {
        flex-direction: column;
        gap: 12px;
    }
    
    .pbfh-selected-package-info {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ================================================
   TOP SUMMARY CARD - Equipment & Includes
   ================================================ */

.pbfh-summary-equipment,
.pbfh-summary-includes {
    margin: 0;
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--pbfh-summary-bg-color, #f8fafc);
}

.pbfh-summary-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--pbfh-bkp-summary-meta, var(--pbfh-summary-meta-color, #6b7280));
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.pbfh-summary-equipment-list,
.pbfh-summary-includes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pbfh-equipment-tag,
.pbfh-include-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--pbfh-bkp-pill-bg, var(--pbfh-pill-bg-color, #f0f9ff));
    border: 1px solid var(--pbfh-bkp-pill-border, var(--pbfh-pill-border-color, #bae6fd));
    border-radius: 16px;
    font-size: 12px;
    color: var(--pbfh-bkp-pill-text, var(--pbfh-pill-text-color, #0369a1));
}

.pbfh-equipment-tag .dashicons,
.pbfh-include-tag .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.pbfh-include-tag {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.pbfh-include-tag.food {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}

/* ================================================
   BYO LAYOUT - FIXED STACKED LAYOUT
   ================================================ */

.pbfh-byo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .pbfh-byo-grid {
        grid-template-columns: 1fr;
    }
}

.pbfh-byo-item {
    background: var(--pbfh-bkp-input-bg, #f8fafc);
    border: 1px solid var(--pbfh-bkp-input-border, #e5e7eb);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.pbfh-byo-item:hover {
    border-color: var(--pbfh-bkp-btn-primary-bg, #1876BA);
    box-shadow: 0 4px 12px rgba(24, 118, 186, 0.12);
}

.pbfh-byo-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pbfh-byo-header .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: var(--pbfh-bkp-btn-primary-bg, #1876BA);
}

.pbfh-byo-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--pbfh-bkp-form-label, #1e293b);
}

.pbfh-byo-label {
    font-size: 12px;
    color: var(--pbfh-bkp-form-label, #64748b);
    text-align: center;
}

.pbfh-byo-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.pbfh-byo-number {
    transform: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.pbfh-byo-number button {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
}

.pbfh-byo-number input {
    width: 44px !important;
    height: 32px !important;
    text-align: center;
    font-size: 15px !important;
    font-weight: 600;
}

.pbfh-byo-rentals {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0fdf4;
    border-radius: 20px;
    font-size: 12px;
}

.pbfh-rentals-label {
    color: #64748b;
}

.pbfh-rentals-needed strong {
    color: #059669;
    font-weight: 700;
    font-size: 14px;
}

/* BYO Section container - clean */
.pbfh-form-step .pbfh-byo-section {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.pbfh-form-step .pbfh-subsection-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.pbfh-form-step .pbfh-subsection-title .dashicons {
    color: #1876BA;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* ================================================
   WIDER LAYOUT FOR DESKTOP
   ================================================ */

.pbfh-booking-page {
    max-width: 900px !important;
    margin: 0 auto;
}

.pbfh-booking-summary-card {
    width: 100%;
}

.pbfh-booking-form-card {
    width: 100%;
}

.pbfh-booking-form-wrapper {
    width: 100%;
}

/* Tighter spacing */
.pbfh-form-row {
    margin-bottom: 20px;
}

.pbfh-step-title {
    margin-bottom: 16px;
}

.pbfh-byo-intro {
    margin-bottom: 20px;
}

/* Form step padding reduction */
.pbfh-form-step {
    padding: 24px !important;
}

@media (min-width: 768px) {
    .pbfh-booking-page {
        max-width: 900px !important;
    }
}

/* ================================================
   STEP VALIDATION ERRORS
   ================================================ */

.pbfh-step-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    color: #dc2626;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pbfh-step-error .dashicons {
    color: #dc2626;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.pbfh-field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

.pbfh-time-slots.pbfh-field-error {
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 8px;
}

/* ================================================
   INPUT TEXT COLOR FIX - BLACK ON WHITE
   ================================================ */

.pbfh-booking-form input[type="text"],
.pbfh-booking-form input[type="email"],
.pbfh-booking-form input[type="tel"],
.pbfh-booking-form input[type="number"],
.pbfh-booking-form textarea,
.pbfh-booking-form select,
.pbfh-number-input input,
.pbfh-byo-qty {
    color: #000000 !important;
    background-color: #ffffff;
}

.pbfh-number-input input::placeholder,
.pbfh-booking-form input::placeholder {
    color: #9ca3af;
}

/* ================================================
   CSS VARIABLE USAGE - DISPLAY SETTINGS
   ================================================ */

/* Card Styles using CSS variables */
.pbfh-tier-card {
    background: var(--pbfh-card-bg, #ffffff);
    border-color: var(--pbfh-card-border, #e5e7eb);
    border-radius: var(--pbfh-border-radius, 12px);
}

.pbfh-tier-name {
    color: var(--pbfh-card-title, #1e293b);
}

.pbfh-tier-card,
.pbfh-tier-section,
.pbfh-tier-card p {
    color: var(--pbfh-card-text, #64748b);
}

.pbfh-tier-price {
    color: var(--pbfh-card-price, #ea580c) !important;
}

.pbfh-tier-badge,
.pbfh-summary-tier {
    background: var(--pbfh-badge-bg-color, var(--pbfh-badge-bg, #e67e22));
    color: var(--pbfh-badge-text-color, var(--pbfh-badge-text, #ffffff));
}

.pbfh-tier-cta,
.pbfh-btn-primary {
    background: var(--pbfh-btn-primary-bg, var(--pbfh-btn-bg, #1876BA)) !important;
    color: var(--pbfh-btn-primary-text, var(--pbfh-btn-text, #ffffff)) !important;
}

.pbfh-btn-secondary {
    background: var(--pbfh-btn-secondary-bg, #f3f4f6) !important;
    color: var(--pbfh-btn-secondary-text, #374151) !important;
}

/* Form Styles using CSS variables */
.pbfh-booking-form-card,
.pbfh-booking-summary-card {
    background: var(--pbfh-bkp-form-bg, transparent);
    border: none;
    border-radius: var(--pbfh-bkp-form-radius, 12px);
}

.pbfh-step-title,
.pbfh-summary-title {
    color: var(--pbfh-form-title, #1e293b);
}

.pbfh-form-step,
.pbfh-booking-form-card p,
.pbfh-form-row {
    color: var(--pbfh-form-text, #374151);
}

.pbfh-form-row label {
    color: var(--pbfh-form-label-color, var(--pbfh-form-label, #374151));
}

.pbfh-booking-form input[type="text"],
.pbfh-booking-form input[type="email"],
.pbfh-booking-form input[type="tel"],
.pbfh-booking-form input[type="number"],
.pbfh-booking-form textarea,
.pbfh-booking-form select,
.pbfh-number-input input {
    background: var(--pbfh-input-bg, #ffffff) !important;
    color: var(--pbfh-input-text, #000000) !important;
    border-color: var(--pbfh-input-border, #d1d5db);
}

/* Accent colors */
.pbfh-byo-header .dashicons,
.pbfh-equipment-tag .dashicons,
.pbfh-subsection-title .dashicons {
    color: var(--pbfh-pill-text-color, #0369a1);
}

/* ================================================
   CARD STYLE VARIANTS
   ================================================ */

/* Basic Style (default) */
.pbfh-tier-card.style-basic {
    background: var(--pbfh-card-bg, #ffffff);
    border: 2px solid var(--pbfh-card-border, #e5e7eb);
}

/* Featured Style - highlighted with accent */
.pbfh-tier-card.style-featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--pbfh-accent, #1876BA);
    box-shadow: 0 4px 12px rgba(24, 118, 186, 0.15);
}

.pbfh-tier-card.style-featured .pbfh-tier-badge {
    background: linear-gradient(135deg, #1876BA 0%, #0d5a8f 100%);
}

/* Minimal Style - no border, subtle background */
.pbfh-tier-card.style-minimal {
    background: #fafafa;
    border: none;
    box-shadow: none;
}

.pbfh-tier-card.style-minimal:hover {
    background: #f5f5f5;
}

/* Premium Style - dark theme */
.pbfh-tier-card.style-premium {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pbfh-tier-card.style-premium .pbfh-tier-name,
.pbfh-tier-card.style-premium .pbfh-tier-price,
.pbfh-tier-card.style-premium .pbfh-section-title,
.pbfh-tier-card.style-premium .pbfh-tier-card,
.pbfh-tier-card.style-premium p,
.pbfh-tier-card.style-premium li {
    color: #ffffff !important;
}

.pbfh-tier-card.style-premium .pbfh-tier-section {
    border-color: rgba(255, 255, 255, 0.1);
}

.pbfh-tier-card.style-premium .pbfh-tier-list li .dashicons {
    color: #60a5fa;
}

.pbfh-tier-card.style-premium .pbfh-tier-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pbfh-tier-card.style-premium .pbfh-tier-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

/* ================================================
   DETAILS PAGE CUSTOMIZATION
   ================================================ */

/* Summary Card Header */
.pbfh-booking-summary-card .pbfh-summary-header,
.pbfh-summary-card-header {
    background: var(--pbfh-header-bg, #1876BA);
    color: var(--pbfh-header-text, #ffffff);
}

.pbfh-booking-summary-card .pbfh-summary-header *,
.pbfh-summary-card-header * {
    color: var(--pbfh-header-text, #ffffff);
}

/* Summary Content Area */
.pbfh-booking-summary-card .pbfh-summary-content,
.pbfh-summary-body {
    background: var(--pbfh-summary-bg, #f8fafc);
    border-color: var(--pbfh-summary-border, #e2e8f0);
}

/* Layout: Stacked */
.pbfh-booking-page.layout-stacked {
    flex-direction: column;
}

.pbfh-booking-page.layout-stacked .pbfh-booking-summary-card {
    order: -1;
    max-width: 100%;
    width: 100%;
}

.pbfh-booking-page.layout-stacked .pbfh-booking-form-card {
    max-width: 100%;
    width: 100%;
}

/* Layout: Side by Side (default) */
.pbfh-booking-page.layout-side-by-side {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pbfh-booking-page.layout-side-by-side .pbfh-booking-form-card {
    flex: 2;
    min-width: 400px;
}

.pbfh-booking-page.layout-side-by-side .pbfh-booking-summary-card {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 800px) {
    .pbfh-booking-page.layout-side-by-side {
        flex-direction: column;
    }
    
    .pbfh-booking-page.layout-side-by-side .pbfh-booking-form-card,
    .pbfh-booking-page.layout-side-by-side .pbfh-booking-summary-card {
        min-width: 100%;
        width: 100%;
    }
}

/* ================================================
   COMPACT MOBILE-FIRST OVERRIDES (v6.3.0)
   Reduces spacing for better mobile experience
   ================================================ */

/* Summary Card - Compact Header with Inline Badge */
.pbfh-summary-header {
    padding: 12px 16px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.pbfh-summary-title {
    font-size: 20px;
    flex: 1;
    min-width: 0;
}

.pbfh-summary-tier {
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 14px;
    flex-shrink: 0;
}

/* Summary Details - Merged into Header Style */
.pbfh-summary-details {
    padding: 10px 16px;
    gap: 12px;
    background: var(--pbfh-summary-header-bg-color, #1e3a5f);
}

.pbfh-summary-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.pbfh-summary-item .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.pbfh-summary-price {
    font-size: 20px;
    color: var(--pbfh-summary-price-color, #f97316);
}

/* Equipment Section - Compact */
.pbfh-summary-equipment,
.pbfh-summary-includes {
    padding: 10px 16px;
}

.pbfh-summary-label {
    font-size: 10px;
    margin-bottom: 6px;
}

.pbfh-summary-equipment-list,
.pbfh-summary-includes-list {
    gap: 6px;
}

.pbfh-equipment-tag,
.pbfh-include-tag {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

.pbfh-equipment-tag .dashicons,
.pbfh-include-tag .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

/* Form Wrapper - Reduced Top Margin */
.pbfh-booking-form-wrapper {
    margin-top: 10px !important;
}

/* Step Indicator - Compact */
.pbfh-step-indicator {
    padding: 12px 10px;
}

.pbfh-step-number {
    width: 30px;
    height: 30px;
    font-size: 13px;
}

.pbfh-step-item.active .pbfh-step-number {
    transform: scale(1.05);
}

.pbfh-step-label {
    font-size: 9px;
    letter-spacing: 0.3px;
}

.pbfh-step-divider {
    margin: 0 6px;
    max-width: 40px;
    margin-bottom: 20px;
}

/* Form Container - Reduced Padding */
.pbfh-booking-form-container {
    padding: 14px;
}

.pbfh-form-step {
    padding: 14px !important;
}

/* Form Elements - Compact */
.pbfh-step-title {
    font-size: 16px;
    margin-bottom: 12px;
}

.pbfh-form-row {
    margin-bottom: 14px;
}

.pbfh-form-row label {
    font-size: 13px;
    margin-bottom: 4px;
}

/* Calendar - Compact */
.pbfh-calendar-container {
    margin: 10px 0;
}

.pbfh-cal-header {
    padding: 10px 12px;
}

.pbfh-cal-title {
    font-size: 14px;
}

.pbfh-cal-nav {
    width: 30px;
    height: 30px;
}

.pbfh-cal-weekdays {
    padding: 8px 6px;
}

.pbfh-cal-weekday {
    font-size: 10px;
}

.pbfh-cal-days {
    gap: 2px;
    padding: 6px;
}

.pbfh-cal-day {
    font-size: 13px;
    min-height: 36px;
}

/* Time Slots - Compact */
.pbfh-time-slots-container {
    margin: 10px 0;
}

.pbfh-time-slots {
    gap: 6px;
}

.pbfh-time-slot {
    padding: 8px 10px;
    font-size: 13px;
}

/* BYO Section - Compact */
.pbfh-byo-section {
    margin-top: 14px;
}

.pbfh-byo-details {
    padding: 12px;
}

.pbfh-byo-intro {
    margin-bottom: 12px;
    font-size: 13px;
}

.pbfh-byo-grid {
    gap: 8px;
}

.pbfh-byo-item {
    padding: 10px;
}

/* Navigation Buttons - Compact */
.pbfh-form-actions {
    margin-top: 14px;
    gap: 10px;
}

.pbfh-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Responsive - Mobile stays compact, Desktop gets slightly more room */
@media (max-width: 480px) {
    .pbfh-summary-header {
        padding: 10px 12px;
    }
    
    .pbfh-summary-title {
        font-size: 18px;
    }
    
    .pbfh-summary-details {
        padding: 8px 12px;
        gap: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .pbfh-summary-price {
        font-size: 18px;
    }
    
    .pbfh-step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .pbfh-step-label {
        font-size: 8px;
    }
    
    .pbfh-step-divider {
        max-width: 24px;
        margin-bottom: 18px;
    }
    
    .pbfh-booking-form-container,
    .pbfh-form-step {
        padding: 10px !important;
    }
}

@media (min-width: 768px) {
    .pbfh-summary-header {
        padding: 14px 20px;
    }
    
    .pbfh-summary-title {
        font-size: 22px;
    }
    
    .pbfh-summary-details {
        padding: 12px 20px;
    }
    
    .pbfh-step-indicator {
        padding: 16px 14px;
    }
    
    .pbfh-step-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .pbfh-step-label {
        font-size: 10px;
    }
    
    .pbfh-booking-form-container {
        padding: 18px;
    }
    
    .pbfh-form-step {
        padding: 18px !important;
    }
}
