.h1 ,
.body{
  font-family: "B Yekan", sans-serif;
  src: url('../assets/fonts/BYekan.woff2') format('woff2');
  background: #f8f4f1;
  color: #000;
}
.product-card-M a,
.product-card-M a:hover,
.product-card-M a:visited {
    text-decoration: none;
    color: inherit;
}
.product-title{
    font-size:50px;
    margin-bottom:20px;
    font: "B Yekan";
}

.product-price{
    color:#0c5a86;
    font-size:36px;
    font: weight 250px;;
}

.stock{
    color:#1f8f37;
    font-weight:600;
}.gallery-wrapper{
    display:flex;
    gap:15px;
    align-items:stretch;
}

.main-image{
    flex:1;
}

.main-image img{
    width:100%;
    display:block;
    border-radius:50px;
    object-fit:cover;
}

.thumbs-wrapper{
    width:140px;
    display:flex;

    flex-direction:column;
    flex-shrink:0;
     height: 650px;
}

.thumbs-container{
    flex:1;
    height: 650px;
        overflow-y:auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.thumb{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:18px;
    flex-shrink:0;
    
}
.thumb.active{
    border-color:#198754;
}
@media (max-width: 768px) {

    .gallery-wrapper{
        flex-direction: column;
    }

    .main-image{
        width: 100%;
    }

    .thumbs-wrapper{
        width: 100%;
        margin-top: 10px;
        height: 100px;

    }

    .thumbs-container{
        height: 100px;

        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        

        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .thumb{
        
        min-width: 80px;
        height: 100px;
        width: auto;
        aspect-ratio: unset;
        flex-shrink: 0;
    }
    .thumb.active{
         border-color:#198754;
    }
    .thumb-nav{
        display: none;
    }
}


.feature-box{
    max-width: 450px;
}

.feature-box h3{
    display: inline-block;
    background: #0d4f7c;
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 400;
}

.feature-box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-box ul li{
    position: relative;
    padding-right: 25px;
    margin-bottom: 18px;
    font-size: 20px;
    color: #696969;
    line-height: 1.8;
}

.feature-box ul li::before{
    content: "";
    width: 10px;
    height: 10px;
    background: #0d4f7c;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 15px;
}

.thumb-nav{
    border:none;
    background:#cfd6dd;
    border-radius:10px;
    height:40px;
    font-size:20px;
    cursor:pointer;
}
.quantity-box{
    display:flex;
}

.quantity-box button{
    width:40px;
    border:1px solid #ccc;
    background:#fff;
}

.quantity-box input{
    width:50px;
    text-align:center;
    border:1px solid #ccc;
}

