/* ============================================================
   Rushabh Orna — new blocks: banner slider, marquee, gem/stats,
   tabbed product listing, stories, FAQ, CTA, footer extras.
   Uses the --ro-* tokens from variables.css.
   ============================================================ */

/* ---------------- Banner (Slick) ---------------- */
.ro-banner {
  position: relative;
  background: var(--ro-bg-alt);
  overflow: hidden;
}
.ro-banner__slider { opacity: 0; transition: opacity 0.4s ease; }
.ro-banner__slider.slick-initialized { opacity: 1; }
.ro-banner__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--ro-sp-xl);
  align-items: center;
  padding-block: clamp(48px, 6vw, 92px);
}
.ro-banner__eyebrow {
  display: block;
  font-family: var(--ro-fb);
  font-size: var(--ro-fs-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ro-accent);
  margin-bottom: var(--ro-sp-md);
}
.ro-banner__title {
  font-family: var(--ro-fh);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ro-t1);
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 0 0 var(--ro-sp-lg);
}
.ro-banner__accent { color: var(--ro-gold); }
.ro-banner__indent { display: inline-block; padding-left: 1.6em; }
.ro-banner__indent2 { display: inline-block; padding-left: 3.2em; }
.ro-banner__foot {
  display: flex;
  align-items: center;
  gap: var(--ro-sp-lg);
  flex-wrap: wrap;
}
.ro-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ro-dark);
  color: var(--ro-tw);
  font-family: var(--ro-fb);
  font-size: 1rem;
  padding: 12px 12px 12px 26px;
  border-radius: var(--ro-r-full);
  text-decoration: none;
  transition: background 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}
.ro-banner__btn span {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ro-surface);
  color: var(--ro-dark);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: transform 0.4s ease;
}
.ro-banner__btn:hover { background: var(--ro-accent); }
.ro-banner__btn:hover span { transform: translateX(3px); }
.ro-banner__quote {
  display: flex;
  align-items: center;
  gap: var(--ro-sp-md);
  max-width: 380px;
}
.ro-banner__quote img {
  width: 62px; height: 74px;
  object-fit: cover;
  border-radius: var(--ro-r-sm);
  flex: none;
}
.ro-banner__quote blockquote {
  margin: 0;
  font-family: var(--ro-fb);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ro-t2);
}
.ro-banner__quote i { color: var(--ro-gold-soft); margin-right: 6px; }
.ro-banner__media {
  border-radius: var(--ro-r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--ro-surface-2);
}
.ro-banner__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ro-banner__nav {
  position: absolute;
  /* Tracks the container so the arrows stay flush with the content edge. */
  left: max(24px, calc((100vw - var(--ro-container)) / 2 + 24px));
  bottom: clamp(20px, 4vw, 54px);
  display: flex;
  align-items: center;
  gap: var(--ro-sp-md);
  z-index: 3;
}
.ro-banner__arrow {
  background: none; border: none; cursor: pointer;
  color: var(--ro-t2); font-size: 1rem;
  padding: 6px; transition: color 0.3s ease, transform 0.3s ease;
}
.ro-banner__arrow:hover { color: var(--ro-accent); }
.ro-banner__count { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t2); }
.ro-banner__count b { color: var(--ro-t1); font-weight: 500; }

/* ---------------- Auto marquee ---------------- */
.ro-marquee {
  background: var(--ro-surface-2);
  border-block: 1px solid var(--ro-line-soft);
  overflow: hidden;
  padding-block: 18px;
}
.ro-marquee__track { display: flex; width: max-content; animation: ro-marq 38s linear infinite; }
.ro-marquee:hover .ro-marquee__track { animation-play-state: paused; }
.ro-marquee__set { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.ro-marquee__word {
  font-family: var(--ro-fh);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  color: var(--ro-t1);
  white-space: nowrap;
}
.ro-marquee__dot {
  width: 62px; height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--ro-bg-alt);
}
.ro-marquee__dot img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes ro-marq { to { transform: translateX(-50%); } }

/* ---------------- Gem / stats section ---------------- */
.ro-gem { background: var(--ro-bg); }
/* The eyebrow is an inline span and .ro-h2 carries no margin, so the label,
   heading and copy collided against each other. Space them out. */
.ro-gem__content .ro-label { display: block; margin-bottom: var(--ro-sp-md); }
.ro-gem__content .ro-h2 { margin-bottom: var(--ro-sp-md); }
.ro-gem__content .ro-body { margin-bottom: var(--ro-sp-lg); }
.ro-gem__content .ro-body p { margin: 0 0 var(--ro-sp-md); }
.ro-gem__content .ro-body p:last-child { margin-bottom: 0; }
.ro-gem__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ro-gem__visual { position: relative; }
.ro-gem__arch {
  border-radius: var(--ro-r-arch);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ro-surface-2);
}
.ro-gem__arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ro-gem__circle {
  position: absolute;
  left: 50%; bottom: -34px; transform: translateX(-50%);
  width: 108px; height: 108px;
  border-radius: 50%;
  background: rgba(253, 252, 249, 0.82);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--ro-fb);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ro-t1);
  text-decoration: none;
  border: 1px solid var(--ro-line-soft);
  transition: background 0.4s ease;
}
.ro-gem__circle:hover { background: var(--ro-surface); }
.ro-gem__side {
  position: absolute;
  right: -18px; top: 8%;
  width: 128px; height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--ro-bg);
}
.ro-gem__side img { width: 100%; height: 100%; object-fit: cover; }
.ro-gem__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ro-sp-md);
  margin: var(--ro-sp-lg) 0;
}
.ro-gem__stat {
  background: var(--ro-surface-2);
  border-radius: var(--ro-r-sm);
  padding: 20px 12px;
  text-align: center;
}
.ro-gem__stat b {
  display: block;
  font-family: var(--ro-fh);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 500;
  color: var(--ro-t1);
  line-height: 1;
}
.ro-gem__stat span {
  font-family: var(--ro-fb);
  font-size: var(--ro-fs-body);
  color: var(--ro-t2);
  display: block;
  margin-top: 6px;
}
.ro-gem__note { font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-t3); font-style: italic; margin-bottom: var(--ro-sp-lg); }

/* ---------------- Tabbed product listing ---------------- */
.ro-tabs__nav {
  display: flex;
  justify-content: center;
  gap: var(--ro-sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--ro-sp-lg);
}
.ro-tabs__btn {
  font-family: var(--ro-fb);
  font-size: var(--ro-fs-body);
  padding: 13px 40px;
  border: 1px solid var(--ro-line);
  background: var(--ro-surface);
  color: var(--ro-t2);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.ro-tabs__btn.is-active { background: var(--ro-dark); color: var(--ro-tw); border-color: var(--ro-dark); }
.ro-tabs__panel { display: none; }
.ro-tabs__panel.is-active { display: block; }
.ro-shop {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: var(--ro-sp-lg);
  align-items: stretch;
}
.ro-shop__promo {
  position: relative;
  border-radius: var(--ro-r-sm);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  text-align: center;
}
.ro-shop__promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ro-shop__promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(40,32,26,.82), rgba(40,32,26,.15) 60%, transparent); }
.ro-shop__promo-in { position: relative; z-index: 2; padding: 32px 26px; color: #fff; width: 100%; }
.ro-shop__promo-in h3 { font-family: var(--ro-fh); font-size: 2.2rem; margin: 0 0 10px; color: #fff; font-weight: 500; }
.ro-shop__promo-in p { font-family: var(--ro-fb); font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,.86); margin: 0 0 18px; }
.ro-shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ro-sp-md); }

/* ---------------- Stories / video ---------------- */
.ro-stories__rail { display: flex; gap: var(--ro-sp-lg); justify-content: center; flex-wrap: wrap; }
.ro-story { text-align: center; text-decoration: none; display: block; }
.ro-story__ring {
  display: block;
  margin: 0 auto;
  width: 128px; height: 128px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--ro-gold), var(--ro-accent-deep));
  position: relative;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.ro-story:hover .ro-story__ring { transform: translateY(-5px); }
.ro-story__ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ro-bg);
  display: block;
}
.ro-story__play {
  position: absolute; right: 4px; bottom: 4px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ro-dark);
  color: var(--ro-tw);
  display: grid; place-items: center;
  font-size: 0.72rem;
  border: 2px solid var(--ro-bg);
}
.ro-story__name {
  display: block;
  margin-top: 12px;
  font-family: var(--ro-fb);
  font-size: 1rem;
  color: var(--ro-t1);
}
.ro-story__meta { display: block; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); }
.ro-stories__hint { text-align: center; margin-top: var(--ro-sp-lg); font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); font-style: italic; }

/* ---------------- FAQ ---------------- */
.ro-faq__list { max-width: 860px; margin: 0 auto; }
.ro-faq__item { border-bottom: 1px solid var(--ro-line-soft); }
.ro-faq__q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--ro-fh);
  font-size: 1.25rem;
  color: var(--ro-t1);
  transition: color 0.3s ease;
}
.ro-faq__q:hover { color: var(--ro-accent); }
.ro-faq__q i { font-size: 0.8rem; color: var(--ro-gold); transition: transform 0.35s ease; flex: none; }
.ro-faq__item.is-open .ro-faq__q i { transform: rotate(45deg); }
.ro-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 4px;
}
.ro-faq__item.is-open .ro-faq__a { max-height: 320px; padding: 0 4px 22px; }
.ro-faq__a p { margin: 0; font-family: var(--ro-fb); font-size: var(--ro-fs-body); line-height: 1.75; color: var(--ro-t2); }

/* ---------------- Footer CTA ---------------- */
.ro-cta {
  background: linear-gradient(135deg, var(--ro-dark), var(--ro-accent-deep));
  color: var(--ro-tw);
  text-align: center;
  padding-block: clamp(48px, 6vw, 84px);
}
.ro-cta h2 { font-family: var(--ro-fh); font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: #fff; margin: 0 0 12px; font-weight: 500; }
.ro-cta p { font-family: var(--ro-fb); font-size: 1rem; color: rgba(247,244,238,.8); max-width: 560px; margin: 0 auto 28px; }
.ro-cta__actions { display: flex; gap: var(--ro-sp-md); justify-content: center; flex-wrap: wrap; }
.ro-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: var(--ro-r-full);
  font-family: var(--ro-fb); font-size: 1rem; text-decoration: none;
  transition: all 0.4s ease;
}
.ro-cta__btn--solid { background: var(--ro-tw); color: var(--ro-dark); }
.ro-cta__btn--solid:hover { background: var(--ro-gold-soft); }
.ro-cta__btn--ghost { border: 1px solid rgba(247,244,238,.45); color: var(--ro-tw); }
.ro-cta__btn--ghost:hover { background: rgba(247,244,238,.12); }

/* ---------------- Header layout: logo left · menu centre · actions right ---------------- */
.ro-nav__inner { display: flex; align-items: center; gap: var(--ro-sp-md); }
.ro-nav__brand { order: 1; flex: none; margin-right: var(--ro-sp-md); }
.ro-nav__links--left { order: 2; flex: 1; justify-content: center; }
.ro-nav__actions { order: 3; flex: none; margin-left: auto; }

/* ---------------- Mega menu + dropdown ---------------- */
.ro-nav__links--left { display: flex; align-items: center; gap: var(--ro-sp-md); }
.ro-nav__item { position: static; }
.ro-nav__item--drop { position: relative; }
/* chevron sits on the text's optical centre, tight to the label */
.ro-nav__item > .ro-nav__link { display: inline-flex; align-items: center; gap: 4px; }
.ro-nav__link i { font-size: 0.52rem; margin-left: 0; line-height: 1; opacity: 0.55; transition: transform 0.3s ease; }
.ro-nav__item:hover > .ro-nav__link i { transform: rotate(180deg); }

/* shared reveal */
.ro-mega, .ro-drop {
  position: absolute;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
  z-index: 80;
}
.ro-nav__item:hover .ro-mega,
.ro-nav__item:hover .ro-drop { opacity: 1; visibility: visible; transform: translateY(0); }

/* mega panel — full width under the nav */
.ro-mega {
  left: 0; right: 0; top: 100%;
  background: var(--ro-surface);
  border-top: 1px solid var(--ro-line-soft);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.35);
}
.ro-mega__in {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: var(--ro-sp-xl);
  padding-block: var(--ro-sp-lg);
  align-items: start;
}
.ro-mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ro-sp-md); }
.ro-mega h4 {
  font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ro-t3);
  margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--ro-line-soft);
}
.ro-mega__col a {
  display: block; font-family: var(--ro-fb); font-size: 1rem;
  color: var(--ro-t2); text-decoration: none; padding: 6px 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.ro-mega__col a:hover { color: var(--ro-accent); padding-left: 5px; }
.ro-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ro-mega__prod {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; border-radius: var(--ro-r-sm);
  padding: 6px; transition: background 0.25s ease;
}
.ro-mega__prod:hover { background: var(--ro-surface-2); }
.ro-mega__prod img { width: 42px; height: 42px; object-fit: cover; border-radius: 5px; flex: none; }
.ro-mega__prod span { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1); line-height: 1.3; }
.ro-mega__all {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ro-accent); text-decoration: none;
}
.ro-mega__all:hover { gap: 12px; }

/* simple dropdown */
.ro-drop {
  left: 0; top: 100%;
  min-width: 210px;
  background: var(--ro-surface);
  border: 1px solid var(--ro-line-soft);
  border-radius: var(--ro-r-sm);
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}
.ro-drop a {
  display: block; font-family: var(--ro-fb); font-size: 1rem;
  color: var(--ro-t2); text-decoration: none; padding: 9px 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.ro-drop a:hover { background: var(--ro-surface-2); color: var(--ro-accent); }

/* footer legal links */
.ro-footer__legal a { color: var(--ro-gold-soft); text-decoration: none; }
.ro-footer__legal a:hover { color: #fff; }
.ro-footer__legal span { opacity: .4; margin: 0 6px; }

@media (max-width: 1024px) {
  .ro-mega, .ro-drop { display: none; }
}

/* ---------------- Logo (PNG) ---------------- */
.ro-nav__logo, .ro-footer__logo { height: auto; }
.ro-nav__logo { max-height: 76px; width: auto; }
.ro-footer__logo { max-height: 68px; width: auto; }
/* dark-mode nav: invert the black wordmark so it stays readable */
.ro-nav__logo--light { filter: brightness(0) invert(1); opacity: 0.95; }
/* footer keeps the ORIGINAL colour logo, on a soft chip so it reads on the dark band */
.ro-footer__logo {
  filter: none;
  background: rgba(250, 246, 241, 0.94);
  border-radius: var(--ro-r-sm);
  padding: 12px 18px;
  max-height: 92px;
}

/* ---------------- Floating Rudrax beads (banner backdrop) ---------------- */
.ro-beads { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.ro-beads i {
  position: absolute;
  border-radius: 50%;
  /* textured bead: dark core + gold rim, kept very light */
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(circle at 50% 50%, #6b4a2e 0%, #3a2617 62%, #241608 100%);
  box-shadow: 0 0 0 2px rgba(181, 135, 106, 0.5) inset, 0 6px 14px -6px rgba(0, 0, 0, 0.5);
  opacity: 0.06;
  animation: ro-float 14s ease-in-out infinite;
}
.ro-beads i::after {
  content: "";
  position: absolute; inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.ro-beads i:nth-child(1) { width: 92px;  height: 92px;  left: 6%;  top: 18%;  animation-delay: 0s;    }
.ro-beads i:nth-child(2) { width: 54px;  height: 54px;  left: 17%; top: 68%;  animation-delay: -2.2s; }
.ro-beads i:nth-child(3) { width: 128px; height: 128px; left: 32%; top: 6%;   animation-delay: -4.5s; opacity: 0.045; }
.ro-beads i:nth-child(4) { width: 40px;  height: 40px;  left: 46%; top: 78%;  animation-delay: -1.1s; }
.ro-beads i:nth-child(5) { width: 74px;  height: 74px;  left: 62%; top: 26%;  animation-delay: -6s;   }
.ro-beads i:nth-child(6) { width: 108px; height: 108px; left: 78%; top: 62%;  animation-delay: -3.3s; opacity: 0.05; }
.ro-beads i:nth-child(7) { width: 46px;  height: 46px;  left: 88%; top: 14%;  animation-delay: -7.4s; }
.ro-beads i:nth-child(8) { width: 64px;  height: 64px;  left: 52%; top: 44%;  animation-delay: -5.2s; opacity: 0.04; }
@keyframes ro-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(9deg); }
}
@media (prefers-reduced-motion: reduce) { .ro-beads i { animation: none; } }
/* keep hero content above the beads */
.ro-pagehero .ro-container, .ro-banner__slider, .ro-banner__nav { position: relative; z-index: 2; }

/* ---------------- Full-bleed map ---------------- */
.ro-map-sec { padding: 0; margin: 0; line-height: 0; }
.ro-map-sec .ro-contact__map { border-radius: 0; border: 0; border-top: 1px solid var(--ro-line-soft); }
.ro-map-sec .ro-contact__map iframe { width: 100%; height: 520px; display: block; }
@media (max-width: 760px) { .ro-map-sec .ro-contact__map iframe { height: 380px; } }

/* ---------------- Footer credit ---------------- */
.ro-footer__by { margin: 0; color: var(--ro-t3); }
.ro-footer__by a { color: var(--ro-gold-soft); text-decoration: none; }
.ro-footer__by a:hover { color: #fff; text-decoration: underline; }

/* ---------------- Floating WhatsApp ---------------- */
.ro-wa {
  position: fixed;
  right: 26px; bottom: 92px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ro-wa::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: ro-wa-pulse 2.4s ease-out infinite;
}
.ro-wa:hover { transform: scale(1.08); box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.85); }
@keyframes ro-wa-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .ro-wa::after { animation: none; } }
@media (max-width: 520px) { .ro-wa { right: 18px; bottom: 80px; width: 46px; height: 46px; font-size: 1.3rem; } }

/* ---------------- Header wholesale phone ---------------- */
.ro-nav__phone {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; margin-right: 12px;
  padding: 6px 18px 6px 6px;
  border-radius: var(--ro-r-full);
  border: 1px solid var(--ro-line-soft);
  background: var(--ro-surface-2);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ro-nav__phone:hover { border-color: var(--ro-accent); background: var(--ro-surface); }
.ro-nav__phone-ic {
  width: 32px; height: 32px; flex: none;
  border-radius: 50%;
  background: var(--ro-dark); color: var(--ro-tw);
  display: grid; place-items: center; font-size: 1rem;
}
.ro-nav__phone-tx { line-height: 1.2; display: flex; flex-direction: column; gap: 4px; }
/* Deliberate exception to the 16px floor: a wide-tracked uppercase caption
   above the number, sized down so it sits under the phone number visually. */
.ro-nav__phone-tx small { display: block; font-family: var(--ro-fb); font-size: 13px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--ro-t3); }
.ro-nav__phone-tx b { display: block; font-family: var(--ro-fb); font-size: 1rem; font-weight: 500; color: var(--ro-t1); white-space: nowrap; letter-spacing: .02em; }

/* ---------------- Price-free product cards ---------------- */
.ro-pdp__enq { font-family: var(--ro-fb); font-size: 1.05rem; color: var(--ro-accent); margin: 0 0 6px; }
.ro-pdp__enq span { color: var(--ro-t3); font-size: 1rem; }

/* ---------------- Newsletter — premium band ---------------- */
.ro-news {
  position: relative;
  background-image:
    linear-gradient(rgba(18, 17, 16, 0.86), rgba(18, 17, 16, 0.9)),
    url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-block: 1px solid rgba(181, 135, 106, 0.35);
}
.ro-news::before,
.ro-news::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ro-gold), transparent);
  opacity: 0.7;
}
.ro-news::before { top: 0; }
.ro-news::after { bottom: 0; }
.ro-news__inner {
  position: relative;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(217, 191, 167, 0.22);
  border-radius: var(--ro-r-lg);
  padding: clamp(34px, 4.5vw, 64px) clamp(20px, 4vw, 56px);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.85);
}
.ro-news__inner::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1px solid rgba(217, 191, 167, 0.14);
  border-radius: calc(var(--ro-r-lg) - 6px);
  pointer-events: none;
}
.ro-news__row {
  border: 1px solid rgba(217, 191, 167, 0.3);
  background: rgba(12, 11, 10, 0.5);
}
.ro-news__row:focus-within { border-color: var(--ro-gold); }

/* ---------------- Category strip band (shop) ---------------- */
.ro-marquee--band {
  background: var(--ro-accent);
  border-block: none;
  padding-block: 22px;
}
.ro-marquee--band .ro-marquee__word { color: #fff; }
.ro-marquee--band .ro-marquee__dot { width: 74px; height: 74px; border: 2px solid rgba(255,255,255,.35); }

/* ---------------- Enquiry popup ---------------- */
.ro-enq {
  max-width: 520px; width: 100%;
  background: var(--ro-surface);
  border-radius: var(--ro-r-lg);
  padding: clamp(26px, 4vw, 44px);
}
.ro-enq__label { color: var(--ro-accent); }
.ro-enq__title { font-family: var(--ro-fh); font-size: 1.9rem; color: var(--ro-t1); margin: 6px 0 20px; font-weight: 500; }
.ro-enq__prod {
  display: flex; align-items: center; gap: 14px;
  background: var(--ro-surface-2);
  border: 1px solid var(--ro-line-soft);
  border-radius: var(--ro-r-sm);
  padding: 12px; margin-bottom: 20px;
}
.ro-enq__prod img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--ro-r-sm); flex: none; }
.ro-enq__prod small { display: block; font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ro-t3); }
.ro-enq__prod b { display: block; font-family: var(--ro-fh); font-size: 1.15rem; color: var(--ro-t1); margin-top: 3px; }
.ro-enq__form { display: flex; flex-direction: column; gap: 12px; }
.ro-enq__form input, .ro-enq__form textarea {
  width: 100%;
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-r-sm);
  background: var(--ro-bg);
  padding: 13px 15px;
  font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1);
  transition: border-color 0.3s ease;
}
.ro-enq__form input:focus, .ro-enq__form textarea:focus { outline: none; border-color: var(--ro-accent); }
.ro-enq__form textarea { resize: vertical; }
.ro-enq__send {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ro-dark); color: var(--ro-tw);
  border: none; border-radius: var(--ro-r-full);
  padding: 15px 28px; margin-top: 4px;
  font-family: var(--ro-fb); font-size: 1rem; cursor: pointer;
  transition: background 0.35s ease;
}
.ro-enq__send:hover { background: var(--ro-accent); }
.ro-enq__ok { font-family: var(--ro-fb); font-size: 1rem; color: #2f7d45; margin: 6px 0 0; text-align: center; }
.ro-enq__ok i { margin-right: 6px; }

/* ---------------- Page hero (inner pages) ---------------- */
.ro-pagehero {
  position: relative;
  overflow: hidden;
  background-color: var(--ro-bg-alt);
  background-image: url("../images/breadcrumb-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  text-align: center;
  padding-block: clamp(48px, 6vw, 92px);
  border-bottom: 1px solid var(--ro-line-soft);
}
/* leaf motif also behind the homepage banner */
.ro-banner {
  background-color: var(--ro-bg-alt);
  background-image: url("../images/breadcrumb-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.ro-pagehero__title { font-family: var(--ro-fh); font-size: clamp(2.2rem, 4.4vw, 3.6rem); color: var(--ro-t1); margin: 0 0 10px; font-weight: 500; }
.ro-pagehero__crumb { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t2); margin: 0; }
.ro-pagehero__crumb a { color: var(--ro-t1); text-decoration: none; }
.ro-pagehero__crumb a:hover { color: var(--ro-accent); }
.ro-pagehero__crumb span { margin: 0 8px; color: var(--ro-t3); }

/* ---------------- Shop page (left sidebar) ---------------- */
.ro-shoppage__inner { display: grid; grid-template-columns: 300px 1fr; gap: var(--ro-sp-lg); align-items: start; }
.ro-side { display: flex; flex-direction: column; gap: var(--ro-sp-md); position: sticky; top: 96px; }
.ro-side__search { display: flex; border: 1px solid var(--ro-line); border-radius: var(--ro-r-sm); overflow: hidden; background: var(--ro-surface); }
.ro-side__search input { flex: 1; border: none; background: none; padding: 13px 14px; font-family: var(--ro-fb); color: var(--ro-t1); }
.ro-side__search input:focus { outline: none; }
.ro-side__search button { border: none; background: none; padding: 0 14px; color: var(--ro-t2); cursor: pointer; }
.ro-side__box { background: var(--ro-surface-2); border-radius: var(--ro-r-sm); padding: 22px 20px; }
.ro-side__title { font-family: var(--ro-fh); font-size: 1.4rem; color: var(--ro-t1); margin: 0 0 14px; font-weight: 500; }
.ro-side__list { list-style: none; margin: 0; padding: 0; }
.ro-side__list li { display: flex; justify-content: space-between; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--ro-line-soft); font-family: var(--ro-fb); font-size: 1rem; }
.ro-side__list li:last-child { border-bottom: none; }
.ro-side__list a { color: var(--ro-t2); text-decoration: none; }
.ro-side__list a:hover { color: var(--ro-accent); }
.ro-side__list span { color: var(--ro-t3); font-size: 1rem; }
.ro-side__range { width: 100%; accent-color: var(--ro-accent); }
.ro-side__pricehint { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); margin: 8px 0 0; }
.ro-side__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ro-side__tags a { background: var(--ro-dark); color: var(--ro-tw); font-family: var(--ro-fb); font-size: 1rem; padding: 7px 13px; border-radius: 2px; text-decoration: none; transition: background 0.3s ease; }
.ro-side__tags a:hover { background: var(--ro-accent); }
.ro-side__promo { position: relative; border-radius: var(--ro-r-sm); overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; }
.ro-side__promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ro-side__promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,17,16,.85), transparent 70%); }
.ro-side__promo div { position: relative; z-index: 2; padding: 20px; color: #fff; }
.ro-side__promo span { font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.ro-side__promo b { display: block; font-family: var(--ro-fh); font-size: 1.5rem; margin: 4px 0 12px; }
.ro-shoppage__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: var(--ro-sp-md); }
.ro-shoppage__bar p { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t2); margin: 0; }
.ro-shoppage__bar select { padding: 11px 14px; border: 1px solid var(--ro-line); border-radius: var(--ro-r-sm); background: var(--ro-surface); font-family: var(--ro-fb); color: var(--ro-t1); }
.ro-shoppage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ro-sp-md); }
.ro-stars { color: #e0a93b; font-size: 0.72rem; display: block; margin: 4px 0 6px; }
.ro-pager { display: flex; gap: 8px; justify-content: center; margin-top: var(--ro-sp-xl); }
.ro-pager a, .ro-pager span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--ro-line); border-radius: var(--ro-r-sm); font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1); text-decoration: none; }
.ro-pager .is-current, .ro-pager a:hover { background: var(--ro-dark); color: var(--ro-tw); border-color: var(--ro-dark); }

/* ---------------- Product detail ---------------- */
.ro-pdp__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.ro-pdp__main { display: block; border: 1px solid var(--ro-line-soft); border-radius: var(--ro-r-sm); overflow: hidden; background: var(--ro-surface); position: relative; cursor: zoom-in; }
/* Hover zoom — transform-origin tracks the cursor, set from JS. */
.ro-pdp__main img { transition: transform 0.45s var(--ro-ease); }
.ro-pdp__main.is-zoom img { transform: scale(2); transition: transform 0.15s ease-out; }
@media (hover: none) { .ro-pdp__main { cursor: default; } .ro-pdp__main.is-zoom img { transform: none; } }
/* height:auto is load-bearing — WP emits width/height attrs on the img, and
   aspect-ratio is ignored while both dimensions resolve to definite values.
   contain, not cover: the frame stays square but the whole piece stays visible
   and zoomable — cover was cropping the top and bottom off portrait shots. */
.ro-pdp__main img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; display: block; }
.ro-pdp__thumbs { display: flex; gap: 10px; margin-top: 10px; }
.ro-pdp__thumbs button { flex: 1; border: 1px solid var(--ro-line-soft); background: none; padding: 0; border-radius: var(--ro-r-sm); overflow: hidden; cursor: pointer; transition: border-color 0.3s ease; }
.ro-pdp__thumbs button.is-active { border-color: var(--ro-accent); }
.ro-pdp__thumbs img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; }
.ro-pdp__title { font-family: var(--ro-fh); font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--ro-t1); margin: 0 0 10px; font-weight: 500; }
.ro-pdp__price { font-family: var(--ro-fb); font-size: 1.25rem; color: var(--ro-accent); margin: 0 0 6px; }
.ro-pdp__price s { color: var(--ro-t3); font-size: 1rem; margin-left: 8px; }
.ro-pdp__rule { border: none; border-top: 1px solid var(--ro-line-soft); margin: 18px 0; }
.ro-pdp__meta { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-accent); margin: 0 0 14px; }
.ro-pdp__desc { font-family: var(--ro-fb); font-size: var(--ro-fs-body); line-height: 1.75; color: var(--ro-t2); margin: 0 0 22px; }
.ro-pdp__optlabel { font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-t2); margin-right: 12px; }
.ro-pdp__opt { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.ro-pdp__pills { display: flex; gap: 8px; }
.ro-pdp__pills button { border: 1px solid var(--ro-line); background: var(--ro-surface); color: var(--ro-t1); font-family: var(--ro-fb); font-size: 1rem; padding: 8px 14px; border-radius: 3px; cursor: pointer; }
.ro-pdp__pills button.is-active { border-color: var(--ro-accent); color: var(--ro-accent); }
.ro-pdp__buy { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.ro-pdp__qty { display: flex; border: 1px solid var(--ro-line); border-radius: 3px; overflow: hidden; }
.ro-pdp__qty button { width: 38px; border: none; background: var(--ro-surface); color: var(--ro-t2); font-size: 1rem; cursor: pointer; }
.ro-pdp__qty input { width: 46px; border: none; text-align: center; background: var(--ro-surface); font-family: var(--ro-fb); color: var(--ro-t1); }
.ro-pdp__qty input:focus { outline: none; }
.ro-pdp__cart { background: var(--ro-dark); color: var(--ro-tw); font-family: var(--ro-fb); font-size: var(--ro-fs-body); padding: 14px 34px; border-radius: 3px; text-decoration: none; transition: background 0.3s ease; }
.ro-pdp__cart:hover { background: var(--ro-accent); }
/* grid+place-items centres the icon (block alone left it in the top-left corner);
   align-self:stretch keeps this square the same height as the Enquire Now button. */
.ro-pdp__wish { display: grid; place-items: center; align-self: stretch; width: 55px; font-size: 1.15rem; border: 1px solid var(--ro-line); background: var(--ro-surface); border-radius: 3px; cursor: pointer; color: var(--ro-t2); }
.ro-pdp__wish:hover { color: var(--ro-accent); border-color: var(--ro-accent); }
.ro-pdp__ticks { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-t2); }
.ro-pdp__ticks i { color: var(--ro-accent); margin-right: 8px; }
.ro-pdp__pickup { border-top: 1px solid var(--ro-line-soft); padding-top: 18px; margin-bottom: 16px; }
.ro-pdp__pickup b { display: block; font-family: var(--ro-fh); font-size: 1.15rem; color: var(--ro-t1); }
.ro-pdp__pickup span { display: block; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); margin: 4px 0 6px; }
.ro-pdp__pickup a { font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-accent); }
.ro-pdp__share { font-family: var(--ro-fb); font-size: var(--ro-fs-body); color: var(--ro-t2); display: flex; align-items: center; gap: 12px; }
.ro-pdp__share a { color: var(--ro-t2); }
.ro-pdp__share a:hover { color: var(--ro-accent); }
.ro-pdp__tabs { margin-top: clamp(40px, 5vw, 72px); }
.ro-pdp__tabnav { display: flex; gap: var(--ro-sp-md); border-bottom: 1px solid var(--ro-line-soft); margin-bottom: var(--ro-sp-lg); }
.ro-pdp__tabnav .ro-tabs__btn { background: none; border: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 12px 4px; font-size: var(--ro-fs-body); }
.ro-pdp__tabnav .ro-tabs__btn.is-active { background: none; color: var(--ro-accent); border-bottom-color: var(--ro-accent); }
/* Single column since the side image was removed. Capped so lines stay
   readable — the container is 1440 wide and full-bleed prose is unreadable. */
.ro-pdp__tabgrid { display: grid; grid-template-columns: minmax(0, 90ch); gap: var(--ro-sp-lg); align-items: start; }
.ro-pdp__tabgrid p { font-family: var(--ro-fb); font-size: var(--ro-fs-body); line-height: 1.8; color: var(--ro-t2); margin: 0 0 16px; }
.ro-pdp__tabgrid img { width: 100%; border-radius: var(--ro-r-sm); }
/* Spec pairs, two per row — the old full-width table left half the row empty. */
.ro-pdp__specs { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: var(--ro-sp-xl); margin: 0; font-family: var(--ro-fb); font-size: var(--ro-fs-body); }
.ro-pdp__spec { display: grid; grid-template-columns: minmax(120px, 200px) 1fr; gap: var(--ro-sp-md); padding: 14px 12px; border-bottom: 1px solid var(--ro-line-soft); }
.ro-pdp__specs dt { color: var(--ro-t1); font-weight: 500; }
.ro-pdp__specs dd { margin: 0; color: var(--ro-t2); }

/* ---------------- About values ---------------- */
.ro-about__vals { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ro-sp-md); }
.ro-about__val { background: var(--ro-surface); border: 1px solid var(--ro-line-soft); border-radius: var(--ro-r-sm); padding: 28px 22px; text-align: center; }
.ro-about__val i { font-size: 1.5rem; color: var(--ro-accent); }
.ro-about__val h3 { font-family: var(--ro-fh); font-size: 1.3rem; color: var(--ro-t1); margin: 14px 0 8px; font-weight: 500; }
.ro-about__val p { font-family: var(--ro-fb); font-size: 1rem; line-height: 1.65; color: var(--ro-t2); margin: 0; }

/* ---------------- 404 ---------------- */
.ro-404 { background: var(--ro-bg-alt); text-align: center; padding-block: clamp(80px, 11vw, 170px); }
.ro-404__num { font-family: var(--ro-fh); font-size: clamp(6rem, 17vw, 13rem); line-height: 0.9; color: var(--ro-accent); opacity: .28; margin: 0; }
.ro-404__title { font-family: var(--ro-fh); font-size: clamp(1.8rem, 3.6vw, 3rem); color: var(--ro-t1); margin: -14px 0 12px; font-weight: 500; }
.ro-404__text { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t2); max-width: 520px; margin: 0 auto 30px; }
.ro-404__ghost { border: 1px solid var(--ro-t1); color: var(--ro-t1); }
.ro-404__ghost:hover { background: var(--ro-dark); color: var(--ro-tw); }

/* ---------------- Legal pages ---------------- */
.ro-legal { max-width: 860px; }
.ro-legal__updated { font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ro-t3); margin: 0 0 18px; }
.ro-legal__intro { font-family: var(--ro-fb); font-size: 1.05rem; line-height: 1.8; color: var(--ro-t2); margin: 0 0 12px; padding-bottom: 26px; border-bottom: 1px solid var(--ro-line-soft); }
.ro-legal__h { font-family: var(--ro-fh); font-size: 1.6rem; color: var(--ro-t1); margin: 38px 0 12px; font-weight: 500; }
.ro-legal p { font-family: var(--ro-fb); font-size: 1rem; line-height: 1.85; color: var(--ro-t2); margin: 0 0 12px; }
.ro-legal a { color: var(--ro-accent); }
.ro-legal b { color: var(--ro-t1); font-weight: 500; }
.ro-legal__box { margin-top: 44px; background: var(--ro-surface-2); border: 1px solid var(--ro-line-soft); border-radius: var(--ro-r-sm); padding: 24px 26px; }
.ro-legal__box b { font-family: var(--ro-fh); font-size: 1.25rem; display: block; margin-bottom: 6px; }
.ro-legal__box p { margin: 0; }

/* ---------------- Contact page ---------------- */
.ro-contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.ro-contact__info h2 { margin: 8px 0 14px; }
.ro-contact__info > p { margin-bottom: 28px; max-width: 460px; }
.ro-contact__list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ro-contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.ro-contact__ic { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--ro-surface-2); border: 1px solid var(--ro-line-soft); display: grid; place-items: center; color: var(--ro-accent); }
.ro-contact__list b { display: block; font-family: var(--ro-fb); font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ro-t3); margin-bottom: 3px; }
.ro-contact__list span, .ro-contact__list a { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1); text-decoration: none; line-height: 1.55; }
.ro-contact__list a:hover { color: var(--ro-accent); }
.ro-contact__socials { display: flex; gap: 10px; }
.ro-contact__socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ro-line); display: grid; place-items: center; color: var(--ro-t2); text-decoration: none; transition: all 0.3s ease; }
.ro-contact__socials a:hover { background: var(--ro-dark); color: var(--ro-tw); border-color: var(--ro-dark); }
.ro-contact__card { background: var(--ro-surface); border: 1px solid var(--ro-line-soft); border-radius: var(--ro-r-lg); padding: clamp(26px, 3.5vw, 44px); box-shadow: 0 24px 60px -40px rgba(0,0,0,.4); }
.ro-contact__sub { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); font-style: italic; margin: 0 0 22px; }
.ro-contact__card select { width: 100%; border: 1px solid var(--ro-line); border-radius: var(--ro-r-sm); background: var(--ro-bg); padding: 13px 15px; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1); }
.ro-contact__map { border-radius: var(--ro-r-lg); overflow: hidden; border: 1px solid var(--ro-line-soft); line-height: 0; }
.ro-contact__map iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.25); }

/* ---------------- Search page ---------------- */
.ro-search__bar { display: flex; align-items: center; gap: 12px; max-width: 720px; margin: 0 auto; background: var(--ro-surface); border: 1px solid var(--ro-line); border-radius: var(--ro-r-full); padding: 6px 6px 6px 22px; }
.ro-search__bar i { color: var(--ro-t3); }
.ro-search__bar input { flex: 1; border: none; background: none; padding: 13px 0; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t1); }
.ro-search__bar input:focus { outline: none; }
.ro-search__bar button { border: none; background: var(--ro-dark); color: var(--ro-tw); font-family: var(--ro-fb); font-size: 1rem; padding: 13px 30px; border-radius: var(--ro-r-full); cursor: pointer; transition: background 0.3s ease; }
.ro-search__bar button:hover { background: var(--ro-accent); }
.ro-search__hint { text-align: center; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); margin: 18px 0 0; }
.ro-search__chip { display: inline-block; margin: 0 4px; padding: 5px 13px; border-radius: var(--ro-r-full); background: var(--ro-surface-2); border: 1px solid var(--ro-line-soft); color: var(--ro-t2); text-decoration: none; font-size: 1rem; }
.ro-search__chip:hover { border-color: var(--ro-accent); color: var(--ro-accent); }
.ro-search__count { text-align: center; font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t2); margin: 34px 0 22px; }
.ro-search__empty { text-align: center; padding: 60px 20px; }
.ro-search__empty i { font-size: 2.4rem; color: var(--ro-gold-soft); }
.ro-search__empty h3 { font-family: var(--ro-fh); font-size: 1.7rem; color: var(--ro-t1); margin: 16px 0 8px; font-weight: 500; }
.ro-search__empty p { font-family: var(--ro-fb); color: var(--ro-t2); margin: 0 0 22px; }
.ro-search__empty .ro-banner__btn { display: inline-flex; }

@media (max-width: 1024px) {
  .ro-contact { grid-template-columns: 1fr; }
}

/* ---------------- WhatsApp community ---------------- */
.ro-wacom {
  position: relative;
  text-align: center;
  background-image:
    linear-gradient(rgba(18, 17, 16, 0.9), rgba(18, 17, 16, 0.93)),
    url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-block: 1px solid rgba(37, 211, 102, 0.28);
}
.ro-wacom__inner {
  position: relative;
  background: rgba(28, 25, 23, 0.5);
  border: 1px solid rgba(217, 191, 167, 0.2);
  border-radius: var(--ro-r-lg);
  padding: clamp(38px, 5vw, 64px) clamp(20px, 4vw, 52px);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.85);
}
.ro-wacom__badge {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.14);
}
.ro-wacom h2 { color: #fff; margin: 6px 0 12px; }
.ro-wacom .ro-script { color: var(--ro-gold-soft); }
.ro-wacom__text { font-family: var(--ro-fb); font-size: 1rem; line-height: 1.75; color: rgba(247, 244, 238, 0.8); max-width: 560px; margin: 0 auto 22px; }
.ro-wacom__list { list-style: none; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; padding: 0; margin: 0 0 28px; }
.ro-wacom__list li { font-family: var(--ro-fb); font-size: 1rem; color: rgba(247, 244, 238, 0.75); }
.ro-wacom__list i { color: #25d366; margin-right: 7px; }
.ro-wacom__btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff;
  font-family: var(--ro-fb); font-size: 1rem;
  padding: 16px 38px; border-radius: var(--ro-r-full);
  text-decoration: none;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, 0.75);
  transition: transform 0.35s ease, background 0.35s ease;
}
.ro-wacom__btn i { font-size: 1.3rem; }
.ro-wacom__btn:hover { background: #1fbb59; transform: translateY(-3px); }
.ro-wacom__note { font-family: var(--ro-fb); font-size: 1rem; color: var(--ro-t3); margin: 16px 0 0; }

/* ============================================================
   RESPONSIVE — header / nav (mobile fixes)
   ============================================================ */
@media (max-width: 1024px) {
  /* announce bar: keep to one tidy line */
  .ro-announce__text { font-size: 1rem; letter-spacing: 0.06em; line-height: 1.5; padding-inline: 12px; }
  /* phone pill -> icon only, so the row never overflows */
  .ro-nav__phone { padding: 0; border: none; background: none; margin-right: 4px; }
  .ro-nav__phone-tx { display: none; }
  .ro-nav__phone-ic { width: 36px; height: 36px; font-size: 1rem; }
  .ro-nav__inner { gap: 10px; height: auto; padding-block: 10px; }
  .ro-nav__logo { max-height: 42px; }
  .ro-nav__actions { gap: 12px; }
}
@media (max-width: 560px) {
  /* announce: one clean line, never wraps or clips mid-word */
  .ro-announce__text {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin: 0 auto;
  }
  .ro-announce__text i { display: none; }
  /* keep the whole action row on one line — cart + burger must stay visible */
  .ro-nav__inner { flex-wrap: nowrap; gap: 8px; justify-content: space-between; }
  .ro-nav__links, .ro-nav__links--left { display: none !important; }
  .ro-nav__brand { flex: 0 1 auto; min-width: 0; margin: 0; }
  .ro-nav__logo { max-height: 32px; }
  .ro-nav__actions { gap: 8px; flex: none; margin-left: auto; }
  .ro-nav__icon-btn { font-size: 1rem; padding: 2px; }
  .ro-nav__phone { margin-right: 0; }
  .ro-nav__phone-ic { width: 30px; height: 30px; font-size: 1rem; }
  .ro-nav__burger { display: inline-flex !important; }
  .ro-nav__mobile { max-height: calc(100vh - 120px); overflow-y: auto; }
  .ro-wacom__list { gap: 10px; flex-direction: column; }
  /* beads read too heavy on a small banner */
  .ro-beads i { opacity: 0.035; }
  .ro-beads i:nth-child(3), .ro-beads i:nth-child(6) { display: none; }
}

/* nothing may push the page sideways on mobile */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .ro-marquee, .ro-marquee--band { max-width: 100vw; }
  .ro-side__search input { min-width: 0; }
  .ro-shoppage__inner, .ro-side, .ro-shoppage__main { min-width: 0; }
  img, iframe { max-width: 100%; }
}

/* ---------------- Footer background image ---------------- */
.ro-footer {
  position: relative;
  background-image: linear-gradient(rgba(18, 17, 16, 0.92), rgba(18, 17, 16, 0.94)), url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ---------------- Footer extras (payments) ---------------- */
.ro-footer__support b { display: block; font-family: var(--ro-fb); font-size: 1rem; margin-bottom: 4px; }
.ro-footer__support p { margin: 0 0 10px; font-family: var(--ro-fb); font-size: 1rem; }
.ro-footer__support a { color: var(--ro-gold-soft); text-decoration: none; }
.ro-footer__pay { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.ro-footer__pay i { font-size: 1.6rem; color: rgba(247,244,238,.75); }

/* ---------------- Reel Moments (video slider) ---------------- */
.ro-reels { background: var(--ro-surface); overflow: hidden; }
.ro-reels__head { margin-bottom: var(--ro-sp-lg); }
.ro-reels__rule { display: block; width: 62px; height: 2px; background: var(--ro-accent); margin: 14px auto 0; }
.ro-reels__wrap { position: relative; padding-inline: 56px; }
.ro-reels__slider .slick-list { overflow: visible; }
.ro-reel-cell { padding-inline: 10px; }
.ro-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0c0b;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s ease;
}
.ro-reel:hover { transform: translateY(-6px); }
.ro-reel__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ro-reel__caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  font-family: var(--ro-fb); font-size: 1rem; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  pointer-events: none;
}
.ro-reel__btn {
  position: absolute; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ro-reel__btn:hover { background: rgba(255, 255, 255, 0.42); }
.ro-reel__play { top: 12px; }
.ro-reel__mute { top: 54px; }
.ro-reels__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ro-line);
  background: var(--ro-surface);
  color: var(--ro-t1);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.3);
  transition: all 0.3s ease;
}
.ro-reels__nav:hover { background: var(--ro-dark); color: #fff; border-color: var(--ro-dark); }
.ro-reels__nav--prev { left: 4px; }
.ro-reels__nav--next { right: 4px; }

/* Footer now has 5 columns (brand + 3 nav + support) */
.ro-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; }
.ro-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--ro-sp-md); flex-wrap: wrap; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .ro-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .ro-footer__support { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .ro-banner__inner { grid-template-columns: 1fr; gap: var(--ro-sp-lg); }
  .ro-banner__media { aspect-ratio: 16 / 10; }
  .ro-banner__nav { position: static; justify-content: center; padding-bottom: 24px; left: auto; }
  .ro-gem__inner { grid-template-columns: 1fr; }
  .ro-gem__side { display: none; }
  .ro-shop { grid-template-columns: 1fr; }
  .ro-shop__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .ro-shoppage__inner { grid-template-columns: 1fr; }
  .ro-side { position: static; }
  .ro-pdp__inner { grid-template-columns: 1fr; }
  .ro-pdp__tabgrid { grid-template-columns: 1fr; }
  .ro-pdp__specs { grid-template-columns: 1fr; column-gap: 0; }
  .ro-about__vals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ro-shoppage__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-banner__indent, .ro-banner__indent2 { padding-left: 0; }
  .ro-gem__stats { grid-template-columns: repeat(2, 1fr); }
  .ro-shop__grid { grid-template-columns: repeat(2, 1fr); }
  .ro-tabs__btn { padding: 11px 22px; font-size: var(--ro-fs-body); }
  .ro-marquee__dot { width: 46px; height: 46px; }
}
@media (max-width: 520px) {
  .ro-shoppage__grid { grid-template-columns: 1fr; }
  .ro-about__vals { grid-template-columns: 1fr; }
  .ro-shop__grid { grid-template-columns: 1fr; }
  .ro-banner__quote { max-width: none; }
  .ro-story__ring { width: 96px; height: 96px; }
}

/* The source art was a fixed-ratio SVG; editor-uploaded photos are any
   ratio, so pin the frame square or a portrait upload renders very tall. */
.ro-custom__visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
