header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px;
    align-items: flex-start;
    background-image: url('../img/img.png');
    height:250px;
}
.ball{
    width: 40px;
    height:40px;
    border-radius: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border:none;
    box-shadow:  1px 1px 8px #7f7f7f;
}
.infopop{
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color:white;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    margin-top: -30px;
    width: 100%;
}
.main-info{
    display: flex;
    flex-direction: row;
}
.logo-info{
    width: 45px;
    height: 45px;
    margin-right: 12px;
}
.text-info h1{
    font-size: 18px;
}
.text-info p{
    font-size:12px;
}
.star-rate{
    display: flex;
    flex-direction: row;
    padding: 7px 10px;
    height: 26px;
    width: 55px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.09);
    margin-left: auto;
}
.star{
    width: 12px;
    height: 12px;
}
.state{
    display: flex;
    flex-direction: row;
    margin:12px;
    align-items: center;
    gap: 8px;
}
.clock{
    width: 16px;
    height: 16px;
}

/*AREA SCROLL*/

.categories {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin: 10px;
  overflow-x: auto;
}

.category {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: white;
  color: #7E8392;
  cursor: pointer;
  transition: background 0.3s;
}

.category.active {
  background: orange;
  color: white;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin:24px;
}

.product {
  text-align: center;
  color: white;
}



.product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex:1;
}

.product-info{
  max-width: 70%;
}
a{
  text-decoration: none;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
}

.product-info .description {
  font-size: 12px;
  color: #888;
  margin: 5px 0;
}

.product-info .price {
  font-weight: bold;
  font-size: 14px;
}

.product-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: contain;
}

