.product-view{
  width:100%;
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
  padding:40px 20px;
  align-items:center;
  }
  
  
  
  .product-image img{
  width:100%;
  max-width:400px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.15);
  }
  
  
  
  .product-info{
  flex:1;
  }
  
  .product-info h1{
  font-size:36px;
  color:#4B2E83;
  margin-bottom:10px;
  }
  
  .price{
  font-size:24px;
  color:#D4AF37;
  font-weight:bold;
  margin-bottom:15px;
  }
  
  .desc{
  font-size:16px;
  line-height:1.6;
  margin-bottom:25px;
  color:#444;
  }
  
  
  
  .buy-now{
  padding:12px 28px;
  font-size:16px;
  border:none;
  background:#4B2E83;
  color:white;
  border-radius:6px;
  cursor:pointer;
  }
  
  .buy-now:hover{
  background:#D4AF37;
  color:black;
  }
  
  
  
  @media(max-width:768px){
  
  .product-view{
  flex-direction:column;
  text-align:center;
  }
  
  .product-image img{
  max-width:320px;
  }
  
  }
  
  
  
  @media(max-width:480px){
  
  .product-info h1{
  font-size:26px;
  }
  
  .price{
  font-size:20px;
  }
  
  .desc{
  font-size:14px;
  }
  
  .buy-now{
  padding:10px 22px;
  }
  
  }