/* ================================
   DGWT AJAX SEARCH STYLING
================================ */

/* Search icon colour */
.dgwt-wcas-style-pirx.dgwt-wcas-has-submit 
.dgwt-wcas-search-submit svg path {
    fill: white !important;
}

/* Search button desktop */
.dgwt-wcas-style-pirx 
.dgwt-wcas-sf-wrapp 
button.dgwt-wcas-search-submit {
    border-radius: 100%;
    border: 0;
    display: flex;
    align-items: center;
    color: white;
    background: #FF7921 !important;
    fill: white;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: absolute;
    min-height: 33px;
    min-width: 33px;
    height: 52px;
    width: 52px;
    left: 92.5%;
    top: 15px;
    pointer-events: none;
    transition: none;
}

/* Search input */
input#dgwt-wcas-search-input-1 {
    padding: 18px 22px !important;
    border: 1px solid #e0e0e0 !important;
}

/* Mobile search styles */
@media only screen and (max-width: 768px){
    button.dgwt-wcas-search-submit {
        border-radius: 100%;
        border: 0;
        display: flex;
        align-items: center;
        color: white;
        background: #FF7921 !important;
        fill: white;
        justify-content: center;
        padding: 0;
        margin: 0;
        position: absolute;
        min-height: 33px;
        min-width: 33px;
        height: 48px;
        width: 48px;
        left: 84% !important;
        top: 15px;
        pointer-events: none;
        transition: none;
    }

    input#dgwt-wcas-search-input-1 {
        padding: 18px 10px !important;
        border: 1px solid #e0e0e0 !important;
    }
}

/* ================================
   WOOCOMMERCE PRODUCT PREVIEW
   (SHOP / CATEGORY / SEARCH CARDS)
================================ */

/* Lowercase "From" text */
.woocommerce ul.products li.product .price {
    text-transform: lowercase;
}

/* Base price styling */
.woocommerce ul.products li.product .price {
    font-size: 15px;
    line-height: 1.3;
    margin-top: 6px;
}

/* Bold + orange dollar amount only */
.woocommerce ul.products li.product .price bdi,
.woocommerce ul.products li.product .price .amount {
    font-weight: 700;
    color: #FF7921;
}

/* GST & Freight text smaller + lighter */
.woocommerce ul.products li.product .price small,
.woocommerce ul.products li.product .price 
.woocommerce-Price-taxLabel {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}

/* Clean title + price layout */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .price {
    display: block;
    text-align: left;
}

/* Optional: tighten spacing */
.woocommerce ul.products li.product h2 {
    margin-bottom: 4px;
}

span {
    text-transform: none !important;
    /* font-weight: 300 !important; */
}

/* === ONLY FIX ADDED === */
/* Append "& Freight" after ex GST */
.woocommerce ul.products li.product .price small::after {
    content: " & Freight";
}