.breadcrumb-container {
  display: flex;
  width: 80%;
  margin: auto;
}
.logo_brewery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}
.logo_brewery img {
    height: 100%;
    width: auto;
}
.foto_brewery {
    width: 100%;
    height: 15vw;
    margin: 10px 0 10px 0;
}
.foto_brewery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container_name_brewery {
  display: flex;
  width: 80%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
.name_brewery {
    display: flex;
    flex-direction: column;
    margin: 20px 0 20px 0;
}
.name_brewery h1 {
    font-family: "Public Sans", sans-serif;
    color: #eec300;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.name_brewery p,
.name_brewery a {
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.25rem;
}
.name_brewery a {
  text-decoration: underline;
}
.description_brewery {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    text-align: justify; /*текст по ширине*/
    line-height: 1.5;
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
}
.frase {
    width: 80%;
    margin: 20px auto 20px auto;

}
.frase h2 {
      font-family: "Public Sans", sans-serif;
    color: #eec300;
    font-weight: 600;
    font-size: 1.5rem;
}


/*КНОПКА*/
.atuin-button {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px 0;
}
.button-norm {
  text-decoration: none;
  font-family: "Public Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  border: 1px solid #eec300;
  border-radius: 2px;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
}
.button-norm:hover {
  background-color: #eec300;
}






/*общий контейнер*/
.container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  padding-bottom: 50px;
}
.product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.product-description-block {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-id {
  display: none !important;
}
.product-card-wrapper {
  position: relative;
  display: flex;
  width: 400px;
  height: 280px;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 20px;
}
.product-medals {
    display: flex;
    align-items: center;  
}
.product-medals img {
    width: 70px;
}
.item-foto {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.item-foto img {
  position: absolute;
  height: 240px;
  width: auto;
}
.product-specs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: auto;
}
.spec {
  display: flex;
  flex-direction: column;
  font-family: "Public Sans", sans-serif;
  color: #333333;
  font-size: 0.95rem;
  font-weight: 400;
}


meter::-webkit-meter-optimum-value {
  background: #E80000; /* цвет заполненной части при нормальном значении */
}
meter::-webkit-meter-bar {
  border-radius: 0;
}
meter::-webkit-meter-suboptimum-value {
  background: #E80000; /* цвет заполненной части при среднем значении */
}
meter::-webkit-meter-even-less-good-value {
  background: #E80000; /* цвет заполненной части при плохом значении */
}
meter::-moz-meter-bar {
  background: #E80000; /* цвет заполненной части */
}



.product-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-description-block {
  margin-left: 30px;
}
.product-description-block h2 {
  font-family: "Public Sans", sans-serif;
  color: #eec300;
  font-size: 1.35rem !important;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.item-packaging {
    display: flex;
    justify-content: center;
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.item-packaging li::after {
    content: "|";
    margin: 0 5px;
}
.item-packaging li:last-child::after {
    content: "";
}
.product-style {
    display: flex;
    justify-content: center;
    gap:  20px;
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.product-description {
  display: flex;
    text-align: justify; /*текст по ширине*/
    line-height: 1.5;
    font-family: "Public Sans", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
}







/*АДАПТИВ*/

@media screen and (max-width: 1000px) { /*от 480 до 1000*/
  .logo_brewery {
    height: 100px;
  }
  .container_name_brewery {
    flex-direction: column;
    width: 90%;
    align-items: normal;
  }
  .container {
    width: 90%;
  }
  .description_brewery {
    width: 90%;
  }
  .atuin-button {
    justify-content: end;
    margin: 0 0 10px 0;
  }
  .atuin-button.bottom {
    justify-content: center;
    margin: 40px 0 10px 0;
  }
  .product-card {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .product-description-block {
    align-items:baseline;
    margin-left: 0;
  }
  .product-description-block h2 {
    text-align: left;
  }
  .product-description {
    margin-bottom: 13px;
  }
}

@media screen and (max-width: 480px) { /*до 480*/
  .logo_brewery {
    height: 80px;
    margin-top: 10px;
  }
  .product-card {
    width: 100%;
  }
  .product-card-wrapper {
    width: 100%;
  }
  .product-description {
    line-height: 1.2;
  } 
}
@media screen and (max-width: 400px) { /*до 400*/
  .product-medals {
    display: none;
  }
}
