.product {
    padding-bottom: 70px;
}

.courses-details-desc {
    margin-top: 20px;
    padding-right: 0px;
}
/* Date navigation */
.date-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f7f9;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

#current-date-display {
    font-weight: 600;
    flex-grow: 1;
    text-align: center;
}

/* Time slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    padding: 12px;
    border: 1px solid #d1d2e0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1 0 calc(33.333% - 10px);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.time-slot:hover {
    background-color: #f0f0f0;
    border-color: #c1c2d0;
}

.time-slot.selected {
    background-color: #005596;
    color: white;
    border-color: #005596;
}

.time-slot.selected .slot-duration {
    color: rgba(255, 255, 255, 0.8);
}

.time-slot.disabled {
    background-color: #f6f7f9;
    color: #a0a0a0;
    cursor: not-allowed;
    border-color: #e0e0e0;
    position: relative;
}

.time-slot.disabled:hover {
    background-color: #f6f7f9;
    border-color: #e0e0e0;
}

.time-slot.disabled::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.time-slot.disabled:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

.slot-time {
    font-size: 0.9em;
    font-weight: 600;
}

.slot-duration {
    font-size: 0.9em;
    color: #666;
}

/* Disabled navigation button */
#prev-date:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .time-slot {
        flex: 1 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .time-slot {
        flex: 1 0 100%;
    }
} 

.page-title-area .bannerImage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.page-title-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 2;
    width: 100%;
    height: 100%;
}

.page-title-area .container {
    position: relative;
    z-index: 3;
}

.training-stats {
    position: relative;
    top: -40px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #d1d2e0;
    padding: 20px 0px;
    z-index: 1;
}


.stats-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid #d1d2e0;
}

.stats-icon {
    font-size: 24px;
    
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.stats-info {
    text-align: center;
}

.stats-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--bs-black);
    line-height: 1.2;
    align-items: baseline;
}

.stats-max {
    font-size: 16px;
}

.stats-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--mainTextColor);
    /* opacity: 0.8; */
    margin-top: 2px;
}

.stats-subtext {
    font-size: 13px;
    
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .training-stats .row > div {
        margin-bottom: 20px;
    }
    
    .training-stats .row > div:last-child {
        margin-bottom: 0;
    }
    
    .stats-item {
        justify-content: flex-start;
    }
}

/* Add hover effect */
.stats-item:hover .stats-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Add animation for numbers */
.stats-number {
    transition: all 0.3s ease;
}

.stats-item:hover .stats-number {
    transform: translateY(-2px);
} 


.courses-details-info .info li span {
    padding-left: unset !important;
    
}

.price-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cutoff-price {
    text-decoration: line-through;
    color: var(--bs-gray-500) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

.current-price {
    font-weight: 800;
    color: var(--bs-gray-900) !important;
    font-size: 20px !important;
}

.discount-badge {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: var(--bs-danger) !important;
}

.price-container {
    padding: 10px 0 !important;
}
