:root {
    --border-color-light: #ededf2;
    --base-color: #df3c4f;
    --base-green: #13814c;
}
.f-700 {
    font-weight: 700 !important;
}
.text-gray {
    color: gray;
}
.zoome-in {
    transition: transform 0.3s ease-in-out;
}

.zoome-in:hover {
    transform: scale(1.03);
}
.view_all_button {
    font-size: 12px;
    font-weight: 900;
    color: #1594f1;
    padding-bottom: 3px;
    position: relative;
    transition: 0.35s ease-in-out;
}
.view_all_button::after {
    content: "";
    width: 0%;
    height: 2px;
    display: inline-block;
    background: #df3c4f;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s ease-in-out;
}
.view_all_button:hover::after {
    width: 100%;
}

/* .slider-left {
    width: 23% !important;
} */
.slider-right {
    width: 100% !important;
}
.carousel_img_height {
   height: calc(100dvh - 178px);
}
.home-hedding-1 {
    font-size: 20px;
    margin-bottom: 0;
    color: #1b1b28;
}

/* //category section css */
.category-card {
    background: transparent;
    border: none;
    padding: 0.7rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
    text-align: center;
    transition: 0.35s ease-in-out;
    border-radius: 10px;
}
.category-img-wrapper {
    width: 70%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-img-wrapper img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;

}
.category-title {
    font-size: 1.5rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}
.fw-700 {
    font-weight: 700 !important;
}
.category-card:hover .category-img-wrapper img {
    transform: scale(1.2); /* zoom level */
}
.category-card:hover{
    box-shadow: 1px 1px 7px 0px #0000008f;
}
/* //category section css */

.f-img-height {
    /* height: 187px; */
}
.catwise-img-height {
    /* height: 128px; */
}

/* card hover iffect css :start */
.hov-outline {
    position: relative;
    overflow: hidden;
}

/* common */
.hov-outline::before,
.hov-outline::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid var(--base-color);
    opacity: 0;
    pointer-events: none;
    transition: none;
}

/* BEFORE*/
.hov-outline::before {
    top: 0;
    left: 0;
    border-bottom: none;
    border-left: none;
}

/* AFTER */
.hov-outline::after {
    top: 0;
    left: 0;
    border-top: none;
    border-right: none;
}

/* hover transitions */
.hov-outline:hover::before {
    opacity: 1;
    transition:
        width 0.3s ease,
        height 0.3s ease 0.3s;
}

.hov-outline:hover::after {
    opacity: 1;
    transition:
        height 0.3s ease,
        width 0.3s ease 0.3s;
}

/* hover size */
.hov-outline:hover::before,
.hov-outline:hover::after {
    width: 100%;
    height: 100%;
}
.hov-outline {
    border-left: 0;
}

/* card hover iffect css :end */

/* Feature product card css is hare  */

.nav-btn {
    border: 0;
    color: rgba(32, 32, 32, 0.842);
    background: transparent;
    font-size: 18px;
}
.nav-btn:focus {
    outline: 0;
    border: 0;
}

.product_name {
    text-align: center;
    font-size: 13px;
}
.color-yellow {
    color: var(--base-color);
}

/* >> carousel */
.product-carousel .item {
    margin: 0;
    padding: 0;
}

.product-carousel .card {
    border-radius: 0;
    border: 1px solid #eee;
    margin: 0;
    border-left: 0;
}
.owl-stage {
    display: flex;
}
.owl-item {
    padding: 0 !important;
}
.owl-nav button {
    position: absolute;
    top: 40%;
    background: #000 !important;
    color: #fff !important;
    width: 35px;
    height: 35px;
}
.owl-nav .owl-prev {
    left: -15px;
}
.owl-nav .owl-next {
    right: -15px;
}

/* product card css is hare  */

/* category-wise product css is hare  */
.cat_card_container {
    position: relative;
    overflow: hidden;
}
.cat_thum {
}

.cat_body_link {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000052;
    opacity: 0;
    transition: 0.35s ease-in-out;
}
.cat_body_link a {
    background: #000000c9;
    color: #fff;
    padding: 6px 25px;
    border-radius: 17px;
}
.cat_body_link a:hover {
    text-decoration: none;
}

.cat_body_name {
    position: absolute;
    width: 100%;
    background: transparent;
    text-align: center;
    bottom: -20px;
    transition: 0.35s ease-in-out;
}
.cat_body_name h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
}
.cat_card_container:hover .cat_body_link {
    opacity: 1;
}

.cat_card_container:hover .cat_body_name {
    bottom: 20px;
}
.cat_card_container img {
    transition: 0.35s ease-in-out;
}
.cat_card_container:hover img {
    transform: scale(1.1);
}
/*next prev button css*/
.cat_wise_custom-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 42%;
    z-index: 999;
}

/* //client section css is hare  */
.client-container {
    width: 100%;
    height: 100%;
    transition: 0.35s ease-in-out;
}
.client-container:hover {
    box-shadow: 0px 0px 5px 3px #00000042;
}
.client_img {
    padding: 5px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.client-wrapper {
    margin-left: -1px;
    margin-top: -1px;
}

.client-col {
    border: 1px solid #dee2e6;
    margin-left: -1px;
    margin-top: -1px;
}

.client-container {
    padding: 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client_img {
    max-height: 70px;
    object-fit: contain;
}
/* //client section css is hare  end */

.card-img-wrapper {
    overflow: hidden;
    padding: 17px;
}

.card-img-top {
    transition: transform 0.4s ease;
}

.hov-outline:hover .card-img-top {
    transform: scale(1.1);
}
.owl-stage-outer{
    padding: 10px 0;
}

/* category-wise product css is hare  */

@media screen and (max-width: 767px) {
    .border-left-sm {
        border-left: 1px solid #dee2e6 !important;
    }
    .border-bottom-sm {
        border-bottom: 1px solid #dee2e6 !important;
    }
    .slider-left {
        width: 0% !important;
        display: none;
    }
    .slider-right {
        width: 100% !important;
    }
    .carousel_img_height {
        height: 200px;
    }
    .carousel_gap {
        padding: 0;
    }
    .home-hedding-1 {
        font-size: 15px;
    }
    .category-title {
        font-size: 8px;
    }
    .addToCard_btn,
    .byNow_btn {
        padding: 4px 2px;
    }
    .customPad {
    padding: 3px 2px;
}
}
 @media screen and (min-width:1400px){
    .carousel_img_height {
        height: calc(100dvh - 231px);
    }
  /*Category css start*/
.home-hedding-1{
    font-size: 25px;
}
.view_all_button{
    font-size: 15px;
}
/*Category css end*/

  /*feature product css start*/

.product_name {
    font-size: 15px;
}
.addToCard_btn, .byNow_btn {
    font-size: 15px;
    padding: 5px 8px;
}

 }
@media screen and (min-width:1600px){

    .carousel_img_height {
        height: calc(100dvh - 231px);
    }
  /*Category css start*/
.home-hedding-1{
    font-size: 25px;
}
.view_all_button{
    font-size: 16px;
}
/*Category css end*/

  /*feature product css start*/

.product_name {
    font-size: 19px;
}
.addToCard_btn, .byNow_btn {
    font-size: 16px;
    padding: 5px 8px;
}

}
@media (min-width: 2000px) {

.labelName {
    width: 133px;
    font-size: 20px;
}
.sell_price{
    font-size: 22px;
}
.modal-lg, .modal-xl {
        max-width: 900px;
    }
    .carousel_img_height {
    height: calc(100dvh - 266px);
}
.qty_button {
    padding: 11px 20px;
    font-size: 20px;
}
  /*Category css start*/
.home-hedding-1{
    font-size: 30px;
}
.view_all_button{
    font-size: 18px;
}
/*Category css end*/

  /*feature product css start*/


.product_name {
    font-size: 20px;
}
.addToCard_btn, .byNow_btn {
    font-size: 20px;
    padding: 7px 11px;
}
/*feature product css end*/

}
