/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Kanit', sans-serif;
  background-color: #121212;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Main layout */
main {
  padding: 20px;
  text-align: center;
}

.product-container {
  background-color: #1b1b1b48;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

/* Image Section */
.product-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.carousel-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: none;
}

.carousel-item.active {
  display: block;
}

/* Carousel dots */
.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #717171;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #bbb;
}

/* Details Section */
.product-details {
  flex: 2;
  max-width: 600px;
  text-align: left;
}

.product-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00E6A1;
  margin-bottom: 20px;
}

.second-product-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-top: 30px;
}

.second-product-description ul {
  margin-top: 10px;
  padding-left: 20px;
  text-align: left;
}

.docs:link {
  color: #01a171;
}

.docs:hover {
  color: #00E6A1;
}

/* Purchase form styles */
form img {
  max-width: 120px;
  height: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    padding: 20px;
  }

  .product-image {
    max-width: 100%;
  }

  .carousel {
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }

  .carousel-item {
    border-radius: 8px;
  }

  .product-details {
    max-width: 100%;
    padding-top: 20px;
  }

  .product-title {
    font-size: 1.6rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .product-description,
  .second-product-description {
    font-size: 1rem;
    text-align: left;
  }

  form img {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .carousel {
    aspect-ratio: 1 / 1;
    max-height: 250px;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-price {
    font-size: 1.2rem;
  }

  .product-description {
    font-size: 0.95rem;
  }

  .second-product-description {
    font-size: 0.9rem;
  }

  .dot {
    height: 12px;
    width: 12px;
  }
}
