/* Amazon Style WooCommerce */

.woocommerce ul.products li.product {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .price {
    font-size: 18px;
    font-weight: bold;
    color: #B12704; /* Amazon price red */
}

.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button {
    border-radius: 25px;
    background-color: #f0c14b; /* Amazon yellow */
    border: 1px solid #a88734;
    color: #111;
    font-weight: bold;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce div.product form.cart .button:hover {
    background-color: #ddb347;
}

.short-desc {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.delivery-estimate {
    color: green;
    font-weight: bold;
    margin: 5px 0;
}

.delivery-country {
    font-size: 13px;
    color: #333;
}
