.product-section{
    width: 100%;
    margin-top: var(--mt);
}

.product-grid {
    width: 100%;
    padding: var(--pad2);
    margin-top: var(--mt);
    overflow: hidden;
    overflow-x: auto;
}

.product-box {
    width: 42%;
    min-width: 42%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #F6F6F6;
    /* border: 1px solid #ffeaea;   */
}

.product-img-box {
    width: 100%;
    position: relative;
    padding: 2px 6px;
}

.product-img-box img {
    width: 100%;
    aspect-ratio: 1/1
}

.p-offer {
    position: absolute;
    top: 6px;
    left: -6px;
    /* background: linear-gradient(180deg, #FFB800 0%, #FFDD85 100%); */
    background: var(--main-clr);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 100vw;
    padding: 2px 8px;
}

.p-offer p {
    font-size: 10px;
    font-weight: 400;
    color: var(--txt-clr);
}

.product-info h3 {
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    margin-inline: auto;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    margin-top: 5px;
    min-height: 32.14px;
}

.product-info h6 {
    font-size: 12px;
    color: #4C4C4C;
    font-weight: 500;
    margin-top: 3px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-block: 3px;
}

.product-info h5 {
    font-size: 12px;
    font-weight: 400;
    color: #444242;
}

.addToCart ,.addToCartHasOption{
    width: 100%;
    position: relative;
    margin-top: 5px;
}

.addToCart button ,.addToCartHasOption button{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid var(--main-clr);
    color: var(--main-clr);
}

.addToCart-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    background: var(--main-clr);
    color: var(--txt-clr);
    display: none;
}

.addToCartHasOption button i {
    position: relative;
    top: 2px;
    font-weight: 800;
}

.category-product-grid .product-box{
    width: calc(50% - 5px/2);
    min-width: calc(50% - 5px/2);
}





