/**
 * AJAX Add to Cart - Styles
 */

.ajax-cart-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.ajax-cart-box .quantity-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    width: 80px;
}

.ajax-cart-box .btn-add-to-cart {
    background-color: #ffd700; /* έντονο κίτρινο */
    color: #000; /* μαύρο κείμενο */
    padding: 14px 40px;
    font-size: 16px;
    border: none;
    border-radius: 999px; /* pill shape */
    text-align: center;
    width: 100%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.ajax-cart-box .btn-add-to-cart:hover {
    background-color: #ffcc00;
}

.ajax-cart-box .btn-add-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.ajax-cart-box .btn-buy-now {
    background-color: #28a745; /* πράσινο για άμεση αγορά */
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    border: none;
    border-radius: 999px; /* pill shape */
    text-align: center;
    width: 100%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
}

.ajax-cart-box .btn-buy-now:hover {
    background-color: #218838;
    text-decoration: none;
    color: #fff;
}

.ajax-cart-box .btn-buy-now:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.ajax-cart-box .cart-message {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    min-height: 20px;
}

/* Κρύψε WooCommerce notices που εμφανίζονται μετά το add to cart */
body.single-product .woocommerce-message {
    display: none !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
