:root {
  --color-whatsapp: #25D366;
  --color-phone: #212529;
  --color-email: #414141;

  --color-failure: #B30000;
  --color-out-of-stock: #AD0000;
  --content-max-width-form: 1000px;
}

.header-navbar {
  background-color: var(--color-white);
}

.header-total {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}

.section-shop-top {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0 1rem;
  text-transform: lowercase;
  font-weight: 300;
}

.section-shop-after-top {
  width: 100%;
  max-width: var(--content-max-width);
  text-transform: lowercase;
  padding: 0;
  margin: 0 auto 2rem;
}

.section-shop-wrapper {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  gap: 3rem 1rem;
  padding: 1rem;
}

.product-item {
  width: 45%;
  flex-grow: 1;
}

.product-item-main {
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  gap: 0.2rem 0.5rem;
}

.product-item-info {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 300;
  margin: 0.25rem 0 0;
}

.product-item-info h2 {
  margin: 0;
  font-weight: 300;
  text-transform: lowercase;
  font-size: 1rem;
  line-height: 1.2;
  font-family: var(--font-paragraph);
  display: inline-block;
}

.product-item-info h2 a,
.product-item-info h2 a:visited,
.product-item-info h2 a:focus,
.product-item-info h2 a:active {
  border-bottom: none;
}

.product-item-info h2 a:hover {
  border-bottom: 1px dotted var(--color-black);
}

.price-wrapper {
  display: flex;
  flex-flow: row-reverse wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.price-wrapper > * {
  text-wrap: nowrap;
}

.price-wrapper .price-retail {
  text-decoration: line-through;
  font-size: 0.7rem;
}

.price-wrapper .price-discounted {
  font-size: 1.3rem;
  font-weight: 500;
}

.section-shop-wrapper .price-discounted {
  font-size: 1rem;
}

.section-shop-top-text h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
}

.section-shop-top-text .subtitle {
  margin: -0.8rem 0 1.2rem 0;
  font-family: var(--font-subtitle);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  font-size: 1rem;
}

.shop-info-wrapper {
  width: 100%;
  max-width: var(--content-max-width);
  text-transform: lowercase;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.section-shop-after-top h2,
.shop-info-wrapper h2 {
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  padding-top: 1.5rem;
  line-height: 1.25;
}

.section-shop-top ul,
.section-shop-after-top ul,
.shop-info-wrapper ul {
  padding-left: 2rem;
}

.section-shop-top ul li,
.section-shop-after-top ul li,
.shop-info-wrapper ul li {
  list-style: square;
}

.shop-info-wrapper strong {
  font-weight: 400;
}

.shop-page-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  text-transform: lowercase;
  font-weight: 300;
  max-width: var(--content-max-width);
  margin: 0 auto;
  width: 100%;
}

.shop-page-wrapper > * {
  width: 100%;
  flex-grow: 1;
}

.shop-page-wrapper h1 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0;
  font-family: var(--font-paragraph);
  line-height: 1.2;
}

.shop-media-wrapper {
  padding: 0 1rem;
  flex-grow: 0;
}

.shop-media-wrapper figure {
  margin: 0;
  padding: 0;
}

.shop-media-wrapper figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.shop-media-main {
  width: 100%;
}

.shop-media-wrapper .other-media {
  width: 100%;
  overflow: auto;
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  padding: 0.5rem 0 0;
}

.shop-media-wrapper .other-media figure {
  aspect-ratio: 1/1;
  width: 90px;
  flex-shrink: 0;
}

.other-media-item {
  opacity: 0.7;
  cursor: pointer;
}

.other-media-active {
  opacity: 1;
}

.product-item-details {
  padding: 0 1rem;
}

.product-item-content strong {
  font-weight: 400;
}

.product-item-content ul {
  margin: 0.5rem 0 1.5rem;
  padding-left: 1.5rem;
}

.product-item-content ul ul {
  margin: 0;
}

.product-item-content ul li {
  list-style: square;
  margin: 0;
}

.product-item-content ul ul li {
  list-style: circle;
}

.shop-separator {
  border-bottom: 1px solid var(--color-light-3);
  margin: 3rem auto;
  width: 100%;
}

.shop-out-of-stock {
  background-color: var(--color-out-of-stock);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  display: inline-block;
  color: var(--color-white);
  font-weight: 400;
}

.shop-out-of-stock svg {
  fill: var(--color-white);
  stroke: var(--color-white);
  width: 25px;
}

.shop-action-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.25rem;
  margin: 1rem 0 2rem;
}

.shop-action-more,
.shop-action-more:active,
.shop-action-more:visited,
.shop-action-more:focus,
.shop-action-more:hover {
  border: 1px solid transparent;
  text-align: center;
  font-size: 0.85rem;
}

.shop-action-buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.shop-action-button,
.shop-action-button:active,
.shop-action-button:visited,
.shop-action-button:focus,
.shop-action-button:hover {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: none;
  text-align: center;
}

.shop-action-button:hover {
  opacity: 0.95;
}

.shop-action-button .subtitle {
  display: inline-block;
  margin-top: 0.1rem;
  font-size: 0.9rem;
  font-weight: 300;
  width: 100%;
  text-align: center;
}

.shop-action-button svg {
  fill: var(--color-white);
  stroke: var(--color-white);
  width: 30px;
}

.shop-action-button .icon-one-line {
  justify-content: center;
}

.shop-action-button-100 {
  width: 100%;
}

.shop-action-phone,
.shop-action-phone:focus,
.shop-action-phone:visited,
.shop-action-phone:active,
.shop-action-phone:hover {
  background-color: var(--color-phone);
}

.shop-action-email,
.shop-action-email:focus,
.shop-action-email:visited,
.shop-action-email:active,
.shop-action-email:hover {
  background-color: var(--color-email);
}

.form-shop {
  gap: 0;
  max-width: revert;
  position: relative;
}

.form-shop label {
  font-weight: 400;
}

.form-shop input[type="text"],
.form-shop textarea {
  font-weight: 300;
}

.form-shop input[type="submit"] {
  text-transform: lowercase;
}


.form-shop .help {
  margin: 0 0 1rem;
}

.is-standard:hover {
  background-color: var(--color-link-hover);
}

.product-item-main .status-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  border-radius: 4px;
  padding: 0.1rem 0.2rem;
  font-size: 0.8rem;
  color: var(--color-white);
  background-color: var(--color-out-of-stock);
  gap: 0.25rem;
  text-transform: lowercase;
}

.product-item-main .status-empty svg {
  fill: var(--color-white);
  stroke: var(--color-white);
  width: 18px;
}

.loading-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  opacity: 0.75;
  z-index: 9999;
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--color-white);
}

.loading-modal .loader {
  width: 40%;
  height: 10px;
  background: linear-gradient(var(--color-black) 0 0) left/20px 20px no-repeat var(--color-white);
  animation: loaderProgressBar 0.75s infinite linear;
  border-radius: 2px;
}

.variant-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.variant-item,
.variant-item:visited,
.variant-item:active,
.variant-item:focus,
.variant-item:hover {
  cursor: pointer;
  border: 2px solid var(--color-light-2-5);
  width: 100%;
  padding: 0.75rem;
}

.variant-item:hover,
.variant-active {
  border: 2px solid var(--color-black) !important;
}

@keyframes loaderProgressBar {
  50% {
    background-position: right
  }
}

@media screen and (min-width: 800px) {
  .product-item {
    width: 30%;
    max-width: 50%;
  }

  .shop-page-wrapper > * {
    width: 25%;
  }

  .shop-separator {
    width: 100%;
  }

  .shop-media-wrapper {
    width: 52%;
  }

  .shop-media-inner {
    position: sticky;
    top: 0;
  }

  .shop-media-wrapper .other-media {
    padding: 0.5rem 0 0;
  }

  .section-shop-top {
    flex-flow: row;
    padding-bottom: 2rem;
    gap: 3rem;
  }

  .shop-action-button-100 {
    width: auto;
  }

  .section-shop-wrapper {
    gap: 3rem 1.5rem;
  }
}