/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* 🔥 Custom Product Page Styles 🔥 */
.product-page-custom {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/*.product-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-badge {
    background: red;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #e60023;
}

.size-guide-link {
    display: inline-block;
    margin: 10px 0;
    font-weight: bold;
    text-decoration: underline;
    color: #555;
}

.add-to-cart-container .single_add_to_cart_button {
    background: black;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
}

.add-to-cart-container .single_add_to_cart_button:hover {
    background: #e60023;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.trust-badges img {
    height: 40px;
}

.related-products h2 {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Sticky Add to Cart */
/*@media (max-width: 768px) {
    .add-to-cart-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
}
*/