/* Rongin Box — Luxury Attar Storefront */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --rb-bg: #070605;
  --rb-bg-elevated: #12100e;
  --rb-bg-soft: #1a1612;
  /* Fallbacks — overridden by admin primary/secondary when available */
  --rb-gold: #c4a35a;
  --rb-gold-soft: #e0c889;
  --rb-gold-dim: rgba(196, 163, 90, 0.35);
  --rb-cream: #f3ebe0;
  --rb-cream-muted: #cbbba6;
  --rb-ink: #0c0a08;
  --rb-line: rgba(196, 163, 90, 0.22);
  --rb-danger: #a34a3a;
  --rb-font-display: 'Cormorant Garamond', Georgia, serif;
  --rb-font-body: 'Outfit', sans-serif;
  --rb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body.rb-site {
  /* Wire admin primary → gold, secondary/hover → soft gold */
  --rb-gold: var(--color-theme, #c4a35a);
  --rb-gold-soft: var(--color-accent, #e0c889);
  --rb-gold-dim: color-mix(in srgb, var(--rb-gold) 35%, transparent);
  --rb-line: color-mix(in srgb, var(--rb-gold) 22%, transparent);
  background: var(--rb-bg) !important;
  color: var(--rb-cream) !important;
  font-family: var(--rb-font-body) !important;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Neutralize legacy color.php red/blue button spray on luxury theme */
body.rb-site .btn:not(.rb-btn-gold):not(.btn-primary):not(#buy_now_btn):not(#add_to_cart_btn),
body.rb-site .footer-social-links a,
body.rb-site .a2a_kit a {
  background: transparent !important;
}
body.rb-site .btn-outline-primary,
body.rb-site .rb-btn-ghost,
body.rb-site .rb-add-box {
  background: transparent !important;
  color: var(--rb-cream) !important;
}
body.rb-site .rb-btn-gold,
body.rb-site .btn-primary,
body.rb-site #buy_now_btn {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}
body.rb-site .rb-add-box:hover,
body.rb-site .rb-btn-ghost:hover {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}

body.rb-site h1, body.rb-site h2, body.rb-site h3, body.rb-site h4,
body.rb-site .rb-display {
  font-family: var(--rb-font-display) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--rb-cream);
}

body.rb-site a { color: var(--rb-gold-soft); text-decoration: none; transition: color .25s var(--rb-ease); }
body.rb-site a:hover { color: var(--rb-gold); }

/* Hide legacy chrome that fights the luxury look */
body.rb-site .top-info-bar,
body.rb-site .citymart-topbar,
body.rb-site .category-navbar,
body.rb-site .cm-header,
body.rb-site .site-footer .intro-part,
body.rb-site #preloader { display: none !important; }

body.rb-site .site-footer { display: none !important; }

/* ---------- Header ---------- */
.rb-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(7, 6, 5, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rb-line);
}
.rb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}
.rb-brand {
  font-family: var(--rb-font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--rb-cream) !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.rb-brand > .rb-gold-shimmer {
  display: block;
  line-height: 1.2;
  padding-bottom: 0.1em;
}
.rb-brand > span:last-child,
.rb-brand-tag {
  display: block;
  font-family: var(--rb-font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rb-gold);
  -webkit-text-fill-color: var(--rb-gold);
  background: none;
  margin-top: 0;
  line-height: 1.3;
  white-space: nowrap;
}
.rb-header-left { display: none; align-items: center; }
.rb-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rb-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-cream-muted) !important;
}
.rb-nav a:hover { color: var(--rb-gold) !important; }
.rb-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.rb-header-search {
  display: inline-flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 2.5rem;
  border: 1px solid var(--rb-line);
  background: transparent;
  overflow: hidden;
}
.rb-search-input {
  width: 170px;
  height: 100%;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  color: var(--rb-cream) !important;
  padding: 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.rb-search-input::placeholder {
  color: var(--rb-cream-muted);
  opacity: 0.8;
}
.rb-search-btn {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 100%;
  border: 0;
  border-left: 1px solid var(--rb-line);
  background: transparent;
  color: var(--rb-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.rb-search-btn:hover { color: var(--rb-gold-soft); background: rgba(196,163,90,0.08); }
.rb-icon-btn {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--rb-line);
  background: transparent;
  color: var(--rb-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, color .25s;
}
.rb-icon-btn:hover { border-color: var(--rb-gold); color: var(--rb-gold); }
.rb-icon-btn .cm-badge,
.rb-icon-btn .cart_count,
.rb-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 0;
  background: var(--rb-gold);
  color: var(--rb-ink);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rb-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream);
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
}
.rb-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1045;
}
.rb-mobile-backdrop.open { display: block; }
.rb-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100%;
  background: var(--rb-bg-elevated);
  border-right: 1px solid var(--rb-line);
  z-index: 1050;
  padding: 1.25rem 1.35rem 2rem;
  transform: translateX(-105%);
  transition: transform .35s var(--rb-ease);
  overflow-y: auto;
}
.rb-mobile-drawer.open { transform: translateX(0); }
.rb-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-family: var(--rb-font-display);
  font-size: 1.5rem;
}
.rb-mobile-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--rb-line);
  background: transparent;
  color: var(--rb-cream);
  cursor: pointer;
}
.rb-mobile-search {
  display: flex;
  align-items: stretch;
  height: 2.6rem;
  border: 1px solid var(--rb-line);
  margin-bottom: 1rem;
}
.rb-mobile-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--rb-cream);
  padding: 0 0.85rem;
  outline: none;
  min-width: 0;
}
.rb-mobile-search button {
  width: 2.6rem;
  border: 0;
  border-left: 1px solid var(--rb-line);
  background: transparent;
  color: var(--rb-gold);
}
.rb-mobile-drawer > a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rb-line);
  color: var(--rb-cream-muted) !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
body.rb-menu-open { overflow: hidden; }
.rb-mobile-panel { display: none !important; }

@media (min-width: 1200px) {
  .rb-header-search { display: inline-flex !important; }
}
@media (max-width: 1199px) {
  .rb-header-search { display: none !important; }
}
@media (min-width: 992px) {
  .rb-mobile-toggle,
  .rb-header-left,
  .rb-mobile-drawer,
  .rb-mobile-backdrop { display: none !important; }
}
@media (max-width: 991px) {
  .rb-nav { display: none !important; }
  .rb-header-left,
  .rb-mobile-toggle { display: inline-flex !important; }
  .rb-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0;
  }
  .rb-header-left { justify-self: start; }
  .rb-brand {
    justify-self: center;
    text-align: center;
    font-size: 1.35rem;
    align-items: center;
  }
  .rb-brand-tag { display: none; }
  .rb-header-actions { justify-self: end; gap: 0.45rem; }
  .rb-account-btn { display: none; }
}

/* ---------- Buttons ---------- */
.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--rb-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .35s var(--rb-ease);
  cursor: pointer;
}
.rb-btn-gold {
  background: var(--rb-gold);
  color: var(--rb-ink) !important;
  border-color: var(--rb-gold);
}
.rb-btn-gold:hover {
  background: var(--rb-gold-soft);
  color: var(--rb-ink) !important;
}
.rb-btn-ghost {
  background: transparent;
  color: var(--rb-cream) !important;
  border-color: var(--rb-line);
}
.rb-btn-ghost:hover {
  border-color: var(--rb-gold);
  color: var(--rb-gold) !important;
}

/* ---------- Home Hero ---------- */
.rb-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,163,90,0.14), transparent 55%),
    linear-gradient(180deg, #14110e 0%, #070605 100%);
}
.rb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,6,5,0.92) 0%, rgba(7,6,5,0.55) 48%, rgba(7,6,5,0.25) 100%);
  pointer-events: none;
}
.rb-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rb-hero-media img,
.rb-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  animation: rbKen 28s ease-in-out infinite alternate;
}
@keyframes rbKen {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.rb-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 5.5rem;
}
.rb-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 1.25rem;
}
.rb-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 14ch;
  margin: 0 0 1rem;
  color: var(--rb-cream);
}
.rb-hero-ar {
  font-family: var(--rb-font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: var(--rb-gold-soft);
  direction: rtl;
  margin-bottom: 1.5rem;
}
.rb-hero-lead {
  max-width: 36rem;
  color: var(--rb-cream-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.rb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.rb-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  border-top: 1px solid var(--rb-line);
  padding-top: 1.75rem;
}
.rb-hero-stats strong {
  display: block;
  font-family: var(--rb-font-display);
  font-size: 2rem;
  color: var(--rb-cream);
  line-height: 1;
}
.rb-hero-stats strong.rb-gold-shimmer {
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.rb-hero-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
  animation: rbPulse 2.4s ease-in-out infinite;
}
@keyframes rbFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rbPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* ---------- Marquee ---------- */
.rb-marquee {
  overflow: hidden;
  border-block: 1px solid var(--rb-line);
  background: var(--rb-bg-elevated);
  padding: 0.9rem 0;
}
.rb-marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: rbMarquee 40s linear infinite;
  white-space: nowrap;
}
.rb-marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-marquee-track span::after {
  content: '✦';
  margin-left: 3rem;
  color: var(--rb-gold);
}
@keyframes rbMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.rb-section { padding: 5.5rem 0; }
.rb-section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}
.rb-section-head .rb-eyebrow { margin-bottom: 0.75rem; }
.rb-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}
.rb-section-head p {
  color: var(--rb-cream-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Collections */
.rb-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rb-line);
  border: 1px solid var(--rb-line);
}
.rb-collection {
  background: var(--rb-bg-elevated);
  padding: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--rb-ease);
}
.rb-collection-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform .7s var(--rb-ease), opacity .4s;
}
.rb-collection-media:hover > img {
  transform: scale(1.06);
  opacity: 0.7;
}
.rb-collection-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 360px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(7,6,5,.15) 0%, rgba(7,6,5,.88) 100%);
}
.rb-ar-mini {
  font-family: var(--rb-font-display);
  color: var(--rb-gold-soft);
  direction: rtl;
  font-size: 0.95rem;
  margin: 0.15rem 0 0.35rem;
}
.rb-note {
  color: var(--rb-cream-muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0 0 0.65rem;
  min-height: 2.2em;
}
.rb-btn-sm {
  padding: 0.65rem 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

/* Elegant Add to Box CTA */
.rb-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.rb-add-box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  margin-top: 0.15rem;
  padding: 0.8rem 1rem;
  background: transparent;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream) !important;
  font-family: var(--rb-font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .35s var(--rb-ease), border-color .35s var(--rb-ease), color .35s var(--rb-ease);
}
.rb-add-box i {
  font-size: 0.7rem;
  color: var(--rb-gold);
  transition: transform .35s var(--rb-ease), color .35s var(--rb-ease);
}
.rb-add-box:hover {
  background: var(--rb-gold);
  border-color: var(--rb-gold);
  color: var(--rb-ink) !important;
}
.rb-add-box:hover i {
  color: var(--rb-ink);
  transform: translateX(3px);
}
.rb-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s var(--rb-ease);
}
.rb-product:hover .rb-card-actions,
.product-card:hover .rb-card-actions {
  opacity: 1;
  transform: none;
}
.rb-icon-action {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 6, 5, 0.82) !important;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream) !important;
  transition: border-color .25s, color .25s, background .25s;
}
.rb-icon-action:hover {
  border-color: var(--rb-gold);
  color: var(--rb-gold) !important;
  background: rgba(7, 6, 5, 0.95) !important;
}
.rb-ritual-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--rb-line);
  background: var(--rb-bg-elevated);
}
.rb-ritual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--rb-ease);
}
.rb-ritual-media:hover .rb-ritual-img img { transform: scale(1.05); }
.rb-newsletter-bg {
  background-size: cover !important;
  background-position: center !important;
}
.rb-heritage-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.rb-collection::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--rb-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--rb-ease);
}
.rb-collection:hover { background: var(--rb-bg-soft); }
.rb-collection:hover::after { transform: scaleX(1); }
.rb-collection-num {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--rb-gold);
  text-transform: uppercase;
}
.rb-collection h3 {
  font-size: 1.85rem;
  margin: 1rem 0 0.4rem;
}
.rb-collection p {
  color: var(--rb-cream-muted);
  font-size: 0.92rem;
  margin: 0;
}
.rb-collection .rb-link {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rb-gold) !important;
}

@media (max-width: 991px) {
  .rb-collections { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .rb-collections { grid-template-columns: 1fr; }
  .rb-hero-stats { gap: 1.5rem; }
  .rb-scroll-hint { display: none; }
}

/* Product filters + grid on home */
.rb-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.rb-filter-row button,
.rb-filter-row a {
  background: transparent;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream-muted);
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.rb-filter-row button.active,
.rb-filter-row a.active,
.rb-filter-row button:hover,
.rb-filter-row a:hover {
  border-color: var(--rb-gold);
  color: var(--rb-gold);
}

.rb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1199px) { .rb-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .rb-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* Product card — luxury, no heavy "card" chrome */
body.rb-site .product-card,
.rb-product {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rb-product-media,
body.rb-site .product-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rb-bg-elevated);
  margin-bottom: 1rem;
}
.rb-product-media img,
body.rb-site .product-thumb img,
body.rb-site .product-thumb .primary-img,
body.rb-site .product-thumb .hover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--rb-ease), opacity .4s;
}
body.rb-site .product-thumb .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}
body.rb-site .product-card:hover .product-thumb .primary-img { transform: scale(1.05); }
body.rb-site .product-card:hover .product-thumb .hover-img { opacity: 1; transform: scale(1.05); }

body.rb-site .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem !important;
  font-weight: 500;
}
body.rb-site .product-badge2 { left: auto; right: 12px; background: var(--rb-bg) !important; color: var(--rb-gold) !important; border: 1px solid var(--rb-line) !important; }

body.rb-site .product-title,
body.rb-site .product-title a {
  font-family: var(--rb-font-display) !important;
  font-size: 1.25rem !important;
  color: var(--rb-cream) !important;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
body.rb-site .product-category a,
body.rb-site .product-category {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-gold) !important;
}
body.rb-site .product-price {
  font-size: 0.95rem !important;
  color: var(--rb-cream) !important;
  font-weight: 400 !important;
}
body.rb-site .product-price del {
  color: var(--rb-cream-muted) !important;
  margin-right: 0.4rem;
  opacity: 0.7;
}
body.rb-site .product-button-group,
body.rb-site .product-hidden-icon {
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--rb-ease);
}
body.rb-site .product-card:hover .product-button-group,
body.rb-site .product-card:hover .product-hidden-icon,
body.rb-site .product-card:hover .rb-card-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Catalog / shared product cards — refine Add to Box */
body.rb-site .product-button-group {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 3;
}
body.rb-site .product-hidden-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 4;
}
body.rb-site .product-hidden-icon .product-button {
  background: rgba(7,6,5,0.85) !important;
  color: var(--rb-cream) !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rb-line) !important;
  padding: 0 !important;
}
body.rb-site .buy-now-btn,
body.rb-site a.product-button.buy-now-btn,
body.rb-site .stockoutProduct,
body.rb-site .affiliate-link-product {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  margin: 0 !important;
  padding: 0.85rem 1rem !important;
  background: color-mix(in srgb, var(--rb-bg) 55%, transparent) !important;
  backdrop-filter: blur(8px);
  border: 0 !important;
  border-top: 1px solid var(--rb-line) !important;
  color: var(--rb-cream) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0 !important;
  transition: background .3s var(--rb-ease), color .3s var(--rb-ease);
}
body.rb-site .buy-now-btn:hover,
body.rb-site a.product-button.buy-now-btn:hover {
  background: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}
body.rb-site .buy-now-btn .add-to-cart-text,
body.rb-site .add-to-cart-text {
  background: transparent !important;
  color: inherit !important;
  width: 100%;
  text-align: left;
  padding: 0 !important;
  font-size: inherit !important;
  letter-spacing: inherit;
}
body.rb-site .product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 0.15rem;
}
body.rb-site .product-card-body .rb-add-box {
  margin-top: auto;
}

/* Product detail page CTAs */
body.rb-site #buy_now_btn,
body.rb-site #add_to_cart_btn,
body.rb-site .p-action-button .btn-primary {
  background: transparent !important;
  border: 1px solid var(--rb-line) !important;
  color: var(--rb-cream) !important;
  border-radius: 0 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  padding: 0.95rem 1.25rem !important;
  transition: background .3s, border-color .3s, color .3s;
}
body.rb-site #add_to_cart_btn,
body.rb-site #buy_now_btn:hover,
body.rb-site #add_to_cart_btn:hover {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}
body.rb-site #buy_now_btn {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}
body.rb-site #add_to_cart_btn {
  background: transparent !important;
  border-color: var(--rb-line) !important;
  color: var(--rb-cream) !important;
}
body.rb-site #add_to_cart_btn:hover {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}

/* Quote / heritage */
.rb-quote {
  text-align: center;
  padding: 5rem 1rem;
  background:
    radial-gradient(ellipse at center, rgba(196,163,90,0.08), transparent 60%),
    var(--rb-bg);
}
.rb-quote blockquote {
  font-family: var(--rb-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  line-height: 1.3;
  color: var(--rb-cream);
}
.rb-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-gold);
}

.rb-heritage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.rb-heritage-visual {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(196,163,90,0.2), transparent 50%),
    var(--rb-bg-elevated);
  border: 1px solid var(--rb-line);
}
.rb-heritage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.7;
}
.rb-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.rb-stat-grid strong {
  display: block;
  font-family: var(--rb-font-display);
  font-size: 2.2rem;
  color: var(--rb-cream);
}
.rb-stat-grid span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
@media (max-width: 991px) {
  .rb-heritage-grid { grid-template-columns: 1fr; }
  .rb-heritage-visual { min-height: 280px; }
}

/* Ritual / unboxing */
.rb-ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rb-ritual {
  border-top: 1px solid var(--rb-gold-dim);
  padding-top: 1.5rem;
}
.rb-ritual h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.rb-ritual p {
  color: var(--rb-cream-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 991px) { .rb-ritual-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .rb-ritual-grid { grid-template-columns: 1fr; } }

/* Gallery strip */
.rb-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.rb-gallery figure {
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rb-bg-elevated);
  position: relative;
}
.rb-gallery figure:nth-child(2),
.rb-gallery figure:nth-child(4) { margin-top: 2rem; }
.rb-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--rb-ease);
  opacity: 0.85;
}
.rb-gallery figure:hover img { transform: scale(1.06); opacity: 1; }
.rb-gallery figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-cream);
}
@media (max-width: 767px) {
  .rb-gallery { grid-template-columns: repeat(2, 1fr); }
  .rb-gallery figure:nth-child(2),
  .rb-gallery figure:nth-child(4) { margin-top: 0; }
}

/* Collector Stories / Reviews — match Readdy #reviews */
.rb-reviews {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: var(--rb-bg);
}
.rb-reviews-glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  border-radius: 50%;
  background: color-mix(in srgb, var(--rb-gold) 6%, transparent);
  filter: blur(80px);
  pointer-events: none;
}
.rb-reviews-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  position: relative;
}
.rb-reviews-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.rb-reviews-eyebrow .rb-line {
  width: 2rem;
  height: 1px;
  background: var(--rb-gold);
}
.rb-reviews-eyebrow span:not(.rb-line) {
  font-family: var(--rb-font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rb-gold);
}
.rb-reviews-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0;
  color: var(--rb-cream);
}
.rb-reviews-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.rb-reviews-qmark {
  font-size: 3.5rem;
  color: color-mix(in srgb, var(--rb-gold) 75%, transparent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.rb-reviews-body {
  font-family: var(--rb-font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--rb-cream);
  margin: 1rem 0 0;
}
.rb-reviews-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.rb-reviews-avatar {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rb-bg-elevated);
  border: 1px solid color-mix(in srgb, var(--rb-gold) 35%, transparent);
  color: var(--rb-gold);
  font-family: var(--rb-font-display);
  font-size: 1.35rem;
}
.rb-reviews-name {
  margin: 0;
  font-family: var(--rb-font-display);
  font-size: 1.25rem;
  color: var(--rb-cream);
}
.rb-reviews-meta {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-reviews-stars {
  margin-left: auto;
  display: none;
  gap: 0.25rem;
  color: var(--rb-gold);
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .rb-reviews-stars { display: inline-flex; }
}
.rb-reviews-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.rb-reviews-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--rb-gold) 40%, transparent);
  background: transparent;
  color: var(--rb-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.rb-reviews-btn:hover {
  background: var(--rb-gold);
  border-color: var(--rb-gold);
  color: #1a140c;
}
.rb-reviews-pager {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rb-review-card {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.4rem;
  border-radius: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--rb-gold) 12%, transparent);
  background: color-mix(in srgb, var(--rb-bg-elevated) 55%, transparent);
  color: var(--rb-cream-muted);
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.rb-review-card:hover {
  border-color: color-mix(in srgb, var(--rb-gold) 35%, transparent);
}
.rb-review-card.is-active {
  background: var(--rb-bg-elevated);
  border-color: color-mix(in srgb, var(--rb-gold) 55%, transparent);
}
.rb-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.rb-review-card-stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--rb-gold);
  font-size: 0.65rem;
}
.rb-review-card-product {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-review-card h4 {
  margin: 0.75rem 0 0.35rem;
  font-family: var(--rb-font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--rb-cream);
}
.rb-review-card > p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-reviews-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--rb-gold) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--rb-gold) 30%, transparent);
}
.rb-reviews-score-num {
  margin: 0;
  font-family: var(--rb-font-display);
  font-size: 1.85rem;
  color: var(--rb-gold-soft);
  line-height: 1.1;
}
.rb-reviews-score-label {
  margin: 0.35rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
.rb-reviews-score-stars {
  display: inline-flex;
  gap: 0.25rem;
  color: var(--rb-gold);
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .rb-reviews-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rb-reviews-stars { display: none; }
}

/* Trust / newsletter */
.rb-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.rb-trust {
  padding: 1.5rem 0;
  border-top: 1px solid var(--rb-line);
}
.rb-trust h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.rb-trust p {
  margin: 0;
  color: var(--rb-cream-muted);
  font-size: 0.9rem;
}
@media (max-width: 991px) { .rb-trust-grid { grid-template-columns: 1fr 1fr; } }

.rb-newsletter {
  border: 1px solid var(--rb-line);
  padding: 3rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(196,163,90,0.1), transparent 55%),
    var(--rb-bg-elevated);
}
.rb-newsletter form {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 1.75rem auto 0;
}
.rb-newsletter input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream);
  padding: 0.9rem 1rem;
  outline: none;
}
.rb-newsletter input:focus { border-color: var(--rb-gold); }
@media (max-width: 575px) {
  .rb-newsletter form { flex-direction: column; }
}

/* ---------- Footer ---------- */
.rb-footer {
  background: var(--rb-bg-elevated);
  border-top: 1px solid var(--rb-line);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.rb-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.rb-footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 1.25rem;
}
.rb-footer p, .rb-footer li, .rb-footer a {
  color: var(--rb-cream-muted) !important;
  font-size: 0.9rem;
  line-height: 1.8;
}
.rb-footer ul { list-style: none; padding: 0; margin: 0; }
.rb-footer-brand {
  font-family: var(--rb-font-display);
  font-size: 1.8rem;
  color: var(--rb-cream) !important;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.rb-footer-bottom {
  border-top: 1px solid var(--rb-line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--rb-cream-muted);
}
@media (max-width: 991px) {
  .rb-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .rb-footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Inner pages ---------- */
.rb-page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--rb-line);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(196,163,90,0.12), transparent 50%),
    var(--rb-bg);
}
.rb-page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0.4rem 0 0.5rem;
}
.rb-breadcrumbs, body.rb-site .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-cream-muted);
}
body.rb-site .page-title {
  background: transparent !important;
  border: 0 !important;
  padding: 2rem 0 0 !important;
}
body.rb-site .page-title .breadcrumbs li,
body.rb-site .page-title .breadcrumbs a { color: var(--rb-cream-muted) !important; }

body.rb-site .container.padding-bottom-3x,
body.rb-site .container.padding-bottom-1x {
  padding-top: 2rem;
}

/* Catalog filters */
body.rb-site .shop-top-filter-wrapper,
body.rb-site .quickFilter,
body.rb-site .shop-sorting,
body.rb-site .shop-view {
  color: var(--rb-cream-muted);
}
body.rb-site .quickFilter-title,
body.rb-site .shop-sorting label {
  color: var(--rb-gold) !important;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.rb-site #quick_filter a,
body.rb-site .shop-view a {
  color: var(--rb-cream-muted) !important;
}
body.rb-site #sorting,
body.rb-site .form-control {
  background: var(--rb-bg-elevated) !important;
  border: 1px solid var(--rb-line) !important;
  color: var(--rb-cream) !important;
  border-radius: 0 !important;
}
body.rb-site .main-product-div {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem !important;
}
@media (max-width: 1199px) {
  body.rb-site .main-product-div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  body.rb-site .main-product-div { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem !important; }
}
body.rb-site .productBox,
body.rb-site .sub-product-div.col {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

/* Product detail */
body.rb-site .product-page-grid,
body.rb-site .product-page-grid-inner > div,
body.rb-site #product-section {
  background: transparent !important;
  border-color: var(--rb-line) !important;
  border-radius: 0 !important;
  color: var(--rb-cream);
}
body.rb-site .product-page-grid h1,
body.rb-site #product-section h1 {
  font-family: var(--rb-font-display) !important;
  color: var(--rb-cream) !important;
}
body.rb-site #product-section .text-black,
body.rb-site #product-section .text-\[\#333333\],
body.rb-site #product-section .text-gray-700,
body.rb-site #product-section .text-gray-500 {
  color: var(--rb-cream-muted) !important;
}
body.rb-site .attribute_option {
  background: transparent !important;
  border: 1px solid var(--rb-line) !important;
  color: var(--rb-cream) !important;
  border-radius: 0 !important;
}
body.rb-site .attribute_option.bg-gray-200,
body.rb-site .attribute_option.active {
  border-color: var(--rb-gold) !important;
  color: var(--rb-gold) !important;
}
body.rb-site .qtySelector {
  border: 1px solid var(--rb-line);
  display: inline-flex;
  align-items: center;
}
body.rb-site .qtySelector span,
body.rb-site .qtyValue {
  background: transparent !important;
  color: var(--rb-cream) !important;
  border: 0 !important;
}

/* Cart */
body.rb-site .shopping-cart,
body.rb-site .card {
  background: var(--rb-bg-elevated) !important;
  border: 1px solid var(--rb-line) !important;
  border-radius: 0 !important;
  color: var(--rb-cream) !important;
}
body.rb-site .table {
  color: var(--rb-cream) !important;
}
body.rb-site .table thead th,
body.rb-site .table td,
body.rb-site .table-bordered,
body.rb-site .table-bordered td,
body.rb-site .table-bordered th {
  border-color: var(--rb-line) !important;
  background: transparent !important;
}
body.rb-site .product-item .product-title a,
body.rb-site .card-title {
  color: var(--rb-cream) !important;
}
body.rb-site .btn-outline-primary {
  border-color: var(--rb-gold) !important;
  color: var(--rb-gold) !important;
  border-radius: 0 !important;
}
body.rb-site .btn-outline-primary:hover {
  background: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
}
body.rb-site .btn-primary {
  background: var(--rb-gold) !important;
  border-color: var(--rb-gold) !important;
  color: var(--rb-ink) !important;
  border-radius: 0 !important;
}

/* Modal / misc */
body.rb-site .modal-content {
  background: var(--rb-bg-elevated) !important;
  color: var(--rb-cream) !important;
  border: 1px solid var(--rb-line) !important;
  border-radius: 0 !important;
}
body.rb-site .modal-header,
body.rb-site .modal-footer {
  border-color: var(--rb-line) !important;
}

.rb-center { text-align: center; }
.rb-mt { margin-top: 2.5rem; }
.rb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--rb-ease), transform .8s var(--rb-ease);
}
.rb-reveal.is-in { opacity: 1; transform: none; }

/* ===== Readdy-style motion: gold shimmer, fade-up, float ===== */
@keyframes rbShimmerSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes rbFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rbFloatSlow {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-14px); opacity: 1; }
}

.rb-gold-shimmer {
  background: linear-gradient(
    100deg,
    color-mix(in srgb, var(--rb-gold) 70%, #5c4a1e) 0%,
    var(--rb-gold-soft) 28%,
    var(--rb-gold) 48%,
    #f5e6c0 68%,
    color-mix(in srgb, var(--rb-gold) 85%, #fff) 88%,
    color-mix(in srgb, var(--rb-gold) 70%, #5c4a1e) 100%
  );
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rb-animate-shimmer {
  animation: rbShimmerSweep 6s linear infinite;
}
.rb-animate-fade-up {
  opacity: 0;
  animation: rbFadeUp 0.9s var(--rb-ease) both;
}
.rb-d1 { animation-delay: 0.05s; }
.rb-d2 { animation-delay: 0.18s; }
.rb-d3 { animation-delay: 0.32s; }
.rb-d4 { animation-delay: 0.46s; }
.rb-d5 { animation-delay: 0.6s; }
.rb-d6 { animation-delay: 0.74s; }
.rb-d7 { animation-delay: 0.88s; }

.rb-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.rb-hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rb-gold-soft);
  opacity: 0.55;
  animation: rbFloatSlow 7s ease-in-out infinite;
}
.rb-hero-particles span:nth-child(1) { top: 28%; right: 12%; width: 8px; height: 8px; }
.rb-hero-particles span:nth-child(2) { top: 48%; left: 14%; width: 5px; height: 5px; animation-delay: 1.2s; }
.rb-hero-particles span:nth-child(3) { top: 62%; right: 22%; width: 4px; height: 4px; animation-delay: 2.4s; }
.rb-hero-particles span:nth-child(4) { top: 36%; left: 28%; width: 3px; height: 3px; animation-delay: 0.8s; opacity: 0.35; }

.rb-brand .rb-gold-shimmer,
.rb-footer-brand.rb-gold-shimmer {
  display: inline-block;
}
.rb-section-head h2 .rb-gold-shimmer,
.rb-quote blockquote .rb-gold-shimmer {
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .rb-animate-shimmer,
  .rb-animate-fade-up,
  .rb-hero-particles span,
  .rb-marquee-track {
    animation: none !important;
  }
  .rb-animate-fade-up { opacity: 1; }
  .rb-gold-shimmer {
    color: var(--rb-gold-soft);
    -webkit-text-fill-color: var(--rb-gold-soft);
    background: none;
  }
}

/* Catalog sidebar */
body.rb-site .sidebar .card,
body.rb-site .widget-categories {
  background: var(--rb-bg-elevated) !important;
  border: 1px solid var(--rb-line) !important;
  border-radius: 0 !important;
  color: var(--rb-cream) !important;
}
body.rb-site .widget-title {
  font-family: var(--rb-font-display) !important;
  color: var(--rb-cream) !important;
  font-size: 1.35rem !important;
}
body.rb-site #category_list a,
body.rb-site .category-scroll a {
  color: var(--rb-cream-muted) !important;
}
body.rb-site #category_list a:hover,
body.rb-site #category_list li.active > a {
  color: var(--rb-gold) !important;
}
body.rb-site .shop-top-filter-wrapper {
  border: 1px solid var(--rb-line);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--rb-bg-elevated);
}
body.rb-site .pagination .page-link {
  background: var(--rb-bg-elevated);
  border-color: var(--rb-line);
  color: var(--rb-cream-muted);
  border-radius: 0;
}
body.rb-site .pagination .page-item.active .page-link {
  background: var(--rb-gold);
  border-color: var(--rb-gold);
  color: var(--rb-ink);
}

/* ========== MOBILE / TABLET RESPONSIVE ========== */
html, body.rb-site { overflow-x: hidden; }
body.rb-site .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 991px) {
  .rb-section { padding: 3.5rem 0; }
  .rb-section-head { margin-bottom: 2rem; max-width: none; }
  .rb-section-head h2 { font-size: clamp(1.85rem, 7vw, 2.6rem); }

  .rb-hero {
    min-height: 100svh;
    align-items: flex-end;
  }
  .rb-hero-content { padding: 5.5rem 0 2.75rem; }
  .rb-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    max-width: 11ch;
  }
  .rb-hero-ar { font-size: 1.05rem; margin-bottom: 1rem; }
  .rb-hero-lead { font-size: 0.92rem; margin-bottom: 1.35rem; }
  .rb-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
  .rb-hero-cta .rb-btn { width: 100%; }
  .rb-hero-stats { gap: 1.25rem 1.75rem; padding-top: 1.25rem; }
  .rb-hero-stats strong { font-size: 1.55rem; }
  .rb-scroll-hint,
  .rb-hero-particles { display: none; }

  .rb-collections { grid-template-columns: 1fr 1fr; }
  .rb-collection,
  .rb-collection-overlay { min-height: 280px; }
  .rb-collection h3 { font-size: 1.35rem; }

  .rb-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  body.rb-site .main-product-div {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
  body.rb-site .product-title,
  body.rb-site .product-title a { font-size: 1.05rem !important; }
  .rb-btn-sm { font-size: 0.62rem; padding: 0.55rem 0.65rem; letter-spacing: 0.1em; }
  .rb-note { display: none; }

  .rb-heritage-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .rb-heritage-visual { min-height: 260px; }
  .rb-stat-grid { gap: 1rem; }
  .rb-stat-grid strong { font-size: 1.7rem; }

  .rb-ritual-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rb-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.45rem; }
  .rb-gallery figure:nth-child(2),
  .rb-gallery figure:nth-child(4) { margin-top: 0; }
  .rb-gallery figure:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .rb-trust-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .rb-newsletter { padding: 2.25rem 1.15rem; }
  .rb-newsletter form {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .rb-newsletter form .rb-btn { width: 100%; }

  .rb-footer { padding: 3rem 0 1.5rem; }
  .rb-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .rb-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .rb-page-hero { padding: 2.25rem 0 1.5rem; }
  .rb-page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  body.rb-site .shop-top-filter-wrapper { padding: 1rem; }
  body.rb-site .sptfl {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem;
  }
  body.rb-site .quickFilter,
  body.rb-site .shop-sorting { width: 100%; }
  body.rb-site .shop-sorting { flex-wrap: wrap; gap: 0.5rem; }
  body.rb-site #sorting { width: 100% !important; max-width: none; }
  body.rb-site .col-lg-3.order-lg-1 { order: 2; margin-top: 1.5rem; }
  body.rb-site .col-lg-9.order-lg-2 { order: 1; }

  body.rb-site .product-page-grid-inner { gap: 1rem !important; }
  body.rb-site #product-section,
  body.rb-site .product-page-grid-inner > div { padding: 1rem !important; }
  body.rb-site #product-section h1 { font-size: 1.65rem !important; }
  body.rb-site .p-action-button { flex-direction: column !important; }
  body.rb-site .p-action-button .btn { width: 100%; }
}

@media (max-width: 575px) {
  .rb-collections { grid-template-columns: 1fr; }
  .rb-collection,
  .rb-collection-overlay { min-height: 240px; }
  .rb-ritual-grid,
  .rb-trust-grid,
  .rb-footer-grid { grid-template-columns: 1fr; }
  .rb-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rb-hero-stats > div:last-child { grid-column: 1 / -1; }
  .rb-filter-row { gap: 0.4rem; }
  .rb-filter-row a { padding: 0.45rem 0.7rem; font-size: 0.62rem; }
  .rb-quote { padding: 3.25rem 0.75rem; }
  .rb-quote blockquote { font-size: 1.45rem; }
  body.rb-site .product-button-group,
  body.rb-site .product-hidden-icon,
  body.rb-site .rb-card-actions {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 380px) {
  .rb-product-grid,
  body.rb-site .main-product-div {
    grid-template-columns: 1fr !important;
  }
}

/* ========== CATALOG — bestsellers-style library ========== */
.rb-catalog-page {
  padding-bottom: 4rem;
}
.rb-catalog-hero {
  text-align: left;
  padding: 3.75rem 0 2rem;
  border-bottom: 1px solid var(--rb-line);
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, color-mix(in srgb, var(--rb-gold) 14%, transparent), transparent 55%),
    var(--rb-bg);
}
.rb-catalog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0.35rem 0 0.85rem;
  max-width: 16ch;
  line-height: 1.05;
}
.rb-catalog-lead {
  color: var(--rb-cream-muted);
  max-width: 38rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.rb-catalog-body {
  padding-top: 2rem;
}
.rb-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.rb-catalog-filters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rb-catalog-filters li {
  margin: 0;
  padding: 0;
}
.rb-catalog-filters a,
.rb-catalog-cats > li > a.category_search {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--rb-line);
  color: var(--rb-cream-muted) !important;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
}
.rb-catalog-filters li.active > a,
.rb-catalog-filters a:hover,
.rb-catalog-cats > li.active > a.category_search,
.rb-catalog-cats > li > a.category_search:hover {
  border-color: var(--rb-gold);
  color: var(--rb-gold) !important;
  background: color-mix(in srgb, var(--rb-gold) 10%, transparent);
}
.rb-catalog-cats {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rb-catalog-cats > li {
  float: none !important;
  width: auto !important;
  position: static !important;
}
.rb-catalog-sort {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.rb-catalog-sort label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin: 0;
}
.rb-catalog-sort .form-control {
  min-width: 160px;
  height: 2.5rem;
  padding: 0 0.85rem;
}
.rb-catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.75rem 1.5rem !important;
}
.rb-catalog-card .product-thumb {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in srgb, var(--rb-gold) 12%, transparent), transparent 55%),
    var(--rb-bg-elevated);
  position: relative;
}
.rb-catalog-card .product-thumb .product-badge,
.rb-catalog-card .product-thumb .product-badge2 {
  display: none !important; /* kill legacy overlapping badges */
}
.rb-badge-row {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}
/* Luxury split pill: label + sale in one chip */
.rb-pill {
  display: inline-flex;
  align-items: stretch;
  max-width: 92%;
  overflow: hidden;
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 22px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rb-pill-label,
.rb-pill-sale {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  font-family: var(--rb-font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.rb-pill-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-pill-gold .rb-pill-label {
  background: linear-gradient(135deg, var(--rb-gold-soft) 0%, var(--rb-gold) 55%, #a8883d 100%);
  color: #1a140c;
}
.rb-pill-mute .rb-pill-label {
  background: rgba(28, 26, 24, 0.88);
  color: var(--rb-cream-muted);
  border: 1px solid var(--rb-line);
  border-radius: 999px;
}
.rb-pill-sale {
  background: linear-gradient(135deg, #6b1a1a 0%, #9b2c2c 50%, #7a1f1f 100%);
  color: #fff5f0;
  letter-spacing: 0.08em;
}
.rb-pill-split .rb-pill-label {
  padding-right: 0.7rem;
}
.rb-pill-split .rb-pill-sale {
  padding-left: 0.75rem;
  position: relative;
}
.rb-pill-split .rb-pill-sale::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}
/* sale-only (no type label) */
.rb-pill > .rb-pill-sale:only-child {
  border-radius: 999px;
}
.rb-catalog-card .rb-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.rb-catalog-card .product-thumb img,
.rb-catalog-card .product-thumb .primary-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 1.25rem;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}
.rb-catalog-card .product-thumb .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0 !important;
  padding: 1.25rem;
}
.rb-catalog-card:hover .product-thumb .hover-img {
  opacity: 1 !important;
}
.rb-catalog-card .product-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.rb-catalog-card .product-category span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-gold) !important;
}
.rb-size-tag {
  color: var(--rb-cream-muted) !important;
  letter-spacing: 0.12em !important;
}
.rb-catalog-card .rb-note {
  min-height: 2.4em;
  color: var(--rb-cream-muted);
}
.rb-catalog-card .rb-card-meta {
  align-items: center;
  margin-bottom: 0.9rem;
}
.rb-catalog-card .product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
}
.rb-catalog-card .product-price del {
  font-size: 0.82rem;
}
.rb-rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--rb-gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.rb-rating-line i { font-size: 0.7rem; }
.rb-catalog-card .rb-add-box {
  margin-top: auto;
}
.rb-catalog-empty {
  text-align: center;
  padding: 4rem 1rem;
  border: 1px solid var(--rb-line);
  background: var(--rb-bg-elevated);
}
.rb-catalog-empty h3 {
  margin-bottom: 0.5rem;
}
.rb-catalog-empty p {
  color: var(--rb-cream-muted);
  margin-bottom: 1.5rem;
}
.rb-catalog-pagination {
  margin-top: 2.75rem;
  text-align: center;
}
.rb-catalog-pagination .pagination {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

@media (max-width: 1199px) {
  .rb-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 767px) {
  .rb-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 1.15rem 0.85rem !important; }
  .rb-catalog-hero { padding: 2.5rem 0 1.5rem; }
  .rb-catalog-toolbar { flex-direction: column; align-items: stretch; }
  .rb-catalog-sort { width: 100%; justify-content: space-between; }
  .rb-catalog-sort .form-control { flex: 1; }
  .rb-catalog-card .product-thumb img { padding: 0.75rem; }
}
@media (max-width: 380px) {
  .rb-catalog-grid { grid-template-columns: 1fr !important; }
}
