.product-container {
    border-radius: 15px;
    padding: 30px;
  }
  .product-title {
    font-size: 5rem;
    font-weight: bold;
    color: #333;
  }
  .product-description {
    color: #777;
    font-size: 1.2rem;
  }
  .btn-add,
  .btn-buy {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
  }
  .btn-add {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
  }
  .btn-add:hover {
    border: 2px solid var(--primary-color);
    background:transparent;
    color: var(--primary-color);
  }
  .quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #2e2b2b;
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
  }
  .quantity-control button {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    padding: 5px 10px;
  }
  .button-container {
    margin-top: auto;
  }
  .review-container {
    padding: 30px;
    border-radius: 10px;
  }
  .review-header {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
  }
  .rating-summary {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  .rating-breakdown div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rating-bar {
    width: 60%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .rating-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 5px;
  }
  .write-review textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
  }
  .submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
  }
  .review-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
  }
  .review-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
  }
  .review-content {
    flex-grow: 1;
  }
  .divider {
    border-left: 2px solid #ddd;
    height: 100%;
  }
  .related-container {
    /* background: white; */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
  }
  .product-card {
    /* background: white; */
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-5px);
  }
  .product-card img {
    width: 100%;
    border-radius: 10px;
  }
  .product-name {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
  }
  .product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  .btn-buy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
  }
  .btn-buy:hover {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
  }
  .w-80 {
    width: 80% !important;
  }
  .review{
    background-color: transparent;
    border: 1px solid var(--primary-color);
  }

/* Mobile-specific styles */
@media (max-width: 768px) {
  .product-title {
      font-size: 2.5rem;
      margin-top: 1rem;
  }

  .carousel-inner {
      width: 100% !important;
      max-width: 400px;
      margin: 0 auto;
  }

  .product-container {
      padding: 15px;
  }

  .button-container {
      margin-top: 1rem;
  }

  .review-container {
      padding: 15px;
  }

  .rating-bar {
      width: 50%;
  }

  .product-card {
      margin-bottom: 1rem;
  }

  .btn-add, .btn-buy {
      padding: 10px;
      font-size: 0.9rem;
  }
}

