/* temp */

section.main_hero .container > p {
  font-size: clamp(1.25rem, 1.0897rem + 0.5128vw, 1.5rem);
}

/* temp */

.breadcrumb p {
  color: var(--color-white);
  opacity: 1;
}

/* ––––––––– SHOP –––––––– */

section.shop ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}
section.shop ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 2rem;
  align-items: center;
}

section.shop ul li img {
  margin-inline: auto;
}
section.shop ul li h3 {
  font-weight: 700;
  font-size: var(--text-l3);
  line-height: 30px;
  color: var(--color-primary);
  text-align: center;
}
section.shop ul li .price {
  text-align: center;
}
section.shop ul li > span {
  font-weight: 800;
  font-size: var(--text-l3);
  line-height: 30px;
  color: var(--color-secondary);
  text-align: center;
}
section.shop ul li dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  column-gap: 1rem;

  color: var(--color-black);
}
section.shop ul li dl dt {
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 24px;
  letter-spacing: 0.02em;

  justify-self: end;
}
section.shop ul li dl dd {
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 24px;
  letter-spacing: 0.02em;

  justify-self: start;
}
section.shop ul li .button-container {
  transition: 0.3s ease;
}
section.shop ul li .button-container:has(.added_to_cart) .add_to_cart_button {
  display: none;
}
section.shop ul li .button-container > * {
  display: block;
  text-align: center;
  background-color: var(--color-secondary);
  border-radius: 14px;
  padding: 10px 18px;
  border: 1px solid transparent;
  color: var(--color-white);
  font-weight: 800;
  line-height: 30px;

  transition: 0.3s ease;
}
section.shop ul li .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  section.shop ul {
    grid-template-columns: var(--auto-fit);
  }
}
