body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: url(img/prod.jpg);
  background-size: cover;
  background-attachment: fixed;
  overflow-y: scroll;
}

.prod-container {
  max-width: 1200px;
  margin: 200px auto 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}


.product-detail {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-info {
  flex: 2;
}

.product-info h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
}

.product-info .price {
  font-size: 1.5em;
  color: #4CAF50;
  /* Green color */
  margin-bottom: 20px;
}

.product-info .button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.product-info .button:hover {
  background-color: #45a049;
}

.product-description {
  margin-top: 20px;
}

.product-description h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.product-description p {
  font-size: 1em;
  color: #666;
}

@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
  }
}



.fa-user {
  font-size: 20px;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.account-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.account-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.account-menu a:hover {
  background-color: #f0f0f0;
}

.cart-icon {
  font-size: 20px;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.cart-icon i {
  font-size: 20px;
  color: #fff;
}

.cart-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  width: 200px;
}

.cart-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.cart-menu a:hover {
  background-color: #f0f0f0;
}

}

footer {

  position: relative;

  top: 100px;

  background: #111;

  height: auto;

  width: 100vw;

  color: #fff;

  padding-top: 40px;

}

.footer-content {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;

}

.footer-content h3 {

  font-size: 1.8rem;

  text-transform: capitalize;

  line-height: 3rem;

}

.footer-content p {

  max-width: 500px;

  margin: 10px auto;

  line-height: 28px;

  font-size: 14px;

}

.socials {

  list-style: none;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 1rem 0 3rem 0;

}

.socials li {

  margin: 0 10px;

}

.socials a {

  text-decoration: none;

  color: #fff;

}

.socials a i {

  font-size: 1.1rem;

  transition: color 0.4s ease;

}

.socials a:hover i {

  color: aqua;

}

.footer-bottom {

  width: 100vw;

  padding: 20px 0;

  text-align: center;

}

.footer-bottom p {

  font-size: 14px;

  word-spacing: 2px;

}

.footer-bottom span {

  opacity: 0.4;

  font-weight: 200;

}

.logo {
  width: 50px;
  height: auto;
}

.product-details {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.product-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rating-label {
  font-weight: bold;
  margin-right: 10px;
}

.stars {
  color: gold;
  margin-right: 10px;
}

.star {
  font-size: 20px;
  margin-right: 2px;
}

#average-rating {
  font-weight: bold;
  font-size: 18px;
}

.review-form {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.review-form h3 {
  margin-bottom: 10px;
}

.review-form label {
  display: block;
  margin-bottom: 5px;
}

.review-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.review-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

.review-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: #007bff;
  color: white;
  cursor: pointer;
}

.review-form button:hover {
  background: #0056b3;
}

#add-to-cart {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #28a745;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

#add-to-cart:hover {
  background-color: #218838;
}

.discount {
  color: red;
  font-size: 20px !important;
}

.og-price {
  font-size: 30px !important;
  text-decoration: line-through;
}