body{
      background-image: url(Assets/images/bg.jpg);
      background-size: cover;
}

.details-wrapper {
max-width: 1100px;
margin: 100px auto;
padding: 40px 50px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.details-title {
font-family: 'Playfair Display', serif;
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
color: #000;
}


.details-sub {
font-style: italic;
margin-bottom: 20px;
color: #333;
}


.details-price {
font-weight: 600;
margin-bottom: 10px;
}


.details-list {
padding-left: 20px;
line-height: 1.9;
color: #000;
margin-bottom: 40px;
}


.details-bottom {
display: flex;
gap: 40px;
}


.details-bottom img {
width: 100%;
height: 230px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


@media(max-width: 768px){
.details-bottom{
flex-direction: column;
}
}


.img-box {
  overflow: hidden;
  border-radius: 14px;
}

.img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

.img-box:hover img {
  transform: scale(1.05);
}



