/**********************************
 * PRICE STYLE (PREMIUM BUTCHER COLOR)
 **********************************/

/* All prices in the single product summary */
.single-product div.product .summary .price,
.single-product div.product .summary .woocommerce-variation-price .price {
    color: #800020;        /* Premium Butcher maroon */
    font-size: 28px;
    font-weight: 700;
}

/* Sale price after discount (inside <ins>) */
.single-product div.product .summary .price ins,
.single-product div.product .summary .woocommerce-variation-price .price ins {
    color: #800020;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

/* Regular/old price before discount (inside <del>) */
.single-product div.product .summary .price del,
.single-product div.product .summary .woocommerce-variation-price .price del {
    color: #999999;
    font-size: 16px;
    margin: 0 6px;
    text-decoration: line-through;
    opacity: 0.9;
}

/**********************************
 * NOTES / SPECIAL REQUEST TEXTAREA
 **********************************/

.single-product div.product .summary textarea {
    max-width: 420px;
    width: 100%;
    min-height: 90px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;
    resize: vertical;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* Label above textarea (e.g. SPECIAL REQUEST) */
.single-product div.product .summary label {
    font-size: 13px;
    font-weight: 600;
}
