*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    color:#222;


}

a {
  color: #000;
  text-decoration: none!important;
}

a:hover {
  text-decoration: underline;

}


img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.butn-pink {
    border: 2px solid #4dbc00;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    color: #fff;
    background: #418C06;
    padding: 12px 25px;
        text-decoration: none!important;
}


.butn-pink:hover {
  background: #418C06;
  color: #fff;
}

/* Header */
.header{
    max-width:1200px;
    margin:auto;
    padding:25px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-weight:300;
}

.logo span{
    display:block;
    font-size:12px;
    letter-spacing:2px;
}

.nav{
    display:flex;
    gap:40px;
}

.nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    padding:10px 20px;
}

.nav a.active{
    background:#ffcb05;
    padding:10px 20px;
    border-radius:30px;
}

.icons{
    display:flex;
    gap:15px;
}

/* Product Grid */
.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

.card{
    background:#ececec;
    border-radius:24px;
    overflow:hidden;
    padding:20px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
}

.card-tag {
background: #BED7FF;
display: inline-block;
padding: 5px;
border-radius: 8px;

}

.card img{
    width:100%;
    min-height:537px;
    object-fit:contain;
}

.card-footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-top:15px;
}

.product-title{
    font-size:28px;
    font-weight:700;
}

.size{
    font-size:14px;
    color:#777;
    margin-left:5px;
}

.price{
    font-size:24px;
    font-weight:700;
}

/* Footer */
.footer{
    max-width:1200px;
    margin:80px auto 0;
    padding:40px 20px;
    border-top:1px solid #ddd;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer h4{
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.social{
    margin-top:25px;
    display:flex;
    gap:15px;
}

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:20px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-title{
        font-size:22px;
    }

    .price{
        font-size:20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}


/* Details */


/* Main Container */

.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* Product Hero */

.product-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:50px;
}

.product-image img{
    width:100%;
    border-radius: 24px;
}

.product-info h1{
    font-size:42px;
    margin-bottom:15px;
}

.product-info p{
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.specs{
    margin-bottom:20px;
}

.specs div{
    margin-bottom:6px;
}

.price2{
  font-size: 40px;

    font-weight:700;
    margin-bottom:15px;
}

.shipping{
    font-size:18px;
    color:#666;
}



.stock{
    color:#5f3dc4;
    margin-top:10px;
    font-size:14px;
}

/* Section Cards */

.section-box{
    background:#ececec;
    border-radius:24px;
    padding:30px;
    margin-bottom:30px;
}

.section-title{
    font-size:34px;
    margin-bottom:25px;
}

/* What's in Kit */

.kit-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.left-kit{
    display:grid;
    gap:15px;
}

.left-kit .bottom{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.kit-card img{
    width:100%!important;
    height: auto;
    border-radius:12px;
}

.imgo {
  width:100%!important;
  height: auto;
}

.right-kit{
    display:grid;
    gap:15px;
}

/* How to Use */

.how-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.steps h3{
    margin-top:15px;
    margin-bottom:8px;
}

.steps p{
    color:#555;
    margin-bottom:12px;
}

.video-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    margin-top:15px;
}

.how-image img{
    width:100%;
    border-radius:12px;
}

/* Related Products */

.related-products{
    margin-top:50px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-card{
    background:#ececec;
    padding:20px;
    border-radius:20px;
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.product-bottom{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    font-weight:700;
}

.see-more{
    margin-top:20px;
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
}

@media(max-width:768px){

.product-section,
.how-grid,
.kit-grid{
    grid-template-columns:1fr;
}

.related-grid{
    grid-template-columns:1fr;
}

.product-info h1{
    font-size:30px;
}

.price{
    font-size:30px;
}

}
