.addon-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.addon-dropdown summary::-webkit-details-marker {
    display: none;
}

.addon-dropdown[open] .addon-arrow {
    transform: rotate(180deg);
}

.addon-arrow {
    transition: 0.3s;
    font-size: 14px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Remove bootstrap accordion extra UI */
.booking-accordion-clean .accordion-item{
    border: none !important;
    background: transparent !important;
}

.booking-accordion-clean .accordion-button{
    padding: 0 !important; 
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.booking-accordion-clean .accordion-button:focus{
    box-shadow: none !important;
}

.booking-accordion-clean .accordion-button::after{
    margin-left: auto;
}

.booking-accordion-clean .accordion-body{
    padding: 12px 0 0 0 !important;
}


/* Remove bootstrap accordion extra UI */
.booking-accordion-clean .accordion-item{
    border: none !important;
    background: transparent !important;
}

.booking-accordion-clean .accordion-button{
    padding: 0 !important;   
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.booking-accordion-clean .accordion-button::after{
    margin-left: auto;
}

.booking-accordion-clean .accordion-body{
    padding: 12px 0 0 0 !important;
}


/* Multiple person selection */

.people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.people-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;

    flex: 0 0 calc(25% - 8px);
}

.people-row input {
    display: none;
}

.people-row .icon {
    font-size: 18px;
    opacity: 0.85;
}

.people-row .info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.people-row .info strong {
    font-size: 14px;
    font-weight: 600;
}

.people-row .info small {
    font-size: 13px;
    color: #666;
}

.people-row:hover {
    background: #fafafa;
    border-color: #ccc;
}

.people-row.selected {
    border-color: #0d6efd;
    background: #f6faff;
}

/* Multiple person selection */

/* Calenter button UI */
.calendar-header-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.calendar-header-big strong {
    font-size: 16px;
    font-weight: 600;
}

.cal-prev,
.cal-next {
    width: 36px;
    height: 36px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-prev:hover,
.cal-next:hover {
    background: #f7f7f7;
    border-color: #bbb;
}

.cal-prev:active,
.cal-next:active {
    transform: scale(0.96);
}

.cal-prev:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #fafafa;
}
/* Calenter button UI */


/* Popuo CSS */
.side-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}

.side-modal-body .tab-panel ul {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
}

.side-modal-body  .inventory-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(255, 127, 0);
    border-radius: 100px !important;
}

.side-modal {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.side-modal.active {
    right: 0;
}

.side-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.side-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-modal-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.side-modal-header button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

.side-modal-body {
    padding: 20px;
    flex: 1;
    font-size: 14px;
}

.side-modal-body ul {
    margin-top: 12px;
    padding-left: 18px;
}

.side-modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.side-modal-footer button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
/* Popuo CSS */





/* Responsive CSS */

@media (max-width: 991px) {
    .people-row {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .inventory-tabs .tab-btn {
        flex-direction: column;
        font-size: 12px;
        white-space: wrap;
        min-width: 100px;
        text-align: center;
    }
    .inventory-tabs{
        align-items: center;
    }
}

@media (max-width: 576px) {
    .people-row {
        flex: 0 0 100%;
    }
    .side-modal {
        width: 100%;
        right: -100%;
    }
}

    /* Tooltip container */
.tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: help;
}

/* Small info icon */
.tooltip-icon {
    font-size: 12px;
    color: #64748b;
}

/* Tooltip box */
.tooltip-box {
    position: absolute;
    bottom: 125%;
    left: 0;
    width: 240px;
    padding: 8px 10px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Arrow */
.tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 14px;
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

/* Show on hover */
.tooltip-wrap:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tooltip-wrap .tooltip-icon{
        color: #000;
    font-size: 8px;
    border: 1px solid;
    padding: 1px 4px 1px 2px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}
.area-congestion label{
        display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgb(51, 51, 51);
    cursor: pointer;
    gap: 10px;
    flex: 1 1 0%;
}
.area-congestion{
        background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    margin-top:20px;
}
.area-congestion label input[type="checkbox"]{
   width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgb(255, 127, 0); 
}
.wrappingModals.modal-overlay {
        position: fixed;
    inset: 0;
    background: rgb(15 23 42 / 1%);
    backdrop-filter: blur(1px);
    z-index: 999;
    display: block;
}
.modal-box.wrappingModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    animation: modalFadeIn 0.25s ease;
}
.wrappingModal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.wrappingModal .modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.wrappingModal .modal-header button {
    background: none;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.wrappingModal .modal-header button:hover {
    color: #0f172a;
}

/* =========================
   BODY
========================= */
.wrappingModal .modal-body {
    padding: 18px 20px;
}

.wrappingModal .modal-body .wrapping-item-popup{
    margin-bottom: 15px;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-label {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-controls button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-controls button:hover:not(:disabled) {
    background: #e5e7eb;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-controls button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-value {
    min-width: 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.wrappingModal .modal-body .wrapping-item-popup .quantity-price {
    font-size: 13px;
    color: #2563eb;
    margin-bottom: 10px;
}

.wrappingModal .modal-body textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wrappingModal .modal-body textarea::placeholder {
    color: #9ca3af;
}

.wrappingModal .modal-body textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.wrappingModal .modal-body small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* =========================
   FOOTER
========================= */
.wrappingModal .modal-footer {
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

.wrappingModal .modal-footer button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.wrappingModal .modal-footer button:hover {
    background: #1d4ed8;
}

/* =========================
   ANIMATION
========================= */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* =========================
   MOBILE FRIENDLY
========================= */
@media (max-width: 480px) {
    .modal-box.wrappingModal {
        max-width: calc(100% - 24px);
        border-radius: 12px;
    }
}