/** Shopify CDN: Minification failed

Line 875:54 Expected ":"

**/
.card-wrapper {
  color: inherit;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.card {
  text-decoration: none;
  text-align: var(--text-alignment);
}

.card:not(.ratio) {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card.card--horizontal {
  --text-alignment: left;
  --image-padding: 0rem;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.card--horizontal.ratio:before {
  padding-bottom: 0;
}

.card--card.card--horizontal {
  padding: 1.2rem;
}

.card--card.card--horizontal.card--text {
  column-gap: 0;
}

.card--card {
  height: 100%;
}

.card--card,
.card--standard .card__inner {
  position: relative;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  border: var(--border-width) solid rgba(var(--color-foreground), var(--border-opacity));
}

.card--card:after,
.card--standard .card__inner:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: calc(var(--border-width) * 2 + 100%);
  height: calc(var(--border-width) * 2 + 100%);
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
    rgba(var(--color-shadow), var(--shadow-opacity));
}

/* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
.card--card.gradient,
.card__inner.gradient {
  transform: perspective(0);
}

/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
.card__inner.color-scheme-1 {
  background: transparent;
}

.card .card__inner .card__media {
  overflow: hidden;
  /* Fix for Safari border bug on hover */
  z-index: 0;
  border-radius: calc(var(--border-radius) - var(--border-width) - var(--image-padding));
}

.card--card .card__inner .card__media {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card--standard.card--text {
  background-color: transparent;
}

.card-information {
  text-align: var(--text-alignment);
}

.card__media,
.card .media {
  bottom: 0;
  position: absolute;
  top: 0;
}

.card .media {
  width: 100%;
}

.card__media {
  margin: var(--image-padding);
  width: calc(100% - 2 * var(--image-padding));
}

.card--standard .card__media {
  margin: var(--image-padding);
}

.card__inner {
  width: 100%;
}

.card--media .card__inner .card__content {
  position: relative;
  padding: calc(var(--image-padding) + 1rem);
}

.card__content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) max-content minmax(0, 1fr);
  padding: 1rem;
  width: 100%;
  flex-grow: 1;
}

.card__content--auto-margins {
  grid-template-rows: minmax(0, auto) max-content minmax(0, auto);
}

.card__information {
  grid-row-start: 2;
  padding: 1.3rem 1rem;
}

.card:not(.ratio) > .card__content {
  grid-template-rows: max-content minmax(0, 1fr) max-content auto;
}

.card-information .card__information-volume-pricing-note {
  margin-top: 0.6rem;
  line-height: calc(0.5 + 0.4 / var(--font-body-scale));
  color: rgba(var(--color-foreground), 0.75);
}

.card__information-volume-pricing-note--button,
.card__information-volume-pricing-note--button.quantity-popover__info-button--icon-with-label {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-align: var(--text-alignment);
  min-width: auto;
}

.card__information-volume-pricing-note--button:hover {
  text-decoration: underline;
}

.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info {
  transform: initial;
  top: auto;
  bottom: 4rem;
  max-width: 20rem;
  width: calc(95% + 2rem);
}

.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info span:first-of-type {
  padding-right: 0.3rem;
}

.card__information-volume-pricing-note--button-right + .global-settings-popup.quantity-popover__info {
  right: 0;
  left: auto;
}

.card__information-volume-pricing-note--button-center + .global-settings-popup.quantity-popover__info {
  left: 50%;
  transform: translate(-50%);
}

.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info .quantity__rules {
  text-align: left;
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .card__content quick-add-bulk .quantity {
    width: auto;
  }

  .grid--6-col-desktop .card__content quick-add-bulk .quantity__button {
    width: calc(3rem / var(--font-body-scale));
  }

  .grid--6-col-desktop .card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info {
    left: 50%;
    transform: translate(-50%);
    width: calc(100% + var(--border-width) + 3.5rem);
  }

  .grid--6-col-desktop
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: calc(100% + var(--border-width) + 1rem);
  }
}

@media screen and (max-width: 749px) {
  .grid--2-col-tablet-down .card__content quick-add-bulk .quantity__button {
    width: calc(3.5rem / var(--font-body-scale));
  }

  .grid--2-col-tablet-down
    .card--card
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info,
  .grid--2-col-tablet-down
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    left: 50%;
    transform: translate(-50%);
  }

  .grid--2-col-tablet-down
    .card--standard
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: 100%;
  }

  .grid--2-col-tablet-down
    .card--card
    .card__information-volume-pricing-note--button
    + .global-settings-popup.quantity-popover__info {
    width: calc(100% + var(--border-width) + 4rem);
  }

  .grid--2-col-tablet-down .card__content quick-add-bulk .quantity {
    width: auto;
  }
}

.card-information quantity-popover volume-pricing {
  margin-top: 0;
}

@media screen and (max-width: 989px) {
  .card-information quantity-popover .quantity__rules ~ volume-pricing {
    margin-top: 0;
  }

  .card-information quantity-popover volume-pricing {
    margin-top: 4.2rem;
  }
}

@media screen and (min-width: 750px) {
  .card__information {
    padding-bottom: 1.7rem;
    padding-top: 1.7rem;
  }
}

.card__badge {
  align-self: flex-end;
  grid-row-start: 3;
  justify-self: flex-start;
}

.card__badge.top {
  align-self: flex-start;
  grid-row-start: 1;
}

.card__badge.right {
  justify-self: flex-end;
}

.card:not(.card--horizontal) > .card__content > .card__badge {
  margin: 1.3rem;
}

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

.card__inner:not(.ratio) > .card__content {
  height: 100%;
}

.card__heading {
  margin-top: 0;
  margin-bottom: 0;
}

.card__heading:last-child {
  margin-bottom: 0;
}

.card--horizontal .card__heading,
.card--horizontal .price__container .price-item,
.card--horizontal__quick-add {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

.card--horizontal
  .card-information
  > *:not(.visually-hidden:first-child)
  + *:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 0;
}

.card--horizontal__quick-add:before {
  box-shadow: none;
}

@media only screen and (min-width: 750px) {
  .card--horizontal .card__heading,
  .card--horizontal .price__container .price-item,
  .card--horizontal__quick-add {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

.card--card.card--media > .card__content {
  margin-top: calc(0rem - var(--image-padding));
}

.card--standard.card--text a::after,
.card--card .card__heading a::after {
  bottom: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  top: calc(var(--border-width) * -1);
}

.card__heading a::after {
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.card__heading a:after {
  outline-offset: 0.3rem;
}

.card__heading a:focus:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus-visible:after {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
}

.card__heading a:focus:not(:focus-visible):after {
  box-shadow: none;
  outline: 0;
}

.card__heading a:focus {
  box-shadow: none;
  outline: 0;
}

@media screen and (min-width: 990px) {
  .card .media.media--hover-effect > img:only-child,
  .card-wrapper .media.media--hover-effect > img:only-child {
    transition: transform var(--duration-long) ease;
  }

  .card:hover .media.media--hover-effect > img:first-child:only-child,
  .card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
    transform: scale(1.03);
  }

  .card-wrapper:hover .media.media--hover-effect > img:first-child:not(:only-child) {
    opacity: 0;
  }

  .card-wrapper:hover .media.media--hover-effect > img + img {
    opacity: 1;
    transition: transform var(--duration-long) ease;
    transform: scale(1.03);
  }

  .underline-links-hover:hover a {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}

.card--standard.card--media .card__inner .card__information,
.card--standard.card--text:not(.card--horizontal) > .card__content .card__heading:not(.card__heading--placeholder),
.card--standard:not(.card--horizontal) > .card__content .card__badge,
.card--standard.card--text.article-card > .card__content .card__information,
.card--standard > .card__content .card__caption {
  display: none;
}

.card--standard:not(.card--horizontal) .placeholder-svg {
  width: 100%;
}

.card--standard > .card__content {
  padding: 0;
}

.card--standard > .card__content .card__information {
  padding-left: 0;
  padding-right: 0;
}

.card--card.card--media .card__inner .card__information,
.card--card.card--text .card__inner,
.card--card.card--media > .card__content .card__badge {
  display: none;
}

.card--horizontal .card__badge,
.card--horizontal.card--text .card__inner {
  display: none;
}

.card--extend-height {
  height: 100%;
}

.card--extend-height.card--standard.card--text,
.card--extend-height.card--media {
  display: flex;
  flex-direction: column;
}

.card--extend-height.card--standard.card--text .card__inner,
.card--extend-height.card--media .card__inner {
  flex-grow: 1;
}

.card .icon-wrap {
  margin-left: 0.8rem;
  white-space: nowrap;
  transition: transform var(--duration-short) ease;
  overflow: hidden;
}

.card-information > * + * {
  margin-top: 0.5rem;
}

.card-information {
  width: 100%;
}

.card-information > * {
  line-height: calc(1 + 0.4 / var(--font-body-scale));
  color: rgb(var(--color-foreground));
}

.card-information > .price {
  color: rgb(var(--color-foreground));
}

.card--horizontal .card-information > .price {
  color: rgba(var(--color-foreground), 0.75);
}

.card-information > .rating {
  margin-top: 0.4rem;
}

/* Specificity needed due to the changes below */
.card-information
  > *:not(.visually-hidden:first-child)
  + quantity-popover:not(.rating):not(.card__information-volume-pricing-note),
.card-information .card__information-volume-pricing-note.card__information-volume-pricing-note--button {
  margin-top: 0;
}

.card-information > *:not(.visually-hidden:first-child) + *:not(.rating):not(.card__information-volume-pricing-note) {
  margin-top: 0.7rem;
}

.card-information .caption {
  letter-spacing: 0.07rem;
}

.card-article-info {
  margin-top: 1rem;
}

/* Card Shapes */

.card--shape .card__content {
  padding-top: 0;
}

.card--shape.card--standard:not(.card--text) .card__inner {
  border: 0;
  /* Border is not currently compatible with image shapes for standard cards. */
  background-color: transparent;
  filter: drop-shadow(
    var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
      rgba(var(--color-shadow), var(--shadow-opacity))
  );
}

.card--shape.card--standard:not(.card--text) .card__inner:after {
  display: none;
}

.grid__item:nth-child(2n) .shape--blob {
  clip-path: polygon(var(--shape--blob-2));
}

.grid__item:nth-child(3n) .shape--blob {
  clip-path: polygon(var(--shape--blob-3));
}

.grid__item:nth-child(4n) .shape--blob {
  clip-path: polygon(var(--shape--blob-4));
}

.grid__item:nth-child(5n) .shape--blob {
  clip-path: polygon(var(--shape--blob-5));
}

.grid__item:nth-child(7n) .shape--blob {
  clip-path: polygon(var(--shape--blob-6));
}

.grid__item:nth-child(8n) .shape--blob {
  clip-path: polygon(var(--shape--blob-1));
}

/* Card Shape Hover Rules */

@media (prefers-reduced-motion: no-preference) {
  .product-card-wrapper .shape--round {
    transition: clip-path var(--duration-long) ease;
  }

  .product-card-wrapper:hover .shape--round {
    clip-path: ellipse(47% 47% at 50% 50%);
  }

  .product-card-wrapper .shape--blob {
    transition: clip-path var(--duration-long) ease-in-out;
  }

  .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-5));
  }

  .grid__item:nth-child(2n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-6));
  }

  .grid__item:nth-child(3n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-1));
  }

  .grid__item:nth-child(4n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-2));
  }

  .grid__item:nth-child(5n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-3));
  }

  .grid__item:nth-child(7n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-4));
  }

  .grid__item:nth-child(8n) .product-card-wrapper:hover .shape--blob {
    clip-path: polygon(var(--shape--blob-5));
  }
}


#product-grid {
  --grid-desktop-vertical-spacing: 0px;
  --grid-desktop-horizontal-spacing: 0px;
  --grid-mobile-vertical-spacing: 16px;
  --grid-mobile-horizontal-spacing: 16px;
}

.product-card--media {
    position: relative;
}

.product--wrapper .p--badges {
    font-family: var(--PP-Neue-York-Narrow);
    font-weight: 800;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFB80F;
    border: 1px solid #1E1E1E;
    color: #1E1E1E;
    padding: 6px 12px;
    border-radius: 4px;
}
.product--wrapper .badges--best-value {
  background: #FFB80F;
  color: #1E1E1E;
}
.product--wrapper .badges--most-popular {
  background: #108563;
  color: #FCF9EA;
}
.product--wrapper .badges--sale {
  background: #244880;
  color: #FCF9EA;
}
.product--wrapper .badges--new {
  background: #183D2B;
  color: #FCF9EA;
}
.product--wrapper .badges--low-stock {
  background: #960302;
  color: #FCF9EA;
}

.product--wrapper {
    height: 100%;
}
.product--wrapper .product-data__url {
  padding: 10px 18px;
  text-align: center;
}
.product-data__badge {
    font-family: var(--PP-Neue-York);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2px;
    background: #183D2B;
    color: #FCF9EA;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.product-data__title {
    font-family: var(--PP-Neue-York-Narrow);
    font-weight: 800;
    font-size: clamp(28px, 3vw, 44px);
    line-height: clamp(28px, 3vw, 49px);
    letter-spacing: 0%;
    color: #1E1E1E;
    margin: 0;
}

.product-data__desc {
    font-family: var(--PP-Neue-York);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1E1E1E;
    margin-top: 4px;
}

.product-data__lineitems ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-data__lineitems ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-data__lineitems ul li p {
    font-family: var(--PP-Woodland);
    font-weight: 700;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E1E1E;
    margin-bottom: 4px;
    margin-top: 3px;
}

.product-data__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
}

.product-data__price p {
    margin: 0;
}

s.product__stike {
    font-family: var(--PP-Neue-York-Narrow);
    font-weight: 800;
    font-size: clamp(20px, 1.52vw, 22px);
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: line-through;
    color: rgba(30, 30, 30, 0.5);
}

.product--wrapper p.product__price,
.product--wrapper p.product__subscription--price {
  font-family: var(--PP-Woodland);
  font-weight: 700;
  font-size: clamp(12px, 0.8vw, 22px);
  line-height: 100%;
  letter-spacing: 0%;
  color: #1E1E1E;
}
.product--wrapper p.product__price span,
.product--wrapper p.product__subscription--price span{
  display: block;
  font-family: var(--PP-Neue-York-Narrow);
  font-weight: 800;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1E1E1E;
} 

p.subscription__badge {
    background: #FFB80F;
    color: #1E1E1E;
    font-family: var(--PP-Neue-York-Narrow);
    font-weight: 800;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    border: 1px solid #1E1E1E;
    padding: 7px 12px;
    border-radius: 4px;
}


.fyf-products__wrapper {
    margin-top: 35px;
    border: 3px solid #1e1e1e;
}

.product-card--media {
    border-bottom: 2px solid #1e1e1e;
}

.product-card-wrapper {
    /* border: 1px solid #1e1e1e; */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product--wrapper .product-card--media img {
  max-width: 100%;
  display: block;
  height: 100%;
  margin: auto;
  aspect-ratio: 4.55 / 5;
  object-fit: cover;
  height: 358px;
  width: 100%;
}

.product-card--info {
    padding: clamp(24px, 1.6vw, 24px) clamp(20px, 1.6vw, 20px) clamp(24px, 2.7vw, 40px);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product--wrapper .product-data__url {
  margin-top: auto;
}
.product-card--info .product-card-badge {
    font-family: var(--Tequila-Tacos);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1px;
    color: #1E1E1E;
}

.product-card--info h3.product-card-title {
    font-family: var(--PP-Neue-York-Narrow);
    font-weight: 800;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 1px;
    margin: 0 0 10px;
    color: #1E1E1E;
}
.product-card--info h3.product-card-title a {
  text-decoration: none;
  color: #1E1E1E;
}
.product-card--info .product-card-desc {
    font-family: var(--PP-Neue-York);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1E1E1E;
}
.product-card--info .product-data__lineitems {
    margin-top: 16px;
    margin-bottom: 0px;
}

.product-card--info .product-data__lineitems ul li {
    gap: 4px;
}

.product-card--info .product-data__lineitems ul li span {
    line-height: 1;
}

.product-card--info .product-data__lineitems ul li p {
    font-size: 12px;
}

.product-card--info .product-data__lineitems ul {
    margin: 0
}

.product--wrapper .product-card--info .product-data__price {
    margin-bottom: 16px;
    margin-top: 16px;
}

@media screen and (max-width: 991px) {
    /* .product-card-wrapper{
        border: 3px solid #1E1E1E;
    } */
}
@media screen and (max-width: 767px) {
    .product-data__badge {
        margin-bottom: 10px;
    }
    .product-data__lineitems ul li {
        gap: 10px;
    }
    .product-data__lineitems ul li p {product--wrapper p.product__price span
        line-height: 1.2;
    }
    .product-data__price {
        margin-bottom: 16px;
    }
    .section-find-your-flavor-bundle-product-data .product-data__url {
        width: 100%;
    }
    .product-card--info .product-data__lineitems {
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .section-find-your-flavor-bundle-product-data {
        border-left: 0;
    }
}




.product--wrapper span.divider {
    width: 1px;
    display: block;
    background: #1e1e1e;
}
/* .product--wrapper .subscription__box {
    display: flex;
    align-items: center;
    gap: 10px;
} */
 .product__price-wrap {
    display: flex;
    gap: 8px;
}
p.subscription__badge {
  text-align: center;
  padding: 7px 3px;
}
.product--information {
    flex: 1;
}

#product-grid .grid__item {
    border-right: 2px solid #1e1e1e;
    border-bottom: 3px solid #1e1e1e;
}
#product-grid .grid__item:last-child {
    border-right: 3px solid #1e1e1e;
}
@media screen and (min-width: 1281px) {
  #product-grid .grid__item:nth-child(4n+1) {
      border-left: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(-n+4) {
      border-top: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(4n) {
      border-right: 3px solid #1e1e1e;
  }
}
@media screen and (min-width: 990px) and (max-width: 1280px) {
  .grid--4-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  #product-grid .grid__item:nth-child(3n+1) {
      border-left: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(-n+3) {
      border-top: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(3n) {
      border-right: 3px solid #1e1e1e;
  }
}

@media screen and (min-width: 650px) and (max-width: 989px) {
  .grid--4-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  #product-grid .grid__item:nth-child(odd) {
      border-left: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(-n+2) {
      border-top: 3px solid #1e1e1e;
  }
  #product-grid .grid__item:nth-child(even) {
      border-right: 3px solid #1e1e1e;
  }
}

.product-card-image--primary {
    opacity: 1;
}

.product-card-image--hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.product-card-wrapper:hover .product-card-image--primary {
    opacity: 0;
}

.product-card-wrapper:hover .product-card-image--hover {
    opacity: 1;
}

@media screen and (max-width: 767px) {
  .grid--2-col-tablet-down .product--wrapper .subscription__box {
    flex-wrap: wrap;
  }
  
  .grid--2-col-tablet-down .product--wrapper .product-card--media img {
    height: 188px;
  }
  .grid--2-col-tablet-down .product--wrapper .p--badges {
    top: 10px;
    left: 10px;
  }
  .grid--2-col-tablet-down .product-card--info {
    padding: 12px;
  }
  .grid--2-col-tablet-down .product--wrapper .product-data__url {
    padding: 10px 7px;
    text-align: center;
    letter-spacing: 0;
  }
  .grid--2-col-tablet-down .product-card--info h3.product-card-title {
    font-size: 22px;
  }
  .grid--2-col-tablet-down p.subscription__badge {
    display: none;
  }
  .grid--2-col-tablet-down .product-card--info .product-card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .grid--2-col-tablet-down .product-data__lineitems ul {
    gap: 4px;
  }
}
@media screen and (max-width: 649px) {
  
  #product-grid .grid__item {
      border: 3px solid #1e1e1e;
      /* border-bottom: 0; */
  }
  #product-grid .grid__item:last-child {
    border-right: 3px solid #1e1e1e;  
    border-bottom: 3px solid #1e1e1e;
  }
  p.subscription__badge {
    text-align: center;
    padding: 6px 8px;
  }
  .main-collection-product-grid-wrap #product-grid {
    row-gap: 24px;
  }
  .product--wrapper .product-data__url {
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 389px) {
    s.product__stike,p.product__price {
        font-size: 16px;
    }
    p.subscription__badge {
        padding: 7px 7px;
    }
}