/** Shopify CDN: Minification failed

Line 333:18 Expected ":"

**/
/* ============================================
   PROMOBOXES PRODUCTS SECTION
   ============================================ */

.promoboxes-products-wrapper {
  padding-bottom: var(--block-spacing);
}

/* ============================================
   BOX LOVE BLOCK
   ============================================ */

.box-love {
  padding-bottom: var(--block-spacing);
}

.box-love-content {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  align-items: center;
  max-width: 103.6rem;
  margin: 0 auto;
  color: #162243;
}

.box-love-content-title {
  text-align: center;
}

.box-love-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.box-love-cards-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.box-love-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 4rem;
  border-radius: 3.6rem;
  background-color: #F2F9FF;
}

.box-love-card-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.box-love-card-label {
  margin-bottom: 6.6rem;
}

.box-love-card--small {
  padding: 3.2rem;
  border-radius: 3.2rem;
}

.box-love-card--yellow {
  background-color: #EAFFBD;
  padding-right: 13rem;
}

.box-love-card--yellow .box-love-card-label {
  background-color: #FEBAE1;
  color: #4D040F;
}

.box-love-card--yellow .box-love-card-text {
  color: #377038;
}

.box-love-card--yellow .box-love-card-image {
  width: 15rem;
  right: -1rem;
  bottom: 0rem;
  position: absolute;
}

.box-love-card-icon {
  width: 7rem;
  margin-bottom: 3.2rem;
}

.label--blue {
  background-color: #D1F0FF;
  max-width: 20rem;
}

.box-love-card-text--brown .box-love-card-label {
  background-color: #872D16;
  color: #fff;
}

.box-love-card-text--brown {
  color: #872D16;
  background-color: #FFF1DA;
}

.image--car {
  width: 12.8rem;
  position: absolute;
  right: 2rem;
  top: 2.3rem;
}

.promoboxes-products__header {
  text-align: center;
  margin-bottom: 4rem;
}

.promoboxes-products__title {
  margin-bottom: 1.6rem;
}

.promoboxes-products__description {
  max-width: 60rem;
  margin: 0 auto;
}

.promoboxes-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.4rem 7.2rem;
}

/* ============================================
   BOX PRODUCT CARD
   ============================================ */

.box-product-card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.box-product-card-image {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
  height: 31rem;
  border-radius: 2.8rem;
  overflow: hidden;
  padding: 2.2rem;
}

.box-product-card-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.box-product-card-image-bg .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-product-card-image-tag {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  z-index: 2;
}

.box-product-card-image-tag-item {
  width: 3rem;
  height: 3rem;
}

.box-product-card-image-tag-item .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box-product-card-image-inside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem;
  border-radius: 10rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
  transition: 0.2s all ease-in-out;
  cursor: pointer;
  margin-left: auto;
}

.box-product-card-image-inside:hover {
  background-color: #ebebeb;
}

/* ============================================
   MODAL WINDOW
   ============================================ */

.box-product-card-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.box-product-card-modal.open {
  display: flex;
  opacity: 1;
}

.box-product-card-modal-bg {
  background-color: rgba(7, 7, 7, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  display: block !important;
}

.box-product-card-modal-content {
  position: relative;
  flex-direction: column;
  display: flex;
  gap: 2.4rem;
  padding: 2.4rem;
  border-radius: 2.8rem;
  max-width: 51.5rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #fff;
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.box-product-card-modal.open .box-product-card-modal-content {
  transform: scale(1);
  opacity: 1;
}

.box-product-card-modal-title {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.box-product-card-modal-title-close {
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.box-product-card-modal-title-close:hover {
  opacity: 0.7;
}

.box-product-card-modal-title-close svg {
  width: 100%;
  height: 100%;
}

.box-product-card-modal-title-close .icon {
  width: 100%;
  height: 100%;
}

.box-product-card-modal-title-close .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box-product-card-modal-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.box-product-card-modal-list-item {
  display: inline-flex;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  border-radius: 1rem;
  background-color: #F2F9FF;
}

.box-product-card-modal-list-item .t3-light {
  color: #8C98B5;S
}

.box-product-card-modal-list-item__link {
  display: inline-flex;
  flex-direction: row;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.box-product-card-modal-list-item__link:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

/* ============================================
   BOX PRODUCT CARD TEXT
   ============================================ */

.box-product-card-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7rem;
}

.box-product-card-text .hits-add-wrapper{
  width: fit-content;
  flex-shrink: 0;
  display: flex;
  
}

.box-product-card-text .hits-add-form{
  flex-direction: row;
  display: flex;
  align-items: center;
}

.box-product-card-text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.box-product-card-text-title {
  display: inline-flex;
  gap: 0.6rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.box-product-card-text-title-weight {
  color: #8C98B5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 989px) {
  .label--blue {
    max-width: unset;
  }

  .box-love-card--small {
    overflow: hidden;
  }

  .image--car {
    width: 15.8rem;
    right: -6rem;
    top: 2rem;
  }

  .promoboxes-products__grid {
    gap: 3.2rem 1.6rem;
  }
  
  .box-product-card {
    gap: 1.6rem;
  }

  .box-product-card-text {
    gap: 1.6rem;
    flex-direction: column;
  }

  .box-product-card-image {
    height: 22rem;
  }
}

@media screen and (max-width: 749px) {

  .box-love-content {
    gap: 3.2rem;
  }
  .box-love-cards-row {
    flex-direction: column;
  }

  .box-love-card {
    border-radius: 2rem;
    padding: 3.2rem;
    overflow: hidden;
  }

  .box-love-card--yellow {
    padding-right: unset;
  }

  .box-love-card--yellow .box-love-card-text {
    padding-right: 12rem;
  }

  .box-love-card--yellow .box-love-card-image {
    right: -3rem;
    top: unset;
    bottom: 1rem;
    width: 15.4rem;
  }

  .box-love-card--icon .h4 {
    padding-right: 6rem;
  }

  .box-love-card-icon {
    width: 6.4rem;
    position: absolute;
    right: -1rem;
    top: -1rem;
  }

  .box-love-card-label {
    margin-bottom: 4.4rem;
  }

  .promoboxes-products__grid {
    grid-template-columns: 1fr;
    gap: 4.4rem;
  }

  .box-product-card-image {
    height: 20rem;
  }

  .box-product-card-modal-list-item {
    flex-direction: column;
    gap: 0.2rem;
  }

  .box-product-card-modal-content {
    padding: 3.2rem 2.8rem;
    border-radius: 2.4rem;
  }
}
