/* THE KHATOON SHOP v3.3.4 — reliable, highly visible product price */
.single-product.woocommerce div.product .summary > .price,
.single-product.woocommerce div.product .woocommerce-variation-price .price {
    display: flex;
    width: fit-content;
    min-width: 190px;
    max-width: 100%;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0 0 16px;
    padding: 12px 16px;
    border: 1px solid #d4af37;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff 0%, #fff7fa 100%);
    box-shadow: 0 8px 22px rgba(45, 25, 33, .06);
    color: #c33162;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
}
.single-product.woocommerce div.product .summary > .price::before,
.single-product.woocommerce div.product .woocommerce-variation-price .price::before {
    content: "Price";
    flex: 0 0 100%;
    color: #6d5a20;
    font: 800 10px/1.2 Arial, Helvetica, sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.single-product.woocommerce div.product .summary > .price[hidden] {
    display: none !important;
}
.single-product.woocommerce div.product .woocommerce-variation-price:empty {
    display: none;
}
.single-product.woocommerce div.product .woocommerce-variation-price .price del {
    color: #8f8589;
    font-size: 17px;
    font-weight: 500;
}
.single-product.woocommerce div.product .woocommerce-variation-price .price ins {
    color: #c33162;
    font-weight: 800;
    text-decoration: none;
}
@media (max-width: 700px) {
    .single-product.woocommerce div.product .summary > .price,
    .single-product.woocommerce div.product .woocommerce-variation-price .price {
        width: 100%;
        min-width: 0;
        padding: 11px 14px;
        font-size: 22px;
    }
}
