/* Reset */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'myriad-pro', sans-serif;
  background-color: #ffebd8;
  line-height: 1.6;
}

/* Navbar */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.nav h1{
  color: #ef8d00;
}

.cart-link, .cart {
  color: #ef8d00;
  text-decoration: none;
}

.product-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Product image & carousel */
.product-media {
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-wrapper {
  width: 280px;
  height: 280px;
  position: relative;
}

.carousel-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-media button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #f9a825;
  padding: 0 0.5rem;
}

/* Product Description Panel */
.product-details {
  max-width: 400px;
  color: #5f2f00;
}

.product-details h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-details .price {
  font-size: 1.2rem;
  color: #8a4a00;
  margin-bottom: 0.5rem;
}

.product-details .desc {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-details ul {
  margin-bottom: 1.5rem;
  list-style-type: disc;
  padding-left: 1.25rem;
}

#add-to-cart {
  background: #f9a825;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

#add-to-cart:hover {
  background: #ec9c00;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .product-layout {
    flex-direction: column;
    align-items: center;
  }

  .product-media, .product-details {
    width: 100%;
    max-width: 90%;
  }

  .product-details {
    text-align: center;
  }

  .product-details ul {
    text-align: left;
  }
}
