/**
 * Tetra PlpPricing Styles
 *
 * @category  Tetra
 * @package   Tetra_PlpPricing
 */

/* Special price styling - red color */
.tetra-custom-price .tetra-special-price {
    color: #ff0000 !important;
    font-weight: 700;
}

/* Old price styling - strikethrough and gray */
.tetra-custom-price .tetra-old-price {
    text-decoration: line-through;
    color: #999999;
    font-weight: 400;
    margin-right: 10px;
}

/* Price label styling for "From" text */
.tetra-custom-price .price-label {
    font-size: 0.9em;
    font-weight: 400;
    margin-right: 5px;
    color: #333333;
}

/* Ensure proper spacing */
.tetra-custom-price {
    display: inline-block;
    margin: 5px 0;
}

/* Special price container */
.tetra-custom-price .special-price {
    display: inline-block;
}

/* Old price container */
.tetra-custom-price .old-price {
    display: inline-block;
}

/* Regular price styling */
.tetra-custom-price .price {
    font-weight: 700;
    color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tetra-custom-price .price-label {
        font-size: 0.85em;
    }
    
    .tetra-custom-price .tetra-old-price {
        margin-right: 5px;
    }
}

/* New css for PDP */
.tetra-special-price .price{
    color: #ff0000 !important;
    font-weight: 700;
}

/* Hide swatch attribute labels on PDP for HW website */
.product-info-main .product-add-form .product-options-wrapper .swatch-attribute-label {
    display: none !important;
}