/** Shopify CDN: Minification failed

Line 138:0 Unexpected "{"
Line 138:1 Expected identifier but found "%"
Line 163:2 Unexpected "{"
Line 163:3 Expected identifier but found "%"

**/
.new-arrivals-container {
  max-width: 1200px;
  margin: auto;
  padding-inline: 20px;
}
.new-arrivals-grid-section new-arrivals-grid-section{
background: #fdf8f1 
}
.new-arrivals-header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.new-arrivals-header h2 {
  font-size: 2.6rem;
  font-weight: 300;
  font-family: 'HostGrotesk';
}

/* =============================
   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;
  }

  .jdgm-prev-badge__text {
    display: none;
  }
}

/* =============================
   CARD
============================= */
.product-card {
  height: 100%;
}

.product-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
}

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

.product-specific-tag p {
  margin: 0;
  padding: 4px;
  font-size: 12px;
  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: 1rem;
  font-weight: 600;
  margin: 0 0 0px;
  line-height: 1.3;
  font-family: var(--font-luxury);
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
      font-family: 'P22 Underground';
}

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

{% comment %} /* BUTTONS */
.add-to-cart,
.sold-out {
  margin-top: 8px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.add-to-cart {
  background: #c45761;
  color: #fff;
}

.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: #dc7f85;
  color: #fefefe;
  text-decoration: none;
  font-size: 0.9rem;
  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;
  }
}

.trust-purchased{
  color:#645c5d;
 font-family: 'P22 Underground', Arial, sans-serif;
 letter-spacing: -0.5px;
}