.product-page{
width:95%;
max-width:1400px;
margin:30px auto;
}

/* BOX */

.product-box{
background:white;
border-radius:30px;
padding:30px;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* MEDIA */

.media-scroll{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

.media-scroll::-webkit-scrollbar{
height:6px;
}

.media-scroll::-webkit-scrollbar-thumb{
background:#ddd;
border-radius:20px;
}

.media-card{
min-width:320px;
background:#f8fafc;
border-radius:24px;
padding:15px;
flex-shrink:0;
}

.main-media{
width:100%;
height:500px;
object-fit:cover;
border-radius:20px;
background:#eee;
}

/* INFO */

.product-info h1{
font-size:48px;
font-weight:800;
margin-bottom:20px;
color:#0f172a;
}

.product-price{
font-size:42px;
font-weight:800;
color:#ff7a00;
margin-bottom:25px;
}

.product-desc{
font-size:18px;
line-height:2;
color:#475569;
margin-bottom:30px;
}

/* FEATURES */

.features{
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:30px;
}

.feature{
background:#f8fafc;
padding:18px;
border-radius:16px;
font-size:18px;
font-weight:700;
}

/* BUTTONS */

.product-buttons{
display:flex;
gap:15px;
}

.product-btn{
flex:1;
height:58px;
border:none;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:18px;
font-weight:800;
cursor:pointer;
transition:.3s;
}

.product-btn:hover{
transform:translateY(-3px);
}

.cart-btn{
background:#3b82f6;
color:white;
}

.whatsapp-btn{
background:#10b981;
color:white;
}

/* RELATED */

.related{
margin-top:50px;
}

.related-title{
font-size:34px;
font-weight:800;
margin-bottom:25px;
color:#111827;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.related-card{
background:white;
border-radius:20px;
overflow:hidden;
text-decoration:none;
color:black;
box-shadow:0 5px 20px rgba(0,0,0,.06);
transition:.3s;
}

.related-card:hover{
transform:translateY(-5px);
}

.related-card img{
width:100%;
height:220px;
object-fit:cover;
background:#f8fafc;
}

.related-info{
padding:15px;
}

.related-info h3{
font-size:18px;
margin-bottom:10px;
height:50px;
overflow:hidden;
}

.related-price{
font-size:22px;
font-weight:800;
color:#ff7a00;
}
.price-box{
display:flex;
align-items:center;
gap:12px;
margin-bottom:25px;
flex-wrap:wrap;
}

.old-price{
font-size:22px;
color:#94a3b8;
text-decoration:line-through;
font-weight:700;
}

.new-price{
font-size:38px;
font-weight:800;
color:#ff7a00;
}
/* MOBILE */

@media(max-width:768px){

.product-page{
width:100%;
padding:10px;
}

.product-box{
grid-template-columns:1fr;
padding:15px;
gap:20px;
border-radius:22px;
}

.media-scroll{
overflow-x:auto;
display:flex;
gap:12px;
scroll-snap-type:x mandatory;
padding-bottom:10px;
}

.media-card{
min-width:85%;
scroll-snap-align:start;
padding:10px;
border-radius:18px;
}

.main-media{
height:340px;
border-radius:16px;
object-fit:cover;
}

.product-info h1{
font-size:28px;
margin-bottom:15px;
}

.product-price{
font-size:28px;
margin-bottom:18px;
}

.product-desc{
font-size:15px;
line-height:1.9;
margin-bottom:20px;
}

.feature{
font-size:14px;
padding:14px;
border-radius:12px;
}

.product-buttons{
flex-direction:column;
gap:10px;
}

.product-btn{
height:50px;
font-size:15px;
border-radius:12px;
}

.related{
margin-top:35px;
}

.related-title{
font-size:24px;
margin-bottom:15px;
}

.related-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.related-card{
border-radius:16px;
}

.related-card img{
height:140px;
object-fit:cover;
}

.related-info{
padding:10px;
}

.related-info h3{
font-size:13px;
height:38px;
line-height:1.4;
}

.related-price{
font-size:16px;
}
.old-price{
font-size:16px;
}

.new-price{
font-size:28px;
}
}