/* Extracted from index.html */

:root {
  --rk-blue: #004AAD;
  --rk-blue-deep: #003a87;
  --rk-ink: #16213a;
  --rk-head: "Cormorant Garamond", Georgia, serif;
  --rk-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--rk-body);
  color: var(--rk-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

.rk-notice {
  background: var(--rk-blue);
  color: #fff;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .04em;
  padding: 9px 14px;
  font-weight: 500;
}

.rk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid rgba(20, 33, 58, .08);
}

.rk-header__in {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
}

.rk-logo {
  display: block;
}

.rk-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-item {

  gap: 24px;
  margin: 0 auto;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--rk-ink);
  text-decoration: none;
  font-weight: 500;
  transition: .2s;
  color: var(--rk-blue);
}

.nav-item:hover {
  color: #a8385e;
}

.rk-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.rk-ic {
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  color: var(--rk-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}

.rk-ic:hover {
  background: #f4f8fe;
  color: var(--rk-blue);
}

.rk-ic svg {
  width: 21px;
  height: 21px;
}

.rk-cart__n {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #a8385e;
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 3px;
}

.rk-burger {
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.rk-burger span {
  display: block;
  height: 2px;
  background: var(--rk-ink);
  border-radius: 2px;
}

@media (min-width:980px) {
  .rk-burger {
    display: none;
  }

  .nav-item {
    display: flex;
  }

  .rk-logo img {
    height: 34px;
  }
}

/* footer */
.rk-footer {
  background: var(--rk-ink);
  color: #cfd6e4;
  margin-top: 54px;
}

.rk-footer__top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
  padding: 42px 22px 30px;
}

.rk-footer__brand {
  grid-column: 1 / -1;
}

.rk-footer__col:last-child {
  grid-column: 1 / -1;
}

.rk-footer__logo {
  height: 38px;
  width: auto;
  display: block;
}

.rk-footer__tag {
  font-size: .86rem;
  line-height: 1.7;
  margin: 16px 0 18px;
  max-width: 38ch;
  color: #aeb8cc;
}

.rk-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  transition: .2s;
}

.rk-footer__social a:hover {
  background: var(--rk-blue);
  border-color: var(--rk-blue);
}

.rk-footer__social svg {
  width: 20px;
  height: 20px;
}

.rk-footer__col h4 {
  font-family: var(--rk-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 600;
}

.rk-footer__col a {
  display: block;
  color: #aeb8cc;
  text-decoration: none;
  font-size: .86rem;
  margin-bottom: 10px;
  transition: .2s;
}

.rk-footer__col a:hover {
  color: #fff;
}

.rk-footer__note {
  font-size: .78rem;
  color: #8893ab;
  margin: 14px 0 0;
  line-height: 1.6;
}

.rk-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.rk-footer__bar>span,
.rk-footer__bar {}

.rk-footer__bar {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 26px;
  font-size: .76rem;
  color: #8893ab;
}

.rk-footer__pol a {
  color: #8893ab;
  text-decoration: none;
}

.rk-footer__pol a:hover {
  color: #fff;
}

@media (min-width:760px) {
  .rk-footer__top {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
  }

  .rk-footer__brand,
  .rk-footer__col:last-child {
    grid-column: auto;
  }

  .rk-footer__bar {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* Original theme.css */
/* ROOH KINARA â€” generated CSS uploaded to site_settings.sx_css_location.
   Premium ethnic apparel (Muslin & Mul Cotton suit sets). Light theme,
   royal-blue brand accent (--secondary-main = #004AAD). Rose = deal colour.
   Per-segment, concatenated. Do NOT @import or minify (BEGIN/END markers must survive).
   Every selector namespaced under .sx. */

/* BEGIN shoopy-gen:base */
.sx {
  --sx-blue: var(--secondary-main, #004AAD);
  --sx-blue-deep: #003a87;
  --sx-blue-soft: #e9f0fb;
  --sx-blue-tint: #f4f8fe;
  --sx-rose: #a8385e;
  /* deal / sale â€” distinct from CTA blue */
  --sx-rose-soft: #fbeef2;
  --sx-success: #1f8a4c;
  --sx-bg: #ffffff;
  --sx-cream: #faf7f2;
  --sx-surface: #fbfaf8;
  --sx-ink: #16213a;
  --sx-text: #3a4254;
  --sx-muted: #7b8398;
  --sx-line: rgba(0, 74, 173, .16);
  --sx-line-soft: rgba(20, 33, 58, .10);
  --sx-maxw: 1240px;
  --sx-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sx-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.sx,
.sx * {
  box-sizing: border-box;
}

.sx-wrap {
  max-width: var(--sx-maxw);
  margin: 0 auto;
}

.sx-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 0 18px;
}

.sx-head__k {
  display: inline-block;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sx-blue);
}

.sx-head__h {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.08;
  margin: 8px 0 6px;
  color: var(--sx-ink);
}

.section-heading {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.08;
  margin: 8px 0 6px;
  color: var(--sx-ink);
}

.sx-head__s {
  font-family: var(--sx-body);
  margin: 0;
  color: var(--sx-muted);
  font-weight: 400;
  font-size: .98rem;
}

.sx-btn {
  display: inline-block;
  font-family: var(--sx-body);
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--sx-blue);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: .25s;
  border: none;
  cursor: pointer;
}

.sx-btn:hover {
  background: var(--sx-blue-deep);
}

.sx-btn--ghost {
  background: transparent;
  color: var(--sx-blue);
  border: 1.5px solid var(--sx-blue);
}

.sx-btn--ghost:hover {
  background: var(--sx-blue);
  color: #fff;
}

.sx-btn--light {
  background: #fff;
  color: var(--sx-blue);
}

.sx-btn--light:hover {
  background: var(--sx-cream);
}

/* END shoopy-gen:base */

/* BEGIN shoopy-gen:hero-1 */
/* Mobile (base): image stacked on top, copy on the cream band below. */
.sx-hero {
  background: var(--sx-cream);
  position: relative;
  overflow: hidden;
}

.sx-hero__in {
  position: relative;
}

.sx-hero__media {
  line-height: 0;
}

.sx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sx-hero__copy {
  padding: 34px 22px 40px;
  text-align: center;
}

.sx-hero__k {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sx-blue);
}

.sx-hero__h {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1.05;
  color: var(--sx-ink);
  margin: 12px 0 8px;
}

.sx-hero__h em {
  font-style: italic;
  color: var(--sx-blue);
}

.sx-hero__p {
  font-family: var(--sx-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sx-text);
  margin: 0 auto 22px;
  max-width: 36ch;
}

.sx-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Desktop/laptop: full-bleed image, copy overlaid on the baked-in cream zone (left). */
@media (min-width:860px) {
  .sx-hero__in {
    min-height: clamp(460px, 40vw, 660px);
  }

  .sx-hero__media {
    position: absolute;
    inset: 0;
  }

  /* anchor crop near the top so the model's face is never cut off */
  .sx-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 50% 6%;
  }

  /* copy aligns to the site container (same left edge as the logo), not the screen edge */
  .sx-hero__copy {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--sx-maxw);
    margin: 0 auto;
    min-height: clamp(460px, 40vw, 660px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 48px 18px;
  }

  .sx-hero__k {
    white-space: nowrap;
  }

  /* keep the letter-spaced eyebrow on one line */
  .sx-hero__h {
    max-width: 13ch;
  }

  /* big serif headline â€” 2 lines via its own <br> */
  .sx-hero__p {
    max-width: 34ch;
    margin-left: 0;
    margin-right: 0;
  }

  /* readable measure */
  .sx-hero__cta {
    justify-content: flex-start;
  }
}

/* END shoopy-gen:hero-1 */

/* BEGIN shoopy-gen:usp-1 */
.sx-usp {
  background: #fff;
  border-top: 1px solid var(--sx-line-soft);
  border-bottom: 1px solid var(--sx-line-soft);
}

.sx-usp__row {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
  padding: 24px 18px;
}

.sx-usp__item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sx-usp__ic {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--sx-line);
  display: grid;
  place-items: center;
  color: var(--sx-blue);
  background: var(--sx-blue-tint);
}

.sx-usp__ic svg {
  width: 21px;
  height: 21px;
}

.sx-usp__t {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .86rem;
  margin: 0;
  color: var(--sx-ink);
}

.sx-usp__d {
  font-family: var(--sx-body);
  font-weight: 400;
  font-size: .74rem;
  margin: 2px 0 0;
  color: var(--sx-muted);
}

@media (min-width:768px) {
  .sx-usp__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 26px 18px;
  }
}

/* END shoopy-gen:usp-1 */

/* BEGIN shoopy-gen:category-1 */
.sx-cat {
  background: var(--sx-bg);
  padding: 50px 18px 12px;
}

.sx-cat__grid {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sx-cat__card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 22px rgba(20, 33, 58, .08);
}

.sx-cat__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sx-cat__card:hover img {
  transform: scale(1.05);
}

.sx-cat__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 46, .82) 0%, rgba(15, 25, 46, .42) 38%, rgba(15, 25, 46, .08) 70%);
}

.sx-cat__lbl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: #fff;
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.6vw, 1.5rem);
  line-height: 1.12;
  padding: 0 8px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}

.sx-cat__lbl small {
  display: block;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .95;
  margin-top: 5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

@media (min-width:640px) {
  .sx-cat__grid {
    gap: 18px;
  }

  .sx-cat__lbl {
    bottom: 22px;
  }
}

/* END shoopy-gen:category-1 */

/* BEGIN shoopy-gen:fabric-1 */
.sx-fab {
  background: var(--sx-cream);
  padding: 50px 18px;
  margin-top: 30px;
}

.sx-fab__grid {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sx-fab__card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/5;
}

.sx-fab__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.sx-fab__card:hover img {
  transform: scale(1.05);
}

.sx-fab__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 58, 135, .72) 0%, rgba(0, 58, 135, .12) 50%, transparent 75%);
}

.sx-fab__txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px;
  color: #fff;
  text-align: center;
}

.sx-fab__t {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  margin: 0;
}

.sx-fab__d {
  font-family: var(--sx-body);
  font-weight: 400;
  font-size: .76rem;
  margin: 4px 0 12px;
  opacity: .92;
}

.sx-fab__link {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 255, 255, .6);
  padding-bottom: 2px;
}

@media (min-width:640px) {
  .sx-fab__grid {
    gap: 22px;
  }

  .sx-fab__d {
    font-size: .86rem;
  }
}

/* END shoopy-gen:fabric-1 */

/* Shared product-grid styling used by Tier-A grids (trending-1, newin-1).
   These mirror how the native ProductGridCollection cards render so the preview
   reads true; namespaced so they never touch real theme product cards. */
/* BEGIN shoopy-gen:productgrid */
.sx-pg {
  padding: 50px 0 8px;
  background: var(--sx-bg);
}

.sx-pg--cream {
  background: var(--sx-cream);
  margin-top: 30px;
}

.sx-pg__scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 18px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sx-pg__scroll .sx-card {
  flex: 0 0 46%;
}

.sx-pg__grid {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  padding: 6px 18px 16px;
}

.sx-card {
  position: relative;
  min-width: 0;
  display: block;
  text-decoration: none;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--sx-line-soft);
  border-radius: 13px;
  overflow: hidden;
  transition: .25s;
}

.sx-card:hover {
  box-shadow: 0 14px 30px rgba(20, 33, 58, .12);
  transform: translateY(-3px);
}

.sx-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.sx-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sx-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sx-rose);
  color: #fff;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .06em;
  padding: 4px 9px;
  border-radius: 6px;
}

.sx-card__wish {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  color: var(--sx-ink);
}

.sx-card__wish svg {
  width: 16px;
  height: 16px;
}

.sx-card__body {
  padding: 12px 13px 15px;
}

.sx-card__fab {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sx-blue);
}

.sx-card__name {
  font-family: var(--sx-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--sx-ink);
  margin: 4px 0 8px;
  line-height: 1.35;
  min-height: 2.4em;
}

.sx-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.sx-card__now {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sx-ink);
}

.sx-card__mrp {
  font-family: var(--sx-body);
  font-size: .8rem;
  color: var(--sx-muted);
  text-decoration: line-through;
}

.sx-card__off {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .74rem;
  color: var(--sx-rose);
}

.sx-card__cta {
  margin-top: 11px;
  display: block;
  text-align: center;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sx-blue);
  border: 1.5px solid var(--sx-line);
  border-radius: 999px;
  padding: 9px 0;
  transition: .2s;
}

.sx-card:hover .sx-card__cta {
  background: var(--sx-blue);
  color: #fff;
  border-color: var(--sx-blue);
}

.sx-pg__more {
  text-align: center;
  padding: 8px 18px 4px;
}

@media (min-width:640px) {
  .sx-pg__scroll .sx-card {
    flex-basis: 31%;
  }

  .sx-pg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width:1000px) {
  .sx-pg__scroll .sx-card {
    flex-basis: 23%;
  }

  .sx-pg__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .sx-card__name {
    font-size: .94rem;
  }
}

/* END shoopy-gen:productgrid */

/* BEGIN shoopy-gen:promo-1 */
.sx-promo {
  position: relative;
  max-width: var(--sx-maxw);
  margin: 50px auto 0;
  border-radius: 0;
  overflow: hidden;
}

.sx-promo__img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.sx-promo__inner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.sx-promo__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 58, 135, .82) 0%, rgba(0, 58, 135, .45) 45%, rgba(0, 58, 135, .05) 75%);
}

.sx-promo__copy {
  position: relative;
  padding: 38px 22px;
  color: #fff;
  max-width: 560px;
}

.sx-promo__k {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #dbe6f7;
}

.sx-promo__h {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.06;
  margin: 10px 0 8px;
}

.sx-promo__p {
  font-family: var(--sx-body);
  font-weight: 400;
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 20px;
  opacity: .95;
}

@media (min-width:768px) {
  .sx-promo__inner {
    min-height: 440px;
  }

  .sx-promo__copy {
    padding: 56px 60px;
  }
}

/* END shoopy-gen:promo-1 */

/* BEGIN shoopy-gen:price-1 */
.sx-price {
  background: var(--sx-cream);
  padding: 50px 18px 12px;
}

.sx-price__grid {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sx-price__card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  text-decoration: none;
  min-height: 140px;
  border-radius: 14px;
  padding: 20px 16px 18px 22px;
  background: #fff;
  border: 1px solid var(--sx-line-soft);
  box-shadow: 0 8px 22px rgba(20, 33, 58, .06);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.sx-price__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--sx-blue);
  transition: width .25s;
}

.sx-price__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 74, 173, .16);
  border-color: var(--sx-line);
}

.sx-price__card:hover::before {
  width: 8px;
}

.sx-price__k {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sx-blue);
}

.sx-price__v {
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--sx-ink);
  margin: 7px 0 12px;
  line-height: 1.14;
  width: 100%;
  overflow-wrap: anywhere;
}

.sx-price__go {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sx-blue);
}

.sx-price__arrow {
  width: 15px;
  height: 15px;
  transition: transform .25s;
}

.sx-price__card:hover .sx-price__arrow {
  transform: translateX(4px);
}

@media (min-width:768px) {
  .sx-price__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .sx-price__card {
    min-height: 168px;
    padding: 22px 20px 20px 26px;
  }

  .sx-price__v {
    font-size: clamp(1.6rem, 2vw, 2.05rem);
  }
}

/* END shoopy-gen:price-1 */

/* BEGIN shoopy-gen:reviews-1 */
.sx-rv {
  background: var(--sx-cream);
  padding: 52px 18px;
  margin-top: 30px;
}

.sx-rv__grid {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sx-rv__card {
  background: #fff;
  border: 1px solid var(--sx-line-soft);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(20, 33, 58, .05);
}

.sx-rv__stars {
  color: #e8a33d;
  letter-spacing: .16em;
  font-size: .9rem;
}

.sx-rv__q {
  font-family: var(--sx-head);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--sx-ink);
  margin: 12px 0 18px;
}

.sx-rv__who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sx-rv__av {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sx-blue);
  color: #fff;
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: 1.1rem;
}

.sx-rv__name {
  font-family: var(--sx-body);
  font-weight: 600;
  font-size: .86rem;
  color: var(--sx-ink);
}

.sx-rv__meta {
  font-family: var(--sx-body);
  font-weight: 400;
  font-size: .74rem;
  color: var(--sx-muted);
  margin-top: 2px;
}

@media (min-width:760px) {
  .sx-rv__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* END shoopy-gen:reviews-1 */

/* BEGIN shoopy-gen:reels-1 */
.sx-reels {
  background: var(--sx-bg);
  padding: 52px 18px 56px;
}

.sx-reels__row {
  max-width: var(--sx-maxw);
  margin: 0 auto;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sx-reels__card {
  position: relative;
  flex: 0 0 60%;
  display: block;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--sx-line-soft);
  box-shadow: 0 10px 26px rgba(0, 58, 135, .16);
  text-decoration: none;
}

.sx-reels__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sx-reels__card:hover img {
  transform: scale(1.05);
}

.sx-reels__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 33, 58, .55), transparent 45%);
}

.sx-reels__play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  color: var(--sx-blue);
}

.sx-reels__play svg {
  width: 15px;
  height: 15px;
}

.sx-reels__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 16px;
  color: #fff;
  font-family: var(--sx-body);
  font-weight: 500;
  font-size: .8rem;
}

@media (min-width:640px) {
  .sx-reels__card {
    flex-basis: 30%;
  }
}

@media (min-width:1000px) {
  .sx-reels__card {
    flex-basis: 19%;
  }
}

/* END shoopy-gen:reels-1 */
.page-container {
  background-color: #fff;
}

:root {
  --header-accent: #000000;
}

.notice {
  padding-top: 5px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 5px !important;
  background-color: #004AAD !important;
}

.sx-reels {
  padding: 5px 18px 0px;
}

.scroll-animate-fade-up[data-visible=true] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: #fff;
  font-family: var(--sx-head);
  font-weight: 600;
  font-size: clamp(1.05rem, 3.6vw, 1.5rem);
  line-height: 1.12;
  padding: 0 8px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}
/* =========================================================
   ROOH KINARA â€” SHOP BY FABRIC SCROLLING FIX
   Total 5 fabric cards; scrolling enabled on mobile + desktop.
   Add after existing CSS so it overrides grid rules.
   ========================================================= */

.sx-fab__grid {
  max-width: var(--sx-maxw) !important;
  margin: 0 auto !important;
  display: flex !important;
  grid-template-columns: unset !important;
  grid-auto-flow: unset !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 6px 18px 18px !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
}

.sx-fab__grid::-webkit-scrollbar {
  display: none !important;
}

.sx-fab__card {
  flex: 0 0 calc((100% - 54px) / 4) !important;
  min-width: calc((100% - 54px) / 4) !important;
  max-width: calc((100% - 54px) / 4) !important;
  aspect-ratio: 4 / 5 !important;
  scroll-snap-align: start !important;
  border-radius: 16px !important;
}

.sx-fab__card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.sx-fab__txt {
  padding: 22px 14px !important;
}

.sx-fab__t {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem) !important;
  line-height: 1.08 !important;
}

.sx-fab__d {
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

@media (min-width: 1240px) {
  .sx-fab__grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1023px) {
  .sx-fab__card {
    flex: 0 0 calc((100% - 36px) / 3) !important;
    min-width: calc((100% - 36px) / 3) !important;
    max-width: calc((100% - 36px) / 3) !important;
  }
}

@media (max-width: 767px) {
  .sx-fab {
    padding: 42px 0 !important;
    margin-top: 24px !important;
  }

  .sx-fab__grid {
    gap: 14px !important;
    padding: 4px 16px 18px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sx-fab__card {
    flex: 0 0 74% !important;
    min-width: 74% !important;
    max-width: 74% !important;
    border-radius: 16px !important;
  }

  .sx-fab__txt {
    padding: 24px 14px 16px !important;
  }

  .sx-fab__t {
    font-size: 1.35rem !important;
  }

  .sx-fab__d {
    font-size: 0.74rem !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 420px) {
  .sx-fab__card {
    flex: 0 0 82% !important;
    min-width: 82% !important;
    max-width: 82% !important;
  }
}

/* =========================================================
   ROOH KINARA — SHOP BY FABRIC FINAL FIX
   Desktop: exactly 5 cards in one row.
   Mobile: horizontal scroll with 2.5 cards visible.
   ========================================================= */

.sx-fab {
  overflow: hidden !important;
}

.sx-fab__grid {
  max-width: var(--sx-maxw, 1240px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  overflow: visible !important;
  padding: 6px 0 18px !important;
  scroll-snap-type: none !important;
}

.sx-fab__card {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: unset !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 16px !important;
  scroll-snap-align: unset !important;
}

.sx-fab__card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.sx-fab__txt {
  padding: 20px 12px !important;
}

.sx-fab__t {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem) !important;
  line-height: 1.08 !important;
}

.sx-fab__d {
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .sx-fab__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 767px) {
  .sx-fab {
    padding: 42px 0 !important;
    margin-top: 24px !important;
  }

  .sx-fab__grid {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 16px 18px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sx-fab__grid::-webkit-scrollbar {
    display: none !important;
  }

  .sx-fab__card {
    flex: 0 0 calc((100% - 24px) / 2.5) !important;
    min-width: calc((100% - 24px) / 2.5) !important;
    max-width: calc((100% - 24px) / 2.5) !important;
    aspect-ratio: 4 / 5 !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
  }

  .sx-fab__txt {
    padding: 26px 8px 10px !important;
  }

  .sx-fab__t {
    font-size: 0.92rem !important;
    line-height: 1.05 !important;
  }

  .sx-fab__d {
    font-size: 0.58rem !important;
    line-height: 1.25 !important;
    margin: 3px 0 6px !important;
  }

  .sx-fab__link {
    font-size: 0.54rem !important;
    letter-spacing: 0.08em !important;
  }
}

@media (max-width: 420px) {
  .sx-fab__card {
    flex: 0 0 calc((100% - 20px) / 2.5) !important;
    min-width: calc((100% - 20px) / 2.5) !important;
    max-width: calc((100% - 20px) / 2.5) !important;
  }

  .sx-fab__t {
    font-size: 0.84rem !important;
  }

  .sx-fab__d {
    display: none !important;
  }
}



/* =========================================================
   ROOH KINARA — MOBILE HERO HEIGHT REDUCE
   Added by ChatGPT
   Keeps desktop unchanged.
   ========================================================= */
@media (max-width: 767px) {
  .sx-hero__media {
    height: 280px !important;
    overflow: hidden !important;
  }

  .sx-hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .sx-hero__copy {
    padding: 24px 18px 30px !important;
  }

  .sx-hero__h {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    margin: 10px 0 6px !important;
  }

  .sx-hero__p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }
}

@media (max-width: 420px) {
  .sx-hero__media {
    height: 240px !important;
  }

  .sx-hero__copy {
    padding: 20px 16px 26px !important;
  }
}
.rk-fabric-details {
  width: 100%;
  padding: 36px 16px;
  background: #faf7f2;
  font-family: "Jost", Arial, sans-serif;
}

.rk-fabric-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 173, 0.14);
  box-shadow: 0 14px 36px rgba(20, 33, 58, 0.08);
}

.rk-fabric-title {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 600;
  color: #16213a;
  text-align: center;
}

.rk-fabric-list {
  display: grid;
  gap: 18px;
}

.rk-fabric-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(0, 74, 173, 0.12);
}

.rk-fabric-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #004aad;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.rk-fabric-item h3 {
  margin: 0 0 6px;
  color: #004aad;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rk-fabric-item p {
  margin: 0;
  color: #3a4254;
  font-size: 15px;
  line-height: 1.7;
}

.rk-fabric-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #16213a;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rk-fabric-note span {
  font-size: 24px;
  line-height: 1;
}

.rk-fabric-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .rk-fabric-details {
    padding: 28px 14px;
  }

  .rk-fabric-box {
    padding: 20px;
    border-radius: 18px;
  }

  .rk-fabric-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .rk-fabric-item {
    padding: 15px;
    gap: 12px;
  }

  .rk-fabric-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 19px;
  }

  .rk-fabric-item h3 {
    font-size: 15px;
  }

  .rk-fabric-item p,
  .rk-fabric-note p {
    font-size: 14px;
    line-height: 1.6;
  }
}
