/**
 * Main stylesheet for Apartments Booking Plugin
 * Contains CSS variables and shared styles
 */

:root {
    /* Primary colors */
    --apb-primary: #D68B53;
    --apb-primary-hover: #E69B63;
    --apb-primary-light: #e5f2f8;
    
    /* Secondary colors */
    --apb-secondary: #4caf50;
    --apb-secondary-hover: #45a049;
    
    /* Accent color - for customizing main accents like buttons, hover states */
    --apb-accent: #D68B53;
    --apb-accent-hover: rgba(214, 139, 83, 0.8);
    --apb-accent-light: rgba(214, 139, 83, 0.1);
    
    /* Neutral colors */
    --apb-white: #ffffff;
    --apb-light-gray: #f9f9f9;
    --apb-gray-100: #f5f5f5;
    --apb-gray-200: #e6e6e6;
    --apb-gray-300: #dddddd;
    --apb-gray-400: #cccccc;
    --apb-gray-500: #999999;
    --apb-gray-600: #666666;
    --apb-gray-700: #333333;
    --apb-black: #000000;
    
    /* Status colors */
    --apb-success: #d4edda;
    --apb-success-text: #155724;
    --apb-success-border: #c3e6cb;
    
    --apb-error: #f8d7da;
    --apb-error-text: #721c24;
    --apb-error-border: #f5c6cb;
    
    --apb-warning: #fff9e6;
    --apb-warning-text: #735c0f;
    --apb-warning-border: #ffb900;
    
    --apb-info: #cce5ff;
    --apb-info-text: #004085;
    --apb-info-border: #b8daff;
    
    /* Booking status */
    --apb-booked: #f8d7da;
    --apb-available: #fff;
    --apb-selected: #4caf50;
    --apb-check-in: linear-gradient(135deg, var(--apb-available) 50%, var(--apb-booked) 50%);
    --apb-check-out: linear-gradient(135deg, var(--apb-booked) 50%, var(--apb-available) 50%);
    --apb-check-in-selected: linear-gradient(135deg, var(--apb-available) 50%, rgba(76, 175, 80, 0.5) 50%);
    --apb-check-out-selected: linear-gradient(135deg, rgba(76, 175, 80, 0.5) 50%, var(--apb-available) 50%);
    
    /* Typography */
    --apb-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --apb-font-family-secondary: 'Montserrat', sans-serif;
    --apb-font-size-xs: 12px;
    --apb-font-size-small: 14px;
    --apb-font-size-normal: 16px;
    --apb-font-size-large: 18px;
    --apb-font-size-xlarge: 24px;
    --apb-font-size-xxlarge: 32px;
    
    /* Font weights */
    --apb-font-weight-normal: 400;
    --apb-font-weight-medium: 500;
    --apb-font-weight-semibold: 600;
    --apb-font-weight-bold: 700;
    
    /* Spacing */
    --apb-spacing-xxs: 5px;
    --apb-spacing-xs: 8px;
    --apb-spacing-sm: 10px;
    --apb-spacing-md: 15px;
    --apb-spacing-lg: 20px;
    --apb-spacing-xl: 30px;
    --apb-spacing-xxl: 40px;
    
    /* Borders and Shadows */
    --apb-border-radius-sm: 4px;
    --apb-border-radius-md: 8px;
    --apb-border-radius-lg: 20px; /* For rounded corners like search inputs */
    --apb-border-radius-xl: 40px; /* For highly rounded buttons */
    --apb-border-radius-circle: 50%;
    
    --apb-border-width-thin: 1px;
    --apb-border-width-medium: 2px;
    --apb-border-width-thick: 3px;
    
    --apb-border-style-solid: solid;
    --apb-border-style-dashed: dashed;
    
    --apb-box-shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --apb-box-shadow-md: 0 2px 4px rgba(0,0,0,0.1);
    --apb-box-shadow-lg: 0 4px 8px rgba(0,0,0,0.2);
    --apb-box-shadow-xl: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --apb-transition-speed: 0.2s;
    --apb-transition-speed-slow: 0.3s;
    --apb-transition-easing: ease;
    
    /* Layout */
    --apb-max-width-container: 1200px;
    --apb-content-padding: 20px;
    
    /* Component specific */
    --apb-input-height: 44px;
    --apb-input-border-color: #E6E6E6;
    --apb-icon-size-sm: 20px;
    --apb-icon-size-md: 30px;
    --apb-icon-size-lg: 40px;
    
    /* Gallery dimensions */
    --apb-gallery-thumb-width: 80px;
    --apb-gallery-thumb-height: 80px;
    
    /* Z-index layers */
    --apb-z-index-base: 1;
    --apb-z-index-higher: 5;
    --apb-z-index-dropdown: 10;
    --apb-z-index-modal: 100;
    --apb-z-index-loading: 1000;
}

/* Calendar Container */
.apb-calendar-container {
    background-color: var(--apb-white);
    border-radius: var(--apb-border-radius-md);
    box-shadow: var(--apb-box-shadow-md);
    overflow: hidden;
}

/* Calendar Navigation */
.apb-calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--apb-spacing-md);
    background-color: var(--apb-gray-100);
    border-bottom: 1px solid var(--apb-gray-200);
}

.apb-calendar-navigation a {
    color: var(--apb-gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: var(--apb-spacing-xxs) var(--apb-spacing-sm);
    border-radius: var(--apb-border-radius-sm);
    transition: background-color var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-calendar-navigation a:hover {
    background-color: var(--apb-gray-200);
}

.apb-current-month-year {
    font-size: var(--apb-font-size-large);
    font-weight: 600;
}

/* Calendar Legend */
.apb-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: var(--apb-spacing-md);
    padding: var(--apb-spacing-sm) var(--apb-spacing-md);
    border-bottom: 1px solid var(--apb-gray-200);
}

.apb-legend-item {
    display: flex;
    align-items: center;
    font-size: var(--apb-font-size-small);
}

.apb-legend-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: var(--apb-spacing-xxs);
    border: 1px solid var(--apb-gray-300);
    border-radius: var(--apb-border-radius-sm);
}

.apb-legend-box.apb-available {
    background-color: var(--apb-available);
}

.apb-legend-box.apb-booked {
    background-color: var(--apb-booked);
}

.apb-legend-box.apb-selected {
    background-color: var(--apb-selected);
}

/* Calendar Table */
.apb-calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.apb-calendar-table th {
    padding: var(--apb-spacing-sm);
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid var(--apb-gray-200);
}

.apb-calendar-table td {
    width: 14.285%;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--apb-gray-200);
    font-size: var(--apb-font-size-small);
}

/* Calendar Cells */
.apb-day-cell {
    position: relative;
    cursor: default;
    height: 65px;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
}

/* Delikatne podświetlenie komórki przy najechaniu */
.apb-day-cell:hover {
    box-shadow: inset 0 0 0 2px var(--apb-gray-300);
}

.apb-day-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: var(--apb-border-radius-circle);
}

/* Minimum stay indicator */
.apb-min-stay {
    position: absolute;
    top: var(--apb-spacing-xxs);
    right: var(--apb-spacing-xxs);
    font-size: 10px;
    background-color: var(--apb-primary);
    color: var(--apb-white);
    border-radius: var(--apb-border-radius-sm);
    padding: 2px 4px;
    line-height: 1;
}

/* Day price indicator */
.apb-day-price {
    font-size: 11px;
    margin-top: 3px;
    color: var(--apb-gray-700);
    font-weight: bold;
}

.apb-empty-cell {
    background-color: var(--apb-gray-100);
}

.apb-selectable {
    cursor: pointer;
    transition: background-color var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-selectable:hover .apb-day-number {
    background-color: var(--apb-gray-200);
}

.apb-today {
    font-weight: bold;
    background-color: var(--apb-primary-light);
}

.apb-today .apb-day-number {
    color: var(--apb-primary);
}

.apb-calendar-table .apb-today:after {
    content: "Dziś";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    font-size: 9px;
    color: var(--apb-primary);
    text-align: center;
    font-weight: var(--apb-font-weight-bold);
}

.apb-booked {
    background-color: var(--apb-booked);
    color: var(--apb-error-text);
    cursor: not-allowed;
}

/* Check-in day - dostępny do przyjazdu, niedostępny na wyjazd */
.apb-check-in-day {
    background-image: var(--apb-check-in);
    position: relative;
}

.apb-check-in-day.apb-selectable {
    cursor: pointer;
}

/* Usunięto napis "Przyjazd" */

/* Check-out day - dostępny na wyjazd, niedostępny na przyjazd */
.apb-check-out-day {
    background-image: var(--apb-check-out);
    position: relative;
}

.apb-check-out-day.apb-selectable {
    cursor: pointer;
}

/* Styl dla dni, które nie są przeznaczone na początek pobytu */
.apb-not-for-checkin {
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* Usunięto napis "Wyjazd" */

.apb-past {
    color: var(--apb-gray-500);
    background-color: var(--apb-gray-100);
    cursor: not-allowed;
    position: relative;
    opacity: 0.7;
}

/* Przekreślenie dat przeszłych - tylko w kalendarzu */
.apb-calendar-table .apb-past:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(135deg, 
        var(--apb-gray-300) 0px, 
        var(--apb-gray-300) 1px, 
        transparent 1px, 
        transparent 6px
    );
    pointer-events: none;
    z-index: 1; /* Ensure it's above other content */
}

/* Calendar Selection */
/* Usuwamy background-color dla wybranych dni, aby numer był zawsze widoczny */
.apb-selected .apb-day-number {
    color: var(--apb-secondary);
    font-weight: bold;
    transform: scale(1.1);
    position: relative;
    z-index: 2;
}

/* Styl dla dnia zaznaczonego jako początek pobytu */
.apb-check-in {
    background-image: var(--apb-check-in-selected);
    position: relative;
    z-index: 1;
}

/* Styl dla dnia zaznaczonego jako koniec pobytu */
.apb-check-out {
    background-image: var(--apb-check-out-selected);
    position: relative;
    z-index: 1;
}

/* Ważne: Numery dni w zaznaczonych komórkach */
.apb-check-in .apb-day-number,
.apb-check-out .apb-day-number {
    color: var(--apb-secondary);
    font-weight: bold;
    transform: scale(1.1);
    position: relative;
    z-index: 2;
    background-color: transparent;
}

/* Obsługa nakładających się trójkątów */
.apb-check-in.apb-check-out-day {
    background-image: 
        var(--apb-check-in-selected),
        var(--apb-check-out);
    background-blend-mode: multiply;
}

.apb-check-out.apb-check-in-day {
    background-image: 
        var(--apb-check-out-selected),
        var(--apb-check-in);
    background-blend-mode: multiply;
}

/* Przypadek, gdy dzień jest jednocześnie dniem zameldowania i wymeldowania różnych rezerwacji
   zostanie oznaczony jako "booked" w PHP, więc nie potrzebujemy dodatkowego stylu */

/* Styl dla dni w zakresie wybranego pobytu */
.apb-in-range {
    background-color: rgba(76, 175, 80, 0.1);
    position: relative;
    z-index: 1;
}

/* Kolory dla dni w zakresie */
.apb-in-range .apb-day-number {
    color: var(--apb-secondary);
    font-weight: var(--apb-font-weight-medium);
    position: relative;
    z-index: 2;
}

/* Dodanie pulsacji dla zaznaczonych dat */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Pulsacja dla całej komórki, a nie tylko numeru dnia */
.apb-day-cell.apb-selected,
.apb-day-cell.apb-check-in,
.apb-day-cell.apb-check-out {
    animation: pulse 2s infinite;
}

/* Pogrubienie zawsze dla numerów dni w wybranych komórkach */
.apb-selected .apb-day-number,
.apb-check-in .apb-day-number,
.apb-check-out .apb-day-number {
    font-weight: bold;
}

/* Booking Form */
.apb-booking-form-wrapper {
    background-color: transparent;
    padding: 0;
}

.apb-form-section {
    margin-bottom: var(--apb-spacing-lg);
    padding-bottom: var(--apb-spacing-md);
    border-bottom: 1px solid var(--apb-gray-200);
}

.apb-form-section h3 {
    margin-top: 0;
    margin-bottom: var(--apb-spacing-md);
    font-size: var(--apb-font-size-large);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    color: var(--apb-primary);
}

.apb-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Form Fields */
.apb-field {
    margin-bottom: var(--apb-spacing-md);
}

.apb-field label {
    display: block;
    margin-bottom: var(--apb-spacing-xs);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-medium);
    font-size: var(--apb-font-size-small);
    color: var(--apb-gray-700);
}

.apb-field input,
.apb-field select {
    width: 100%;
    height: var(--apb-input-height);
    padding: var(--apb-spacing-xs) var(--apb-spacing-md);
    border: 1px solid var(--apb-input-border-color);
    border-radius: var(--apb-border-radius-md);
    font-size: var(--apb-font-size-normal);
    font-family: var(--apb-font-family);
    color: var(--apb-gray-700);
    background-color: #FFFFFF; /* Zawsze białe tło */
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-field input:focus,
.apb-field select:focus {
    outline: none;
    border-color: var(--apb-primary);
    box-shadow: 0 0 0 2px rgba(214, 139, 83, 0.2);
}

/* Stylowanie inputów daty - tak jak w archiwum apartamentów */
.apb-date-wrapper {
    position: relative;
    width: 100%;
    min-width: 160px;
    height: var(--apb-input-height);
    border: var(--apb-border-width-thin) solid var(--apb-input-border-color);
    border-radius: var(--apb-border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
    background-color: #FFFFFF; /* Zawsze białe tło */
}

.apb-date-wrapper:hover {
    border-color: var(--apb-primary);
}

.apb-date-wrapper:focus-within {
    border-color: var(--apb-primary);
    box-shadow: 0 0 0 2px rgba(214, 139, 83, 0.2);
}

.apb-date-display {
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-small);
    text-align: center;
    padding-right: 40px; /* Space for the calendar icon */
    display: block;
    width: 100%;
    cursor: pointer !important;
    position: relative;
    z-index: 3;
}

.apb-input-calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 10; 
}

.apb-field input[type="date"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0; /* Całkowicie niewidoczny */
    cursor: pointer;
    z-index: 5; /* Zwiększony z-index aby być ponad tekstem */
    padding: 0;
    pointer-events: auto; /* Zapewnienie, że zdarzenia myszy są aktywne */
}

.apb-dates-fields {
    display: flex;
    gap: var(--apb-spacing-md);
    margin-bottom: var(--apb-spacing-md);
}

.apb-date-field {
    flex: 1;
}

.apb-min-stay-info {
    font-size: var(--apb-font-size-small);
    color: var(--apb-gray-600);
    margin-bottom: var(--apb-spacing-md);
    padding-left: var(--apb-spacing-xs);
    border-left: 2px solid var(--apb-primary-light);
}

.apb-min-stay-note {
    font-style: italic;
    opacity: 0.8;
}

/* Discount Code section */
.apb-discount-section {
    margin-bottom: var(--apb-spacing-lg);
}

.apb-discount-code-field {
    display: flex;
    align-items: center;
    margin-bottom: var(--apb-spacing-md);
}

.apb-discount-code-field input[type="text"] {
    flex: 1;
    height: var(--apb-input-height);
    padding: var(--apb-spacing-xs) var(--apb-spacing-md);
    border: 1px solid var(--apb-input-border-color);
    border-radius: var(--apb-border-radius-md) 0 0 var(--apb-border-radius-md);
    font-size: var(--apb-font-size-normal);
    font-family: var(--apb-font-family);
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
    background-color: #FFFFFF; /* Zawsze białe tło */
}

.apb-discount-code-field input[type="text"]:focus {
    outline: none;
    border-color: var(--apb-accent);
    box-shadow: 0 0 0 2px rgba(214, 139, 83, 0.2);
}

.apb-apply-code-button {
    height: var(--apb-input-height);
    padding: 0 var(--apb-spacing-md);
    border-radius: 0 var(--apb-border-radius-md) var(--apb-border-radius-md) 0;
}

/* Style ujednolicone z innymi przyciskami */
.apb-discount-section button.apb-btn-accent {
    height: var(--apb-input-height);
    padding: 0 var(--apb-spacing-md);
    border-radius: 0 var(--apb-border-radius-md) var(--apb-border-radius-md) 0;
}

.apb-discount-message {
    padding: var(--apb-spacing-sm) var(--apb-spacing-md);
    border-radius: var(--apb-border-radius-md);
    margin-top: var(--apb-spacing-sm);
    font-size: var(--apb-font-size-small);
    font-family: var(--apb-font-family);
}

/* Price Summary */
.apb-price-section {
    border: none;
    margin-bottom: var(--apb-spacing-lg);
}

.apb-price-section h3 {
    color: var(--apb-gray-700);
    margin-bottom: var(--apb-spacing-md);
}

.apb-price-details {
    border-radius: var(--apb-border-radius-md);
}

.apb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 0 8px 0; /* Dodany dolny margines 8px */
    border-bottom: none; /* Usunięte dolne obramowanie */
}

.apb-price-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.apb-price-label {
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-medium);
    color: var(--apb-gray-600);
}

.apb-price-value {
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    color: var(--apb-gray-700);
}

.apb-price-total {
    border-top: none; /* Usunięto górne obramowanie */
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-large);
    margin: 0;
    padding: 0;
}

.apb-price-total .apb-price-label {
    color: var(--apb-gray-700);
}

.apb-price-total .apb-price-value {
    color: var(--apb-primary);
    font-size: var(--apb-font-size-xlarge);
}

.apb-discount-row {
    background-color: var(--apb-success);
    margin: var(--apb-spacing-xs) -var(--apb-spacing-md);
    padding: var(--apb-spacing-xs) var(--apb-spacing-md);
    font-weight: var(--apb-font-weight-bold);
    color: var(--apb-success-text);
    border-radius: var(--apb-border-radius-sm);
    border: none;
}

/* Buttons - General System */
/* Style 1: Primary Button (Filled) */
.apb-btn-primary {
    background-color: var(--apb-primary);
    color: var(--apb-white);
    border: var(--apb-border-width-medium) solid var(--apb-primary);
    border-radius: var(--apb-border-radius-lg);
    padding: var(--apb-spacing-sm) var(--apb-spacing-lg);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-normal);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-btn-primary:hover {
    background-color: var(--apb-primary-hover);
    border-color: var(--apb-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--apb-box-shadow-md);
}

/* Style 2: Secondary Button (Outline) */
.apb-btn-secondary {
    background-color: transparent;
    color: var(--apb-primary);
    border: var(--apb-border-width-medium) solid var(--apb-primary);
    border-radius: var(--apb-border-radius-lg);
    padding: var(--apb-spacing-sm) var(--apb-spacing-lg);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-normal);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-btn-secondary:hover {
    background-color: var(--apb-primary);
    color: var(--apb-white);
    transform: translateY(-2px);
    box-shadow: var(--apb-box-shadow-md);
}

/* Style 3: Accent Button (Call to Action) */
.apb-btn-accent, 
.single-apartment .button,
.apb-book-now-btn,
.apb-discount-code-section button {
    background-color: var(--apb-accent);
    color: var(--apb-white);
    border: var(--apb-border-width-medium) solid var(--apb-accent);
    border-radius: var(--apb-border-radius-xl);
    padding: var(--apb-spacing-sm) var(--apb-spacing-lg);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-normal);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
}

.apb-btn-accent:hover,
.single-apartment .button:hover,
.apb-book-now-btn:hover,
.apb-discount-code-section button:hover {
    background-color: transparent;
    color: var(--apb-accent);
    transform: translateY(-2px);
    box-shadow: var(--apb-box-shadow-md);
    text-decoration: none;
}

/* Disabled state for all buttons */
.apb-btn-primary:disabled,
.apb-btn-secondary:disabled,
.apb-btn-accent:disabled,
.single-apartment .button:disabled,
.apb-book-now-btn:disabled,
.apb-discount-code-section button:disabled {
    background-color: var(--apb-gray-400);
    color: var(--apb-gray-600);
    border-color: var(--apb-gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Booking form buttons */
.apb-check-availability {
    width: 100%;
    padding: var(--apb-spacing-md) var(--apb-spacing-lg);
    background-color: var(--apb-accent);
    color: var(--apb-white);
    border: var(--apb-border-width-medium) solid var(--apb-accent);
    border-radius: var(--apb-border-radius-xl);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--apb-transition-speed) var(--apb-transition-easing);
    text-align: center;
}

.apb-check-availability:hover {
    background-color: transparent;
    color: var(--apb-accent);
    transform: translateY(-2px);
    box-shadow: var(--apb-box-shadow-md);
}

/* Przycisk zarezerwuj stylowany jak przycisk wyszukiwania */
.apb-submit-field .apb-submit-booking {
    width: 100%;
    background: var(--apb-white);
    border: var(--apb-border-width-medium) var(--apb-border-style-solid) var(--apb-accent);
    border-radius: var(--apb-border-radius-xl);
    color: var(--apb-accent);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-bold);
    font-size: var(--apb-font-size-xs);
    line-height: 100%;
    letter-spacing: 0;
    font-variant: small-caps;
    cursor: pointer;
    transition: all var(--apb-transition-speed-slow) var(--apb-transition-easing);
    padding: var(--apb-spacing-lg) var(--apb-spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.apb-submit-field .apb-submit-booking:hover {
    background: var(--apb-primary-hover);
    color: var(--apb-white);
}

.apb-check-availability-field,
.apb-submit-field {
    margin-top: var(--apb-spacing-lg);
}

.apb-booking-form button:disabled {
    background-color: var(--apb-gray-400);
    border-color: var(--apb-gray-400);
    color: var(--apb-gray-600);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Customer info section */
.apb-customer-section {
    margin-bottom: var(--apb-spacing-lg);
    border: none;
}

/* Dodatkowe wymuszenie białego tła dla inputów w sekcji danych klienta */
.apb-customer-section .apb-field input {
    background-color: #FFFFFF !important; /* Użycie !important aby nadpisać każdy inny styl */
}

.apb-customer-section h3 {
    color: var(--apb-gray-700);
}

/* Message area */
.apb-message {
    padding: var(--apb-spacing-md);
    border-radius: var(--apb-border-radius-md);
    margin-top: var(--apb-spacing-md);
    font-family: var(--apb-font-family-secondary);
    font-weight: var(--apb-font-weight-medium);
    text-align: center;
}

.apb-child-fee-notice {
    display: block;
    margin-top: var(--apb-spacing-xs);
    font-size: var(--apb-font-size-small);
    color: var(--apb-gray-600);
    font-style: italic;
}

.apb-check-availability-field {
    text-align: center;
    margin-top: var(--apb-spacing-sm);
}

.apb-submit-field {
    text-align: center;
    margin-top: var(--apb-spacing-lg);
}

/* Messages */
.apb-message {
    padding: var(--apb-spacing-md);
    border-radius: var(--apb-border-radius-sm);
    margin-top: var(--apb-spacing-lg);
    text-align: center;
}

.apb-success {
    background-color: var(--apb-success);
    color: var(--apb-success-text);
    border: 1px solid var(--apb-success-border);
}

.apb-error {
    background-color: var(--apb-error);
    color: var(--apb-error-text);
    border: 1px solid var(--apb-error-border);
}

.apb-info {
    background-color: var(--apb-info);
    color: var(--apb-info-text);
    border: 1px solid var(--apb-info-border);
}

/* Loading Spinner */
.apb-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--apb-z-index-loading);
}

.apb-spinner {
    width: var(--apb-icon-size-lg);
    height: var(--apb-icon-size-lg);
    border: 4px solid var(--apb-gray-100);
    border-top: 4px solid var(--apb-primary);
    border-radius: var(--apb-border-radius-circle);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsywność */
@media (max-width: 768px) {
    .apb-dates-fields {
        flex-direction: column;
    }
    
    /* Responsive adjustments for booking form */
    .apb-form-section h3 {
        font-size: var(--apb-font-size-large);
    }
    
    .apb-price-total .apb-price-value {
        font-size: var(--apb-font-size-large);
    }
    
    .apb-discount-code-field {
        flex-direction: column;
    }
    
    .apb-discount-code-field input[type="text"] {
        border-radius: var(--apb-border-radius-md);
        margin-bottom: var(--apb-spacing-sm);
    }
    
    .apb-apply-code-button {
        width: 100%;
        border-radius: var(--apb-border-radius-md);
    }
    
    /* Date inputs responsive styles */
    .apb-date-wrapper {
        width: 100%;
    }
}