/* #single-product-container *{margin: 0; padding: 0; box-sizing: border-box;} */
ul,ol{
  margin: 0;
}
.btn-buy-now{
  padding: 16px 78px ;
} 
.btn-add-cart{
  padding: 16px 78px ;
} 
.tab-btn{
  padding: 14px 33px ;
  background-color: #b8860b;
}
#single-product-container {
  width: 100vw;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#single-product-container .product-main-section {
  width: 100%;
  max-width: 1620px;
  padding: 50px 0;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
#single-product-container  .product-main-section .productImageWrapper{
  width: 60%;
}
#single-product-container  .product-main-section .productDetailWrapper{
  width: 40%;
}
/* ======================================== */
#single-product-container .product-main-section .productImageWrapper .product-images .product-thumbnails{
  width: 100%;
}
#single-product-container .product-main-section .productImageWrapper .product-images .product-thumbnails .thumbnail-item{
  width: 33%;
  min-width: 200px;
  height: auto;
}

#single-product-container .product-main-section .productImageWrapper .product-images .product-thumbnails .thumbnail-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ======================================== */
.product-images .main-product-image {
  margin-bottom: 20px;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
}

.thumbnail-image:hover {
  border-color: #ddd;
}

.product-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.product-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-list li {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.price-section {
  font-size: 24px;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 20px;
}

.quantity-section {
  width: 100%;
  max-width: 168px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.quantity-section input{
  width: fit-content;
  padding: 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 500;
  color: black;
  line-height: .8;
}

.qty-input {
  text-align: center;
  margin: 0 5px;
}

.cart-buttons {
  display: flex;
  gap: 15px;
}

.btn-buy-now,
.btn-add-cart {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-buy-now {
  background: #b8860b;
  color: white;
}

.btn-add-cart {
  background: transparent;
  color: #b8860b;
  border: 2px solid #b8860b;
}

.product-tabs-section {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}

.tab-navigation {
  display: flex;
  background: #eee;
}

.tab-btn {
  padding: 15px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.tab-btn.active {
  background: #f8f8f8;
  color: #333;
}

.tab-content {
  padding: 30px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.detailed-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.detailed-features li {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-main-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-buttons {
    flex-direction: column;
  }

  .tab-navigation {
    flex-direction: column;
  }
}
