body {
    font-family: system-ui, sans-serif;
    margin: 0;
}


.fme_vt_abs_search {
	display: none;
}


.fme_pv_container {
    background-color: #f8f8f8;
    max-width: 100%;
    width: 100%;
    margin: 30px auto;
    padding: 0 0 10px 0;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 3px 4px 0px #0000001F;
}



/* Add these styles to maintain consistent widths */
.fme_pv_cart-item {
    width: 100%; /* Ensure full width */
    flex: 1; /* Allow flex growth */
    min-width: 0; /* Prevent overflow */
}

.fme_pv_prod-detail {
    flex: 1; /* Allow flex growth */
    min-width: 0; /* Prevent overflow */
    width: 100%; /* Take full available width */
}

.fme_pv_desc {
    max-width: 100%; /* Prevent overflow */
    overflow: hidden; /* Hide overflow content */
    text-overflow: ellipsis; /* Show ellipsis for overflow */
    white-space: nowrap; /* Keep text in single line */
}

/* Optional: Add this if you want multi-line description with fixed height */
.fme_pv_desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal; /* Allow text wrapping */
    height: 48px; /* Fixed height for 2 lines */
    line-height: 24px;
}

/* Ensure price/quantity section maintains width */
.fme_pv_price-quant {
    width: 25%; /* Keep fixed width */
    flex-shrink: 0; /* Prevent shrinking */
}


/* @media (max-width: 649px) { */
    .fme_pv_topbar {
        display: flex;
        flex-direction: column;
        width: auto;
        gap: 20px;
        justify-content: center;
        align-items: center;
        height: auto;
        background: #ffffff;
        padding: 15px;
        margin: 0;
        border-radius: 7px 7px 0 0;
        box-shadow: 0px 0px 10px 0.25px #0000000D;
        position: relative; /* ADDED BY SAQIB */
    }

    .fme_pv_topbar-child {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .fme_pv_btn {
        background: #427FCC;
        border: 0;
        padding: 10px;
        border-radius: 5px;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        cursor: pointer;
        justify-content: center
    }

    .fme_pv_checkbox {
        display: flex;
        align-items: baseline;
        position: relative;
        gap: 10px;
        justify-content: flex-end;
    }

    .fme_pv_input {
        position: relative;
        color: #253D4E;
        border-color: #253D4E;
        width: 16px;
        height: 16px;
        top: 3px;
    }

    .fme_pv_checkbox .fme_pv_input {
        /* border-right: 1px solid;
        border-bottom: 1px solid; */
        /* appearance: none; */
        margin: 0;
    }

    .fme_pv_text {
        color: #242424;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }

    .fme_pv_text:before {
        content: "";
        position: absolute;
        top: 4px;
        left: 12px;
        width: 12px;
        height: 12px;
        margin-right: 10px;
        /* border: 1px solid; */
    }

    /* .fme_pv_input[type="checkbox"]:checked + label::after {
        content: "\f00c";
        color: #253D4E;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 0;
        left: 1px;
        font-size: 11px;
        font-weight: 900;
    } */

    .fme_pv_dropdown {
        background: #f4f4f4;
        border: 0;
        padding: 10px;
        border-radius: 5px;
        appearance: none;
        width: 110px;
        background-image: url("../images/select.png");
        background-position: 90% 50%;
        background-size: 13px;
        background-repeat: no-repeat;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }

    /* .fme_pv_dropdown:nth-child(2) {
        margin-left: 25px;
    } */

    .fme_pv_dropdown,.fme_pv_btn {
        width: 50%;
    }

    .fme_pv_checkbox, .fme_pv_copy-print {
        width: 15%;
    }
    
    .fme_pv_cart-detail {
        flex-direction: column;
        width: auto;
        display: flex;
        margin: 20px 20px;
        box-shadow: 0px 3px 4px 0.25px #0000000D;
    }

    .fme_pv_cart-item {
        display: flex;
        background: #fff;
        justify-content: center;
        width: auto;
        text-align: left;
        align-items: center;
        gap: 60px;
        padding: 15px;
    }

    .fme_pv_price-quant {
        width: auto;
        padding: 15px;
        gap: 10px;
        background: #fbfbfb;
        /* width: 25%; */
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
    }

    .fme_pve_quant {
        width: 110px;
        height: 30px;
        border: 1px solid #cecece;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-radius: 50px;
    }

    .fme_pv_number {
        padding: 5px;
        width: 30px;
        border: 0;
        background: transparent;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }

    .fme_pv_plus {
        text-align: center;
        border: 0;
        border-right: 1px solid #cecece;
        padding: 2px 4px;
        background: transparent;
        cursor: pointer;
    }

    .fme_pv_minus {
        text-align: center;
        border: 0;
        border-left: 1px solid #cecece;
        padding: 2px 4px;
        background: transparent;
        cursor: pointer;
    }

    .fme_pv_cart {
        background: #427FCC;
        border-radius: 25px;
        padding: 5px;
        text-align: center;
        width: 30px;
        height: 30px;
    }

    .fme_pv_cart img {
        padding: 2px;
        width: 22px;
    }

    .fme_pv_inline-price {
        gap: 10px;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .fme_pv_copy-print {
        display: flex;
        align-items: center;
        color: #242424;
        text-decoration: none !important;
        font-size: 17px;
        font-weight: 400;
        line-height: 24px;
        gap: 10px;
        justify-content: flex-end;
    }

    .fme_pv_search {
        padding: 15px !important;
        border-radius: 30px;
        border: 0;
        background: #f4f4f4;
        background-image: url("../images/search.png");
        background-repeat: no-repeat;
        background-position: 97% 50%;
        background-size: 16px;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 14px;
    }

    .fme_pv_search-bar {
        width: 100%;
        display: flex;
    }

    .fme_pv_search-bar input {
        width: 100%;
    }

    .srch_img {
        display: none;
        cursor: pointer;
    }

    .fme_pv_img-item {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .fme_pv_img-item img {
        width: 120px;
        height: 120px;
    }

    .fme_pv_title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .fme_sku_sku {
        font-size: 14px;
    }
    .fme_pv_attributes{
        font-size: 14px;
    }

    .fme_pv_desc {
        font-size: 16px;
        margin: 10px 0;
        width: auto;
    }

    .fme_pv_variant {
        font-size: 14px;
    }

    .fme_pv_btn, .fme_pv_text, .fme_pv_dropdown, .fme_pv_search {
        font-size: 16px;
    }

    .fme_pc_price {
        font-size: 20px;
        line-height: 20px;
        color: #427FCC;
        margin: 0;
        font-weight: 600;
    }

    .fme_pv_cart-quant {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .fme_pv_stock {
        font-size: 16px;
    }

    .fme_pv_stock b {
        font-size: 16px;
    }

    @media (max-width: 1160px) {
        .fme_pv_topbar-child {
            gap: 20px;
        }

        .fme_pv_text::before {
            left: -1px;
        }

        .fme_pv_checkbox, .fme_pv_copy-print {
            width: auto;
        }

        .fme_pv_dropdown, .fme_pv_btn {
            width: 45%;
        }

        .fme_pv_search-bar {
            width: 95%;
        }
    }


    @media (max-width: 650px) {
        .fme_pv_copy-print span{
            display: none;
        }

        .fme_pv_checkbox {
            justify-content: flex-start;
        }

        .fme_pv_input {
            left: 15px;
        }

        .fme_pv_text::before {
            left: 12px;
        }

        .fme_pv_text {
            margin-left: 10px !important;
        }

        .fme_pv_dropdown, .fme_pv_btn {
            width: 40%;
            max-width: 100%;
        }

        .fme_pv_search-bar {
            width: 85%;
        }

        .fme_pv_btn, .fme_pv_text, .fme_pv_dropdown, .fme_pv_search {
	font-size: 14px;
}
    }



@media (max-width: 320px) {
    body {
        display: none;
    }
}