/* New price in red */
.product-formatted-price {
    color: red !important;
}

/* Old price in gray with strikethrough */
.product-formatted-price-old {
    color: gray !important;
    text-decoration: line-through;
}

/* Optional: discount text in red/pink */
.product-formatted-price-discount {
    color: #f25f5f !important;
    font-weight: bold;
}

/* Hide Weight block completely */
.div-product-weight {
    display: none !important;
}

/* Hide SKU block completely */
.div-product-sku {
    display: none !important;
}

/* Hide Share block completely */
.border-product {
    display: none !important;
}

/* Hide "More Info" link */
#product-description-a {
    display: none !important;
}

/* Hide Product Description headings */
.fs-3.m-0 {
    display: none !important;
}

/* Hide the tab header that contains "وصف المنتج" */
div[slot="tab-headers"] {
    display: none !important;
}








/* Add to Cart button styling */
.btn-add-to-cart {
    background-color: #e1d3fd !important;   /* Former red → new lavender */
    color: #000 !important;                 /* Text black */
    border: 2px solid #e1d3fd !important;   /* Match edges style */
    border-radius: 5px;                      /* Rounded corners */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: #c9b8f5 !important;   /* Slightly darker lavender on hover */
    color: #000 !important;
}

/* Buy Now button styling */
.btn-buy-now {
    background-color: #fff !important;      /* Keep white background */
    color: #e1d3fd !important;              /* Text now lavender */
    border: 2px solid #e1d3fd !important;   /* Lavender border */
    border-radius: 5px;                      /* Rounded corners */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background-color: #e1d3fd !important;   /* Lavender background on hover */
    color: #000 !important;                 /* Text black on hover */
}