/* =========================================
   QA3ATY - Custom WooCommerce Styles
   ========================================= */

/* 1. PRODUCT CARDS (Shadow & Radius) */
.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* 2. BUTTONS (The "Qa3at" Brand) */
/* Replace #cfa143 with your actual Gold/Brand color */
.woocommerce button.button.alt, 
.woocommerce a.button.alt, 
.woocommerce .product .add_to_cart_button.button {
    background-color: #cfa143 !important; 
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
}

.woocommerce button.button.alt:hover, 
.woocommerce a.button.alt:hover {
    background-color: #b38b36 !important; /* Darker shade for hover */
}

/* 3. PRICE TYPOGRAPHY */
.woocommerce ul.products li.product .price {
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
}

/* 4. SALE BADGE (Custom Look) */
.woocommerce span.onsale {
    background-color: #e74c3c; /* Red for urgency */
    border-radius: 0;
    min-height: 0;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    top: 10px;
    left: 10px; /* Adjust based on RTL/LTR */
    right: auto;
}