.bundle-promotion-container {
    margin: 25px 0;
    padding: 0;
    border: 2px solid #e8edff;
    border-radius: 16px;
    background: linear-gradient(135deg, #FAFBFD 0%, #00434826 100%);
    overflow: hidden;
    box-shadow: 0 8px 30px rgb(0 67 72 / 9%);
    position: relative;
    transition: all 0.3s 
ease;
}
.bundle-promotion-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #004348 0%, #10c7d5 100%);
}

.bundle-promotion-content {
    padding: 30px 25px;
    text-align: center;
}

.bundle-header {
    margin-bottom: 20px;
}

.bundle-badge {
    background: linear-gradient(135deg, #004348 0%, #129aa5 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgb(0 67 72 / 18%);
}

.bundle-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-description {
    margin-bottom: 25px;
}

.bundle-description p {
    margin: 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 500;
}

.bundle-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 100px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 24px;
    display: block;
}

.benefit-item span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.bundle-price {
    margin-bottom: 25px;
}

.bundle-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    background: linear-gradient(135deg, #004348 0%, #004348 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-actions {
    text-align: center;
}

.bundle-add-button {
    background: linear-gradient(135deg, #024a4f 0%, #11939e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s 
ease;
    display: inline-flex
;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgb(0 67 72 / 11%);
    position: relative;
    overflow: hidden;
}

.bundle-add-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.bundle-add-button:hover:before {
    left: 100%;
}

.bundle-add-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.bundle-add-button:active {
    transform: translateY(0);
}

.bundle-add-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.button-text {
    font-size: 16px;
    font-weight: 700;
}

.button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.bundle-add-button:hover .button-arrow {
    transform: translateX(3px);
}

.free-price {
    color: #48bb78;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .bundle-promotion-content {
        padding: 25px 20px;
    }
    
    .bundle-header h3 {
        font-size: 20px;
    }
    
    .bundle-benefits {
        gap: 15px;
    }
    
    .benefit-item {
        min-width: 85px;
        padding: 12px;
    }
    
    .bundle-price .price {
        font-size: 24px;
    }
    
    .bundle-add-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bundle-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: row;
        min-width: 200px;
        justify-content: flex-start;
        text-align: left;
    }
}


/* Compact Bundle Promotion Styles */
.bundle-promotion-compact-container {
    margin: 0 0 25px 0;
    padding: 0;
    border: 2px solid #e8edff;
    border-radius: 12px;
    background: linear-gradient(135deg, #FAFBFD 0%, #00434826 100%);
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 67 72 / 8%);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.bundle-promotion-compact-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #004348 0%, #10c7d5 100%);
}

.bundle-promotion-compact-content {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bundle-compact-header {
    flex: 0 0 auto;
    text-align: left;
}

.bundle-compact-badge {
    background: linear-gradient(135deg, #004348 0%, #129aa5 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgb(0 67 72 / 15%);
}

.bundle-compact-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.bundle-compact-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bundle-compact-benefits {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-compact {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bundle-compact-price-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.bundle-compact-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 11px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.bundle-compact-price .price {
    font-size: 20px;
    font-weight: 700;
    color: #004348;
    line-height: 1;
}

.bundle-compact-actions {
    flex-shrink: 0;
}

.bundle-compact-add-button {
    background: linear-gradient(135deg, #024a4f 0%, #11939e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgb(0 67 72 / 15%);
    position: relative;
    overflow: hidden;
    justify-content: center;
}
.bb-cover-list-item.bb-course-paid {
    padding-bottom: 0 !important;
}
.bundle-compact-add-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.bundle-compact-add-button:hover:before {
    left: 100%;
}

.bundle-compact-add-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 67, 72, 0.25);
}

.bundle-compact-add-button:active {
    transform: translateY(0);
}

.bundle-compact-add-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive design for compact version */
@media (max-width: 1024px) {
    .bundle-promotion-compact-content {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .bundle-compact-details {
        gap: 15px;
    }
    
    .bundle-compact-price-action {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .bundle-promotion-compact-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bundle-compact-header {
        text-align: center;
    }
    
    .bundle-compact-details {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .bundle-compact-benefits {
        justify-content: center;
    }
    
    .bundle-compact-price-action {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .bundle-compact-price {
        align-items: center;
    }
    
    .bundle-compact-add-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bundle-promotion-compact-content {
        padding: 15px;
    }
    
    .bundle-compact-benefits {
        flex-direction: column;
        gap: 8px;
    }
    
    .benefit-compact {
        justify-content: center;
    }
    
    .bundle-compact-header h3 {
        font-size: 16px;
    }
    
    .bundle-compact-price .price {
        font-size: 18px;
    }
    
    .bundle-compact-add-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}



.bb-course-footer.testst.bb-course-pay {
    display: flex;
    justify-content: center;
    align-items: self-start;
    flex-direction: column;
    position: relative;
    padding: 0;
    gap: 5px;
    margin-top: 5px;
}

.btn-itm-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}