/* Product Dates Selection Styles */
.date-product .single-product-content .cart{
    display: block;
}

.product-dates-selection {
    margin: 20px 0;
    border-radius: 4px;
}

.product-dates-selection h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.product-dates-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-date-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-date-option:hover {
    border-color: #999;
}

.product-date-option input[type="radio"] {
    margin-right: 12px;
    cursor: pointer;
}

.product-date-option input[type="radio"]:checked + .date-label {
    font-weight: 600;
}

.product-date-option.date-available:has(input:checked) {
    border-color: #004AAD;
    background: #004bad2f;
}

.product-date-option.date-unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.product-date-option.date-unavailable input[type="radio"] {
    cursor: not-allowed;
}

.date-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.quantity-label {
    margin-left: auto;
    padding: 4px 12px;
    background: #004AAD;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
}

.product-date-option.date-unavailable .quantity-label {
    background: #999;
}

/* Disable add to cart button when no date selected */
.single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 
.product-date-info{
    display: none;
} */

.shop_table td.product-name .variation{
    display: flex!important;
    align-items: center!important;
}