/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
*/

@import url("../astra/style.css");

/* Target the gift product in the cart */
.woocommerce-cart .cart_item[data-product_id="3692"] {
    border: none; /* Remove any borders */
    padding: 15px; /* Add some padding to match regular items */
    background-color: #f9f9f9; /* Give it a light background color */
}

/* Remove the "out of stock" or giveaway message for the gift */
.woocommerce-cart .cart_item[data-product_id="3692"] .wt_sc_product_out_of_stock {
    display: none !important;
}

/* Regular product name style */
.woocommerce-cart .cart_item[data-product_id="3692"] .product-name {
    font-weight: normal; /* Normal weight */
    color: #333; /* Standard color */
}

/* Price styling: Show ₹0 for the free gift */
.woocommerce-cart .cart_item[data-product_id="3692"] .product-price {
    font-size: 16px;
    color: green; /* Show the price in green for the gift */
}

/* Optional: Add "(Free Gift)" label next to product name */
.woocommerce-cart .cart_item[data-product_id="3692"] .product-name::after {
    content: " (Free Gift)";
    font-size: 14px;
    color: #ff0000;
    font-weight: normal;
    margin-left: 5px;
}

.woocommerce-cart .cart_item[data-product_id="3692"] .product-price,
.woocommerce-cart .cart_item[data-product_id="3692"] .product-subtotal {
    color: green;
    font-weight: bold;
}

.woocommerce-cart .cart_item[data-product_id="3692"] .product-name::after {
    content: " (Free Gift)";
    color: red;
    font-weight: normal;
    font-size: 14px;
}



