/* Activity Category Detail Page Styles */

.activity-detail-page {
    background-color: #ffffff;
    padding-bottom: 60px;
    /* Space for sticky footer */
}

/* Header/Banner Section */
.activity-detail-header {
    padding: 30px 0 0px;
    text-align: center;
}

.detail-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-custom {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-adventure {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.badge-location {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.badge-confirm {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.activity-detail-title h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: start;
}

/* Quick Info Bar */
.quick-info-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.info-item strong {
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 3px;
}

/* Rating Section */
/* Modern Rating Section */
.rating-section-modern {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.rating-summary-modern {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rating-score-huge {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    line-height: 0.9;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.rating-details-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-stars-modern {
    color: #ffc107;
    font-size: 22px;
    display: flex;
    gap: 4px;
}

.rating-verified-meta {
    color: #888;
    font-size: 14px;
    font-weight: 600;
}

.rating-quotes-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.quote-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.rating-distribution-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.distribution-row-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.star-label-modern {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    min-width: 35px;
    text-align: right;
}

.progress-bar-wrap-modern {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill-modern {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to right, #ffc107, #ff8c00);
    border-radius: 10px;
}

/* Inclusions & Exclusions */
.inc-exc-section {
    margin-bottom: 60px;
}

.inc-box {
    background: #f0fff4;
    box-shadow: 0 2px 8px 0 rgb(99 99 99 / .2);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.exc-box {
    background: #fff5f5;
    box-shadow: 0 2px 8px 0 rgb(99 99 99 / .2);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.inc-exc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
}

.inc-exc-title.included {
    color: #2ecc71;
}

.inc-exc-title.excluded {
    color: #e74c3c;
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.inc-exc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.inc-exc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Available Slots */
.slots-section {
    margin-bottom: 50px;
}

.slot-heading {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.slots-grid {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.slot-btn {
    padding: 2px 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.slot-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.slot-btn.active {
    background: #2755b0;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.slot-btn.full {
    background: #f4f4f4;
    color: #aaa;
    border-color: #eee;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Participants Selector */
.participants-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.participants-label {
    font-size: 15px;
    color: #444;
}

.max-info {
    font-size: 12px;
}

.counter-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 12px;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.counter-count {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

/* Beautified Activity Elements */
.inc-box-clean,
.exc-box-clean {
    padding: 25px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.inc-box-clean {
    background: #fafffb;
}

.exc-box-clean {
    background: #fffafa;
}

/* Inspired Option Card */
.inspired-option-card {
    padding: 24px 0;
    transition: all 0.3s ease;
}

.option-title-inspired {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.highlight-item {
    font-weight: 500;
}

.btn-select-inspired {
    background-color: #2755b0;
    border: none;
    border-radius: 50px;
    padding: 10px 40px !important;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-select-inspired:hover {
    background-color: #1e4491;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 85, 176, 0.25) !important;
}

.pricing-inspired .fw-900 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.pricing-inspired .text-decoration-line-through {
    color: #94a3b8 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.inc-exc-title-clean.included {
    color: #27ae60;
}

.inc-exc-title-clean.excluded {
    color: #e74c3c;
}

.inc-exc-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #444;
}

.inc-exc-list-clean li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.slot-heading-clean {
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 20px;
    color: #888;
    letter-spacing: 1px;
}

.slot-pill {
    padding: 4px 15px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    color: #444;
}

/* 
.slot-pill:hover:not(:disabled) {
    border-color: var(--accent-color);
    color: var(--accent-color);
} */

.slot-pill.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.slot-pill.full {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}

.participants-section-clean {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.booking-card-footer {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(99, 99, 99, .2);
}

.counter-wrap-clean {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 10px;
    margin-left: 15px;
}

.detail-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 0;
}

.action-bar-footer {
    display: flex;
    align-items: center;
    padding-bottom: 0 !important;
}

.price-val-big {
    font-size: 38px;
    line-height: 45px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.price-val-dis {
    font-size: 23px;
    line-height: 37px;
    font-weight: 700;
    color: #000;
    text-decoration: line-through;
}

.price-meta {
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    color: #000 !important;

}

.conf-badge-green {
    font-size: 12px;
    font-weight: 800;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wishlist-btn-round {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.wishlist-btn-round:hover {
    background: #fff5f5;
    border-color: #ff4757;
    color: #ff4757;
}

.confirm-booking-btn {
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 4px 12px;
    font-weight: 600;
    transition: all .3s ease;
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--contrast-color);
    display: block;
    text-align: center;
    width: 100%;
}


.quick-info-bar-clean {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

/* Truncated Section Styles */
.about-text,
.activity-highlights-top {
    position: relative;
    transition: all 0.5s ease;
}

.truncated-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-wrapper {
    display: flex;
    justify-content: start;
    margin-top: 10px;
}

.read-more-btn-clean {
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.read-more-btn-clean:hover {
    color: #000;
}

/* Activity Video Styles */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 15px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.select-date-panel {
    position: relative;
    overflow: visible;
}

.calendar-wrapper {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0 !important;
    z-index: 5;
    width: min(350px, calc(100vw - 32px));
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    /* box-shadow: 0 20px 55px rgba(15, 23, 42, 0.22); */
}

.activity-cart-popup {
    position: fixed;
    top: 112px;
    right: 24px;
    z-index: 1080;
    width: min(360px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.24);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    gap: 12px;
    align-items: start;
}

.activity-cart-popup-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.activity-cart-popup h5 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: #10233f;
}

.activity-cart-popup p {
    margin: 0 0 8px;
    color: #667085;
    font-size: 0.9rem;
}

.activity-cart-popup a {
    color: #2755b0;
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-cart-popup button {
    border: 0;
    background: transparent;
    color: #667085;
    padding: 0;
    line-height: 1;
}

.react-datepicker {
    border: none;
    width: 100%;
    font-family: inherit;
}

.cart-summary {
    top: 160px;
    position: sticky;
    z-index: 10;
    margin-bottom: 22px;
}

.react-datepicker__month-container {
    width: 100%;
}

.react-datepicker__header {
    background: #ffffff;
    border: none;
    padding: 0 0 0.75rem;
}

.react-datepicker__navigation {
    top: 0.95rem;
}

.react-datepicker__current-month {
    color: #10233f;
    font-weight: 700;
    padding-bottom: 0.5rem;
}

.react-datepicker__day-name,
.react-datepicker__day {
    width: 2.25rem;
    line-height: 2.25rem;
    margin: 0.05rem;
}

.react-datepicker__day-name {
    color: #475569;
    font-weight: 600;
}

.react-datepicker__day {
    border-radius: 12px;
}

.react-datepicker__day--selected,
.calendar-selected-day {
    background: #2755b0 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(39, 85, 176, 0.18);
}

.react-datepicker__day--disabled,
.calendar-past-day {
    color: #9ca3af !important;
    opacity: 0.45;
    cursor: not-allowed;
}

.slot-label {
    font-weight: 600;

}

.slot-capacity-hover {
    display: none;
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    margin-top: 0.4rem;
}





.variants-participants-card {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

.variants-list {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.variants-heading {
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 20px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-wrap-clean {
    gap: 0.5rem;
}

.variants-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variant-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.variant-item:hover {
    background: #f1f3f5;
    transform: translateY(-1px);
}

.variant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variant-name {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: #495057;
    letter-spacing: 0.5px;
}

.variant-price {
    font-weight: 800;
    font-size: 19px;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-price-original {
    font-size: 14px;
    color: #adb5bd;
    text-decoration: line-through;
    font-weight: 600;
}

.variant-counter-premium {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.counter-btn-premium {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #2755b0;
    cursor: pointer;
    transition: background 0.2s;
}

.counter-btn-premium:hover:not(:disabled) {
    background: #f8f9fa;
}

.counter-btn-premium:disabled {
    color: #ced4da;
    cursor: not-allowed;
}

.counter-value-premium {
    width: 44px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #212529;
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
}

.price-placeholder {
    text-align: center;
    padding: 2rem 1rem;
    color: #6b7280;
    font-style: italic;
}



@media (max-width: 767px) {
    .calendar-wrapper {
        padding: 0.75rem;
    }
}

.fw-bold-600 {
    font-weight: 600 !important;
}

.bg-light-white {
    background-color: white !important;
}

/* Quantity Counter Styles */
.quantity-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #2755b0;
    background: white;
    color: #2755b0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    padding: 0;
    line-height: 1;
}

.qty-btn:hover {
    background: #2755b0;
    color: white;
}

.qty-count {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: #1e293b;
    font-size: 15px;
}

.activity-highlights-top p,
.activity-highlights-top p span,
.about-text p,
.about-text p span,
.about-text strong,
.about-text p strong {
    font-family: Poppins !important;
    font-size: 16px !important;
    color: #222 !important;
    font-weight: 400 !important;
}

.about-text span,
.about-text h1,
.about-text h2,
.about-text h3,
.about-text h4,
.about-text h5,
.about-text h6 {
    font-family: Poppins !important;
    color: #222 !important;
}