/* =============================================
   BOOKING.CSS - Style rezerwacji i kalendarzy
   ============================================= */

/* === SEKCJA APARTAMENTÓW === */

html {
    scroll-behavior: smooth;
}

.editorial-section {
    padding: 8rem 5vw 4rem;
    background: white;
    position: relative;
}

/* Subtelne tło/tekstura w stylu "Modern Coastal" */
.editorial-section::before {
    content: "APARTAMENTY";
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-hull);
    font-size: 15vw;
    color: rgba(0,0,0,0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.editorial-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 1;
}

.editorial-intro h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.editorial-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* === SIATKA APARTAMENTÓW === */

.apartments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Wyrównanie kart (usunięto przesunięcie) */
.apartments-grid > article:nth-child(2) {
    margin-top: 0;
}

/* === KARTY APARTAMENTÓW === */

.apt-card {
    position: relative;
    cursor: pointer;
}

.apt-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 650px;
    margin-bottom: 2rem;
}

.apt-card:hover .apt-image-wrapper::after {
    background: rgba(0,0,0,0);
}

.apt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(15%);
}

.apt-card:hover .apt-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.apt-content {
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

/* Ukryj watermarki w sekcji apartamentów */
.apt-content .bg-watermark {
    display: none;
}

/* === APARTMENT IMAGE OVERLAY === */
.apt-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

/* Stats row on apartment image */
.apt-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.apt-stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.apt-stat-item svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.apt-stat-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* === APT META TAGS === */
.apt-meta {
    font-family: var(--font-hull);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

/* Fix: SVG w apt-meta musi być inline, nie block (nadpisuje reset.css) */
.apt-meta span svg {
    display: inline;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    margin-right: 4px;
    vertical-align: -2px;
}

.apt-title {
    font-family: var(--font-hull);
    font-size: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 0 2rem;
    color: var(--storm-foam);
}

.apt-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 100%;
}

.apt-link {
    color: #1a1a1a;
    text-decoration: none;
    font-family: var(--font-hull);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.apt-link:hover {
    color: var(--rusty-beacon);
    border-bottom-color: var(--rusty-beacon);
    padding-right: 10px;
}

/* === AMENITY CARDS (Wyposażenie) === */
.amenity-card {
    margin-bottom: 0.8rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
}

.amenity-card:last-of-type {
    margin-bottom: 2rem;
}

.amenity-card-inner {
    padding: 1rem 1.5rem;
}

.amenity-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.3rem 0.7rem;
}

.amenity-icon {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
}

.amenity-icon svg {
    width: 2.2rem;
    height: 2.2rem;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 1.2;
}

.amenity-title {
    font-family: var(--font-hull);
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.amenity-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Apt actions buttons row */
.apt-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

/* === KALENDARZE === */

/* === BOOKING HEADER SECTION === */
.booking-header-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding: 0 5vw;
    margin-top: 8rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
    gap: 3rem;
}

.booking-header-grid .bg-watermark-horizontal {
    top: 50%;
}

.booking-header-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.booking-header-title {
    font-family: var(--font-hull);
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--storm-foam);
    margin: 0;
}

.booking-header-right {
    width: 60%;
    max-width: 700px;
}

.booking-header-desc {
    font-family: var(--font-liquid);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--wet-concrete);
    margin: 0;
}

/* === CALENDARS GRID === */
.calendars-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    max-width: 100%;
    padding: 0 5vw;
    margin-bottom: 8rem;
    align-items: stretch;
}

.calendar-column {
    display: flex;
    flex-direction: column;
}

.calendar-image-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.calendar-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.calendars-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calendar-container {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* Kalendarze w sekcjach apartamentów - single column */
.apt-card .calendar-container {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-header {
    background: transparent;
    color: #000;
    padding: 1.2rem;
    text-align: center;
}

.calendar-header h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #000;
}

.calendar-body {
    padding: 1rem;
}

.calendar-info {
    padding: 1rem;
    background: transparent;
    color: #000;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-hull);
    font-size: 1.2rem;
    box-sizing: border-box;
}

.calendar-dates-row {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.3rem;
}

.calendar-dates-row .calendar-date-field {
    flex: 1;
}

.calendar-date-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    background: #fff;
    padding: 0.5rem 0.7rem;
    border-radius: 4px;
    box-sizing: border-box;
}

.calendar-date-field.filled {
    border: 1px solid #1a1a1a;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-date-field.filled .calendar-info-label {
    color: #1a1a1a;
    font-weight: 700;
}

.calendar-date-field.filled .calendar-info-value {
    font-weight: 600;
    color: #1a1a1a;
    animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar-price-section {
    grid-column: 1 / -1;
    padding-top: 0.35rem;
    margin-top: 0.3rem;
}

.calendar-info-label {
    font-family: var(--font-liquid);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #333;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.calendar-info-value {
    font-family: var(--font-hull);
    font-size: 0.95rem;
    color: #000;
    line-height: 1;
}

.calendar-info.has-selection .calendar-info-value {
    font-weight: 500;
}

.calendar-info.has-error {
    border-bottom-color: #d32f2f;
}

.calendar-info.has-error .calendar-info-value {
    color: #d32f2f;
    font-size: 0.95rem;
}

.calendar-date-edit {
    cursor: pointer;
    transition: color 0.2s;
}

.calendar-date-edit:hover {
    color: var(--rusty-beacon);
}

/* === NAWIGACJA MIESIĄCA === */

.calendar-month-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-apartment-name {
    font-family: var(--font-hull);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 0px;
}

.calendar-month-name {
    font-family: var(--font-hull);
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 180px;
    text-align: center;
}

.calendar-nav-btn {
    background: transparent;
    border: 2px solid var(--rusty-beacon);
    color: var(--rusty-beacon);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--rusty-beacon);
    color: #fff;
}

/* === SIATKA DNI KALENDARZA === */

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

.calendar-day-header {
    text-align: center;
    font-family: var(--font-hull);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    padding: 0.5rem 0;
    font-weight: 600;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hull);
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    font-weight: 500;
    border: none;
}

.calendar-day::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1rem;
    background: #333;
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-hull);
    font-weight: 400;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 1000;
    margin-bottom: 0.4rem;
}

.calendar-day:hover::after {
    opacity: 1;
    transition-delay: 0.1s;
}

.calendar-day.empty {
    cursor: default;
}

/* === STANY DNI KALENDARZA === */

.calendar-day.available {
    background: #E8F5E9;
    color: #000;
    border: 1px solid #E0E0E0;
    position: relative;
}

.calendar-day.available .day-number {
    position: absolute;
    top: 3px;
    left: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #757575;
}

.calendar-day.available .day-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    position: absolute;
    bottom: 2px;
    right: 4px;
}

.calendar-day.available:hover {
    border-color: #1B5E20;
    box-shadow: 0 0 0 1px #1B5E20;
    transform: scale(1.05);
}

.calendar-day.closed {
    background: #fff;
    color: #ccc;
    border: 2px solid #ddd;
    cursor: not-allowed;
}

.calendar-day.checkout-only {
    background: linear-gradient(135deg, #E8F5E9 0%, #E8F5E9 50%, #fff 50%, #fff 100%);
    background-clip: padding-box;
    border: 2px solid #ddd;
    cursor: not-allowed;
    position: relative;
}

/* === DNI PROMOCYJNE === */

.calendar-day.promo {
    background: #E8F5E9;
    color: #000;
    border: 1px solid #FFB74D;
    position: relative;
}

.calendar-day.promo .day-number {
    position: absolute;
    top: 3px;
    left: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #757575;
}

.calendar-day.promo .day-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #E65100;
    position: absolute;
    bottom: 2px;
    right: 4px;
}

.calendar-day.promo:hover {
    box-shadow: 0 0 0 2px #1B5E20;
    transform: scale(1.05);
}

.promo-badge-top {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.promo-badge-bottom {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Styl dla numerów dni we wszystkich stanach */
.calendar-day .day-number,
.calendar-day.closed .day-number,
.calendar-day.past .day-number,
.calendar-day.checkout-only .day-number {
    position: absolute;
    top: 3px;
    left: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #757575;
}

.calendar-day.checkout-only::before {
    content: none !important;
    display: none !important;
}

/* === PRZYCISK REZERWACJI (SLIDE-IN) === */

.btn-reservation {
    position: relative;
    overflow: hidden;
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
    transition: color 0.3s;
    z-index: 1;
}

.btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.btn-reservation:hover {
    color: #000 !important;
    background-color: transparent !important;
}

.btn-reservation:hover::before {
    left: 0;
}

/* === POZOSTAŁE STANY DNI === */

.calendar-day.today {
    font-weight: 700;
}

.calendar-day.past {
    background: #fff;
    color: #ccc;
    border: 2px solid #ddd;
    cursor: not-allowed;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background: #bbdefb !important;
    color: #333 !important;
    font-weight: 700;
}

.calendar-day.in-range {
    background: #bbdefb !important;
    color: #333 !important;
}

/* === LEGENDA KALENDARZA === */

.calendar-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-box.available {
    background: #4caf50;
}

.legend-box.closed {
    background: #fff;
    border: 2px solid #ddd;
}

.legend-box.checkout {
    background: linear-gradient(135deg, #4caf50 0%, #4caf50 50%, #fff 50%, #fff 100%);
    border: 2px solid #ddd;
}

/* === FORMULARZ WYSZUKIWANIA === */

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.form-row-2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-top: 1rem;
}

.form-group label {
    display: block;
    font-family: var(--font-liquid);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #333;
    letter-spacing: 0.5px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 0 !important;
    color: #000;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 0.2s;
}

.checkbox-label:hover {
    color: var(--rusty-beacon);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--rusty-beacon);
    margin: 0;
}

.form-control {
    width: 100%;
    padding: 0 0 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #000;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--rusty-beacon);
}

/* === DROPDOWN GOŚCI === */

.guest-dropdown-btn {
    cursor: pointer;
    text-align: left;
    background: transparent;
    position: relative;
}

.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem;
    z-index: 1000;
    margin-top: 0.5rem;
}

.guest-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-counter-row:last-of-type {
    border-bottom: none;
}

.guest-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.guest-btn:hover:not(:disabled) {
    border-color: var(--rusty-beacon);
    color: var(--rusty-beacon);
}

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

.guest-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
    color: var(--deep-abyss);
    font-weight: 600;
}

.btn-search {
    background: var(--deep-abyss);
    color: #fff;
    border: none;
    padding: 1rem 3.5rem;
    font-family: var(--font-hull);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-search:hover {
    background: var(--rusty-beacon);
    transform: translateY(-2px);
}

/* === LISTA WYNIKÓW (PREMIUM CAROUSEL) === */

.results-preview {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
}

.results-intro-text {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 5rem;
    color: var(--deep-abyss);
    font-weight: 400;
    order: 0;
}

/* === RESERVATION MODAL === */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reservation-modal.active {
    opacity: 1;
    visibility: visible;
}

.reservation-modal-inner {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.reservation-modal.active .reservation-modal-inner {
    transform: translateY(0);
}

.reservation-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
}

.reservation-modal-close:hover {
    color: #000;
}

.reservation-modal-content h3 {
    font-family: var(--font-hull);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.reservation-modal-content p {
    font-family: var(--font-liquid);
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.reservation-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.reservation-phone-desktop {
    display: none;
    font-size: 1.2rem;
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-form-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

/* Desktop: show phone number text, hide call button */
@media (min-width: 769px) {
    .reservation-phone-btn {
        display: none;
    }
    
    .reservation-phone-desktop {
        display: block;
    }
}

/* === STICKY BOOKING BAR === */

.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 20, 0.95);
    padding: 0.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.sticky-booking-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.sticky-text {
    color: white;
    font-family: var(--font-hull);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}

.sticky-booking-bar.visible .sticky-text {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    padding: 8px 24px;
    font-size: 0.9rem;
    background: white !important;
    color: var(--storm-foam) !important;
    border: 1px solid white !important;
    transition: all 0.3s ease !important;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--storm-foam) !important;
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.sticky-btn:hover {
    color: white !important;
    border-color: white !important;
}

.sticky-phone-btn {
    padding: 8px 16px;
    font-size: 1.1rem;
    background: transparent !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-phone-btn:hover {
    border-color: rgba(255,255,255,0.5) !important;
    color: white !important;
    background: rgba(255,255,255,0.05) !important;
}

@media (min-width: 1024px) {
    .sticky-phone-btn {
        pointer-events: none;
        color: white !important;
        border-color: transparent !important;
    }
}

.sticky-btn:hover::before {
    left: 0;
}

/* === STICKY BAR MOBILE RESPONSIVENESS === */

/* Desktop: show full text, hide mobile text */
.btn-text-mobile {
    display: none;
}

.btn-text-full {
    display: inline;
}

@media (max-width: 768px) {
    /* Mobile: show mobile text, hide full text */
    .btn-text-mobile {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
    
    .sticky-booking-bar {
        padding: 0.5rem 1rem;
    }
    
    .sticky-content {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .sticky-text {
        display: none;
    }
    
    .sticky-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex: 1;
        justify-content: center;
        text-align: center;
    }
    
    .sticky-phone-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        flex: 0 0 auto;
        justify-content: center;
        text-align: center;
        pointer-events: auto;
    }
}
