/** Shopify CDN: Minification failed

Line 29:18 Unexpected "{"
Line 29:27 Expected ":"
Line 29:34 Unexpected "{"
Line 45:18 Unexpected "{"
Line 45:27 Expected ":"
Line 49:18 Unexpected "{"
Line 49:27 Expected ":"
Line 62:18 Unexpected "{"
Line 62:27 Expected ":"
Line 80:18 Unexpected "{"
... and 103 more hidden warnings

**/
.related-products {
  display: block;
}

.related-products__heading {
  margin: 0 0 3rem;
}


/* ==========================================================
   CLIFF'S SPICE ZONE — RELATED PRODUCT CARDS
   ========================================================== */

#shopify-section-{{ section.id }} {
  --csz-paper: #fbf7ef;
  --csz-card: #fffaf2;
  --csz-cream: #f2e8d8;
  --csz-espresso: #3b2717;
  --csz-coffee: #6e4b2c;
  --csz-gold: #b47c3d;
  --csz-green: #33453a;
  --csz-line: rgba(59, 39, 23, 0.13);
}


/* ==========================================================
   SECTION
   ========================================================== */

#shopify-section-{{ section.id }} .related-products {
  max-width: 1500px;
}

#shopify-section-{{ section.id }} .related-products__heading {
  max-width: 720px;
  margin: 0 0 clamp(26px, 3vw, 42px);

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;

  color: var(--csz-espresso);
}

#shopify-section-{{ section.id }} .related-products__heading::after {
  content: "";

  display: block;

  width: 54px;
  height: 2px;

  margin-top: 18px;

  background: var(--csz-gold);
}


/* ==========================================================
   PRODUCT GRID
   ========================================================== */

#shopify-section-{{ section.id }} .product-grid {
  column-gap: clamp(14px, 1.6vw, 24px);
  row-gap: clamp(20px, 2vw, 30px);
}

#shopify-section-{{ section.id }} .product-grid > .grid__item {
  height: auto;
}


/* ==========================================================
   CARD
   ========================================================== */

#shopify-section-{{ section.id }} .product-card-wrapper {
  height: 100%;
}

#shopify-section-{{ section.id }} .product-card-wrapper .card {
  height: 100%;

  overflow: hidden;

  border: 1px solid var(--csz-line);
  border-radius: 22px;

  background: var(--csz-card);

  box-shadow:
    0 12px 32px rgba(59, 39, 23, 0.04);

  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

#shopify-section-{{ section.id }} .product-card-wrapper:hover .card {
  transform: translateY(-6px);

  border-color: rgba(180, 124, 61, 0.38);

  box-shadow:
    0 24px 55px -30px rgba(59, 39, 23, 0.32);
}


/* remove Dawn default outline */

#shopify-section-{{ section.id }} .card__inner {
  overflow: hidden;

  border: 0 !important;
  border-radius: 21px 21px 0 0 !important;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.75),
      transparent 48%
    ),
    var(--csz-cream) !important;
}


/* ==========================================================
   PRODUCT IMAGE
   ========================================================== */

#shopify-section-{{ section.id }} .card__media {
  overflow: hidden;
}

#shopify-section-{{ section.id }} .card__media .media {
  background: transparent;
}

#shopify-section-{{ section.id }} .card__media img {
  width: 100% !important;
  height: 100% !important;

  padding: clamp(10px, 1vw, 18px);

  object-fit: contain !important;
  object-position: center !important;

  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

#shopify-section-{{ section.id }} .product-card-wrapper:hover .card__media img {
  transform: scale(1.055);

  filter:
    saturate(1.04)
    contrast(1.02);
}


/* secondary image */

#shopify-section-{{ section.id }}
.product-card-wrapper:hover
.card__media
.media--hover-effect
> img:first-child:not(:only-child) {
  opacity: 0;
}

#shopify-section-{{ section.id }}
.product-card-wrapper:hover
.card__media
.media--hover-effect
> img + img {
  opacity: 1;
  transform: scale(1.055);
}


/* ==========================================================
   CARD INFORMATION
   ========================================================== */

#shopify-section-{{ section.id }} .card > .card__content {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 0;
}

#shopify-section-{{ section.id }} .card__information {
  flex: 1;

  padding:
    clamp(16px, 1.4vw, 22px)
    clamp(15px, 1.4vw, 20px)
    12px !important;
}


/* ==========================================================
   PRODUCT TITLE
   ========================================================== */

#shopify-section-{{ section.id }} .card__heading {
  min-height: 2.2em;

  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;

  color: var(--csz-espresso);
}

#shopify-section-{{ section.id }} .card__heading a {
  color: inherit;

  text-decoration: none;
}

#shopify-section-{{ section.id }} .card__heading a::after {
  border: 0;
}


/* title limited to 2 lines */

#shopify-section-{{ section.id }} .card__heading a {
  display: -webkit-box;

  overflow: hidden;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* ==========================================================
   VENDOR
   ========================================================== */

#shopify-section-{{ section.id }} .card-information .caption-with-letter-spacing {
  margin-bottom: 8px;

  color: var(--csz-gold);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* ==========================================================
   PRICE
   ========================================================== */

#shopify-section-{{ section.id }} .card-information > .price {
  margin-top: 13px;
}

#shopify-section-{{ section.id }} .card-information .price {
  color: var(--csz-espresso);

  font-size: 17px;
  font-weight: 650;
}

#shopify-section-{{ section.id }} .card-information .price-item--regular {
  color: var(--csz-espresso);
}

#shopify-section-{{ section.id }} .card-information .price-item--sale {
  color: var(--csz-green);

  font-weight: 700;
}

#shopify-section-{{ section.id }} .price s,
#shopify-section-{{ section.id }} .price__compare {
  color: rgba(110, 75, 44, 0.58);

  font-size: 13px;
}


/* ==========================================================
   BADGES
   ========================================================== */

#shopify-section-{{ section.id }} .card__badge {
  top: 14px;
  left: 14px;
}

#shopify-section-{{ section.id }} .card__badge .badge {
  padding: 7px 10px;

  border: 0;
  border-radius: 999px;

  background: var(--csz-green);

  color: #fff;

  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.1em;

  text-transform: uppercase;

  box-shadow:
    0 8px 20px -14px rgba(0, 0, 0, 0.7);
}


/* ==========================================================
   QUICK ADD / CHOOSE OPTIONS
   ========================================================== */

#shopify-section-{{ section.id }} .quick-add {
  margin:
    auto
    clamp(15px, 1.4vw, 20px)
    clamp(15px, 1.4vw, 20px);
}

#shopify-section-{{ section.id }} .quick-add__submit {
  width: 100%;

  min-height: 48px;

  padding: 12px 18px;

  border: 1px solid var(--csz-green) !important;
  border-radius: 999px !important;

  background: var(--csz-green) !important;

  color: #fff !important;

  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.025em;

  box-shadow: none !important;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

#shopify-section-{{ section.id }} .quick-add__submit::before,
#shopify-section-{{ section.id }} .quick-add__submit::after {
  display: none !important;
}

#shopify-section-{{ section.id }} .quick-add__submit:hover {
  transform: translateY(-2px);

  border-color: var(--csz-espresso) !important;

  background: var(--csz-espresso) !important;
}


/* loading spinner */

#shopify-section-{{ section.id }} .quick-add__submit .loading__spinner {
  color: currentColor;
}


/* ==========================================================
   RATINGS
   ========================================================== */

#shopify-section-{{ section.id }} .card-information .rating {
  margin-top: 11px;
}

#shopify-section-{{ section.id }} .rating-star {
  --color-rating-star: #b47c3d;
}


/* ==========================================================
   REMOVE DEFAULT UNDERLINE EFFECT
   ========================================================== */

#shopify-section-{{ section.id }}
.underline-links-hover:hover
a {
  text-decoration: none !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 989px) {

  #shopify-section-{{ section.id }} .product-grid {
    column-gap: 14px;
    row-gap: 18px;
  }

  #shopify-section-{{ section.id }} .card__information {
    padding: 15px 14px 10px !important;
  }

  #shopify-section-{{ section.id }} .card__heading {
    font-size: 20px;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 749px) {

  #shopify-section-{{ section.id }} .related-products__heading {
    margin-bottom: 24px;

    font-size: clamp(30px, 9vw, 40px);
  }

  #shopify-section-{{ section.id }} .product-grid {
    column-gap: 10px;
    row-gap: 14px;
  }

  #shopify-section-{{ section.id }} .product-card-wrapper .card {
    border-radius: 16px;
  }

  #shopify-section-{{ section.id }} .card__inner {
    border-radius: 15px 15px 0 0 !important;
  }

  #shopify-section-{{ section.id }} .card__media img {
    padding: 8px;
  }

  #shopify-section-{{ section.id }} .card__information {
    padding:
      13px
      11px
      9px !important;
  }

  #shopify-section-{{ section.id }} .card__heading {
    min-height: 2.35em;

    font-size: 17px;
    line-height: 1.15;
  }

  #shopify-section-{{ section.id }} .card-information > .price {
    margin-top: 9px;
  }

  #shopify-section-{{ section.id }} .card-information .price {
    font-size: 15px;
  }

  #shopify-section-{{ section.id }} .quick-add {
    margin:
      auto
      10px
      11px;
  }

  #shopify-section-{{ section.id }} .quick-add__submit {
    min-height: 42px;

    padding: 10px 8px;

    font-size: 11px !important;
  }

  #shopify-section-{{ section.id }} .card__badge {
    top: 9px;
    left: 9px;
  }

  #shopify-section-{{ section.id }} .card__badge .badge {
    padding: 6px 8px;

    font-size: 8px;
  }

}