/* My Album Zone — generated CSS, uploaded to site_settings.sx_css_location (dedicated slot).
   Authored per-segment, concatenated into ONE file. Do NOT @import or minify
   (the BEGIN/END markers are comments and must survive). Every selector is
   namespaced under .sx so nothing leaks into the theme header/footer/product cards.
   Brand colour comes from the theme via var(--secondary-main). */

/* BEGIN shoopy-gen:base */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");
.sx {
  --sx-gap: 18px;
  --sx-radius: 18px;
  --sx-ink: #1c1012;
  --sx-muted: #7a6a66;
  --sx-cream: #fff8f4;
  --sx-line: #f0e4e0;
  --sx-gold: #f59e0b;
  --sx-green: #1fa855;
  --sx-maxw: 1200px;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: var(--sx-ink);
}
.sx,
.sx * {
  box-sizing: border-box;
}
.sx-wrap {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.sx-head {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 640px;
}
.sx-head__kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-main, #e11d1d);
  background: color-mix(in srgb, var(--secondary-main, #e11d1d) 10%, #fff);
  padding: 6px 14px;
  border-radius: 999px;
}
.sx-head__title {
  font-family: "Fredoka", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 12px 0 6px;
  line-height: 1.1;
}
.sx-head__sub {
  margin: 0;
  color: var(--sx-muted);
  font-size: 0.98rem;
}
.sx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--secondary-main, #e11d1d);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px
    color-mix(in srgb, var(--secondary-main, #e11d1d) 32%, transparent);
}
.sx-card {
  border-radius: var(--sx-radius);
  background: #fff;
}
/* END shoopy-gen:base */

/* BEGIN shoopy-gen:why-choose-1 */
.sx-why {
  padding: 40px 0;
  background: var(--sx-cream);
}
.sx-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--sx-maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.sx-why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 16px;
  padding: 18px;
}
.sx-why__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 24px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--secondary-main, #e11d1d) 10%, #fff);
}
.sx-why__t {
  font-weight: 800;
  margin: 2px 0 4px;
  font-size: 1rem;
}
.sx-why__d {
  margin: 0;
  color: var(--sx-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
@media (min-width: 640px) {
  .sx-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sx-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* END shoopy-gen:why-choose-1 */

/* BEGIN shoopy-gen:occasion-1 */
.sx-occ {
  padding: 36px 0;
}
.sx-occ__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: var(--sx-maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.sx-occ__tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}
.sx-occ__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-occ__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 12, 0.82),
    rgba(20, 10, 12, 0.12) 56%,
    rgba(20, 10, 12, 0)
  );
}
.sx-occ__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  color: #fff;
}
.sx-occ__name {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.1;
}
.sx-occ__cta {
  font-size: 0.76rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .sx-occ__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .sx-occ__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .sx-occ__tile {
    aspect-ratio: 3 / 4;
  }
}
/* END shoopy-gen:occasion-1 */

/* BEGIN shoopy-gen:testimonials-1 */
.sx-tm {
  padding: 40px 0;
  background: var(--sx-cream);
}
.sx-tm__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 26px;
  padding: 0 16px;
}
.sx-tm__stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  padding: 14px 8px;
}
.sx-tm__num {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary-main, #e11d1d);
}
.sx-tm__lbl {
  font-size: 0.76rem;
  color: var(--sx-muted);
}
.sx-tm__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--sx-maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.sx-tm__card {
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 16px;
  padding: 20px;
}
.sx-tm__stars {
  color: var(--sx-gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.sx-tm__quote {
  margin: 10px 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.sx-tm__who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sx-tm__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--secondary-main, #e11d1d);
}
.sx-tm__name {
  font-weight: 700;
  font-size: 0.9rem;
}
.sx-tm__meta {
  font-size: 0.76rem;
  color: var(--sx-muted);
}
@media (min-width: 640px) {
  .sx-tm__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 900px) {
  .sx-tm__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* END shoopy-gen:testimonials-1 */

/* HTML CSS */
:root {
  --secondary-main: #e11d1d;
  --brand: #e11d1d;
  --brand-deep: #c10a20;
  --ink: #1c1012;
  --muted: #7a6a66;
  --cream: #fff8f4;
  --line: #f0e4e0;
  --gold: #f59e0b;
  --green: #1fa855;
  --maxw: 1200px;
  --font-head: "Fredoka", "Plus Jakarta Sans", sans-serif;
  --font-body:
    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --typography-font-family:
    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  /* margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff; */
  -webkit-font-smoothing: antialiased;
}
/* img { display:block; max-width:100%; } */
a {
  color: inherit;
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.12;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.sec {
  padding: 9px 0;
}

/* head shared (mock) */
.head2 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 22px;
}
.head2 .kick {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: #fdeaea;
  padding: 6px 14px;
  border-radius: 999px;
}
.head2 h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 12px 0 6px;
}
.head2 p {
  margin: 0;
  color: var(--muted);
}
.viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ---- Notice (Tier C) ---- */
.notice {
  background: var(--brand-deep);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 14px;
}

/* ---- Header (Tier C) ---- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hdr__logo img {
  height: 70px;
  width: auto;
}
.hdr__nav {
  display: none;
  gap: 20px;
  margin-left: 8px;
}
.hdr__nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3a2c29;
}
.hdr__nav a:hover {
  color: var(--brand);
}
.hdr__search {
  display: none;
  flex: 1;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}
.hdr__spacer {
  flex: 1;
}
.hdr__icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: none;
  cursor: pointer;
  position: relative;
}
.iconbtn svg {
  width: 20px;
  height: 20px;
}
.iconbtn--wa {
  background: #e7f9ee;
}
.cartdot {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 3px;
}
---- */


/* ---- Hero / StoreBanner (Tier A) ---- */
.hero {
  position: relative;
}
.hero a {
  position: relative;
  display: block;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__ovl {
  display: block;
  position: absolute;
  inset: 0;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 100%;
  padding: 18px 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero__text {
  max-width: 100%;
  text-align: center;
}
.hero__text .hero__p {
  display: none;
}
.hero__tag {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.hero__h1 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.05;
  margin: 14px 0 0;
}
.hero__h1 em {
  color: var(--brand);
  font-style: normal;
}
.hero__p {
  color: #5a4a46;
  font-size: clamp(0.85rem, 1.4vw, 1.02rem);
  margin: 10px 0 0;
}
.hero__cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.hero__btn--solid {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 29, 29, 0.3);
}
.hero__btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* ---- Categories (Tier A) ---- */
.cats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cat {
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}
.cat__img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fde3e3;
  background: var(--cream);
}
.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a2c29;
}

/* ---- Product cards (Tier A grids) ---- */
.prow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.pc__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--cream);
}
.pc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #1c1012;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 9px;
  border-radius: 999px;
}
.pc__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.pc__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #d9b3b3;
  font-size: 15px;
  cursor: pointer;
}
.pc__body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.pc__rating {
  font-size: 0.74rem;
  font-weight: 700;
  color: #e8a200;
}
.pc__rating span {
  color: var(--muted);
  font-weight: 500;
}
.pc__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.3;
  margin: 0;
  min-height: 2.2em;
}
.pc__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc__sale {
  font-weight: 800;
  font-size: 1.02rem;
}
.pc__mrp {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.84rem;
}
.pc__save {
  color: var(--green);
  font-weight: 700;
  font-size: 0.74rem;
}
.pc__cta {
  margin-top: auto;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: var(--font-body);
  cursor: pointer;
}
.pc__cta:hover {
  background: var(--brand-deep);
}

/* ---- Banner collections (Tier A) ---- */
.ban--pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.banx {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}
.banx img {
  width: 100%;
  height: auto;
  display: block;
}
.banx__cap {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6% 7%;
  max-width: 54%;
}
.banx__cap--right {
  right: 0;
  text-align: right;
  align-items: flex-end;
}
.banx__cap--left {
  left: 0;
  text-align: left;
  align-items: flex-start;
}
.banx__cap--ondark {
  color: #fff;
}
.banx__cap--onlight {
  color: var(--ink);
}
.banx__tag {
  display: inline-block;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.banx__cap--ondark .banx__tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.banx__cap--onlight .banx__tag {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}
.banx__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.3vw, 1.8rem);
  margin: 8px 0 0;
  line-height: 1.08;
}
.banx__sub {
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
  margin: 4px 0 0;
  opacity: 0.94;
}
.banx__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}
.banx--lg .banx__title {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}
.banx--lg .banx__cap {
  max-width: 48%;
}

/* ---- Footer (Tier C) ---- */
.ft {
  background: #1c1012;
  color: #e9ddd8;
  margin-top: 8px;
}
.ft__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 16px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 18px;
}
.ft__brand {
  grid-column: 1 / -1;
}
.ft__brand img {
  height: 54px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}
.ft__brand p {
  color: #c9b8b2;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 30ch;
}
.ft h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.ft a,
.ft li {
  color: #c9b8b2;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 2;
  list-style: none;
}
.ft ul {
  margin: 0;
  padding: 0;
}
.ft a:hover {
  color: #fff;
}
.ft__soc {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.ft__soc a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}
.ft__soc svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.ft__pay {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ft__pay span {
  background: #fff;
  color: #1c1012;
  font-weight: 800;
  font-size: 0.62rem;
  padding: 4px 7px;
  border-radius: 5px;
}
.ft__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 14px;
  font-size: 0.78rem;
  color: #a8968f;
}

/* ---- WhatsApp float ---- */
.wafloat {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.wafloat svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ===== responsive ===== */
@media (min-width: 560px) {
  .prow {
    grid-auto-columns: 46%;
  }
  .ban--pair {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .hdr__nav {
    display: flex;
  }
  .hdr__search {
    display: flex;
    max-width: 340px;
  }
  .hdr__spacer {
    display: none;
  }
  .pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat__img {
    width: 104px;
    height: 104px;
  }
  .ft__in {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
  .ft__brand {
    grid-column: auto;
  }
  .hero__inner {
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
  }
  .hero__text {
    max-width: 46%;
    text-align: left;
  }
  .hero__text .hero__p {
    display: block;
  }
  .hero__cta {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .cats {
    grid-auto-flow: row;
    grid-template-columns: repeat(7, 1fr);
    overflow: visible;
  }
  .prow {
    grid-auto-columns: calc((100% - 56px) / 5);
  }
  .pgrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* HTML CSS END */

/* Custom Store CSS */
body {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif !important;
}
.heading-title {
  font-family: "Fredoka", "Plus Jakarta Sans", sans-serif !important;
}
.sh-ge-collect:has(.HtmlRenderer-component) .page-container-m,
.sh-ge-collect:has(.HtmlRenderer-component) .page-container {
  max-width: unset !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: unset !important;
}

/* Product Card Start */
.product-card {
  border: 1px solid var(--line) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}
.product-card-info {
  padding: 12px 12px 14px !important;
}
.product-card-name {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  min-height: 2.2em !important;
  margin-bottom: 8px !important;
}
.product-card-price {
  font-weight: 800 !important;
  font-size: 14px !important;
}
.product-card-mrp-price {
  color: var(--muted) !important;
  text-decoration: line-through !important;
  font-size: 11px !important;
}
.product-card-discount-off {
  color: var(--green) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}
.product-card-action-btn {
  color: #ffffff !important;
  background: var(--secondary-main) !important;
  font-size: 14px !important;
}
.multi-row-product-list-grid .product-card {
  padding: 0 !important;
}
.sh-ge-collect:has(.ProductGridCollection-component) > .section.grid {
  display: flex !important;
  justify-content: center !important;
}
.shop-all-link {
  background-color: unset !important;
  color: var(--secondary-main) !important;
  padding: 0 !important;
  font-size: 12px !important;
  position: relative !important;
  font-weight: 700 !important;
}
.shop-all-link::after {
  content: "→";
  margin-left: 8px;
  position: relative;
  top: -2px;
}
/* Product Card End */

/* Header Start */
.desk-notice-bar {
  padding: unset !important;
}
#search-box input {
  padding-right: 10px !important;
}
#search-box .lucide-search {
  position: absolute !important;
  left: 14px !important;
}
#search-box button {
  right: 10px !important;
}
.sh-header-container .hidden.max-w-4xl:has(#search-box) {
  max-width: 340px !important;
  margin-left: auto !important;
}
.sh-header-container
  .hidden.max-w-4xl:has(#search-box)
  + div
  .relative.cursor-pointer:has(> svg) {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: none;
  cursor: pointer;
  position: relative;
}
.sh-header-container {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
@media (min-width: 768px) {
  header nav {
    position: absolute;
    bottom: 6px;
    z-index: 1;
    left: 0;
    right: 0;
    border: none;
  }
}
.sh-header-logo {
  max-height: 76px !important;
}

/* Header End */
/* =========================
   THEME COLOR UPDATE
   Theme: #C10A20
   ========================= */

:root {
  --theme-main: #c10a20;
  --theme-dark: #8f0717;
  --theme-light: #fff3f5;
  --theme-soft: #fde8eb;
  --theme-border: #f1c9ce;
  --theme-text: #2b1b1d;
  --theme-muted: #6b5558;
}

/* =========================
   HEADER / NAVBAR TEXT FIX
   ========================= */

.app-bar,
.app-bar-main,
.app-bar-main *,
.desktop-nav,
.desktop-nav *,
.nav-link {
  color: var(--theme-main) !important;
}

.app-bar {
  background-color: #ffffff !important;
}

.app-bar-main svg,
.app-bar svg {
  color: var(--theme-main) !important;
  stroke: var(--theme-main) !important;
}

*.nav-link {
  color: var(--theme-main) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px;
}

*.nav-link:hover {
  color: var(--theme-dark) !important;
}

/* Desktop navbar */
.app-bar-main > .page-container nav.desktop-nav {
  border-top: 1px solid var(--theme-border) !important;
  background: #ffffff !important;
}

.app-bar-main > .page-container nav.desktop-nav ul li a {
  color: var(--theme-main) !important;
  background: transparent !important;
  font-weight: 600 !important;
}

.app-bar-main > .page-container nav.desktop-nav ul li a:hover {
  color: #ffffff !important;
  background-color: var(--theme-main) !important;
  transform: translateY(-1px);
}

.app-bar-main > .page-container nav.desktop-nav ul li a.active,
.app-bar-main > .page-container nav.desktop-nav ul li.current-menu-item a {
  background-color: var(--theme-main) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(193, 10, 32, 0.25) !important;
}

/* Mobile side menu header */
.mobile-sidemenu-header,
.mobile-sidemenu-submenu-header {
  background-color: var(--theme-main) !important;
  color: #ffffff !important;
}

.mobile-sidemenu-header *,
.mobile-sidemenu-submenu-header * {
  color: #ffffff !important;
}

/* =========================
   PRODUCT CARD THEME CSS
   ========================= */

.pr-long-card {
  background: #ffffff !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(193, 10, 32, 0.08) !important;
  transition: all 0.35s ease !important;
}

.pr-long-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-main) !important;
  box-shadow: 0 12px 28px rgba(193, 10, 32, 0.18) !important;
}

/* Product image */
.pr-long-card .pr-image {
  background-color: var(--theme-light) !important;
  border-radius: 12px 12px 0 0 !important;
  border: none !important;
  object-fit: contain !important;
  transition: transform 0.45s ease !important;
}

.pr-long-card:hover .pr-image {
  transform: scale(1.05) !important;
}

/* Product content area */
.pr-card-content {
  background: #ffffff !important;
  padding: 12px 10px !important;
}

/* Product name text visibility fix */
.product-component-name,
.pr-name,
.pr-card-content,
.pr-card-content *,
.pr-long-card,
.pr-long-card * {
  color: var(--theme-text) !important;
}

/* Product title */
.product-component-name,
.pr-name {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 22px !important;
  text-transform: capitalize !important;
  color: var(--theme-main) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--theme-main) !important;
  animation: none !important;
}

/* Price */
.pr-price,
.pr-sale-price,
.pr-card-content .sale-price,
.product-price,
.product-component-price {
  color: var(--theme-main) !important;
  font-weight: 800 !important;
}

/* MRP / old price */
.pr-mrp,
.pr-old-price,
.product-mrp,
.product-component-mrp {
  color: var(--theme-muted) !important;
  opacity: 0.8;
}

/* =========================
   PRODUCT BUTTON CSS
   ========================= */

/* Add to cart / outlined button */
.pr-outlined-button {
  background: #ffffff !important;
  border: 1px solid var(--theme-main) !important;
  border-radius: 8px !important;
  color: var(--theme-main) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  height: 38px !important;
  text-transform: uppercase !important;
  transition: all 0.35s ease !important;
  box-shadow: none !important;
}

.pr-outlined-button:hover {
  background: var(--theme-main) !important;
  color: #ffffff !important;
  border-color: var(--theme-main) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(193, 10, 32, 0.22) !important;
}

.pr-outlined-button:active {
  transform: translateY(0);
}

/* Buy now / solid button */
.solid-button__btn,
.sh-solid-button {
  background: var(--theme-main) !important;
  border: 1px solid var(--theme-main) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: all 0.35s ease !important;
}

.solid-button__btn:hover,
.sh-solid-button:hover {
  background: var(--theme-dark) !important;
  border-color: var(--theme-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(193, 10, 32, 0.25) !important;
}

.pr-plus-minus-button-text,
.pr-plus-minus-button-text-icon {
  color: var(--theme-main) !important;
}

/* =========================
   DISCOUNT / BADGE CSS
   ========================= */

.product-discount,
.pr-discount,
.badge {
  background: var(--theme-main) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(193, 10, 32, 0.25);
}

.pr-discount {
  font-size: 12px !important;
  padding: 5px 9px !important;
}

/* =========================
   PRODUCT SECTION BACKGROUND
   ========================= */

.sh-home-page-prod-section,
.prod-collection-container,
.product-list-container {
  background-color: #ffffff !important;
}

/* Product section soft background wrapper */
.sh-home-page-prod-section .page-container,
.prod-collection-container .page-container {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--theme-light) 100%
  ) !important;
}

/* =========================
   CATEGORY / COLLECTION CARD CSS
   ========================= */

.cat-card-img {
  border: 1px solid var(--theme-border) !important;
  border-radius: 14px !important;
  background: var(--theme-light) !important;
  transition: all 0.35s ease !important;
}

.cat-card-img:hover {
  border-color: var(--theme-main) !important;
  transform: scale(1.03) !important;
  box-shadow: 0 10px 24px rgba(193, 10, 32, 0.15);
}

/* =========================
   VIEW ALL BUTTON
   ========================= */

.section-heading-viewall,
.prod-collection-container .view-all a {
  background: var(--theme-main) !important;
  color: #ffffff !important;
  border: 1px solid var(--theme-main) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.section-heading-viewall:hover,
.prod-collection-container .view-all a:hover {
  background: var(--theme-dark) !important;
  color: #ffffff !important;
  border-color: var(--theme-dark) !important;
}

/* =========================
   MOBILE BOTTOM NAV
   ========================= */

.bottom-nav__app__bar {
  background: linear-gradient(
    135deg,
    rgba(193, 10, 32, 0.92),
    rgba(143, 7, 23, 0.92)
  ) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */

@media (max-width: 767px) {
  .product-component-name,
  .pr-name {
    font-size: 15px !important;
    line-height: 21px !important;
  }

  .pr-card-content {
    padding: 10px 8px !important;
  }

  .pr-outlined-button,
  .solid-button__btn {
    height: 36px !important;
    font-size: 12px !important;
  }

  *.nav-link {
    color: var(--theme-main) !important;
  }
}
.notice {
  padding: 0px !important;
}
.wrap {
  max-width: 1600px !important;
}
.sx-occ__grid {
  max-width: 1600px !important;
}
.section {
  padding: 3px !important;
}
.app-bar-main > .page-container {
  padding-bottom: 46px !important;
  padding-top: 15px !important;
  position: relative;
}
.app-bar-main > .page-container nav.desktop-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 0px;
  /* margin: 0 40px; */
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #cdcdcd;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  header nav {
    /* width: fit-content; */
    position: absolute;
    bottom: 6px;
    z-index: 1;
    left: 0;
    right: 0;
    border: none;
  }
}

.head2 h2 {
  font-weight: 700;
}
.app-bar .logo {
  height: 75px !important;
}
.section-heading-viewall {
  top: -24px !important;
}

.search-container {
  padding: 0px 10px;
  border: 1px solid #c10a20;
  border-radius: 8px;
}
.search-container .input-container {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  width: 400px !important;
}

#desktop-search-bar {
  color: #000 !important;
}

.nav-item {
  display: flex !important;
}
