/** Shopify CDN: Minification failed

Line 165:0 Unexpected "{"
Line 165:1 Expected identifier but found "%"
Line 191:2 Unexpected "{"
Line 191:3 Expected identifier but found "%"

**/
.new-arrivals-container {
  max-width: 1400px;
  margin: auto;
  padding-inline: 20px;
}

.section-heading {
  /* display: flex; */
  justify-content: center;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: calc(var(--font-heading-scale) * 2.4rem);
  color:#121212;
  margin:0px;
  text-align:center;
  letter-spacing: -0.5px;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 18px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='18' viewBox='0 0 220 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9 C 15 3, 30 15, 45 9 C 60 3, 75 15, 90 9 C 105 3, 120 15, 135 9 C 150 3, 165 15, 180 9 C 195 3, 210 15, 220 9' stroke='%23C45761' stroke-width='3' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* =============================
   GRID
============================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(var(--desktop-columns), 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
.section-heading h2{
      margin:0px;
        font-size: calc(var(--font-heading-scale) * 1.7rem);
    }
  .jdgm-prev-badge__text {
    display: none;
  }
  .section-heading h2::after {
  width: 150px;
    margin: 4px auto 0;
}
}

/* =============================
   CARD
============================= */
.product-card {
  height: 100%;
}
.jdgm-prev-badge__text{
  font-size:14px;
}
.product-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.product-specific-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #C45761;
}

.product-specific-tag p {
  margin: 0;
  padding: 4px;
  font-size: 10px;
  color: #fefefe;
}

/* IMAGE */
.product-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease;
}

.hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-image-wrap:hover .hover-img {
  opacity: 1;
}

.product-image-wrap:hover .main-img {
  opacity: 0;
}

/* INFO */
.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align:left;
}

.product-title {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
    letter-spacing: -0.02px;
    font-weight: 500;
    margin: 0 0 0px;
    line-height: 1.3;
    font-family:var(--font-heading-family);
    color:#0e0e0e;
}
@media (max-width: 767px) {
  .product-title {
    font-size: calc(var(--font-heading-scale) * 1.1rem);
  }
}
.product-price {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
    font-weight: 600;
    margin: 0;
    line-height: normal;
}

.compare-price {
  margin-right: 6px;
  color: #777;
  text-decoration: line-through;
}

{% comment %} /* BUTTONS */
.add-to-cart,
.sold-out {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family:var(--font-heading-family);
}

.add-to-cart {
  background: #C45761;
  color: #fff;
  box-sizing: border-box;
}

.add-to-cart:hover {
  background: #222;
}

.sold-out {
  background: #aaa;
  color: #fff;
  cursor: not-allowed;
} {% endcomment %}

/* =============================
   BOTTOM CTA BUTTON
============================= */
.section-bottom-button {
  margin-top: 32px;
  text-align: center;
}

.section-cta-button {
  display: inline;
  padding: 12px 36px;
  background: #c2646c;
  color: #fefefe;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.section-cta-button:hover {
  background: #dc7f85;
  color:  #fefefe;
}

@media (max-width: 767px) {
  .section-cta-button {
    width: 100%;
    max-width: 320px;
  }
}
