.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-product-form {
    padding: 20px;
}

.modal-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-product-header h2 {
    margin: 0;
    font-size: 24px;
}

.close-modal {
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    line-height: 1;
    padding: 0;
    background: none;
    border: none;
}

.close-modal:hover {
    color: #333;
}

.modal-product-content .product_title {
    font-size: 20px;
    margin-bottom: 15px;
}

.modal-product-content .price-wrapper {
    margin-bottom: 20px;
}

.modal-product-content .price {
    font-size: 24px;
    font-weight: bold;
}

.modal-product-content .cart-form-wrapper {
    margin-top: 20px;
}

.modal-product-content .quantity {
    margin-right: 10px;
}

.modal-product-content .single_add_to_cart_button {
    flex: 1;
    min-width: 150px;
}

.modal-product-content .variations {
    width: 100%;
    margin-bottom: 0px;
}

.modal-product-content .variations td.label {
    width: 30%;
}

.modal-product-content .variations select {
    width: 100%;
}

.loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.error {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #e74c3c;
}

.woocommerce-message {
    background: #4CAF50;
    color: white;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single_add_to_cart_button.loading {
    opacity: 0.6;
    cursor: wait;
}

.single_add_to_cart_button.added {
    /* background: #4CAF50 !important; */
}

@media (max-width: 768px) {
    .product-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-product-form {
        padding: 15px;
    }
    
    .modal-product-header h2 {
        font-size: 20px;
    }
}

.modal-product-content .price {
    margin-bottom: 0;
}

table.variations[cellspacing="0"][role="presentation"],
table.variations[cellspacing="0"][role="presentation"] th,
table.variations[cellspacing="0"][role="presentation"] tr {
  border: 0;
  padding: 0;
}

.reset_variations {
    display: none !important;
}

table.variations[cellspacing="0"][role="presentation"] th label {
    font-size: 21px;
}

#product-modal button.single_add_to_cart_button.button.alt {
    width: 100%;
    margin-top: 12px !important;
}

