.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: calc(100%/3 - 20px/3);
    min-width: calc(100%/3 - 20px/3);
    padding: 0px;
    border-radius: 10px;
}
.product-box:nth-child(3n) {
    margin-right:5%;
}

.product-img-box {
    width: 100%;
    position: relative;
    border-radius: 10px;
   
}

.product-img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
  border: 1px solid #E0E0E0;
}

.p-offer {
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--main-clr);
    color: #fff;
    border-radius: 10px 0px 10px 0px;
    padding: 2px 8px;
}

.p-offer p {
    font-size: 10px;
    font-weight: 400;
    color: var(--txt-clr);
}
/* .product-info{
    padding-bottom: 5px;
    padding-inline: 2px;
} */

.product-info h3 {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    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;
}

.add_to_cart_section {
    position: absolute;
    right: -5px;
    bottom: -5px;
}

.add_to_cart_section button {
    width: 25px;
    height: 25px;
    border: 1.5px solid var(--main-clr);
    border-radius: 5px;
    background: #fff;
    color: var(--main-clr);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.addToCart-btn {
    display: flex;
    width: 80px;
    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;
}



.product_price_section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product_bottom_section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product_bottom_section h6 {
    color: var(--main-clr);
    font-size: 15px;
    text-wrap: nowrap;
}

.product_bottom_section .bi-chevron-down {
    color: var(--main-clr);
    font-size: 15px;
    text-wrap: nowrap;
}



.bestselling_section2{
    margin-top: var(--mt);
}




.bestselling_grid2{
    width: 100%;
    margin-top: var(--mt);
    padding: var(--pad2);
}

.bestselling-box2 {
    width: calc(100%/3 - 20px/3);
    min-width: calc(100%/3 - 20px/3);
    padding: 5px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #5D0002, #E84506);
}
.bestselling-box2 h3 {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    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;
    color: var(--txt-clr);
    text-align: center;
    margin-bottom: 2px;
}

.bestselling-box2 .bestselling-box-img {
    width: calc(50% - 5px/2);
    min-width: calc(50% - 5px/2);
    padding: 0px!important;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.bestselling-box2 .bestselling-box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}