.imgleft {
  width: 100%;
  background: #f4f4ff;
  border-radius: 10px;
}
.product-details-right {
  padding: 20px 10px;
}

.product-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.stars {
  color: #f7b500;
  font-size: 20px;
}

.review-text {
  color: #777;
  font-size: 15px;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.quantity-box button {
  width: 42px;
  height: 42px;
  border: 2px solid #000;
  background: #fff;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.quantity-box input {
  width: 55px;
  height: 42px;
  text-align: center;
  border: 2px solid #000;
  font-size: 18px;
  font-weight: 600;
}

.product-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.cart-btn,
.inquire-btn {
  border: none;
  background: #111;
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover,
.inquire-btn:hover {
  background: #f57c00;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  border-radius: 3px;
}

.social-icons a:nth-child(1) {
  background: #0d6efd;
}

.social-icons a:nth-child(2) {
  background: #1877f2;
}

.social-icons a:nth-child(3) {
  background: #1da1f2;
}

.social-icons a:nth-child(4) {
  background: #25d366;
}

.social-icons a:nth-child(5) {
  background: #e60023;
}

.social-icons a:nth-child(6) {
  background: #2aabee;
}

.social-icons a:nth-child(7) {
  background: #777;
}

.product-features p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 12px;
}

/* Responsive */

@media (max-width: 992px) {
  .product-title {
    font-size: 30px;
  }

  .product-features p {
    font-size: 20px;
  }

  .cart-btn,
  .inquire-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 24px;
  }

  .product-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-features p {
    font-size: 17px;
  }

  .quantity-box button {
    width: 38px;
    height: 38px;
  }

  .quantity-box input {
    width: 45px;
    height: 38px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }
}
.quantity-box {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: 2px solid #222;
  background: #fff;
  color: #222;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.qty-btn:hover {
  background: #111;
  color: #fff;
}

.qty-input {
  width: 50px;
  height: 42px;
  border: 2px solid #222;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  outline: none;
}
.reviews-section {
  background: #f8f9fa;
}

.review-tabs {
  margin-bottom: 40px;
}

.review-tabs button {
  border: none;
  background: #111;
  color: #fff;
  padding: 14px 35px;
  font-size: 18px;
  font-weight: 600;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-header h5 {
  margin: 0;
  font-weight: 600;
}

.review-header span {
  color: #888;
  font-size: 14px;
}

.review-stars {
  color: #ffc107;
  font-size: 18px;
}

.review-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.leave-review {
  margin-top: 50px;
}

.leave-review h3 {
  margin-bottom: 25px;
  font-weight: 600;
}

.leave-review .form-control {
  border-radius: 6px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.leave-review .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

.submit-review {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  transition: 0.3s;
}

.submit-review:hover {
  background: #ff6a00;
}

@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .review-tabs button {
    width: 100%;
  }

  .submit-review {
    width: 100%;
  }
}
