.product-details-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #1e1e1e;
    font-family: "Poppins", sans-serif;
  }
  
  .left-column {
    width: 45%;
    border-right: 2px solid white;
    padding-right: 4%;
  }
  
  .product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .related-products {
    margin-top: 20px;
  }
  
  .related-products h3 {
    margin-bottom: 10px;
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 4%;
  }
  
  .related-products-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    
  }
  
  .related-product-item {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
  }
  
  .related-product-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .related-product-name {
    margin-top: 10px;
    color: white;
  }
  
  .related-product-price {
    color: white;
  }
  
  .right-column {
    width: 45%;
    display: flex;
    flex-direction: column;
  }
  
  /* ProductDetails.css */
.category-menu {
  display: flex;
  justify-content: start;
  background-color: #ffd700;
  padding: 10px 0;
  font-family: "Poppins", sans-serif;
  overflow: auto;

}
.category-menu::-webkit-scrollbar {
    display: none;
}

.category-item {
  margin: 0 8px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  background-color: black;
}

.category-item:hover {
  background-color: #ffa500;
  color: black;
  padding: 8px 20px;
}
  .product-name {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 4%;
    color: white;
  }
  
  .new_stock {
    margin-bottom: 20px;
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 14%;
  }
  
  .product-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    padding-bottom: 4%;
  }

  .quantity-section {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    align-items: center;
    color: white;
    padding-bottom: 4%;
  }
  .quantity-section input{
    width: 30px;
    font-weight: bold;
  }
  .total-price{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    padding-bottom: 4%;
    border-bottom: 1px solid white;
    padding-bottom: 12%;
  }

  .quantity-button {
    color: black;
    background-color: white;
    border: none;
    font-size: 20px;
    padding: 5px 30px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 4px;
  }
  .quantity-button:hover{
    background-color: rgb(116, 99, 69);
    color: white;
  }
  
  .buttons-row-p {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 4%;
  }
  
  .add-to-cart-button, .add-to-basket-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    margin-right: 30px;
  }
  
  .add-to-cart-button {
    width: 40%;
    height: 70px;
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 2px;
  }
  .add-to-cart-button:hover{
    background-color: #ffa500;
  }
  
  .add-to-basket-button {
    width: 40%;
    height: 70px;
    background-color: #1e1e1e;
    color: white;
    border: none;
    border-radius: 4px;
    border: 2px solid white;
    border-radius: 2px;
  }
  .add-to-basket-button:hover{
    background-color: wheat;
    color: black;
  }
  .related-products-slider::-webkit-scrollbar {
    display: none;
  }
  
  .related-products-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Responsive styles */
@media (max-width: 1050px) {
.category-menu {
  display: flex;
  justify-content: start;
  background-color: #ffd700;
  padding: 6px 0;
  margin-top: 2%;
}
.category-item {
  margin: 0 4px;
  padding: 10px 10px;
  font-size: 12px;
}
}

@media (max-width: 790px) {
  .product-details-container {
    flex-direction: column;
    padding: 10px;
  }

  .left-column,
  .right-column {
    width: 100%;
    border: none;
    padding: 0;
  }

  .left-column {
    margin-bottom: 20px;
  }

  .product-image {
    height: auto;
    max-height: 300px;
  }

  .related-products-slider {
    gap: 5px;
  }

  .category-menu {
    display: flex;
    justify-content: start;
    background-color: #ffd700;
    padding: 2% 0;
    margin-top: 2%;
  }
  .category-item {
    margin: 0 4px;
    padding: 10px 10px;
    font-size: 12px;
  }
}


@media (max-width: 600px) {
  .category-menu {
    padding: 5% 0;
    margin-top: 2%;
  }
  .category-item {
    margin: 0 4px;
    padding: 10px 10px;
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .category-menu {
    padding: 5% 0;
    margin-top: 3%;
  }
  .category-item {
    margin: 0 4px;
    padding: 10px 10px;
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  .category-menu {
    padding: 5% 0;
    margin-top: 2%;
  }

}