/* ============================================
   CAMPING PAGE - ALL STYLES
   ============================================ */

:root {
    --primary: #0ea5e9;
    --accent: #ec4899;
    --muted: #6b7280;
    --light: #f3f4f6;
    --border: #e5e7eb;
    --success: #10b981;
    --card-accent: #fde68a;
    --card-accent-2: #c7f9cc;
    --orange: #fb923c;
    --orange-light: #fed7aa;
}

/* Page background */
.camping-page-root {
    background: #ffffff !important;
    color: #0b1724;
    overflow-x: clip;
}

/* Hero Section */
.camping-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 60%, #0891b2 100%);
    padding: 80px 20px 60px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.camping-hero .hero-panel {
    display: none;
}

.camping-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.camping-hero p.lead {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

/* Banner overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 182, 212, 0.20);
    pointer-events: none;
    z-index: 2;
}

#top-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 40px;
    pointer-events: none;
    z-index: 4;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.12) 0%, rgba(11, 17, 36, 0.0) 60%, rgba(255, 255, 255, 1) 100%);
}

@media (max-width: 768px) {
    #top-banner::after {
        bottom: -70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    #top-banner::after {
        bottom: -65px;
        height: 65px;
    }
}

.top-banner .container {
    position: relative;
    z-index: 10;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); max-height: 0; }
    to { opacity: 1; transform: translateY(0); max-height: 800px; }
}

@keyframes slideUp {
    from { opacity: 1; transform: translateY(0); max-height: 800px; }
    to { opacity: 0; transform: translateY(-20px); max-height: 0; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(17, 185, 129, 0.3); }
    70% { box-shadow: 0 0 0 6px rgba(17, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(17, 185, 129, 0); }
}

@keyframes cardPulse {
    0% { box-shadow: 0 6px 18px rgba(251, 146, 60, 0.2); transform: translateY(0); }
    50% { box-shadow: 0 18px 40px rgba(251, 146, 60, 0.25); transform: translateY(-4px); }
    100% { box-shadow: 0 6px 18px rgba(251, 146, 60, 0.2); transform: translateY(0); }
}

/* Booking Bar */
.booking-bar-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1040px;
    z-index: 100;
    padding: 0 20px;
    box-sizing: border-box;
}

.booking-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                0 2px 8px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    animation: slideInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

.booking-bar:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                0 4px 16px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.booking-bar i,
.booking-bar .fas,
.booking-bar .fa,
.booking-bar .far,
.booking-bar .fal,
.booking-bar .fab {
    color: #111 !important;
    opacity: 0.95;
}

.booking-row {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.booking-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-right: 1px solid rgba(229, 231, 235, 0.5);
    cursor: pointer;
    min-width: 0;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.booking-control:hover {
    background: rgba(249, 250, 251, 0.8);
}

.booking-control:last-of-type {
    border-right: none;
}

.booking-control:disabled,
.booking-control.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-control-text {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    color: #1f2937;
}

.booking-dates {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1.5;
    padding: 12px 16px;
    border-right: 1px solid rgba(229, 231, 235, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.booking-dates:hover {
    background: rgba(249, 250, 251, 0.8);
}

.booking-dates-display {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.booking-dates-display span,
.booking-control-text,
.booking-dates .booking-dates-display > div span {
    color: #111;
}

.booking-clear {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    display: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.booking-clear:hover {
    background: rgba(243, 244, 246, 0.8);
    transform: rotate(90deg);
}

.booking-search {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-left: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-search[disabled],
.booking-search.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

/* Calendar */
.inline-calendar {
    position: fixed;
    left: 50%;
    top: auto;
    bottom: auto;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 700px;
    width: calc(100% - 40px);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 105;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: none;
    box-sizing: border-box;
}

.inline-calendar.active {
    display: block;
}

@media (max-width: 768px) {
    .inline-calendar {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
    }
}

@media (max-width: 480px) {
    .inline-calendar {
        position: fixed;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: white !important;
        display: none;
    }

    .inline-calendar.active {
        display: flex !important;
    }
}

.calendar-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}

.calendar-month-title {
    display: block;
    width: 100%;
    text-align: center;
    gap: 8px;
    color: #111;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 8px;
    padding: 0 8px;
}

.calendar-month-title span {
    color: #111;
}

.calendar-navigation .nav-btn {
    background: #0ea5e9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

#calendarModal .nav-btn:hover {
    background: #0284c7 !important;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

#calendarModal .nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .calendar-navigation .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .calendar-navigation .nav-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

.calendar-month {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 901px) {
    .calendar-month {
        max-width: 420px;
    }
}

@media (max-width: 900px) {
    .calendar-month {
        max-width: 100%;
    }

    .calendar-month-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .calendar-month-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .calendar-month {
        max-width: 100%;
    }

    .calendar-month-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.calendar-weekday {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    padding: 6px 2px;
    text-align: center;
}

@media (max-width: 768px) {
    .calendar-weekday {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .calendar-weekday {
        font-size: 10px;
        padding: 4px 1px;
    }
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

@media (max-width: 768px) {
    .calendar-days {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .calendar-days {
        gap: 4px;
    }
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #6b7280;
    transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 42px;
    min-height: 42px;
    padding: 4px;
    position: relative;
}

@media (min-width: 901px) {
    .calendar-day {
        min-width: 48px;
        min-height: 48px;
        font-size: 15px;
    }
}

.calendar-day:hover:not(.disabled) {
    background: #e0f2fe;
    border-color: #0ea5e9;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

.calendar-day.today {
    background: #fef3c7;
    border-color: #fbbf24;
    font-weight: 700;
}

.calendar-day.today:not(.selected)::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f59e0b;
}

.calendar-day.selected {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transform: scale(1.08);
    font-weight: 700;
}

.calendar-day.in-range {
    background: #d1fae5;
    color: #047857;
    border-color: #a7f3d0;
}

.calendar-day.start,
.calendar-day.end {
    background: #10b981;
    color: #ffffff;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: #fafafa;
    opacity: 0.5;
}

.calendar-day.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #fafafa;
    border-color: #e5e7eb;
}

@media (max-width: 900px) {
    .calendar-day {
        min-width: 36px;
        min-height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .calendar-day {
        min-width: 34px;
        min-height: 34px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .calendar-day {
        min-width: 40px;
        min-height: 40px;
        font-size: 14px;
    }

    .calendar-day.today::after {
        width: 5px;
        height: 5px;
        bottom: 4px;
    }
}

.calendar-actions-inline {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 20px;
}

.calendar-btn {
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-btn-cancel {
    background: #f3f4f6;
    color: #374151;
    display: none;
}

.calendar-btn-cancel:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.calendar-btn-confirm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    min-width: 200px;
}

.calendar-btn-confirm:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.calendar-btn-confirm:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .calendar-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .calendar-btn-confirm {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .calendar-actions-inline {
        gap: 10px;
        justify-content: center;
        padding: 12px 16px;
    }

    .calendar-btn {
        flex: 1;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .calendar-btn-confirm {
        min-width: 100%;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

#calendarModal .modal-content {
    max-width: 850px;
}

@media (min-width: 769px) {
    #calendarModal .modal-content {
        max-width: 900px;
    }
}

@media (max-width: 480px) {
    #calendarModal .modal-content {
        max-width: 100%;
        width: 100%;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000000;
    pointer-events: auto;
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
}

.modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.modal-row:last-child {
    border-bottom: none;
}

.modal-row-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-row-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.modal-row-subtitle {
    font-size: 13px;
    color: #6b7280;
}

.modal-row-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 18px;
    transition: all 0.2s ease;
}

.modal-counter-btn:hover:not(:disabled) {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.modal-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    min-width: 30px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.modal-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-btn-cancel {
    background: #f3f4f6;
    color: #1f2937;
}

.modal-btn-cancel:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.modal-btn-confirm {
    background: #0ea5e9;
    color: white;
}

.modal-btn-confirm:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Selection Items */
.selection-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 0;
}

.selection-item:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.selection-item.selected {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.selection-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.selection-item:hover .selection-icon {
    background: rgba(14, 165, 233, 0.08);
    transform: scale(1.05);
}

.selection-item.selected .selection-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.selection-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selection-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.selection-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* Cards */
.card-custom {
    border-radius: 24px;
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-custom .card-body {
    color: #1f2937;
    padding: 2.5rem;
}

.card-custom h4 {
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-accent-1 {
    border-left: 6px solid var(--card-accent);
}

.card-accent-2 {
    border-left: 6px solid var(--card-accent-2);
}

.invoice-header-icon i,
.selection-icon i,
.modal-close i,
.invoice-header-info-btn i {
    font-size: 20px;
    color: inherit;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1.1rem;
}

.input-icon-wrapper .form-control-custom {
    padding-left: 48px;
}

.form-control-custom {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #1f2937;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.form-control-custom:focus {
    outline: none;
    border-color: #0ea5e9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-label {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.btn-success {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* Invoice Styles */
.invoice-card {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    color: #0b1724;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(12, 24, 36, 0.06);
    padding: 22px;
    margin-top: 24px;
    border-left: 6px solid transparent;
    transition: box-shadow 0.28s ease, border-left-color 0.28s ease;
}

.invoice-card.card-visible {
    box-shadow: 0 12px 40px rgba(251, 146, 60, 0.15);
    border-left-color: #fb923c;
}

.invoice-card.card-highlight {
    animation: cardPulse 1.8s ease;
    border-left-color: #fb923c;
}

.invoice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.invoice-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.invoice-header-title {
    font-size: 20px;
    font-weight: 700;
    color: #fb923c;
    margin: 0;
}

.invoice-header-info-btn {
    background: #fed7aa;
    border: 1px solid #fdba74;
    color: #b45309;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.invoice-header-info-btn:hover {
    background: #fdba74;
    transform: scale(1.1);
}

.invoice-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 16px 0;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.invoice-item:last-child {
    border-bottom: none;
}

.invoice-item-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.invoice-item-title {
    font-weight: 600;
    color: #1f2937;
}

.invoice-item-detail {
    font-size: 12px;
    color: #9ca3af;
}

.invoice-item-value {
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    min-width: 80px;
}

.invoice-item-value.positive {
    color: #10b981;
}

.invoice-item-value.negative {
    color: #ef4444;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.invoice-total-label {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.invoice-total-value {
    font-size: 24px;
    font-weight: 700;
    color: #fb923c;
}

.invoice-info {
    background: #fed7aa;
    border-left: 4px solid #fb923c;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}

.invoice-info i {
    margin-right: 8px;
}

/* Accommodation Modal Options */
.option-label,
.service-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    margin-bottom: 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.option-label:hover,
.service-checkbox:hover {
    border-color: #3b82f6;
    background: #f3f4f6;
}

.option-label input[type="radio"],
.option-label input[type="checkbox"],
.service-checkbox input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
}

.option-label input[type="radio"]:checked + span,
.option-label input[type="checkbox"]:checked + span,
.service-checkbox input[type="checkbox"]:checked + span {
    color: #3b82f6;
    font-weight: 600;
}

.option-label span,
.service-checkbox span {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-label small,
.service-checkbox small {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: normal;
}

.tent-size-options,
.service-options,
.bedlinen-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

/* Main Content Layout */
#top-banner {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.top-banner .container-fluid {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.top-banner .container-fluid .booking-bar-wrapper {
    left: 50%;
    transform: translateX(-50%);
}

.main-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.py-5 {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
}

.col-lg-8 {
    width: 100%;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .camping-hero {
        padding: 60px 20px 60px 20px;
        min-height: 350px;
    }

    .booking-bar-wrapper {
        width: 95%;
        bottom: -70px;
    }

    .booking-bar {
        border-radius: 24px;
        padding: 12px;
    }

    .booking-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .booking-control {
        flex: 1 1 calc(50% - 4px);
        min-width: 140px;
        border-right: none;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        padding: 12px 16px;
    }

    #pitchTypeSelector {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .booking-dates {
        flex: 1 1 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        padding: 12px 16px;
    }

    .booking-search {
        flex: 1 1 100%;
        margin-left: 0;
        margin-top: 8px;
        padding: 14px 24px;
    }

    .invoice-card {
        padding: 20px;
    }

    .invoice-header-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .camping-hero {
        padding: 50px 16px 50px 16px;
        min-height: 320px;
    }

    .booking-bar-wrapper {
        width: 98%;
        bottom: -65px;
    }

    .booking-bar {
        border-radius: 20px;
        padding: 10px;
    }

    .camping-hero h1 {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 20px;
    }

    .calendar-day {
        font-size: 12px;
    }

    .invoice-card {
        padding: 16px;
    }

    .invoice-item {
        font-size: 13px;
    }

    .invoice-total-value {
        font-size: 20px;
    }
}
