/** default vars **/
:root {
    --sections-width: 1050px; /** 1050px or 720px **/
    --product-width: 500px; /**500px or 720px **/
    --main-bg-color: white; /**--bs-gray-900 or white **/
    --secondary-bg-color: orange;
    --main-color: var(--bs-gray-900);
    --header-and-footer-border-spread: 5px; /** 5px or 0 px **/
    --product-images-display: none;
    --products-flex-direction: row;
    --product-box-shadow: 0px 0px 0px 0px; /** 0px 0px 0px 0px; or 0px 0px 50px 5px gray; **/
    --logo-height: 150px;
    --credits-color: var(--bs-gray-700);
}

/** General **/
*::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/** flags **/
.it::before {
  content: url('assets/images/flags/it.png');
  display: inline-block;
  width: 32px;
  vertical-align: middle;
}
.en::before {
  content: url('assets/images/flags/en.png');
  display: inline-block;
  width: 32px;
  vertical-align: middle;
}
.de::before {
  content: url('assets/images/flags/de.png');
  display: inline-block;
  width: 32px;
  vertical-align: middle;
}

/** Header and intro **/
section.header {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  width: 100vw;
  display: flex;
  justify-content: center;
  background-color: var(--main-bg-color);
  border-bottom: var(--header-and-footer-border-spread) solid var(--secondary-bg-color);
}
.logo {
  max-height: var(--logo-height);
  max-width: 100vw;
}
section.intro {
  width: var(--sections-width);
  max-width: 100vw;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

/** Products **/
section.products {
  width: var(--sections-width);
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: var(--products-flex-direction);
  justify-content: center;
  align-content: center;
  row-gap: 30px;
  column-gap: 30px;
}
.product-separator {
  margin-top: 30px;
  width: var(--product-width);
  max-width: 100vw;
}
.product-separator__image {
  height: 100px;
  overflow: hidden;
}
.product {
  width: var(--product-width);
  max-width: 100vw;
  box-shadow: var(--product-box-shadow);
}
.product__name {
  background-color: var(--main-bg-color);
  color: var(--main-color);
  text-align: center;
}
.product__name h4 {
  font-size: 1.25rem;
}
.product__name h5 {
  font-size: 1rem;
}
.product__image {
  height: 300px;
  overflow: hidden;
  display: var(--product-images-display);
}
.carta {
  font-weight: bold;
  color: var(--bs-blue) !important;
}
.vetro {
  font-weight: bold;
  color: var(--bs-green) !important;
}
.plastica {
  font-weight: bold;
  color: var(--bs-yellow) !important;
}
.metallo {
  font-weight: bold;
  color: #46a9c2 !important;
}
.indifferenziato {
  font-weight: bold;
  color: var(--bs-grey) !important;
}

/** Notes **/
section.notes {
  width: var(--sections-width);
  max-width: 100vw;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}

/** Footer **/
section.footer {
  margin-top: auto;
  width: 100vw;
  display: flex;
  background-color: var(--main-bg-color);
  padding: 50px 0 10px 0;
  color: var(--bs-gray-700);
  justify-content: center;
  border-top: var(--header-and-footer-border-spread) solid var(--secondary-bg-color);
}
.credits {
  max-width: 700px;
  color: var(--credits-color);
}
.duemme-heart:hover {
  transition: color 0.5s;
  color: #ff0000;
}
.invisible-link {
  color: var(--credits-color);
  text-decoration: none;
}