 .nonBold {
        font-weight: normal;
    }

    .extra-nights-box {
        /* background-image: linear-gradient(45deg, #2400ff 0%, #8a2be2 50%, #ff00cc 100%); */
        color: #ff00cc;
        padding: 10px 16px;
        margin: 10px 0 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        cursor: pointer;
    }

    /* Pricing card styles */
    .price-card {
        border: 2px solid #e2e8f0;
        border-radius: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .price-card.active-card {
        border-color: #0eaacf;
        box-shadow: 0 4px 24px 0 rgba(10, 49, 97, 0.12);
    }

    .price-card.expired-card {
        opacity: 0.45;
    }

    .price-card-header {
      background: rgb(3 105 161);
        color: #fff;
        padding: 14px 16px;
        text-align: center;
    }

    .price-card-header h4 {
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 4px;
        text-transform: none !important;
    }

    .price-card-header small {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.78rem;
    }

    .price-card-header .card-checkbox {
        display: block;
        margin: 8px auto 0;
        width: 28px;
        height: 28px;
        cursor: pointer;
        accent-color: #2196F3;
    }

    .price-card-body {
        padding: 14px;
        background: #fff;
    }

    .price-radio-row {
        color: #334155;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0px;
        border-radius: 8px;
        margin-bottom: 25px;
        /* border: 1px solid #e2e8f0; */
        background: #fff;
        cursor: pointer;
        transition: background 0.2s;
    }

    .price-radio-row:hover {
        background: #eef6ff;
    }

    .price-radio-row input[type="radio"] {
        accent-color: #002147;
        margin-right: 5px;
    }

    .price-radio-row .nonBold {
        font-size: 1rem;
        color: #000;
    }

    .price-badge {
        color: #70357c;
        background: #fff;
        border: 1px solid #ebccd1;
        padding: 2px 8px;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Summary table */
    .summary-table {
        width: 100%;
        border-collapse: collapse;
    }

    .summary-table td {
        padding: 10px 14px;
        border: 1px solid #ddd;
        font-size: 0.9rem;
        background-color: #eee;
    }

    .summary-table .price {
        background-color: #fff !important;
    }

    .summary-table tr:last-child td {
        border-bottom: none;
    }

    .summary-table .total-row td {
        background-image: linear-gradient(45deg, #8b80d0 0%, #0eaacf 50%, #0fb596 100%);;
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
    }

    /* Accordion policy */
    .policy-accordion summary {
        cursor: pointer;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 12px 16px;
        background: #f8fafc;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .policy-accordion summary::-webkit-details-marker {
        display: none;
    }

    .policy-accordion summary::after {
        content: '+';
        font-size: 1.2rem;
        color: #10b981;
    }

    .policy-accordion[open] summary::after {
        content: '−';
    }

    .policy-accordion .policy-body {
        padding: 14px 16px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-top: none;
        border-radius: 0 0 10px 10px;
        margin-bottom: 8px;
        color: #475569;
        font-size: 0.9rem;
        line-height: 1.7;
    }