/* Premium Product Page Styling */
body.single-product {
    background-color: #FFFFFF;
}
.woocommerce div.product {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px;
    background: #FFFFFF;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.woocommerce div.product div.images {
    width: 55% !important;
    margin-bottom: 2em;
}
.woocommerce div.product div.summary {
    width: 40% !important;
    margin-bottom: 2em;
}
.woocommerce div.product .product_title {
    /* Removed font-size here so Elementor global settings apply */
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important;
    color: #111111;
    line-height: 1.2;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-family: "Poppins", sans-serif !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    color: #111111;
}
.woocommerce div.product p.price ins {
    color: #111111;
    text-decoration: none;
}
.woocommerce div.product p.price del {
    color: #444444;
    font-size: 20px !important;
}
.woocommerce div.product form.cart .button {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 15px 30px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    margin-top: 15px;
}
.woocommerce div.product form.cart .button:hover {
    background-color: #222222 !important;
    transform: translateY(-2px);
}
.premium-trust-badges-7cbb8bee {
    margin-top: 25px;
    padding: 20px;
    background: #F8F8F8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Poppins", sans-serif;
}
.premium-trust-badges-7cbb8bee span {
    font-size: 15px;
    color: #444444;
    font-weight: 500;
}
/* Responsive */
@media screen and (max-width: 768px) {
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
    }
    .woocommerce div.product .product_title {
        /* Removed font-size override here as well */
    }
    .woocommerce div.product p.price {
        font-size: 28px !important;
    }
}