/** Shopify CDN: Minification failed

Line 990:9 Expected identifier but found whitespace
Line 990:11 Unexpected "{"
Line 990:20 Expected ":"
Line 990:64 Expected ":"
Line 996:9 Expected identifier but found whitespace
Line 996:11 Unexpected "{"
Line 996:20 Expected ":"
Line 996:63 Expected ":"
Line 1203:35 Expected identifier but found whitespace
Line 1203:37 Unexpected "{"
... and 6 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:ds-collections (INDEX:16) */
/* ════════════════════════════════
   DS COLLECTIONS — BASE STYLES
════════════════════════════════ */
.ds-collections {
  background-color: #F5EFE4;
  padding: 70px 50px 80px;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Header ── */
.ds-col-header {
  text-align: center;
  margin-bottom: 44px;
}
.ds-col-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 12px;
}
.ds-col-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #3A1A0A;
  margin: 0 0 18px;
}
.ds-col-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ds-orn-line {
  display: block;
  width: 60px;
  height: 1px;
  background: #C49A3C;
  opacity: 0.4;
}

/* ── Corner frame ── */
.ds-col-frame {
  position: relative;
  border: 1px solid rgba(196, 154, 60, 0.22);
  padding: 40px 36px 36px;
}
.ds-frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: #C49A3C;
  border-style: solid;
  opacity: 0.65;
}
.ds-fc-tl { top: -1px; left: -1px;  border-width: 2px 0 0 2px; }
.ds-fc-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.ds-fc-bl { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; }
.ds-fc-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ── Grid ── */
.ds-col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ── Card ── */
.ds-col-card {
  background: #FFFFFF;
  border: 1px solid #EAE0D0;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ds-col-card:hover {
  box-shadow: 0 6px 24px rgba(123, 24, 24, 0.13);
  transform: translateY(-2px);
}
.ds-col-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Image area ── */
.ds-col-img-wrap {
  position: relative;
  overflow: visible !important;
  height: 200px;
}
.ds-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ds-col-card:hover .ds-col-img {
  transform: scale(1.05);
}

/* ── Placeholder backgrounds ── */
.ds-col-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-placeholder-1 { background: linear-gradient(145deg, #C8B48A, #A89470); }
.ds-placeholder-2 { background: linear-gradient(145deg, #4A1010, #7B1818); }
.ds-placeholder-3 { background: linear-gradient(145deg, #B8B49A, #989478); }
.ds-placeholder-4 { background: linear-gradient(145deg, #C8A870, #A88050); }
.ds-placeholder-5 { background: linear-gradient(145deg, #B8B098, #989078); }
.ds-ph-svg { opacity: 0.75; }

/* ── Badge ── */
.ds-col-badge {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  border: 1px solid #EAE0D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: border-color 0.2s;
}
.ds-col-card:hover .ds-col-badge {
  border-color: #C49A3C;
}

/* ── Text info ── */
.ds-col-info {
  padding: 28px 14px 18px;
  text-align: center;
  border-top: 1px solid #EAE0D0;
  background: #FFFFFF;
}
.ds-col-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2A1A0E;
  margin: 0 0 6px;
  line-height: 1.4;
}
.ds-col-cta {
  font-size: 11.5px;
  font-weight: 500;
  color: #7A5A3A;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 0.2s;
}
.ds-col-card:hover .ds-col-cta {
  color: #7B1818;
}

/* ════════════════════════════════
   RESPONSIVE — TABLET 1024px
════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .ds-collections {
    padding: 56px 30px 64px;
  }
  .ds-col-frame {
    padding: 32px 24px 28px;
  }
  .ds-col-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .ds-col-img-wrap {
    height: 185px;
  }
}

/* ════════════════════════════════
   RESPONSIVE — TABLET 768px
════════════════════════════════ */
@media screen and (max-width: 768px) {
  .ds-collections {
    padding: 48px 20px 56px;
  }
  .ds-col-title {
    font-size: 12px;
    letter-spacing: 4px;
  }
  .ds-col-frame {
    padding: 28px 16px 24px;
    border: none;
  }
  .ds-frame-corner { display: none; }
  .ds-col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ds-col-img-wrap {
    height: 190px;
  }
  .ds-col-name {
    font-size: 9.5px;
    letter-spacing: 1.6px;
  }
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE 480px
════════════════════════════════ */
@media screen and (max-width: 480px) {
  .ds-collections {
    padding: 40px 16px 48px;
  }
  .ds-col-header {
    margin-bottom: 32px;
  }
  .ds-col-eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
  }
  .ds-col-title {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .ds-orn-line {
    width: 40px;
  }
  .ds-col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ds-col-img-wrap {
    height: 160px;
  }
  .ds-col-badge {
    width: 30px;
    height: 30px;
    bottom: -15px;
  }
  .ds-col-badge svg {
    width: 13px;
    height: 13px;
  }
  .ds-col-info {
    padding: 22px 10px 14px;
  }
  .ds-col-name {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 4px;
  }
  .ds-col-cta {
    font-size: 10.5px;
  }
}

/* ════════════════════════════════
   RESPONSIVE — SMALL MOBILE 360px
════════════════════════════════ */
@media screen and (max-width: 360px) {
  .ds-collections {
    padding: 36px 12px 44px;
  }
  .ds-col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ds-col-img-wrap {
    height: 140px;
  }
  .ds-col-name {
    font-size: 8.5px;
    letter-spacing: 1.2px;
  }
  .ds-col-cta {
    font-size: 10px;
  }
}
/* END_SECTION:ds-collections */

/* START_SECTION:ds-featured-product (INDEX:17) */
/* ═══════════════════════════════════════
   DS FEATURED PRODUCT — PANORAMIC BANNER
═══════════════════════════════════════ */
.ds-fp {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  background: #F0E8D8;
  /* Thin top maroon border like original */
  border-top: 3px solid #7B1818;
}

/* ── Track & Slides ── */
.ds-fp-track {
  position: relative;
  width: 100%;
  height: 340px;              /* banner height — desktop */
}

.ds-fp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.ds-fp-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Right: Full bleed image ── */
.ds-fp-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ds-fp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.ds-fp-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #E8D8B8 0%, #D4C4A0 35%, #C8B88A 65%, #B8A878 100%);
}

/* Cream fade overlay — left side fades from cream to transparent */
.ds-fp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #F0E8D8 0%,
    #F0E8D8 28%,
    rgba(240,232,216,0.92) 38%,
    rgba(240,232,216,0.6)  50%,
    rgba(240,232,216,0.15) 65%,
    transparent 80%
  );
}

/* ── Left: Text content ── */
.ds-fp-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 60px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-fp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7B1818;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ds-fp-star {
  display: block;
  line-height: 1;
}

.ds-fp-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 40px;
  font-weight: 400;
  color: #2A1A0E;
  line-height: 1.15;
  margin: 0 0 12px;
}

.ds-fp-desc {
  font-size: 13px;
  color: #6A4A30;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 280px;
}

.ds-fp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 20px;
}
.ds-fp-price {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 32px;
  font-weight: 400;
  color: #2A1A0E;
  line-height: 1;
}
.ds-fp-compare {
  font-size: 16px;
  color: #A08060;
  text-decoration: line-through;
}

.ds-fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #7B1818;
  color: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, gap 0.2s;
}
.ds-fp-btn:hover {
  background: #5C0F0F;
  gap: 14px;
}

/* ── Arrows ── */
.ds-fp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(200,180,150,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #5C0F0F;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.ds-fp-arrow:hover {
  background: #7B1818;
  border-color: #7B1818;
  color: #fff;
}
.ds-fp-prev { left: 16px; }
.ds-fp-next { right: 16px; }

/* ── Dots ── */
.ds-fp-dots {
  position: absolute;
  bottom: 14px;
  left: 60px;
  display: flex;
  gap: 6px;
  z-index: 5;
}
.ds-fp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(123,24,24,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.ds-fp-dot.active {
  background: #7B1818;
  width: 20px;
  border-radius: 3px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

/* 1024px */
@media screen and (max-width: 1024px) {
  .ds-fp-track { height: 300px; }
  .ds-fp-content { padding-left: 44px; max-width: 320px; }
  .ds-fp-title { font-size: 34px; }
  .ds-fp-price { font-size: 28px; }
  .ds-fp-overlay {
    background: linear-gradient(
      to right,
      #F0E8D8 0%,
      #F0E8D8 25%,
      rgba(240,232,216,0.9) 36%,
      rgba(240,232,216,0.55) 50%,
      rgba(240,232,216,0.1) 68%,
      transparent 82%
    );
  }
}

/* 768px — tablet portrait */
@media screen and (max-width: 768px) {
  .ds-fp-track { height: 280px; }
  .ds-fp-content { padding-left: 30px; max-width: 280px; gap: 0; }
  .ds-fp-title { font-size: 28px; margin-bottom: 8px; }
  .ds-fp-desc { font-size: 12px; margin-bottom: 12px; max-width: 220px; }
  .ds-fp-price { font-size: 24px; }
  .ds-fp-price-row { margin-bottom: 16px; }
  .ds-fp-btn { font-size: 9px; padding: 11px 18px; }
  .ds-fp-overlay {
    background: linear-gradient(
      to right,
      #F0E8D8 0%,
      #F0E8D8 20%,
      rgba(240,232,216,0.88) 32%,
      rgba(240,232,216,0.5)  46%,
      rgba(240,232,216,0.08) 65%,
      transparent 78%
    );
  }
  .ds-fp-dots { left: 30px; bottom: 10px; }
  .ds-fp-arrow { width: 30px; height: 30px; }
  .ds-fp-prev { left: 10px; }
  .ds-fp-next { right: 10px; }
}

/* 480px — mobile */
@media screen and (max-width: 480px) {
  .ds-fp-track { height: 240px; }
  .ds-fp-content { padding-left: 20px; max-width: 200px; }
  .ds-fp-eyebrow { font-size: 8.5px; letter-spacing: 2px; }
  .ds-fp-title { font-size: 22px; margin-bottom: 6px; }
  .ds-fp-desc { font-size: 11px; margin-bottom: 10px; max-width: 170px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .ds-fp-price { font-size: 20px; }
  .ds-fp-price-row { margin-bottom: 12px; }
  .ds-fp-btn { font-size: 8.5px; padding: 10px 14px; letter-spacing: 2px; gap: 6px; }
  .ds-fp-overlay {
    background: linear-gradient(
      to right,
      rgba(240,232,216,1)   0%,
      rgba(240,232,216,0.95) 22%,
      rgba(240,232,216,0.75) 38%,
      rgba(240,232,216,0.3)  55%,
      transparent 72%
    );
  }
  .ds-fp-dots { left: 20px; bottom: 8px; }
  .ds-fp-arrow { width: 28px; height: 28px; }
  .ds-fp-prev { left: 4px; }
  .ds-fp-next { right: 4px; }
}

/* 360px */
@media screen and (max-width: 360px) {
  .ds-fp-track { height: 210px; }
  .ds-fp-title { font-size: 19px; }
  .ds-fp-desc { display: none; }
  .ds-fp-price { font-size: 18px; }
  .ds-fp-btn { font-size: 8px; padding: 9px 12px; }
}
/* END_SECTION:ds-featured-product */

/* START_SECTION:ds-footer (INDEX:18) */
/* ══════════════════════════════════════
   NEWSLETTER STRIP
══════════════════════════════════════ */
.ds-nl {
  background: #F5EFE4;
  border-top: 1px solid #E8DDD0;
  border-bottom: 1px solid #E8DDD0;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}
.ds-nl-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ds-nl-left { flex-shrink: 0; }
.ds-nl-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3A1A0A;
  margin: 0 0 5px;
}
.ds-nl-sub {
  font-size: 12.5px;
  color: #8A6A50;
  margin: 0;
  line-height: 1.5;
}
.ds-nl-form {
  display: flex;
  flex: 1;
  max-width: 520px;
  min-width: 280px;
}
.ds-nl-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid #D8CDB8;
  background: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #3A1A0A;
  outline: none;
  transition: border-color 0.2s;
}
.ds-nl-input:focus { border-color: #C49A3C; }
.ds-nl-input::placeholder { color: #B0907A; }
.ds-nl-btn {
  background: #7B1818;
  color: #FFFFFF;
  border: none;
  padding: 13px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.ds-nl-btn:hover { background: #5C0F0F; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.ds-footer {
  background: #5C0F0F;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

.ds-footer-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 52px 60px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1.1fr 0.9fr 1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

/* Brand column */
.ds-footer-brand { display: flex; flex-direction: column; gap: 0; }
.ds-footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}
.ds-footer-logo-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196,154,60,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds-footer-brand-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: #F5EFE4;
  line-height: 1;
}
.ds-footer-brand-tag {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: rgba(196,154,60,0.7);
}

/* Social */
.ds-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.ds-soc-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.ds-soc-btn:hover {
  border-color: #C49A3C;
  color: #C49A3C;
  background: rgba(196,154,60,0.08);
}

/* Link columns */
.ds-footer-col { }
.ds-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F5EFE4;
  margin: 0 0 16px;
}
.ds-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ds-footer-link {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.ds-footer-link:hover { color: #C49A3C; }

/* Collection picker */
.ds-col-picker-wrap {
  margin-bottom: 14px;
}
.ds-col-picker-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C49A3C;
  margin-bottom: 7px;
}
.ds-col-picker-box {
  position: relative;
  display: flex;
  align-items: center;
}
.ds-col-select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,154,60,0.35);
  border-radius: 2px;
  color: rgba(255,255,255,0.75);
  font-family: 'Raleway', sans-serif;
  font-size: 11.5px;
  padding: 8px 30px 8px 10px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.ds-col-select:hover,
.ds-col-select:focus { border-color: #C49A3C; }
.ds-col-select option {
  background: #5C0F0F;
  color: #F5EFE4;
}
.ds-col-select-arrow {
  position: absolute;
  right: 9px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Payment badges */
.ds-footer-col--payments .ds-footer-col-title { margin-bottom: 14px; }
.ds-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.ds-pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 4px 8px;
}
.ds-pay-visa    { background: #FFFFFF; }
.ds-pay-mc      { background: transparent; padding: 0; }
.ds-pay-rupay   { background: #1A4A8A; padding: 4px 10px; }
.ds-pay-upi     { background: #1A1A3A; padding: 4px 8px; }

/* Bottom bar */
.ds-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 60px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ds-footer-copy,
.ds-footer-made {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.ds-footer-made { display: flex; align-items: center; }

/* ══════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .ds-nl-inner  { padding: 28px 36px; }
  .ds-footer-main {
    padding: 44px 36px 36px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .ds-footer-bottom { padding: 16px 36px; }
  .ds-footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 30px; }
  .ds-footer-social { margin-top: 0; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════ */
@media screen and (max-width: 768px) {
  .ds-nl-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 18px;
  }
  .ds-nl-form { width: 100%; max-width: 100%; }
  .ds-nl-title { font-size: 12px; letter-spacing: 2.5px; }

  .ds-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 36px 24px 28px;
    gap: 28px;
  }
  .ds-footer-brand { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 14px; }
  .ds-footer-social { margin-top: 0; }
  .ds-footer-col--payments { grid-column: 1 / -1; }
  .ds-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px;
    gap: 6px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════ */
@media screen and (max-width: 480px) {
  .ds-nl-inner { padding: 24px 18px; gap: 14px; }
  .ds-nl-title { font-size: 11px; letter-spacing: 2px; }
  .ds-nl-sub   { font-size: 12px; }
  .ds-nl-form  { flex-direction: column; gap: 0; }
  .ds-nl-input { border-bottom: none; }
  .ds-nl-btn   { width: 100%; padding: 13px; text-align: center; justify-content: center; }

  .ds-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 30px 18px 24px;
    gap: 22px;
  }
  .ds-footer-brand { grid-column: 1 / -1; }
  .ds-footer-brand-name { font-size: 14px; letter-spacing: 2.5px; }
  .ds-footer-col-title { font-size: 9px; letter-spacing: 2px; }
  .ds-footer-link { font-size: 11.5px; }
  .ds-footer-bottom { padding: 14px 18px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — 360px
══════════════════════════════════════ */
@media screen and (max-width: 360px) {
  .ds-footer-main { grid-template-columns: 1fr; }
  .ds-footer-col--payments { grid-column: auto; }
}
/* END_SECTION:ds-footer */

/* START_SECTION:ds-hero-banner (INDEX:20) */
/* ═══════════════════════════════════════════
   DS HERO BANNER SLIDER
═══════════════════════════════════════════ */
.ds-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #2A1A0E;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Track ── */
.ds-banner-track {
  position: relative;
  width: 100%;
}

/* ── Slides ── */
.ds-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.ds-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;  /* active slide takes up space */
  z-index: 2;
}

/* ── Images ── */
.ds-banner-img {
  width: 100%;
  display: block;
}

/* DESKTOP image — shown by default */
.ds-banner-img--desktop {
  display: block;
  height: {{ section.settings.desktop_height | default: 680 }}px;
}

/* MOBILE image — hidden on desktop */
.ds-banner-img--mobile {
  display: none;
  height: {{ section.settings.mobile_height | default: 520 }}px;
}

/* ── Placeholder (no image uploaded) ── */
.ds-banner-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.ds-banner-placeholder--0 { background: linear-gradient(135deg, #5C1A1A 0%, #8B3A0A 50%, #4A1A0E 100%); }
.ds-banner-placeholder--1 { background: linear-gradient(135deg, #3A1A0E 0%, #6B3A1A 50%, #2A0E0E 100%); }
.ds-banner-placeholder--2 { background: linear-gradient(135deg, #1A3A2A 0%, #3A6B2A 50%, #0E2A1A 100%); }
.ds-banner-placeholder--3 { background: linear-gradient(135deg, #1A1A3A 0%, #3A2A6B 50%, #0E0E2A 100%); }
.ds-banner-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
}
.ds-banner-ph-hint {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(196,154,60,0.6);
  max-width: 260px;
  line-height: 1.6;
}

/* ── Overlay ── */
.ds-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Text content ── */
.ds-banner-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 640px;
}
.ds-banner-content--left  { align-items: flex-start; left: 0; }
.ds-banner-content--center { align-items: center; text-align: center; left: 50%; transform: translateX(-50%); }
.ds-banner-content--right  { align-items: flex-end; text-align: right; left: auto; right: 0; }

.ds-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 12px;
}
.ds-banner-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 52px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ds-banner-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.ds-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.ds-banner-btn--solid {
  background: #7B1818;
  color: #FFFFFF;
}
.ds-banner-btn--solid:hover { background: #5C0F0F; gap: 14px; }
.ds-banner-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.ds-banner-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  gap: 14px;
}
.ds-banner-btn--gold {
  background: #C49A3C;
  color: #2A1A0E;
}
.ds-banner-btn--gold:hover { background: #D4AA4C; gap: 14px; }

/* ── Arrows ── */
.ds-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #FFFFFF;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ds-banner-arrow:hover {
  background: #7B1818;
  border-color: #C49A3C;
  color: #C49A3C;
}
.ds-banner-prev { left: 20px; }
.ds-banner-next { right: 20px; }

/* ── Dots ── */
.ds-banner-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ds-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.ds-banner-dot.active {
  background: #C49A3C;
  border-color: #C49A3C;
  width: 28px;
  border-radius: 4px;
}

/* ── Slide counter ── */
.ds-banner-counter {
  position: absolute;
  bottom: 22px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}
.ds-banner-counter-cur { color: #C49A3C; font-size: 14px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── TABLET 1024px ── */
@media screen and (max-width: 1024px) {
  .ds-banner-img--desktop { height: 480px; }
  .ds-banner-content { padding: 0 50px; }
  .ds-banner-heading { font-size: 42px; }
  .ds-banner-sub     { font-size: 13px; }
  .ds-banner-arrow   { width: 40px; height: 40px; }
}

/* ── MOBILE 768px — Switch to mobile image ── */
@media screen and (max-width: 768px) {

  /* Hide desktop image, show mobile image */
  .ds-banner-img--desktop { display: none !important; }
  .ds-banner-img--mobile  { display: block !important; }

  .ds-banner-img--mobile  { height: {{ section.settings.mobile_height | default: 520 }}px;         height: auto;}

  .ds-banner-content {
    padding: 0 28px;
    max-width: 100%;
    bottom: 0;
    top: auto;
    justify-content: flex-end;
    padding-bottom: 50px;
  }
  .ds-banner-content--center {
    left: 0;
    transform: none;
    align-items: flex-start;
    text-align: left;
  }
  .ds-banner-content--right {
    right: auto;
    left: 0;
    align-items: flex-start;
    text-align: left;
  }

  .ds-banner-heading { font-size: 30px; margin-bottom: 10px; }
  .ds-banner-sub     { font-size: 12.5px; margin-bottom: 20px; max-width: 100%; }
  .ds-banner-eyebrow { font-size: 9px; letter-spacing: 2px; margin-bottom: 8px; }
  .ds-banner-btn     { font-size: 9.5px; padding: 12px 20px; }

  .ds-banner-arrow   { width: 34px; height: 34px; }
  .ds-banner-prev    { left: 10px; }
  .ds-banner-next    { right: 10px; }
  .ds-banner-dots    { bottom: 14px; }
}

/* ── SMALL MOBILE 480px ── */
@media screen and (max-width: 480px) {
  .ds-banner-img--mobile { height: {{ section.settings.mobile_height_sm | default: 440 }}px; }
  .ds-banner-heading { font-size: 26px; }
  .ds-banner-sub     { display: none; }
  .ds-banner-content { padding: 0 18px; padding-bottom: 44px; }
  .ds-banner-arrow   { width: 30px; height: 30px; }
}

/* ── TINY 360px ── */
@media screen and (max-width: 360px) {
  .ds-banner-img--mobile { height: 380px; }
  .ds-banner-heading { font-size: 22px; }
  .ds-banner-btn     { font-size: 9px; padding: 11px 16px; }
}
/* END_SECTION:ds-hero-banner */

/* START_SECTION:ds-our-story (INDEX:21) */
/* ═══════════════════════════════════
   DS OUR STORY — BASE STYLES
═══════════════════════════════════ */
.ds-story {
  background-color: #5C0F0F;
  position: relative;
  overflow: hidden;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* Mandala watermark */
.ds-story-mandala {
  position: absolute;
  left: -140px;
  top: -140px;
  width: 520px;
  height: 520px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.ds-story-mandala svg {
  width: 100%;
  height: 100%;
}

/* Inner layout */
.ds-story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 76px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── LEFT ── */
.ds-story-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 16px;
}
.ds-story-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 38px;
  font-weight: 400;
  color: #FAF5EC;
  line-height: 1.25;
  margin: 0 0 20px;
}
.ds-story-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.9;
  margin: 0 0 30px;
  max-width: 360px;
}
.ds-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C49A3C;
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}
.ds-story-cta:hover {
  gap: 14px;
  opacity: 0.85;
}

/* ── RIGHT: Stats ── */
.ds-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 44px;
}
.ds-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ds-stat-icon-ring {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 154, 60, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.ds-stat-item:hover .ds-stat-icon-ring {
  border-color: rgba(196, 154, 60, 0.75);
}
.ds-stat-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 42px;
  font-weight: 400;
  color: #D4A843;
  line-height: 1;
  margin: 0 0 6px;
}
.ds-stat-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   RESPONSIVE — 1024px TABLET
═══════════════════════════════════ */
@media screen and (max-width: 1024px) {
  .ds-story-inner {
    gap: 50px;
    padding: 60px 40px;
  }
  .ds-story-title {
    font-size: 32px;
  }
  .ds-stat-number {
    font-size: 36px;
  }
  .ds-story-stats {
    gap: 32px 28px;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — 768px TABLET PORTRAIT
═══════════════════════════════════ */
@media screen and (max-width: 768px) {
  .ds-story-mandala {
    left: -80px;
    top: -80px;
    width: 360px;
    height: 360px;
  }
  .ds-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 32px;
  }
  .ds-story-title {
    font-size: 34px;
  }
  .ds-story-body {
    max-width: 100%;
  }
  .ds-story-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .ds-stat-number {
    font-size: 30px;
  }
  .ds-stat-label {
    font-size: 9.5px;
    letter-spacing: 1px;
  }
  .ds-stat-icon-ring {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — 600px MOBILE
═══════════════════════════════════ */
@media screen and (max-width: 600px) {
  .ds-story-inner {
    padding: 48px 24px;
    gap: 40px;
  }
  .ds-story-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .ds-story-body {
    font-size: 13px;
  }
  .ds-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .ds-stat-number {
    font-size: 34px;
  }
  .ds-stat-label {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — 400px SMALL MOBILE
═══════════════════════════════════ */
@media screen and (max-width: 400px) {
  .ds-story-inner {
    padding: 40px 18px;
    gap: 36px;
  }
  .ds-story-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .ds-story-title {
    font-size: 26px;
  }
  .ds-story-stats {
    gap: 24px 16px;
  }
  .ds-stat-number {
    font-size: 30px;
  }
  .ds-stat-icon-ring {
    width: 36px;
    height: 36px;
  }
  .ds-stat-icon-ring svg {
    width: 18px;
    height: 18px;
  }
}
/* END_SECTION:ds-our-story */

/* START_SECTION:feature-band (INDEX:24) */
.ds-feature-band {
  background-color: #5C0F0F;
  width: 100%;
  overflow: hidden;
}

.ds-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ds-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 150px;
  min-width: 120px;
  max-width: 200px;
  padding: 12px 10px;
}

.ds-band-icon {
  color: #C49A3C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.ds-band-title {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.ds-band-sub {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.55;
}

.ds-band-sep {
  color: rgba(196, 154, 60, 0.35);
  font-size: 16px;
  flex-shrink: 0;
  padding: 0 6px;
  align-self: center;
  display: flex;
  align-items: center;
}

/* ── TABLET: 768px – 1024px ── */
@media screen and (max-width: 1024px) {
  .ds-band-inner {
    padding: 28px 24px;
    gap: 4px;
  }
  .ds-band-item {
    flex: 1 1 130px;
  }
  .ds-band-sep {
    display: none;
  }
  .ds-band-title {
    font-size: 9.5px;
    letter-spacing: 2px;
  }
  .ds-band-sub {
    font-size: 11px;
  }
}

/* ── MOBILE: up to 767px ── */
@media screen and (max-width: 767px) {
  .ds-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 24px 16px;
  }

  .ds-band-item {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(196, 154, 60, 0.12);
  }

  /* last row items — remove bottom border */
  .ds-band-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* center the last item if odd count */
  .ds-band-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-bottom: none;
    max-width: 200px;
    margin: 0 auto;
  }

  .ds-band-sep {
    display: none;
  }

  .ds-band-title {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .ds-band-sub {
    font-size: 11px;
  }

  .ds-band-icon {
    height: 28px;
    margin-bottom: 8px;
  }
  .ds-band-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ── SMALL MOBILE: up to 400px ── */
@media screen and (max-width: 400px) {
  .ds-band-inner {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
  .ds-band-item {
    border-bottom: 1px solid rgba(196, 154, 60, 0.12);
    padding: 14px 10px;
  }
  .ds-band-item:last-child {
    border-bottom: none;
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}
/* END_SECTION:feature-band */