.camp-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 0.9fr 0.9fr;
    gap: 20px;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #d9d9d9;
}

.camp-row__title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #e53946;
    font-weight: 500;
    text-transform: uppercase;
}

.camp-row__meta,
.camp-row__age,
.camp-row__time {
    font-size: 16px;
    color: #4a4a4a;
}

.camp-row__price {
    font-size: 18px;
    font-weight: 700;
    color: #24324a;
    white-space: nowrap;
}

.camp-row__action {
    text-align: right;
}

.camp-row__action .btn {
    min-width: 140px;
    border-radius: 6px;
    padding: 10px 18px;
}

@media (max-width: 991px) {
    .camp-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .camp-row__action {
        text-align: left;
    }
}

/*--------Academy booking start---------*/

.next-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.next-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.camp-group-booking-page {
    max-width: 1100px;
}

.camp-group-header .group-title {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.camp-group-header .page-title {
    color: #ff2a17;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.season-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.weekday-block {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 16px;
}

.weekday-header {
    padding: 8px 0 20px;
}

.weekday-title {
    font-size: 20px;
    font-weight: 700;
}

.weekday-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.weekday-items {
    display: block;
}

.session-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
}

.session-col {
    flex: 1;
}

.session-info {
    flex: 0 0 46%;
}

.session-time {
    flex: 0 0 16%;
    font-size: 18px;
    color: #666;
}

.session-price {
    flex: 0 0 14%;
    font-size: 18px;
    font-weight: 700;
    color: #666;
}

.session-action {
    flex: 0 0 16%;
    text-align: right;
}

.session-name {
    color: #ff2a17;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.session-subtitle {
    color: #8a8a8a;
    font-size: 16px;
}

.select-session-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.back-btn {
    display: inline-block;
    background: #79818b;
    color: #fff;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
}

.back-btn:hover,
.select-session-btn:hover {
    color: #fff;
    opacity: 0.95;
}

.session-action-wrap {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.selected-session-actions {
    display: none;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.selected-remove-btn {
    background: #7d858e;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    min-width: 122px;
}

.selected-change-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    min-width: 122px;
}

.selected-count-badge {
    background: #000;
    color: #fff;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    line-height: 1.2;
    text-align: center;
    min-width: 122px;
}

.session-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.session-booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.session-booking-box {
    position: relative;
    z-index: 2;
    width: 800px;
    max-width: calc(100% - 30px);
    background: #fff;
    margin: 70px auto;
    border-radius: 8px;
    overflow: hidden;
}

.session-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 46px;
    line-height: 1;
    color: #777;
    cursor: pointer;
    z-index: 3;
}

.session-modal-header {
    padding: 22px 24px;
    border-bottom: 1px solid #ddd;
}

.session-modal-header h3 {
    margin: 0;
    color: #ff2a17;
    font-size: 22px;
    font-weight: 700;
    padding-right: 40px;
}

.session-modal-body {
    padding: 28px 24px;
}

.session-modal-top {
    display: flex;
    gap: 30px;
}

.session-modal-left {
    flex: 0 0 32%;
}

.session-modal-right {
    flex: 1;
}

.session-booking-tab {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.session-booking-rules {
    color: #777;
    font-size: 18px;
}

.session-modal-price {
    font-size: 18px;
    margin-bottom: 12px;
    color: #666;
}

.session-modal-price span {
    font-size: 22px;
    font-weight: 700;
    color: #666;
    margin-left: 6px;
}

.session-select-all-wrap {
    margin-bottom: 14px;
    font-size: 17px;
    color: #666;
}

.session-checkbox-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 10px;
}

.session-checkbox-row {
    margin-bottom: 12px;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.session-checkbox-row.disabled {
    opacity: 0.55;
}

.session-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.session-modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.session-close-btn {
    background: #fff;
    color: #ff2a17;
    border: 2px solid #ff2a17;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.session-confirm-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .session-row {
        flex-wrap: wrap;
    }

    .session-info,
    .session-time,
    .session-price,
    .session-action {
        flex: 0 0 100%;
        text-align: left;
    }

    .session-action {
        margin-top: 10px;
    }

    .camp-group-header .group-title {
        font-size: 40px;
    }

    .session-modal-top {
        flex-direction: column;
    }

    .session-modal-left,
    .session-modal-right {
        flex: 0 0 100%;
    }

    .session-action-wrap,
    .selected-session-actions {
        align-items: flex-start;
    }
}

/*--------Academy booking end ---------*/

.page-template-extras-page .out-of-stock-text {
    display: block;
    min-width: 150px;
    padding-bottom: 10px;
}
.gravityview .gv-button-delete {
				display:none !important;
}

/*--------Merchandise cart page ---------*/
.custom-merch-cart .merch-add-cart-btn,
.custom-merch-cart .merch-out-stock-btn,
.custom-merch-cart .view-cart-btn,
.custom-merch-cart .qty-minus,
.custom-merch-cart .qty-plus {
    padding: 8px 14px;
    border: 1px solid #333;
    background: #333;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.custom-merch-cart .merch-out-stock-btn {
   cursor: none; 
}

.custom-merch-cart .merch-qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-merch-cart .qty-input {
    width: 55px;
    text-align: center;
    padding: 7px;
}
.custom-merch-cart .btn-loading,
.custom-merch-cart button:disabled,
.custom-merch-cart .button:disabled,
.custom-merch-cart button[disabled],
.custom-merch-cart .button[disabled] {
    opacity: 0.6 !important;
    background: #999 !important;
    border-color: #999 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.custom-merch-cart.is-loading {
    opacity: 0.85;
}

.custom-merch-cart.is-loading .qty-minus,
.custom-merch-cart.is-loading .qty-plus,
.custom-merch-cart.is-loading .merch-add-cart-btn {
    pointer-events: none !important;
}

.product-short-desc {
    font-size: 14px;
    color: #666;
    min-height: 42px;
}

.merch-product-card .card-img-top {
    object-fit: contain;
    height: 220px;
}

.custom-merch-cart .view-cart-btn {
    display: inline-block;
}

button.button.cognita-save-camp-impersonation-data {
    padding: 8px 14px;
    border: 1px solid #333;
    background: #333;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.disabled-session-btn {
    display: inline-block;
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed;
}