body {
  font-family: 'Open Sans', sans-serif;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  text-align: center;
}

.product-container {
  max-width: 800px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-image-box {
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: auto;
}

.product-info {
  margin-top: 20px;
}

.product-price {
  font-size: 1.5em;
  color: #333;
}

.action-buttons {
  margin-top: 15px;
}

.action-buttons button {
  padding: 10px 20px;
  font-size: 1em;
  margin-right: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.action-buttons button.addToCart {
  background-color: #390404; 
  color: #fff;
}

.action-buttons button.addToWishlist {
  background-color: #716262; 
  color: #fff;
}

.description {
  margin-top: 20px;
  margin-left: 30px;
}

.graph-image {
  max-width: 100%;
  height: auto;
}

.recommended-products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 20px;
    justify-content: center;
    margin: 20px auto;
    max-width: 1000px;
    padding: 0 15px;
}


.rating-graph > img{
    max-width: 100%;
    height: auto;
}

.product-card {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  width: 40%;
  background-color: #fff;
}

.product-card img {
  width: 250px;
  height: 350px;
  border-radius: 8px 0 0 8px;
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  justify-content: center;
}

.product-details .product-price {
  font-size: 1.2em;
  color: #333;
}

.product-details .add-to-cart {
  margin-top: 10px;
  background-color: #390404; 
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
}
.heading {
font-size: 25px;
margin-right: 25px;
}

.fa {
font-size: 25px;
}

.checked {
color: rgb(237, 156, 7);
}

.side {
float: left;
width: 15%;
margin-top:10px;
}

.middle {
margin-top:10px;
float: left;
width: 70%;
}

.right {
text-align: left;
}

.row:after {
content: "";
display: table;
clear: both;
}

.bar-container {
width: 70%;
background-color: #f1f1f1;
text-align: center;
color: white;
}
.rating-graph
{
  margin: 20px auto;
  max-width: 600px;
  padding: 0 15px;
}

.bar-5
 {
  width: 60%; height: 18px; background-color: rgb(224, 177, 21)
 }
.bar-4 
  {
    width: 30%; height: 18px; background-color: rgb(224, 177, 21)
  }
.bar-3 {
  width: 10%; height: 18px; background-color: rgb(224, 177, 21)
}
.bar-2 {
  width: 4%; height: 18px; background-color: rgb(224, 177, 21)
}
.bar-1 {
  width: 15%; height: 18px; background-color: rgb(224, 177, 21)
}

.foot_link{
    font-size: 32px;
    text-decoration: none;
    color: rgb(14, 14, 101);

}  

.foot_link:hover{
  text-decoration: underline;
  transform: scale(1.3);
}

::-webkit-scrollbar{
  width: 10px;
}

::-webkit-scrollbar-track{
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb{
  background: rgba(108, 108, 108, 0.558);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover{
  background-color: rgba(108, 108, 108, 0.896);
}

@media (max-width: 768px) {
  .side, .middle {
    width: 100%;
  }
  .right {
    display: none;
  }
}

@media (max-width: 820px) {
  .product-container {
    margin: 20px 10px;
    padding: 15px;
  }
}

@media (max-width: 800px) {
  .product-card {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    margin: 10px auto;
  }
  .product-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
  }
}


