:root {
  --secondary-main: #c99a2e;
  --gold: #c99a2e;
  --gold-hi: #e3b94e;
  --gold-soft: #e8d39a;
  --wine: #1a1714;
  --wine-2: #3a322a;
  --cta: #1a1714;
  --cta-hi: #3a322a;
  --bg: #fcf9f1;
  --bg2: #f4ecdc;
  --card: #ffffff;
  --ink: #2a1c12;
  --muted: #7a6a55;
  --line: rgba(26, 23, 20, 0.16);
  --line-g: rgba(201, 154, 46, 0.34);
  --green: #2e9d5f;
  --maxw: 1240px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: var(--font-head) !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-head) !important;
  margin: 0;
  line-height: 1.06;
  font-weight: 600;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.sec {
  padding: 46px 0;
}

.sec--tint {
  background: var(--bg2);
}

/* brand wordmark (no logo asset supplied -> typographic mark) */
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand__n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold-hi);
}

.brand__t {
  font-family: var(--font-body);
  font-size: 0.46rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #d6c3a0;
  font-weight: 400;
  margin-top: 4px;
}

/* shared section heads (Tier-A mockups) */
.head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.head__k {
  display: inline-block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.head__k::before,
.head__k::after {
  content: "❖";
  margin: 0 0.7em;
  color: var(--line-g);
  font-size: 0.8em;
}

.head__h {
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin: 8px 0 6px;
  color: var(--wine);
}

.head__s {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 1rem;
}

.head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--maxw);
  text-align: left;
  gap: 16px;
  margin-bottom: 24px;
}

.head--row .head__h {
  margin-bottom: 0;
}

.viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cta);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line-g);
  padding-bottom: 3px;
  white-space: nowrap;
}

.viewall:hover {
  color: var(--gold);
}

/* ---- Notice (Tier C) ---- */
.notice {
  background: #2c251d;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  display: inherit;
}

.sh-header-container {
  border-bottom: 1px solid rgba(201, 154, 46, 0.16);
  background: rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .mob-notice-bar {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .desk-notice-bar {
    display: none !important;
  }
}
/* ---- Header (Tier C) ---- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--wine);
  border-bottom: 1px solid rgba(201, 154, 46, 0.2);
}

.hdr__in {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hdr__burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hdr__burger span {
  width: 21px;
  height: 1.7px;
  background: var(--gold-soft);
  display: block;
}

.hdr__logo {
  flex: 0 0 auto;
}

.hdr__nav {
  display: none;
  gap: 17px;
  margin-left: 8px;
}

.hdr__nav a {
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3e3c8;
  opacity: 0.9;
  white-space: nowrap;
}

.hdr__nav a:hover {
  color: var(--gold-hi);
  opacity: 1;
}

.hdr__nav--hot {
  color: var(--gold-hi) !important;
  opacity: 1 !important;
  font-weight: 500;
}

.hdr__search {
  display: none;
  flex: 1;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 154, 46, 0.28);
  border-radius: 999px;
  padding: 9px 18px;
  color: #e7d6b6;
  font-size: 0.82rem;
  max-width: 300px;
}

.hdr__search svg {
  width: 17px;
  height: 17px;
  color: var(--gold-hi);
  flex: 0 0 auto;
}

.hdr__icons {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  flex: 0 0 auto;
}

.iconbtn {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  color: #f3e3c8;
}

.iconbtn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.iconbtn svg {
  width: 21px;
  height: 21px;
}

.iconbtn--wa svg {
  fill: #25d366;
  stroke: none;
}

.cartdot {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--gold);
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 3px;
}

@media (min-width: 768px) {
  .hdr__search {
    display: flex;
  }

  .brand__n {
    font-size: 1.75rem;
  }
}

@media (min-width: 1080px) {
  .hdr__burger {
    display: none;
  }

  .hdr__nav {
    display: flex;
  }
}

/* ---- Hero / StoreBanner (Tier A) ---- */
/* .hero {
  background: #fff;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__copy {
  padding: 26px 20px 34px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}

.hero__k {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__h {
  font-size: clamp(2.2rem, 8vw, 3rem);
  margin: 0.32em 0 0.2em;
  color: var(--wine);
}

.hero__h em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 1.1em;
  max-width: 42ch;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero__cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  transition: 0.25s;
}

.hero__cta:hover {
  background: var(--cta-hi);
}

.hero__cta--ghost {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine-2);
}

.hero__cta--ghost:hover {
  background: var(--wine);
  color: #fff;
}

.hero__trust {
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .hero {
    position: relative;
  }

  .hero__copy {
    position: absolute;
    inset: 0;
    right: auto;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 0 0 6%;
    background: none;
  }

  .hero__h {
    font-size: clamp(2.8rem, 4.6vw, 4.3rem);
  }

  .hero__sub {
    margin-left: 0;
    max-width: 34ch;
  }

  .hero__btns {
    justify-content: flex-start;
  }

  .hero__trust {
    text-align: left;
  }
} */
@media (min-width: 768px) {
  .cats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 10px;

    scrollbar-width: none;
  }

  .cats::-webkit-scrollbar {
    display: none;
  }

  .cat {
    flex: 0 0 150px;
    text-align: center;
  }

  .cat__ic {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
  }

  .cat__ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
}
@media (min-width: 1024px) {
  .hero__copy {
    padding-left: max(6%, calc((100vw - var(--maxw)) / 2 + 18px));
  }
}

/* ---- Categories (Tier A) ---- */
.cats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(116px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  -webkit-overflow-scrolling: touch;
}

.cat {
  text-align: center;
  scroll-snap-align: start;
}

.cat__ic {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(26, 23, 20, 0.14);
  border: 2px solid var(--gold-soft);
}

.cat__ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat:hover .cat__ic {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26, 23, 20, 0.26);
  border-color: var(--gold);
}

.cat__n {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wine);
  display: block;
  line-height: 1.3;
}

.cat__c {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .cats {
    grid-auto-flow: initial;
    grid-template-columns: repeat(7, 1fr);
    overflow: visible;
  }

  .cat__ic {
    width: 138px;
    height: 138px;
  }
}

/* ---- Product cards (Tier A) ---- */
.prow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 70%;
  gap: 15px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.pc {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 5px 16px rgba(26, 23, 20, 0.05);
  transition: 0.25s;
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26, 23, 20, 0.14);
  border-color: var(--line-g);
}

.pc__media {
  position: relative;
  aspect-ratio: 3/4;
  background: #f3ece0;
}

.pc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc__off {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--wine);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 999px;
}

.pc__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--wine);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pc__body {
  padding: 13px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pc__code {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ab9a82;
  margin: 0;
}

.pc__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.16rem;
  line-height: 1.2;
  margin: 0;
  color: var(--wine);
  min-height: 2.4em;
}

.pc__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.pc__sale {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.pc__mrp {
  color: #a89478;
  text-decoration: line-through;
  font-size: 0.82rem;
}

.pc__save {
  color: var(--green);
  font-weight: 600;
  font-size: 0.72rem;
}

.pc__cta {
  margin-top: auto;
  text-align: center;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 10px;
  border-radius: 8px;
  transition: 0.2s;
}

.pc:hover .pc__cta {
  background: var(--cta-hi);
}

@media (min-width: 600px) {
  .prow {
    grid-auto-columns: 42%;
  }

  .pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .prow {
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .pgrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* ---- Promo banner (Tier A) ---- */
.ban {
  position: relative;
}

.ban__link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-g);
}

.ban__link img {
  width: 100%;
  height: auto;
  display: block;
}

.ban__copy {
  padding: 26px 22px 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--bg2));
}

.ban__k {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.ban__h {
  font-family: var(--font-head);
  color: var(--wine);
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(1.7rem, 6vw, 2.7rem);
  margin: 0.28em 0 0.2em;
}

.ban__sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 auto 1.1em;
  max-width: 40ch;
}

.ban__cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 999px;
  transition: 0.25s;
}

.ban__cta:hover {
  background: var(--cta-hi);
}

@media (min-width: 768px) {
  .ban__copy {
    position: absolute;
    inset: 0;
    right: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 4% 0 7%;
    background: none;
  }

  .ban__sub {
    margin-left: 0;
  }
}

/* ---- Footer (Tier C) ---- */
.ft {
  background: var(--wine);
  color: #e7d6b6;
  margin-top: 14px;
}

.ft__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 46px 18px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 18px;
}

.ft__brand {
  grid-column: 1 / -1;
}

.ft__brand .brand__n {
  font-size: 1.9rem;
}

.ft__brand p {
  color: #d6c3a0;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 36ch;
}

.ft__col h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin: 0 0 14px;
  font-weight: 600;
}

.ft__col a {
  display: block;
  color: #dcc9a6;
  font-size: 0.86rem;
  margin-bottom: 9px;
  opacity: 0.92;
}

.ft__col a:hover {
  color: #fff;
}

.ft__contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 6px;
}

.ft__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7d6b6;
  font-size: 0.86rem;
}

.ft__contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-hi);
}

.ft__social {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
}

.ft__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e7d6b6;
}

.ft__social a:hover {
  background: var(--gold);
  color: var(--wine);
}

.ft__social svg {
  width: 19px;
  height: 19px;
}

.ft__bar {
  border-top: 1px solid rgba(201, 154, 46, 0.2);
  margin-top: 8px;
}

.ft__bar div {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  color: #bda983;
  font-size: 0.76rem;
}

@media (min-width: 768px) {
  .ft__in {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }

  .ft__brand {
    grid-column: auto;
  }

  .ft__contact {
    grid-column: 1 / -1;
  }
}
/* Purvastra (Purva Vastra) — generated Tier-B section CSS (namespaced under .sx).
   Uploaded to site_settings.sx_css_location and concatenated into the store's
   global generated stylesheet. Brand color comes from --secondary-main (theme-injected). */

/* BEGIN shoopy-gen:base */
.sx {
  --sx-gold: #c99a2e;
  --sx-gold-hi: #e3b94e;
  --sx-gold-soft: #e8d39a;
  --sx-wine: #1a1714;
  --sx-cta: #1a1714;
  --sx-cta-hi: #3a322a;
  --sx-bg: #fbf6ec;
  --sx-card: #ffffff;
  --sx-ink: #2a1c12;
  --sx-muted: #7a6a55;
  --sx-line: rgba(26, 23, 20, 0.16);
  --sx-line-g: rgba(201, 154, 46, 0.34);
  --sx-green: #2e9d5f;
  --sx-maxw: 1240px;
  --sx-radius: 12px;
  --sx-head: "Cormorant Garamond", Georgia, serif;
  --sx-body: "Jost", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.sx {
  font-family: var(--sx-body);
  color: var(--sx-ink);
}
.sx *,
.sx *::before,
.sx *::after {
  box-sizing: border-box;
}
.sx img {
  display: block;
  max-width: 100%;
}
.sx .sx-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}
.sx-head__k {
  display: inline-block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary-main, var(--sx-gold));
}
.sx-head__k::before,
.sx-head__k::after {
  content: "\2756";
  margin: 0 0.7em;
  color: var(--sx-line-g);
  font-size: 0.8em;
}
.sx-head__h {
  font-family: var(--sx-head);
  font-weight: 600;
  line-height: 1.06;
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin: 8px 0 6px;
  color: var(--sx-wine);
}
.sx-head__s {
  margin: 0;
  color: var(--sx-muted);
  font-weight: 400;
  font-size: 1rem;
}
.sx .sx-head__cta {
  text-align: center;
  margin-top: 26px;
}
.sx-btn {
  display: inline-block;
  background: var(--sx-cta);
  color: #fff;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s;
}
.sx-btn:hover {
  background: var(--sx-cta-hi);
}
.sx-btn--sm {
  padding: 9px 16px;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: none;
}
.sx-btn--ghost {
  background: transparent;
  color: var(--sx-wine);
  border: 1px solid var(--sx-cta);
}
.sx-btn--ghost:hover {
  background: var(--sx-wine);
  color: #fff;
}
/* END shoopy-gen:base */

/* BEGIN shoopy-gen:usp-1 */
.sx-usp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
  max-width: var(--sx-maxw);
  margin: 0 auto;
}
.sx-usp__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sx-usp__ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 154, 46, 0.14);
  color: var(--sx-wine);
}
.sx-usp__ic svg {
  width: 21px;
  height: 21px;
}
.sx-usp__t {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sx-wine);
}
.sx-usp__d {
  margin: 2px 0 0;
  font-size: 0.76rem;
  color: var(--sx-muted);
  line-height: 1.35;
}
@media (min-width: 768px) {
  .sx-usp {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sx-usp__item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/* Mobile */
/* Mobile */
@media (max-width: 767px) {
  .sx-usp {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 18px;
    padding: 0 16px 12px;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .sx-usp::-webkit-scrollbar {
    display: none;
  }

  .sx-usp__item {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .sx-usp {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 0 16px 10px;
  }

  .sx-usp::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  .sx-usp::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }
  .sx-usp::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 7px !important;
  }
  .sx-usp__item {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    scroll-snap-align: start;
  }

  .sx-usp__ic {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .sx-usp {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 0 20px 12px;
  }

  .sx-usp::-webkit-scrollbar {
    height: 5px;
  }

  .sx-usp::-webkit-scrollbar-track {
    border-radius: 50px;
    margin: 0 22px; /* same style as category */
  }

  .sx-usp::-webkit-scrollbar-thumb {
    background: #b8b8b8;
    border-radius: 50px;
  }

  .sx-usp__item {
    flex: 0 0 260px;
  }
}
/* END shoopy-gen:usp-1 */

/* Begin price range */

.price-choice-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 16px 24px;
  margin: 32px auto;
  max-width: 1240px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.price-choice-wrapper::-webkit-scrollbar {
  display: none;
}

.price-choice {
  flex: 0 0 auto;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.1;
  font-family: inherit;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 2px 6px rgba(255, 255, 255, 0.18);
  transition: 0.35s ease;
  padding: 12px;
}

.price-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.28),
    transparent 45%
  );
  pointer-events: none;
}

.price-choice:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 2px 8px rgba(255, 255, 255, 0.25);
}

.price-choice .small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.95;
  margin: 2px 0;
}

.price-choice .price {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

/* Premium Gradients */
.orange {
  background: radial-gradient(circle at 30% 25%, #ffca70, #ff8c00 75%);
}

.red {
  background: radial-gradient(circle at 30% 25%, #ff7a7a, #d4001a 75%);
}

.green {
  background: radial-gradient(circle at 30% 25%, #53df89, #0b8d3b 75%);
}

.dark-red {
  background: radial-gradient(circle at 30% 25%, #ff5c5c, #a40000 75%);
}

/* Desktop (992px - 1240px) */
@media (max-width: 1240px) and (min-width: 993px) {
  .price-choice-wrapper {
    gap: 24px;
    padding: 16px 20px;
  }

  .price-choice {
    width: 130px;
    height: 130px;
  }

  .price-choice .price {
    font-size: 30px;
  }

  .price-choice .small {
    font-size: 13px;
  }
}

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
  .price-choice-wrapper {
    gap: 16px;
    padding: 16px 20px;
    margin: 24px auto;
    justify-content: center;
  }

  .price-choice {
    width: 110px;
    height: 110px;
  }

  .price-choice .price {
    font-size: 26px;
  }

  .price-choice .small {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
}

/* Small Tablet (576px - 768px) */
@media (max-width: 768px) {
  .price-choice-wrapper {
    gap: 14px;
    padding: 12px 16px;
    margin: 20px auto;
    justify-content: center;
  }

  .price-choice {
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
  }

  .price-choice .price {
    font-size: 22px;
  }

  .price-choice .small {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .price-choice:hover {
    transform: translateY(-4px) scale(1.04);
  }
}

/* Mobile (up to 576px) */
@media (max-width: 576px) {
  .price-choice-wrapper {
    justify-content: center;
    gap: 12px;
    padding: 10px 14px;
    margin: 16px 0;
  }

  .price-choice {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.16),
      inset 0 2px 5px rgba(255, 255, 255, 0.15);
    padding: 8px;
  }

  .price-choice .price {
    font-size: 18px;
  }

  .price-choice .small {
    font-size: 8px;
    letter-spacing: 0.5px;
    margin: 1px 0;
  }

  .price-choice:hover {
    transform: none;
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.16),
      inset 0 2px 5px rgba(255, 255, 255, 0.15);
  }
}

/* Small Mobile (up to 400px) */
@media (max-width: 400px) {
  .price-choice-wrapper {
    gap: 10px;
    padding: 8px 10px;
  }

  .price-choice {
    width: 72px;
    height: 72px;
  }

  .price-choice .price {
    font-size: 16px;
  }

  .price-choice .small {
    font-size: 7px;
    letter-spacing: 0.3px;
  }
}
/* end price range */

/* BEGIN shoopy-gen:colors-1 */
.sx-col__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sx-col__card {
  display: block;
  border-radius: var(--sx-radius);
  overflow: hidden;
  position: relative;
  background: var(--sx-card);
  border: 1px solid var(--sx-line);
  transition: 0.25s;
}
.sx-col__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26, 23, 20, 0.16);
  border-color: var(--sx-line-g);
}
.sx-col__media {
  aspect-ratio: 3/4;
}
.sx-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-col__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(18, 15, 12, 0.86));
  display: flex;
  align-items: center;
  gap: 8px;
}
.sx-col__dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.sx-col__n {
  font-family: var(--sx-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .sx-col__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}
/* END shoopy-gen:colors-1 */

/* BEGIN shoopy-gen:story-1 */
.sx-story__in {
  display: grid;
  gap: 24px;
  align-items: center;
}
.sx-story__media {
  border-radius: var(--sx-radius);
  overflow: hidden;
  border: 1px solid var(--sx-line-g);
}
.sx-story__media img,
.sx-story__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sx-story__body .sx-head__k {
  display: inline-block;
  margin-bottom: 6px;
}
.sx-story__body .sx-head__h {
  text-align: left;
  font-size: clamp(1.8rem, 4.6vw, 2.7rem);
  margin-bottom: 14px;
}
.sx-story__p {
  color: var(--sx-muted);
  font-size: 0.96rem;
  line-height: 1.72;
  margin: 0 0 14px;
}
.sx-story__stats {
  display: flex;
  gap: 26px;
  margin: 6px 0 22px;
  flex-wrap: wrap;
}
.sx-story__n {
  display: block;
  font-family: var(--sx-head);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--sx-wine);
  line-height: 1;
}
.sx-story__l {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--sx-muted);
  margin-top: 4px;
}
@media (min-width: 768px) {
  .sx-story__in {
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
  }
}
/* END shoopy-gen:story-1 */

/* BEGIN shoopy-gen:instagram-1 */
.sx-ig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sx-ig__card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.sx-ig__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.sx-ig__card:hover img {
  transform: scale(1.06);
}
.sx-ig__ic {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  opacity: 0.9;
}
.sx-ig__ic svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .sx-ig__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
}
/* END shoopy-gen:instagram-1 */

/* BEGIN shoopy-gen:testimonials-1 */
.sx-tm__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.sx-tm__card {
  background: var(--sx-card);
  border: 1px solid var(--sx-line);
  border-radius: var(--sx-radius);
  padding: 24px 22px;
  box-shadow: 0 5px 16px rgba(26, 23, 20, 0.05);
}
.sx-tm__stars {
  color: var(--sx-gold);
  letter-spacing: 0.12em;
  font-size: 0.92rem;
}
.sx-tm__q {
  font-family: var(--sx-head);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--sx-ink);
  margin: 12px 0 18px;
}
.sx-tm__who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sx-tm__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sx-wine);
  color: var(--sx-gold-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--sx-head);
  font-size: 1.1rem;
}
.sx-tm__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sx-wine);
}
.sx-tm__meta {
  font-size: 0.74rem;
  color: var(--sx-muted);
}
@media (min-width: 768px) {
  .sx-tm__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
/* END shoopy-gen:testimonials-1 */

/* custom css */
.sh-header-container {
  padding: 0.5rem 1rem !important;
}
.sh-header-logo {
  max-height: 46px !important;
}
#searchbar {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(201, 154, 46, 0.28) !important;
  border-radius: 999px !important;
  padding: 9px 18px !important;
  color: #e7d6b6 !important;
  height: 40px !important;
}
.lucide-search {
  color: var(--gold-hi) !important ;
}

.page-container,
.page-container-m {
  max-width: 1240px !important;
  margin: 0 auto;
  padding: 0 16px !important;
}
.page-container-x {
  max-width: none !important;
}
.sh-ge-collect-6a44a1b6cd4fd00e62c0d8d8,
.sh-ge-collect-6a44a17a011e0b6245da4abf,
.sh-ge-collect-6a449e97cd4fd00e62c0d8c4,
.sh-ge-collect-6a449e17cd4fd00e62c0d8c1 {
  background-color: #f4ecdc !important;
}
.product-card-action-btn,
.sh-product-plus-minus-button {
  background: var(--cta) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
}
.product-card {
  background: var(--card) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  scroll-snap-align: start !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 5px 16px rgba(26, 23, 20, 0.05) !important;
  transition: 0.25s !important;
  padding: 0 !important;
  position: relative !important;
}
.product-card-info {
  padding: 14px !important;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26, 23, 20, 0.14);
  border-color: var(--line-g);
}
.product-card-price span {
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
}
.price-container {
  margin-top: 12px !important;
}
.product-card-discount-off {
  z-index: 3;
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--wine);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 999px;
}
.shop-all-link {
  font-size: 13px !important;
  font-weight: 500;
  border-radius: 12px !important;
  text-transform: capitalize !important;
  padding: 8px 24px !important;
}
.heading-title {
  font-size: clamp(2rem, 5vw, 2.9rem) !important;
  margin: 8px 0 6px !important;
  color: var(--wine) !important;
}
@media (max-width: 768px) {
  .page-container,
  .page-container-m {
    padding: 0px !important;
  }
}
.pr-qty-row .pr-plus-minus-button.universal-border,
.solid-button__btn {
  border-radius: 8px !important;
  height: 40px !important;
  max-height: 40px !important;
  min-height: 40px !important;
}
.section-item-6a44a150011e0b6245da4abc .heading-title::before {
  content: "❖  FRESH IN  ❖";
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c89b3c;
  font-family: sans-serif;
}
.section-item-6a44a150011e0b6245da4abc .heading {
  flex-direction: start !important;
}
.section-item-6a449ec1011e0b6245da4ab2 .heading-title::before {
  content: "❖  MOST LOVED  ❖";
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c89b3c;
  font-family: sans-serif;
}
.section-item-6a44a0a9cd4fd00e62c0d8c8 .heading-title::before {
  content: "❖  MOST INSPIRE  ❖";
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c89b3c;
  font-family: sans-serif;
}
.section-item-6a44a150011e0b6245da4abc .heading {
  flex-direction: start !important;
}
.sx-usp-wrapper {
  position: relative;
}

.sx-usp-nav {
  display: none;
}

@media (max-width: 767px) {
  .sx-usp {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;

    gap: 14px;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sx-usp::-webkit-scrollbar {
    display: none;
  }

  .sx-usp__item {
    flex: 0 0 260px;
  }

  .sx-usp-nav {
    display: flex;

    justify-content: center;
    align-items: center;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: #fff;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);

    z-index: 20;

    cursor: pointer;
  }

  .sx-usp-prev {
    left: 8px;
  }

  .sx-usp-next {
    right: 8px;
  }
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.head {
  text-align: center;
  margin-bottom: 40px;
}

.head__k {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
}

.head__h {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 12px;
}

.head__s {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Wrapper */
.cats-wrapper {
  position: relative;
}

/* Desktop Styles (768px and above) */
@media (min-width: 768px) {
  .cats {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    overflow: visible;
    padding: 6px 2px 14px;
  }

  .cat {
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.3s ease;
  }

  .cat:hover {
    transform: translateY(-4px);
  }

  .cat__ic {
    position: relative;
    width: 138px;
    height: 138px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(26, 23, 20, 0.14);
    border: 2px solid var(--gold-soft);
  }

  .cat__ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat:hover .cat__ic {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(26, 23, 20, 0.26);
    border-color: var(--gold);
  }

  .cat__n {
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--wine);
    display: block;
    line-height: 1.3;
  }

  .cat__c {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--muted);
    display: block;
    margin-top: 2px;
  }

  /* Hide nav buttons on desktop */
  .cats-nav {
    display: none !important;
  }
}

/* Mobile Styles (767px and below) */
@media (max-width: 767px) {
  .sec {
    padding: 30px 16px;
  }

  .head {
    margin-bottom: 24px;
  }

  .head__h {
    font-size: 28px;
  }

  .head__s {
    font-size: 14px;
  }

  .cats-wrapper {
    position: relative;
    padding: 0 10px;
  }

  .cats {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 40px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .cats::-webkit-scrollbar {
    display: none;
  }

  .cat {
    text-align: center;
    scroll-snap-align: start;
    text-decoration: none;
    color: #1a1a1a;
    flex: 0 0 auto;
    width: 118px;
  }

  .cat__ic {
    position: relative;
    width: 118px;
    height: 118px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(26, 23, 20, 0.14);
    border: 2px solid var(--gold-soft);
  }

  .cat__ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat:active .cat__ic {
    transform: scale(0.95);
  }

  .cat__n {
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--wine);
    display: block;
    line-height: 1.3;
  }

  .cat__c {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--muted);
    display: block;
    margin-top: 2px;
  }

  /* Navigation Buttons - Mobile Only */
  .cats-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    font-size: 18px;
    color: #333;
    z-index: 100;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    padding: 0;
    line-height: 1;
  }

  .cats-nav:active {
    transform: translateY(-50%) scale(0.92);
    background: rgba(255, 255, 255, 1);
  }

  .cats-prev {
    left: 0px;
  }

  .cats-next {
    right: 0px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sec {
    padding: 20px 12px;
  }

  .head__h {
    font-size: 24px;
  }

  .head__k {
    font-size: 11px;
    padding: 4px 12px;
  }

  .cat {
    width: 100px;
  }

  .cat__ic {
    width: 100px;
    height: 100px;
  }

  .cat__n {
    font-size: 0.75rem;
  }

  .cat__c {
    font-size: 0.6rem;
  }

  .cats-nav {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.sh-header-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 40px !important;
}
header nav{
  border:none !important;
}
@media (max-width: 768px) {
  .sh-header-container {
    padding: 8px 16px !important;
  }
}

.sh-header-container::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #1a1714;
  z-index: -1;
}
.product-card-name {
  font-family: var(--font-head);
  font-weight: 400 !important;
  font-size: 1.16rem;
  line-height: 1.2;
  margin: 0;
  color: var(--wine);
  min-height: 2.4em;
}

/* BEGIN shoopy-gen:budget-1 */
.sx-bud__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sx-bud__card {
  position: relative;
  display: block;
  border-radius: var(--sx-radius);
  overflow: hidden;
  background: var(--sx-card);
  border: 1px solid var(--sx-line);
  transition: 0.25s;
}
.sx-bud__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26, 20, 14, 0.22);
  border-color: var(--sx-line-g);
}
.sx-bud__media {
  aspect-ratio: 4/5;
}
.sx-bud__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-bud__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 15px 15px;
  background: linear-gradient(180deg, transparent, rgba(20, 15, 11, 0.9));
}
.sx-bud__k {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sx-gold-soft);
  margin-bottom: 5px;
}
.sx-bud__p {
  font-family: var(--sx-head);
  font-weight: 700;
  font-size: 1.42rem;
  color: #fff;
  line-height: 1.02;
}
.sx-bud__d {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}
.sx-bud__go {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: 0.25s;
}
.sx-bud__card:hover .sx-bud__go {
  background: var(--secondary-main, var(--sx-gold));
  color: #1a1714;
}
.sx-bud__go svg {
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .sx-bud__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .sx-bud__cap {
    padding: 44px 17px 17px;
  }
  .sx-bud__p {
    font-size: 1.55rem;
  }
}
.product-card-mrp-price span {
  font-size: 0.82rem !important;
}
/* END shoopy-gen:budget-1 */
.ft__brand img,
.sh-header-logo {
  border-radius: 10px;
}
.sh-header-container {
  background-color: #1a1714 !important;
}
.lucide-user,
.lucide-shopping-cart {
  color: #f3e3c8 !important;
}
.lucide-menu {
  color: #e8d39a !important;
}
.bg-\[\#8B572A\] {
  background: #e8d39a !important;
  color: #000 !important;
}
header nav {
  background-color: #1a1714 !important;
  border-top: 1px solid rgba(201, 154, 46, 0.16) !important;
}
.hover-nav-link a {
  color: #f3e3c8 !important;
  text-transform: uppercase !important;
  font-weight: 400;
  font-size: 0.78rem;
}
.sh-header-container input::placeholder {
  color: #6b5a3c; /* Choose any color you like */
  opacity: 1; /* Makes sure it's not faded in some browsers */
}
/* Search container */
.sh-header-container > .relative.flex-1.max-w-4xl {
  flex: 0 0 500px !important;
  max-width: 500px !important;
  margin-right: auto !important;
}

/* Search input */
#search-box,
#searchbar {
  width: 100% !important;
}
.hero {
  background: #fff;
  position: relative;
}

.hero__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero__track::-webkit-scrollbar {
  display: none;
}

.hero__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 3;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: 0.25s;
}

.hero__dot[aria-current="true"] {
  background: var(--gold-hi);
  width: 22px;
  border-radius: 5px;
}

.hero__arw {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  color: var(--wine);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  transition: 0.25s;
}

.hero__arw:hover {
  background: #fff;
}

.hero__arw svg {
  width: 20px;
  height: 20px;
}

.hero__arw--prev {
  left: 14px;
}

.hero__arw--next {
  right: 14px;
}

.hero__copy {
  padding: 26px 20px 34px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}

.hero__k {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__h {
  font-size: clamp(2.2rem, 8vw, 3rem);
  margin: 0.32em 0 0.2em;
  color: var(--wine);
}

.hero__h em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 1.1em;
  max-width: 42ch;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero__cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  transition: 0.25s;
}

.hero__cta:hover {
  background: var(--cta-hi);
}

.hero__cta--ghost {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine-2);
}

.hero__cta--ghost:hover {
  background: var(--wine);
  color: #fff;
}

.hero__trust {
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .hero__arw {
    display: grid;
  }

  .hero__copy {
    position: absolute;
    inset: 0;
    right: auto;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 0 0 6%;
    background: none;
  }

  .hero__h {
    font-size: clamp(2.8rem, 4.6vw, 4.3rem);
  }

  .hero__sub {
    margin-left: 0;
    max-width: 34ch;
  }

  .hero__btns {
    justify-content: flex-start;
  }

  .hero__trust {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero__copy {
    padding-left: max(6%, calc((100vw - var(--maxw)) / 2 + 18px));
  }
}
