/** Shopify CDN: Minification failed

Line 495:0 Expected "}" to go with "{"

**/
.lr-editorial-media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.lr-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lr-editorial-copy {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lr-editorial-copy h2 { margin-bottom: 16px; }
.lr-editorial-copy p {
  font-size: 14px;
  color: var(--lr-text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 400px;
}

/* ── Testimonials ── */
.lr-testi-section {
  padding: 72px 56px;
  background: var(--lr-terracota);
}
.lr-testi-section .lr-eyebrow { color: rgba(255,251,236,.6); }
.lr-testi-section h2 { color: var(--lr-beige); }
.lr-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lr-testi-card {
  background: rgba(255,255,255,.08);
  padding: 28px;
  border-radius: 3px;
}
.lr-testi-stars { color: var(--lr-warm-tan); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.lr-testi-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--lr-beige);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.lr-testi-author {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,251,236,.55);
  font-weight: 600;
}

/* ── WhatsApp CTA ── */
.lr-wa-section {
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: var(--lr-beige-dark);
}
.lr-wa-text h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 10px; }
.lr-wa-text p { font-size: 13px; color: var(--lr-text-mid); line-height: 1.75; max-width: 460px; }

/* ── Newsletter ── */
.lr-newsletter {
  padding: 56px 60px;
  background: var(--lr-tdd);
  text-align: center;
}
.lr-newsletter h3 { color: var(--lr-beige); margin-bottom: 8px; }
.lr-newsletter p { font-size: 13px; color: rgba(255,251,236,.65); margin-bottom: 28px; }
.lr-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.lr-newsletter-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 13px;
  border: none;
  background: rgba(255,251,236,.12);
  color: var(--lr-beige);
  border-radius: 2px 0 0 2px;
  outline: none;
}
.lr-newsletter-input::placeholder { color: rgba(255,251,236,.4); }
.lr-newsletter-btn {
  padding: 14px 24px;
  background: var(--lr-terracota);
  color: var(--lr-beige);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
}

/* ── Collection ── */
.lr-collection-header { padding: 48px 56px 0; }
.lr-collection-header h1 { margin-bottom: 8px; }
.lr-collection-header p { font-size: 13px; color: var(--lr-text-mid); }
.lr-filter-bar {
  display: flex;
  gap: 8px;
  padding: 20px 56px;
  border-bottom: .5px solid #D4C4B0;
  position: sticky;
  top: 60px;
  background: var(--lr-beige);
  z-index: 50;
  flex-wrap: wrap;
}
.lr-filter-btn {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--lr-radius);
  cursor: pointer;
  border: .5px solid #C4A090;
  background: transparent;
  color: var(--lr-text-mid);
  font-weight: 600;
  font-family: var(--lr-font);
  transition: all .15s;
}
.lr-filter-btn:hover,
.lr-filter-btn.active { background: var(--lr-terracota); color: var(--lr-beige); border-color: var(--lr-terracota); }
.lr-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px 56px 72px;
}

/* ── Product card ── */
.lr-product-card {
  background: #fff;
  border-radius: 3px;
  border: .5px solid #D4C4B0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.lr-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(153,65,55,.12);
}
.lr-product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lr-cream-mid);
  position: relative;
}
.lr-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.lr-product-card:hover .lr-product-card-img img { transform: scale(1.04); }
.lr-product-card-body { padding: 16px 18px 20px; }
.lr-product-card-tag {
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lr-terracota);
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.lr-product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lr-text);
  margin-bottom: 5px;
  line-height: 1.25;
}
.lr-product-card-desc {
  font-size: 11px;
  color: var(--lr-text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}
.lr-product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lr-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lr-terracota);
}
.lr-product-price s {
  font-size: 12px;
  color: var(--lr-text-light);
  margin-right: 6px;
}
.lr-product-add-btn {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lr-terracota);
  border: 1px solid var(--lr-terracota);
  padding: 7px 14px;
  border-radius: var(--lr-radius);
  cursor: pointer;
  background: transparent;
  font-family: var(--lr-font);
  font-weight: 600;
  transition: all .15s;
}
.lr-product-add-btn:hover { background: var(--lr-terracota); color: var(--lr-beige); }

/* ── Product detail ── */
.lr-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lr-product-gallery {
  position: relative;
  background: var(--lr-cream-mid);
}
.lr-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: sticky;
  top: 60px;
}
.lr-product-info { padding: 64px 56px; }
.lr-product-info .lr-eyebrow { margin-bottom: 8px; }
.lr-product-info h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}
.lr-product-info .lr-product-price {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  display: block;
}
.lr-product-desc {
  font-size: 14px;
  color: var(--lr-text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: .5px solid #D4C4B0;
}
.lr-product-meta {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lr-product-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lr-text-mid);
}
.lr-product-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lr-terracota);
  flex-shrink: 0;
}
.lr-add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--lr-terracota);
  color: var(--lr-beige);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--lr-radius);
  cursor: pointer;
  font-family: var(--lr-font);
  transition: background .15s;
  margin-bottom: 12px;
}
.lr-add-to-cart-btn:hover { background: #7a3229; }
.lr-wa-order-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--lr-terracota);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1.5px solid var(--lr-terracota);
  border-radius: var(--lr-radius);
  cursor: pointer;
  font-family: var(--lr-font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lr-wa-order-btn:hover { background: var(--lr-terracota); color: var(--lr-beige); }
.lr-variant-selector { margin-bottom: 24px; }
.lr-variant-selector label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lr-terracota);
  display: block;
  margin-bottom: 10px;
}
.lr-variant-selector select {
  width: 100%;
  padding: 12px 16px;
  border: .5px solid #C4A090;
  background: var(--lr-beige);
  color: var(--lr-text);
  font-size: 13px;
  border-radius: var(--lr-radius);
  outline: none;
  appearance: none;
}

/* ── Cart ── */
.lr-cart-page { padding: 64px 56px; }
.lr-cart-page h1 { margin-bottom: 40px; }
.lr-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.lr-cart-items { display: flex; flex-direction: column; gap: 0; }
.lr-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: .5px solid #D4C4B0;
}
.lr-cart-item-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--lr-radius);
  background: var(--lr-cream-mid);
}
.lr-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.lr-cart-item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--lr-text);
  margin-bottom: 4px;
}
.lr-cart-item-variant { font-size: 12px; color: var(--lr-text-light); }
.lr-cart-item-price { font-size: 16px; font-weight: 700; color: var(--lr-terracota); }
.lr-qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  border: .5px solid #C4A090;
  border-radius: var(--lr-radius);
  width: fit-content;
}
.lr-qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--lr-terracota);
  font-weight: 700;
}
.lr-qty-input {
  width: 44px;
  text-align: center;
  border: none;
  border-left: .5px solid #C4A090;
  border-right: .5px solid #C4A090;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  background: none;
  color: var(--lr-text);
  outline: none;
}
.lr-cart-remove {
  font-size: 11px;
  color: var(--lr-text-light);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0;
  margin-top: 14px;
}
.lr-cart-summary {
  background: var(--lr-beige-dark);
  padding: 32px;
  border-radius: 3px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.lr-cart-summary h3 { margin-bottom: 24px; font-size: 18px; }
.lr-cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--lr-text-mid);
}
.lr-cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--lr-text);
  margin: 20px 0;
  padding-top: 16px;
  border-top: .5px solid #D4C4B0;
}
.lr-checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--lr-terracota);
  color: var(--lr-beige);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--lr-radius);
  cursor: pointer;
  font-family: var(--lr-font);
  margin-bottom: 10px;
  transition: background .15s;
}
.lr-checkout-btn:hover { background: #7a3229; }
.lr-checkout-form { margin-top: 16px; }
.lr-checkout-note { font-size: 11px; color: var(--lr-text-light); text-align: center; margin-top: 6px; }
.lr-field-optional { font-size: 10px; font-weight: 400; color: var(--lr-text-light); margin-left: 4px; }
.lr-textarea { resize: vertical; min-height: 72px; line-height: 1.5; }
.lr-wa-zone-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: var(--lr-terracota);
  border: 1.5px solid var(--lr-terracota);
  transition: background .15s, color .15s;
}
.lr-wa-zone-btn:hover { background: var(--lr-terracota); color: var(--lr-beige); }
.lr-cart-shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--lr-text-mid);
  padding: 8px 0;
  border-bottom: .5px solid #D4C4B0;
}
.lr-cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
  color: var(--lr-text);
  padding: 14px 0 0;
}
.lr-cart-continue {
