/* ==========================================================================
   Royal Optical Hub — Luxury Design System
   ========================================================================== */

:root {
  --roh-black: #000000;
  --roh-gold: #d7b56d;
  --roh-gold-light: #e7c98a;
  --roh-gold-dark: #b89442;
  --roh-bg: #fafafa;
  --roh-white: #ffffff;
  --roh-text: #111111;
  --roh-text-muted: #666666;
  --roh-border: #e9e9e9;
  --roh-success: #26a65b;
  --roh-error: #e53935;

  --roh-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --roh-font-body: "Inter", system-ui, -apple-system, sans-serif;

  --roh-space-section: clamp(5rem, 10vw, 8.5rem);
  --roh-space-block: clamp(2.5rem, 5vw, 4rem);
  --roh-radius: 12px;
  --roh-radius-sm: 8px;
  --roh-radius-lg: 20px;
  --roh-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  --roh-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.1);
  --roh-header-h: 72px;
  --roh-safe-top: env(safe-area-inset-top, 0px);
  --roh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --roh-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --roh-container: min(1440px, calc(100% - 3rem));
  --roh-container-wide: min(1680px, calc(100% - 2rem));
}

/* --------------------------------------------------------------------------
   Reset / Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Keep content visible when motion is reduced (reveals rely on JS otherwise). */
  .roh-reveal,
  .roh-reveal-scale,
  .roh-mask-reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .roh-hero__media img {
    transform: none !important;
    animation: none !important;
  }
}

body.roh-site {
  margin: 0;
  background: var(--roh-bg);
  color: var(--roh-text);
  font-family: var(--roh-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip avoids scroll-containment that can crop fixed header tops */
  overflow-x: hidden;
  overflow-x: clip;
}

body.roh-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--roh-ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--roh-font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--roh-text);
  margin: 0;
}

p {
  margin: 0;
}

::selection {
  background: var(--roh-gold);
  color: var(--roh-black);
}

:focus-visible {
  outline: 2px solid var(--roh-gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.roh-container {
  width: var(--roh-container);
  margin-inline: auto;
}

.roh-container--wide {
  width: var(--roh-container-wide);
  margin-inline: auto;
}

.roh-section {
  padding-block: var(--roh-space-section);
}

.roh-section__eyebrow {
  display: inline-block;
  font-family: var(--roh-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
  margin-bottom: 1.25rem;
}

.roh-section__title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.roh-section__lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--roh-text-muted);
  max-width: 42ch;
  line-height: 1.7;
}

.roh-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.roh-main {
  min-height: 60vh;
}

/* --------------------------------------------------------------------------
   Typography utilities
   -------------------------------------------------------------------------- */

.roh-display {
  font-family: var(--roh-font-display);
}

.roh-muted {
  color: var(--roh-text-muted);
}

.roh-gold {
  color: var(--roh-gold);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.roh-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 52px;
  padding: 0.875rem 2rem;
  font-family: var(--roh-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  transition:
    background 0.4s var(--roh-ease),
    color 0.4s var(--roh-ease),
    border-color 0.4s var(--roh-ease),
    transform 0.4s var(--roh-ease),
    box-shadow 0.4s var(--roh-ease);
  isolation: isolate;
}

.roh-btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  pointer-events: none;
  animation: roh-ripple 0.6s var(--roh-ease-out);
}

@keyframes roh-ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.roh-btn--primary {
  background: var(--roh-black);
  color: var(--roh-white);
}

.roh-btn--primary:hover {
  background: var(--roh-gold-dark);
  color: var(--roh-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 148, 66, 0.35);
}

.roh-btn--gold {
  background: var(--roh-gold);
  color: var(--roh-black);
}

.roh-btn--gold:hover {
  background: var(--roh-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(215, 181, 109, 0.4);
}

.roh-btn--outline {
  background: transparent;
  color: var(--roh-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.roh-btn--outline:hover {
  background: var(--roh-white);
  color: var(--roh-black);
  border-color: var(--roh-white);
}

.roh-btn--outline-dark {
  background: transparent;
  color: var(--roh-text);
  border: 1px solid var(--roh-border);
}

.roh-btn--outline-dark:hover {
  border-color: var(--roh-black);
  background: var(--roh-black);
  color: var(--roh-white);
}

.roh-btn--ghost {
  background: transparent;
  color: var(--roh-text);
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
  letter-spacing: 0.12em;
  overflow: visible;
}

.roh-btn--ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--roh-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--roh-ease);
}

.roh-btn--ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.roh-btn--arrow {
  gap: 0.45rem;
}

.roh-btn__arrow {
  display: block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  transition: transform 0.4s var(--roh-ease);
}

.roh-btn--arrow:hover .roh-btn__arrow {
  transform: translateX(4px);
}

.roh-btn--sm {
  min-height: 42px;
  padding: 0.625rem 1.35rem;
  font-size: 0.75rem;
}

.roh-btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Loading Screen
   -------------------------------------------------------------------------- */

/* Hide instantly on return visits (sessionStorage flag set in <head>). */
html.roh-loader-seen .roh-loader {
  display: none !important;
}

.roh-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--roh-black);
  transition: opacity 0.4s var(--roh-ease), visibility 0.4s;
}

.roh-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.roh-loader__inner {
  text-align: center;
}

.roh-loader__brand {
  font-family: var(--roh-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--roh-gold);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: roh-fade-up 0.45s var(--roh-ease) 0.05s forwards;
}

.roh-loader__line {
  width: 0;
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--roh-gold), transparent);
  animation: roh-loader-line 0.55s var(--roh-ease) 0.12s forwards;
}

@keyframes roh-loader-line {
  to {
    width: 120px;
  }
}

@keyframes roh-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Scroll Progress
   -------------------------------------------------------------------------- */

.roh-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--roh-gold-dark), var(--roh-gold-light));
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Cursor Glow
   -------------------------------------------------------------------------- */

.roh-cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
}

.roh-cursor-glow.is-active {
  opacity: 1;
}

@media (pointer: coarse) {
  .roh-cursor-glow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.roh-header {
  position: fixed;
  inset-inline: 0;
  top: var(--roh-safe-top);
  z-index: 900;
  min-height: var(--roh-header-h);
  height: var(--roh-header-h);
  padding-block: 0;
  display: flex;
  align-items: center;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    background 0.45s var(--roh-ease),
    box-shadow 0.45s var(--roh-ease),
    backdrop-filter 0.45s var(--roh-ease),
    border-color 0.45s var(--roh-ease);
}

.admin-bar .roh-header {
  top: calc(32px + var(--roh-safe-top));
}

@media screen and (max-width: 782px) {
  .admin-bar .roh-header {
    top: calc(46px + var(--roh-safe-top));
  }
}

.roh-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--roh-container-wide);
  margin-inline: auto;
  gap: 0.75rem 1rem;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.roh-logo {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  isolation: isolate;
  width: auto;
  max-width: min(170px, 42vw);
  height: 48px;
  max-height: 48px;
}

/* Beat global img { height:auto }, WooCommerce, and cache plugins */
.roh-header .roh-logo,
.roh-header .roh-logo a {
  height: 48px;
  max-height: 48px;
}

.roh-logo__img,
img.roh-logo__img,
.roh-header .roh-logo img,
.roh-header .roh-logo__img,
header.roh-header .roh-logo img.roh-logo__img {
  display: block !important;
  box-sizing: border-box !important;
  width: auto !important;
  height: 48px !important;
  max-width: 170px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  vertical-align: middle !important;
}

.roh-header--transparent {
  background: transparent;
}

.roh-header.is-scrolled,
.roh-header:not(.roh-header--transparent) {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

.roh-header.is-scrolled .roh-nav__link,
.roh-header:not(.roh-header--transparent) .roh-nav__link {
  color: rgba(17, 17, 17, 0.82);
}

.roh-header.is-scrolled .roh-nav__link:hover,
.roh-header.is-scrolled .roh-nav__link.is-active,
.roh-header:not(.roh-header--transparent) .roh-nav__link:hover,
.roh-header:not(.roh-header--transparent) .roh-nav__link.is-active,
.roh-header.is-scrolled .roh-nav__item--shop.is-open .roh-nav__link--shop,
.roh-header:not(.roh-header--transparent) .roh-nav__item--shop.is-open .roh-nav__link--shop {
  color: var(--roh-gold-dark);
}

.roh-header.is-scrolled .roh-icon-btn,
.roh-header:not(.roh-header--transparent) .roh-icon-btn {
  color: rgba(17, 17, 17, 0.88);
}

.roh-header.is-scrolled .roh-menu-toggle,
.roh-header:not(.roh-header--transparent) .roh-menu-toggle {
  color: var(--roh-text);
}

.roh-nav {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  justify-self: center;
  overflow: visible;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .roh-nav {
    display: flex;
  }
}

.roh-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.roh-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--roh-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--roh-ease);
}

.roh-nav__link:hover,
.roh-nav__link.is-active,
.roh-nav__item--shop.is-open .roh-nav__link--shop {
  color: var(--roh-gold);
}

.roh-nav__link:hover::after,
.roh-nav__link.is-active::after,
.roh-nav__item--shop.is-open .roh-nav__link--shop::after {
  transform: scaleX(1);
  transform-origin: left;
}

.roh-nav__chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.35s var(--roh-ease);
}

.roh-nav__item--shop.is-open .roh-nav__chevron {
  transform: rotate(180deg);
}

/* Mega / Shop dropdown */
.roh-nav__item {
  position: relative;
}

.roh-nav__item--shop {
  position: relative;
}

.roh-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 920;
  width: min(980px, calc(100vw - 2rem));
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.35s var(--roh-ease),
    transform 0.35s var(--roh-ease),
    visibility 0.35s;
}

.roh-nav__item--shop.is-open .roh-mega,
.roh-nav__item--shop:hover .roh-mega,
.roh-nav__item--shop:focus-within .roh-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.roh-mega__panel {
  display: grid;
  grid-template-columns: minmax(170px, 210px) 1fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: var(--roh-radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.roh-mega__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--roh-radius);
  background:
    linear-gradient(165deg, #fffefb 0%, #f7f1e6 55%, #f3e9d8 100%);
  border: 1px solid rgba(215, 181, 109, 0.35);
}

.roh-mega__logo,
img.roh-mega__logo {
  display: block !important;
  width: auto !important;
  height: 48px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 0 !important;
}

.roh-mega__brand-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--roh-text-muted);
  letter-spacing: 0.02em;
}

.roh-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.roh-mega__card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.45rem;
  border-radius: var(--roh-radius);
  border: 1px solid transparent;
  transition:
    background 0.3s var(--roh-ease),
    border-color 0.3s var(--roh-ease),
    transform 0.3s var(--roh-ease);
}

.roh-mega__card:hover {
  background: var(--roh-bg);
  border-color: rgba(215, 181, 109, 0.35);
  transform: translateY(-2px);
}

.roh-mega__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--roh-radius-sm);
  overflow: hidden;
  background: var(--roh-bg);
}

.roh-mega__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--roh-ease);
}

.roh-mega__card:hover .roh-mega__media img {
  transform: scale(1.07);
}

.roh-mega__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.2rem 0.25rem;
  text-align: left;
}

.roh-mega__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--roh-text);
}

.roh-mega__meta {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--roh-text-muted);
}

.roh-mega__card:hover .roh-mega__label {
  color: var(--roh-gold-dark);
}

@media (max-width: 1100px) {
  .roh-mega__panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .roh-mega__brand {
    flex-direction: row;
    align-items: center;
    padding: 0.85rem 1rem;
  }

  .roh-mega__logo {
    height: 40px;
  }

  .roh-mega__brand-text {
    max-width: 28ch;
  }
}

@media (max-width: 1023px) {
  .roh-mega {
    display: none !important;
  }
}

.roh-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.roh-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
}

.roh-icon-btn:hover {
  color: var(--roh-gold);
  background: rgba(215, 181, 109, 0.1);
}

.roh-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.roh-icon-btn__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  background: var(--roh-gold);
  color: var(--roh-black);
  border-radius: 999px;
}

.roh-header__cta {
  display: none;
  margin-left: 0.5rem;
}

@media (min-width: 1100px) {
  .roh-header__cta {
    display: inline-flex;
  }

  .roh-header__cta .roh-btn {
    min-height: 42px;
    padding: 0.6rem 1.25rem;
    font-size: 0.6875rem;
    background: var(--roh-gold);
    color: var(--roh-black);
  }

  .roh-header__cta .roh-btn:hover {
    background: var(--roh-gold-light);
  }
}

.roh-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: #fff;
}

@media (min-width: 1024px) {
  .roh-menu-toggle {
    display: none;
  }
}

.roh-menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.35s var(--roh-ease), opacity 0.35s;
}

.roh-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.roh-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.roh-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.roh-mobile {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.55s;
}

.roh-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s var(--roh-ease);
}

.roh-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(400px, 100%);
  height: 100%;
  height: 100dvh;
  padding:
    0
    0
    calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(215, 181, 109, 0.12), transparent 55%),
    var(--roh-black);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.55s var(--roh-ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  will-change: transform;
}

.roh-mobile.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.roh-mobile.is-open .roh-mobile__backdrop {
  opacity: 1;
}

.roh-mobile.is-open .roh-mobile__panel {
  transform: translate3d(0, 0, 0);
}

.roh-mobile__top {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.75rem;
  padding:
    calc(0.85rem + var(--roh-safe-top))
    1.25rem
    0.85rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.roh-mobile__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  max-width: min(150px, 55vw);
}

.roh-mobile__logo,
img.roh-mobile__logo {
  display: block !important;
  width: auto !important;
  height: 40px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
}

.roh-mobile__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: rgba(17, 17, 17, 0.88);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.65);
  transition:
    color 0.3s var(--roh-ease),
    background 0.3s var(--roh-ease),
    border-color 0.3s var(--roh-ease),
    transform 0.3s var(--roh-ease);
}

.roh-mobile__close:hover,
.roh-mobile__close:focus-visible {
  color: var(--roh-gold-dark);
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(90deg);
}

.roh-mobile__close svg {
  width: 20px;
  height: 20px;
}

.roh-mobile__nav,
.roh-mobile__cta,
.roh-mobile__meta {
  padding-inline: 1.5rem;
}

.roh-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  padding-top: 0.85rem;
}

.roh-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 0;
  font-family: var(--roh-font-display);
  font-size: clamp(1.55rem, 6.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--roh-ease);
}

.roh-mobile__link:hover,
.roh-mobile__link:focus-visible {
  color: var(--roh-gold);
}

.roh-mobile__link--toggle {
  color: rgba(215, 181, 109, 0.98);
}

.roh-mobile__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.35s var(--roh-ease);
}

.roh-mobile__group.is-open .roh-mobile__chevron {
  transform: rotate(180deg);
}

.roh-mobile__sub {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0 1rem 0.15rem;
}

.roh-mobile__sub[hidden] {
  display: none !important;
}

.roh-mobile__sub a {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  border-radius: var(--roh-radius-sm);
  transition: color 0.3s, background 0.3s;
}

.roh-mobile__sub a:hover,
.roh-mobile__sub a:focus-visible {
  color: var(--roh-gold);
  background: rgba(215, 181, 109, 0.08);
}

.roh-mobile__cta {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.roh-mobile__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.roh-mobile__phone:hover {
  color: var(--roh-gold);
}

.roh-mobile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.roh-mobile__meta a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.roh-mobile__meta a:hover {
  color: var(--roh-gold);
}

/* --------------------------------------------------------------------------
   Search Overlay
   -------------------------------------------------------------------------- */

.roh-search {
  position: fixed;
  inset: 0;
  z-index: 960;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.roh-search.is-open {
  opacity: 1;
  visibility: visible;
}

.roh-search__inner {
  width: min(680px, 90%);
  transform: translateY(20px);
  transition: transform 0.45s var(--roh-ease);
}

.roh-search.is-open .roh-search__inner {
  transform: translateY(0);
}

.roh-search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(215, 181, 109, 0.4);
  padding-bottom: 1rem;
}

.roh-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--roh-font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--roh-white);
  letter-spacing: -0.02em;
}

.roh-search__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.roh-search__close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.roh-search__close:hover {
  color: var(--roh-gold);
}

.roh-search__hints {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.roh-search__hints span,
.roh-search__hints button {
  appearance: none;
  background: transparent;
  font: inherit;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.roh-search__hints button:hover {
  color: var(--roh-gold);
  border-color: rgba(215, 181, 109, 0.55);
  background: rgba(215, 181, 109, 0.08);
}

.roh-search__results {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
  max-height: min(50vh, 360px);
  overflow: auto;
}

.roh-search__result {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.roh-search__result:hover {
  background: rgba(215, 181, 109, 0.1);
  border-color: rgba(215, 181, 109, 0.35);
}

.roh-search__result img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.roh-search__result strong {
  display: block;
  font-family: var(--roh-font-display, "Playfair Display", Georgia, serif);
  font-size: 1rem;
  font-weight: 500;
}

.roh-search__result em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.roh-search__empty {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Cart Drawer
   -------------------------------------------------------------------------- */

.roh-drawer {
  position: fixed;
  inset: 0;
  z-index: 970;
  pointer-events: none;
}

.roh-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s;
}

.roh-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--roh-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--roh-ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.roh-drawer.is-open {
  pointer-events: auto;
}

.roh-drawer.is-open .roh-drawer__backdrop {
  opacity: 1;
}

.roh-drawer.is-open .roh-drawer__panel {
  transform: translateX(0);
}

.roh-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-drawer__title {
  font-family: var(--roh-font-display);
  font-size: 1.5rem;
}

.roh-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.roh-drawer__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--roh-text-muted);
}

.roh-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--roh-border);
}

.roh-drawer__item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--roh-radius-sm);
  background: var(--roh-bg);
}

.roh-drawer__item-name {
  font-size: 0.9375rem;
  font-weight: 500;
}

.roh-drawer__item-meta {
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
  margin-top: 0.25rem;
}

.roh-drawer__item-price {
  font-weight: 600;
  font-size: 0.875rem;
}

.roh-drawer__foot {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--roh-border);
}

.roh-drawer__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.roh-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background: var(--roh-black);
  color: var(--roh-white);
  /* keep media clipped; never crop header overlay or brand glyphs */
  overflow: visible;
}

.roh-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.roh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  animation: roh-hero-settle 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.roh-hero__media img.is-settled {
  transform: scale(1);
  animation: none;
}

@keyframes roh-hero-settle {
  to {
    transform: scale(1);
  }
}

.roh-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.roh-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.roh-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--roh-gold);
  opacity: 0.35;
  filter: blur(0.5px);
  animation: roh-float linear infinite;
}

@keyframes roh-float {
  0% {
    transform: translateY(100vh) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.roh-hero__content {
  position: relative;
  z-index: 2;
  width: var(--roh-container);
  margin-inline: auto;
  padding:
    calc(var(--roh-header-h) + var(--roh-safe-top) + 1.5rem)
    0
    clamp(4rem, 10vh, 7rem);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.roh-hero__brand {
  font-family: var(--roh-font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--roh-gold);
  line-height: 1.18;
  margin: 0 0 1.25rem;
  overflow: visible;
  padding-block: 0.08em;
  text-align: left;
}

.roh-hero__title {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  max-width: none;
  line-height: 1.35;
  margin: 0;
  text-align: left;
}

.roh-hero__line {
  display: block;
}

.roh-hero__text {
  margin-top: 1.25rem;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.roh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  justify-content: flex-start;
}

.roh-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.roh-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--roh-gold), transparent);
  animation: roh-scroll-pulse 2s ease-in-out infinite;
}

@keyframes roh-scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Character animation helpers */
.roh-split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
  line-height: 1.18;
  padding-top: 0.06em;
  margin-top: -0.06em;
}

/* Reveal helpers */
.roh-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.roh-reveal.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s var(--roh-ease),
    transform 0.9s var(--roh-ease);
}

.roh-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}

.roh-reveal-scale.is-in {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1s var(--roh-ease),
    transform 1s var(--roh-ease);
}

.roh-mask-reveal {
  clip-path: inset(100% 0 0 0);
}

.roh-mask-reveal.is-in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.1s var(--roh-ease);
}

/* --------------------------------------------------------------------------
   Categories
   -------------------------------------------------------------------------- */

.roh-categories {
  background: var(--roh-white);
}

.roh-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .roh-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .roh-cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.roh-cat {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--roh-radius);
  aspect-ratio: 3 / 4;
  background: #111;
}

.roh-cat__media {
  position: absolute;
  inset: 0;
}

.roh-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--roh-ease);
}

.roh-cat:hover .roh-cat__media img {
  transform: scale(1.1);
}

.roh-cat__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.roh-cat__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.75rem;
  color: #fff;
  z-index: 1;
}

.roh-cat__title {
  font-family: var(--roh-font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  min-width: 0;
}

.roh-cat__meta {
  flex-shrink: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-gold-light);
  opacity: 0.9;
  transform: translateX(-6px);
  transition: transform 0.4s var(--roh-ease), opacity 0.4s;
  padding-bottom: 0.2em;
}

.roh-cat:hover .roh-cat__meta {
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Why Choose
   -------------------------------------------------------------------------- */

.roh-why {
  background: var(--roh-bg);
}

.roh-why__intro {
  max-width: 56rem;
}

.roh-why__intro .roh-section__title {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .roh-why__intro .roh-section__title {
    white-space: normal;
  }
}

.roh-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 640px) {
  .roh-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .roh-why__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.roh-why__item {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--roh-white);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  box-shadow: var(--roh-shadow);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--roh-ease);
}

.roh-why__item:hover {
  border-color: rgba(215, 181, 109, 0.55);
  box-shadow: 0 12px 28px rgba(28, 25, 23, 0.1);
  transform: translateY(-3px);
}

.roh-why__item:hover .roh-why__icon {
  background: rgba(215, 181, 109, 0.12);
  border-color: var(--roh-gold);
  color: var(--roh-gold-dark);
  transform: scale(1.06);
}

.roh-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(215, 181, 109, 0.45);
  color: var(--roh-gold-dark);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s var(--roh-ease);
}

.roh-why__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.roh-why__title {
  font-family: var(--roh-font-display);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.roh-why__text {
  font-size: 0.875rem;
  color: var(--roh-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */

.roh-products {
  background: var(--roh-white);
}

.roh-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .roh-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.roh-product {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--roh-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s var(--roh-ease),
    box-shadow 0.5s var(--roh-ease),
    border-color 0.5s var(--roh-ease);
}

.roh-product:hover {
  transform: translateY(-10px);
  border-color: rgba(183, 148, 66, 0.35);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(183, 148, 66, 0.08);
}

.roh-product__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(215, 181, 109, 0.12), transparent 55%),
    #f3f1ec;
}

.roh-product__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.roh-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--roh-ease);
}

.roh-product:hover .roh-product__media img {
  transform: scale(1.1);
}

.roh-product__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--roh-ease);
}

.roh-product:hover .roh-product__veil {
  opacity: 1;
}

.roh-product__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  padding: 0.4rem 0.8rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--roh-black);
  color: var(--roh-gold);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s var(--roh-ease);
}

.roh-product:hover .roh-product__badge {
  transform: translateY(-2px);
}

.roh-product__badge--sale {
  background: var(--roh-gold);
  color: var(--roh-black);
}

.roh-product__actions {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.4s var(--roh-ease), transform 0.4s var(--roh-ease);
}

.roh-product:hover .roh-product__actions {
  opacity: 1;
  transform: translateX(0);
}

/* Hide compare action — keep wishlist + quick view only */
.roh-product__action[data-compare],
.roh-product__actions .roh-product__action:nth-child(3) {
  display: none !important;
}

.roh-product__action {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: var(--roh-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--roh-ease);
}

.roh-product__action:hover {
  background: var(--roh-black);
  color: var(--roh-gold);
  transform: scale(1.08);
}

.roh-product__action.is-active,
.roh-product__action[aria-pressed="true"] {
  background: var(--roh-black);
  color: var(--roh-gold);
}

.roh-product__action.is-active svg path,
.roh-product__action[aria-pressed="true"] svg path {
  fill: currentColor;
}

.roh-btn[data-wishlist].is-active {
  background: var(--roh-black);
  color: var(--roh-gold);
  border-color: var(--roh-black);
}

.roh-icon-btn__badge[hidden] {
  display: none !important;
}

.roh-product__action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.roh-product__cart {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 3;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s var(--roh-ease), transform 0.45s var(--roh-ease);
}

.roh-product:hover .roh-product__cart {
  opacity: 1;
  transform: translateY(0);
}

.roh-product__cart .roh-btn {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.96);
  color: var(--roh-text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.roh-product__cart .roh-btn:hover {
  background: var(--roh-gold);
  color: var(--roh-black);
  border-color: var(--roh-gold);
}

.roh-product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.35rem;
  background: var(--roh-white);
  border-top: 1px solid transparent;
  transition: border-color 0.45s var(--roh-ease);
}

.roh-product:hover .roh-product__body {
  border-top-color: rgba(215, 181, 109, 0.35);
}

.roh-product__cat {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

.roh-product__name {
  margin-top: 0.4rem;
  font-family: var(--roh-font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
}

.roh-product__name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.roh-product__name a:hover {
  color: var(--roh-gold-dark);
}

.roh-product__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.roh-product__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.55rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.roh-product__compare {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--roh-text-muted);
  text-decoration: line-through;
}

.roh-product__amount--sale {
  color: var(--roh-gold-dark);
}

.roh-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--roh-text-muted);
  white-space: nowrap;
}

.roh-rating__stars {
  color: var(--roh-gold-dark);
  letter-spacing: 0.05em;
}

@media (max-width: 899px) {
  .roh-product:hover {
    transform: none;
  }

  .roh-product__actions {
    opacity: 1;
    transform: none;
  }

  .roh-product__actions .roh-product__action:nth-child(n + 3) {
    display: none;
  }

  .roh-product__veil {
    opacity: 0;
  }

  .roh-product__cart {
    position: static;
    opacity: 1;
    transform: none;
    margin: 0 1.15rem 1.15rem;
  }

  .roh-product__cart .roh-btn {
    width: 100%;
    box-shadow: none;
  }
}

@media (hover: none) {
  .roh-product__actions,
  .roh-product__cart {
    opacity: 1;
    transform: none;
  }

  .roh-product__veil {
    opacity: 0.35;
  }
}

/* Quick view modal */
.roh-modal {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.roh-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.roh-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.roh-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--roh-white);
  border-radius: var(--roh-radius-lg);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .roh-modal__panel {
    grid-template-columns: 1fr 1fr;
  }
}

.roh-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.roh-modal__body {
  padding: 2rem;
}

.roh-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--roh-white);
  border-radius: 50%;
  font-size: 1.25rem;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Eye Care Split
   -------------------------------------------------------------------------- */

.roh-eyecare {
  background: var(--roh-white);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.roh-eyecare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  width: var(--roh-container);
  margin-inline: auto;
  min-height: min(640px, 85vh);
}

@media (min-width: 960px) {
  .roh-eyecare__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.roh-eyecare__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 10px;
  /* Keep image visible — mask-reveal clip-path can stay hidden if IO never fires */
  clip-path: none !important;
  opacity: 1;
}

@media (min-width: 960px) {
  .roh-eyecare__media {
    min-height: 0;
    height: 100%;
    align-self: stretch;
  }
}

.roh-eyecare__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  border-radius: 10px;
  opacity: 1 !important;
  visibility: visible !important;
}

.roh-eyecare__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  background: transparent;
}

.roh-eyecare__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.roh-eyecare__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-eyecare__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.roh-eyecare__num {
  font-family: var(--roh-font-display);
  font-size: 1.25rem;
  color: var(--roh-gold-dark);
  min-width: 2rem;
}

.roh-eyecare__list h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.roh-eyecare__list p {
  font-size: 0.9375rem;
  color: var(--roh-text-muted);
}

.roh-eyecare__cta {
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   Brand Marquee
   -------------------------------------------------------------------------- */

.roh-brands {
  background: var(--roh-black);
  padding-block: 3.5rem;
  overflow: hidden;
}

.roh-brands__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--roh-gold);
  margin-bottom: 2rem;
}

.roh-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.roh-marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: roh-marquee 40s linear infinite;
}

.roh-marquee__track span {
  font-family: var(--roh-font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.roh-marquee__track span:hover {
  color: var(--roh-gold);
}

@keyframes roh-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.roh-testimonials {
  background: var(--roh-bg);
}

.roh-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .roh-testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roh-testi {
  padding: 2.25rem;
  background: var(--roh-white);
  border-radius: var(--roh-radius);
  border: 1px solid var(--roh-border);
  transition: box-shadow 0.4s, transform 0.4s var(--roh-ease);
}

.roh-testi:hover {
  box-shadow: var(--roh-shadow);
  transform: translateY(-4px);
}

.roh-testi__stars {
  color: var(--roh-gold-dark);
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.roh-testi__quote {
  font-family: var(--roh-font-display);
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--roh-text);
}

.roh-testi__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--roh-border);
}

.roh-testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--roh-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--roh-gold-dark);
  border: 1px solid rgba(215, 181, 109, 0.35);
}

.roh-testi__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.roh-testi__source {
  font-size: 0.75rem;
  color: var(--roh-text-muted);
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   Instagram
   -------------------------------------------------------------------------- */

.roh-instagram {
  background: var(--roh-white);
}

.roh-ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .roh-ig-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.roh-ig {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--roh-radius-sm);
  background: #111;
}

.roh-ig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--roh-ease);
}

.roh-ig:hover img {
  transform: scale(1.08);
}

.roh-ig__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s;
}

.roh-ig:hover .roh-ig__overlay {
  opacity: 1;
}

.roh-ig__overlay svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Newsletter section removed from footer */
.roh-newsletter,
#newsletter {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Page Banner
   -------------------------------------------------------------------------- */

.roh-banner {
  position: relative;
  min-height: clamp(320px, 42vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--roh-black);
  color: #fff;
  overflow: hidden;
}

.roh-banner__media {
  position: absolute;
  inset: 0;
}

.roh-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.roh-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
}

.roh-banner__content {
  position: relative;
  z-index: 1;
  width: var(--roh-container);
  margin-inline: auto;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + 3rem);
}

.roh-banner__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  letter-spacing: -0.03em;
}

.roh-banner__text {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40ch;
}

.roh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.roh-breadcrumb a:hover {
  color: var(--roh-gold);
}

.roh-breadcrumb__sep {
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */

.roh-banner--about {
  min-height: clamp(380px, 52vh, 560px);
}

.roh-banner--about .roh-banner__media img {
  transform: scale(1.04);
  animation: roh-about-kenburns 18s var(--roh-ease) infinite alternate;
}

.roh-banner--about .roh-banner__veil {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78));
}

.roh-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@keyframes roh-about-kenburns {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

.roh-about-trust {
  background: var(--roh-black);
  color: #fff;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid rgba(215, 181, 109, 0.18);
}

.roh-about-trust__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .roh-about-trust__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .roh-about-trust__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.roh-about-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.35rem 0;
}

.roh-about-trust__num {
  font-family: var(--roh-font-display);
  font-size: 0.95rem;
  color: var(--roh-gold);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.roh-about-trust__item strong {
  display: block;
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.2rem;
}

.roh-about-trust__item span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.roh-about-head {
  max-width: 56rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.roh-about-head .roh-section__title {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .roh-about-head .roh-section__title {
    white-space: normal;
  }
}

.roh-about-head .roh-section__lead {
  margin-top: 0.85rem;
}

.roh-about-inline-cta {
  margin-top: 1.75rem;
}

.roh-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--roh-text);
  transition: color 0.35s var(--roh-ease);
}

.roh-link-arrow span {
  display: inline-block;
  transition: transform 0.4s var(--roh-ease);
}

.roh-link-arrow:hover {
  color: var(--roh-gold-dark);
}

.roh-link-arrow:hover span {
  transform: translateX(5px);
}

.roh-about-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.roh-about-actions--center {
  justify-content: center;
  margin-top: 2rem;
}

.roh-media-hover {
  position: relative;
}

.roh-media-hover img {
  transition: transform 1.1s var(--roh-ease);
}

.roh-media-hover:hover img {
  transform: scale(1.06);
}

.roh-media-hover__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(215, 181, 109, 0.45);
  border-radius: calc(var(--roh-radius) - 4px);
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.5s var(--roh-ease),
    transform 0.5s var(--roh-ease);
  z-index: 1;
}

.roh-media-hover:hover .roh-media-hover__frame {
  opacity: 1;
  transform: scale(1);
}

.roh-card-lift {
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Our Story — large dual photos + split copy
   -------------------------------------------------------------------------- */

.roh-story-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, #f8f6f2 0%, #faf9f7 45%, #f1eee8 100%);
}

.roh-story-section__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 46% at 92% 18%, rgba(215, 181, 109, 0.18), transparent 66%),
    radial-gradient(ellipse 38% 48% at 6% 82%, rgba(0, 0, 0, 0.03), transparent 70%);
}

.roh-story {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.75rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 980px) {
  .roh-story {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 5vw, 5.5rem);
  }
}

.roh-story__copy {
  padding-top: clamp(0.25rem, 1.5vw, 1.25rem);
}

.roh-story__copy .roh-section__title {
  max-width: 14ch;
}

.roh-story__lead {
  margin: 1.35rem 0 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.2vw, 1.175rem);
  line-height: 1.75;
  color: var(--roh-text);
}

.roh-story__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 1.35rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(184, 148, 66, 0.3);
  max-width: 16rem;
}

.roh-story__pillars li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--roh-text);
}

.roh-story__pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--roh-gold-dark);
}

.roh-story__aside {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  min-width: 0;
}

/* Large dual-image gallery */
.roh-story__gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
  align-items: start;
  width: 100%;
}

.roh-story__accent {
  position: absolute;
  z-index: 0;
  left: -3%;
  top: 8%;
  bottom: 12%;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--roh-gold-light), var(--roh-gold-dark), transparent);
  pointer-events: none;
}

.roh-story__ring {
  position: absolute;
  z-index: 0;
  top: -8%;
  right: -6%;
  width: min(58%, 17rem);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 148, 66, 0.38);
  border-radius: 50%;
  pointer-events: none;
}

.roh-story__shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--roh-radius-lg) + 4px);
  background: #0f0f0f;
  clip-path: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.16),
    0 4px 14px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.6s var(--roh-ease),
    box-shadow 0.6s var(--roh-ease);
}

.roh-story__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.9s var(--roh-ease);
}

.roh-story__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.roh-story__shot--main {
  min-height: clamp(22rem, 38vw, 34rem);
}

.roh-story__shot--sub {
  margin-top: clamp(2.5rem, 8vw, 5.5rem);
  border-radius: var(--roh-radius-lg);
  min-height: clamp(20rem, 34vw, 30rem);
}

.roh-story__gallery:hover .roh-story__shot img {
  transform: scale(1.04);
}

.roh-story__shot:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 68px rgba(0, 0, 0, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.1);
}

.roh-story__caption {
  position: absolute;
  z-index: 3;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.9rem 1.2rem;
  max-width: 13.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--roh-radius-sm);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  border-left: 3px solid var(--roh-gold-dark);
}

.roh-story__caption strong {
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--roh-text);
}

.roh-story__caption span {
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

/* Text under images */
.roh-story__body {
  display: grid;
  gap: 1rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(184, 148, 66, 0.22);
  max-width: none;
}

.roh-story__body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--roh-text-muted);
}

.roh-story__closing {
  position: relative;
  margin-top: 0.25rem !important;
  padding: 0.85rem 0 0.15rem 1.15rem;
  border-left: 2px solid var(--roh-gold);
  color: var(--roh-text) !important;
  font-weight: 500;
}

@media (max-width: 979px) {
  .roh-story__pillars {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    gap: 0.65rem 1.35rem;
  }

  .roh-story__shot--main,
  .roh-story__shot--sub {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .roh-story__gallery {
    gap: 0.65rem;
  }

  .roh-story__shot--sub {
    margin-top: 1.75rem;
  }

  .roh-story__ring,
  .roh-story__accent {
    display: none;
  }

  .roh-story__caption {
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.75rem 1rem;
  }
}

/* --------------------------------------------------------------------------
   Welcome — editorial dual-image showcase (About)
   -------------------------------------------------------------------------- */

.roh-welcome {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 48% at 10% 8%, rgba(215, 181, 109, 0.11), transparent 62%),
    radial-gradient(ellipse 52% 52% at 96% 92%, rgba(0, 0, 0, 0.035), transparent 58%),
    var(--roh-white);
}

.roh-welcome__grid {
  position: relative;
  display: grid;
  gap: clamp(3.5rem, 7vw, 5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .roh-welcome__grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(3.5rem, 6vw, 6rem);
  }
}

/* Image composition */
.roh-welcome__gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(0.7rem, 1.6vw, 1.35rem);
  align-items: start;
}

.roh-welcome__shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--roh-radius-lg);
  background: #0f0f0f;
  /* Never hide via mask-reveal clip-path — LiteSpeed + IO bug */
  clip-path: none !important;
  opacity: 1;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.14),
    0 3px 10px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.6s var(--roh-ease),
    box-shadow 0.6s var(--roh-ease);
}

.roh-welcome__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.9s var(--roh-ease);
}

.roh-welcome__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.roh-welcome__shot--sub {
  margin-top: clamp(1.75rem, 7vw, 4.5rem);
  border-radius: var(--roh-radius);
}

.roh-welcome__gallery:hover .roh-welcome__shot img {
  transform: scale(1.05);
}

.roh-welcome__shot:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Decorative accents */
.roh-welcome__ring {
  position: absolute;
  z-index: 0;
  top: -9%;
  right: -8%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 148, 66, 0.32);
  border-radius: 50%;
  pointer-events: none;
}

.roh-welcome__dots {
  position: absolute;
  z-index: 0;
  left: -1.6rem;
  top: -1.6rem;
  width: 12rem;
  height: 12rem;
  background-image: radial-gradient(rgba(184, 148, 66, 0.5) 1.6px, transparent 1.6px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 68%);
  mask-image: linear-gradient(135deg, #000, transparent 68%);
  pointer-events: none;
}

/* Floating store badge */
.roh-welcome__badge {
  grid-column: 1 / -1;
  justify-self: start;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.5rem 0.85rem 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 148, 66, 0.3);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.13);
}

@media (min-width: 600px) {
  .roh-welcome__badge {
    margin-top: -3.25rem;
    margin-left: clamp(0.5rem, 3vw, 2rem);
  }
}

.roh-welcome__badge-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--roh-gold-light), var(--roh-gold-dark));
  color: #fff;
}

.roh-welcome__badge-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.roh-welcome__badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.roh-welcome__badge-text span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--roh-text-muted);
}

/* Copy column */
.roh-welcome__copy .roh-section__title {
  max-width: 14ch;
}

.roh-welcome__lead {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--roh-text);
}

.roh-welcome__copy .roh-about-prose {
  max-width: 52ch;
}

.roh-welcome__points {
  list-style: none;
  display: grid;
  gap: 0.85rem 1.5rem;
  max-width: 52ch;
  margin: 2.25rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--roh-border);
}

@media (min-width: 560px) {
  .roh-welcome__points {
    grid-template-columns: 1fr 1fr;
  }
}

.roh-welcome__points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.roh-welcome__points li::before {
  content: "";
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b89442' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat center / 11px;
}

.roh-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2.25rem;
}

@media (max-width: 599px) {
  .roh-welcome__badge {
    max-width: 100%;
    gap: 0.7rem;
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  }

  .roh-welcome__badge-icon {
    width: 38px;
    height: 38px;
  }

  .roh-welcome__badge-icon svg {
    width: 19px;
    height: 19px;
  }

  .roh-welcome__dots {
    left: -1.1rem;
    top: -1.1rem;
    width: 8rem;
    height: 8rem;
  }
}

/* --------------------------------------------------------------------------
   Mission & Vision — optical axis dual panel
   -------------------------------------------------------------------------- */

.roh-mv {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 20%, rgba(215, 181, 109, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 80%, rgba(0, 0, 0, 0.04), transparent 50%),
    linear-gradient(180deg, #f7f5f1 0%, #fafafa 45%, #f3f1ec 100%);
}

.roh-mv__atmosphere {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

.roh-mv__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.roh-mv__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em 0.5em;
  margin: 0.35rem 0 1rem;
  font-family: var(--roh-font-display);
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--roh-text);
}

.roh-mv__amp {
  font-style: italic;
  font-weight: 400;
  color: var(--roh-gold-dark);
  font-size: 0.72em;
  transform: translateY(-0.08em);
}

.roh-mv__lead {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--roh-text-muted);
}

.roh-mv__stage {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .roh-mv__stage {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
}

.roh-mv__axis {
  display: none;
}

@media (min-width: 900px) {
  .roh-mv__axis {
    display: flex;
    position: absolute;
    inset: 8% 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}

.roh-mv__axis-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(215, 181, 109, 0.55) 18%,
    rgba(215, 181, 109, 0.55) 82%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.roh-mv__lens {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  animation: roh-mv-pulse 4.5s var(--roh-ease) infinite;
}

.roh-mv__lens-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(215, 181, 109, 0.85);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  box-shadow:
    0 0 0 8px rgba(250, 250, 250, 0.92),
    0 12px 32px rgba(0, 0, 0, 0.18);
}

.roh-mv__lens-core {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--roh-gold-light), var(--roh-gold-dark));
  box-shadow: 0 0 16px rgba(215, 181, 109, 0.45);
}

@keyframes roh-mv-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.roh-mv__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  isolation: isolate;
  transition: transform 0.55s var(--roh-ease);
}

.roh-mv__panel--mission {
  background: linear-gradient(160deg, #141414 0%, #0a0a0a 55%, #16120c 100%);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--roh-radius-lg) var(--roh-radius-lg) 0 0;
}

.roh-mv__panel--vision {
  background: linear-gradient(165deg, #ffffff 0%, #f8f6f2 100%);
  color: var(--roh-text-muted);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 0 var(--roh-radius-lg) var(--roh-radius-lg);
}

@media (min-width: 900px) {
  .roh-mv__panel--mission {
    border-radius: var(--roh-radius-lg) 0 0 var(--roh-radius-lg);
    transform: translateY(1.5rem);
    margin-right: -1px;
  }

  .roh-mv__panel--vision {
    border-radius: 0 var(--roh-radius-lg) var(--roh-radius-lg) 0;
    transform: translateY(-1.5rem);
    margin-left: -1px;
  }

  .roh-mv__panel--mission:hover,
  .roh-mv__panel--vision:hover {
    transform: translateY(0);
    z-index: 2;
  }
}

.roh-mv__watermark {
  position: absolute;
  top: -0.15em;
  right: 0.08em;
  font-family: var(--roh-font-display);
  font-size: clamp(6.5rem, 16vw, 11rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  transition: transform 0.7s var(--roh-ease), opacity 0.7s var(--roh-ease);
  z-index: 0;
}

.roh-mv__panel--mission .roh-mv__watermark {
  color: rgba(215, 181, 109, 0.1);
}

.roh-mv__panel--vision .roh-mv__watermark {
  color: rgba(184, 148, 66, 0.12);
}

.roh-mv__panel:hover .roh-mv__watermark {
  transform: scale(1.04) translateX(-4px);
  opacity: 0.85;
}

.roh-mv__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.55s var(--roh-ease);
  z-index: 2;
}

.roh-mv__panel--mission .roh-mv__accent {
  background: linear-gradient(180deg, var(--roh-gold-light), var(--roh-gold-dark));
}

.roh-mv__panel--vision .roh-mv__accent {
  background: linear-gradient(180deg, var(--roh-gold), #8a6d2e);
}

.roh-mv__panel:hover .roh-mv__accent {
  transform: scaleY(1);
}

.roh-mv__panel-body {
  position: relative;
  z-index: 1;
  padding: clamp(2.25rem, 4.5vw, 3.5rem);
  padding-right: clamp(2.25rem, 5vw, 4rem);
}

.roh-mv__index {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--roh-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.roh-mv__panel--mission .roh-mv__index {
  color: var(--roh-gold);
}

.roh-mv__panel--vision .roh-mv__index {
  color: var(--roh-gold-dark);
}

.roh-mv__panel h3 {
  margin: 0 0 1.25rem;
  font-family: var(--roh-font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.roh-mv__panel--mission h3 {
  color: var(--roh-white);
}

.roh-mv__panel--vision h3 {
  color: var(--roh-text);
}

.roh-mv__panel p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 38ch;
}

.roh-mv__panel p + p {
  margin-top: 1rem;
}

.roh-mv__panel--mission p {
  color: rgba(255, 255, 255, 0.68);
}

.roh-mv__panel--vision p {
  color: var(--roh-text-muted);
}

.roh-experts {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .roh-experts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roh-expert {
  text-align: center;
}

.roh-expert__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--roh-radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #111;
}

.roh-expert__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--roh-ease);
}

.roh-expert:hover .roh-expert__media img {
  transform: scale(1.05);
}

.roh-expert__name {
  font-family: var(--roh-font-display);
  font-size: 1.35rem;
}

.roh-expert__role {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

.roh-timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.roh-timeline::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--roh-border);
}

@media (min-width: 700px) {
  .roh-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.roh-timeline__item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .roh-timeline__item {
    width: 50%;
    padding-left: 0;
    padding-right: 2.5rem;
    text-align: right;
  }

  .roh-timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2.5rem;
    text-align: left;
  }
}

.roh-timeline__dot {
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--roh-gold);
  border: 2px solid var(--roh-white);
  box-shadow: 0 0 0 2px var(--roh-gold);
}

@media (min-width: 700px) {
  .roh-timeline__dot {
    left: auto;
    right: -0.4rem;
  }

  .roh-timeline__item:nth-child(even) .roh-timeline__dot {
    right: auto;
    left: -0.4rem;
  }
}

.roh-timeline__year {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
  margin-bottom: 0.5rem;
}

.roh-timeline__title {
  font-family: var(--roh-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.roh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .roh-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .roh-gallery-grid .roh-ig:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.roh-cta-band {
  background: var(--roh-black);
  color: #fff;
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem);
}

.roh-cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
  margin-inline: auto;
}

.roh-cta-band p {
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
}

/* --------------------------------------------------------------------------
   Shop Page
   -------------------------------------------------------------------------- */

.roh-banner--shop {
  min-height: clamp(360px, 48vh, 520px);
}

.roh-banner--shop .roh-banner__media img {
  transform: scale(1.04);
  animation: roh-about-kenburns 18s var(--roh-ease) infinite alternate;
}

.roh-banner--shop .roh-banner__veil {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.32) 55%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.8));
}

.roh-shop-cats {
  background: var(--roh-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--roh-border);
}

.roh-shop-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .roh-shop-cats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.roh-shop-cat {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  border-radius: var(--roh-radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s var(--roh-ease), box-shadow 0.5s var(--roh-ease);
}

.roh-shop-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.roh-shop-cat__media {
  position: absolute;
  inset: 0;
}

.roh-shop-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--roh-ease);
}

.roh-shop-cat:hover .roh-shop-cat__media img,
.roh-shop-cat.is-active .roh-shop-cat__media img {
  transform: scale(1.08);
}

.roh-shop-cat__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
  transition: background 0.45s var(--roh-ease);
}

.roh-shop-cat.is-active .roh-shop-cat__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(0deg, rgba(183, 148, 66, 0.22), transparent 55%);
}

.roh-shop-cat__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.roh-shop-cat__title {
  font-family: var(--roh-font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.roh-shop-cat__meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--roh-ease);
}

.roh-shop-cat:hover .roh-shop-cat__meta,
.roh-shop-cat.is-active .roh-shop-cat__meta {
  opacity: 1;
  transform: translateY(0);
}

.roh-shop-cat.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(215, 181, 109, 0.55);
  pointer-events: none;
  z-index: 2;
}

.roh-shop-cats__clear {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roh-shop-cats__clear a {
  color: var(--roh-text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}

.roh-shop-cats__clear a:hover {
  color: var(--roh-gold-dark);
  border-color: var(--roh-gold-dark);
}

.roh-shop-catalog {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(215, 181, 109, 0.08), transparent 60%),
    var(--roh-bg);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.roh-shop {
  display: grid !important;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .roh-shop {
    grid-template-columns: 250px minmax(0, 1fr) !important;
    gap: 2.5rem;
  }
}

/* Sticky category navigation card — always visible from tablet up */
.roh-catnav {
  display: block !important;
  position: sticky;
  top: calc(var(--roh-header-h) + var(--roh-safe-top) + 1rem);
  align-self: start;
  z-index: 5;
  width: 100%;
  min-width: 0;
}

.roh-catnav__card {
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--roh-radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 1.2rem 1.1rem 1.3rem;
  max-height: calc(100vh - var(--roh-header-h) - var(--roh-safe-top) - 2.25rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

/* Personal category card — only Shop All / Men / Women, no scroll chrome */
.roh-catnav__card--focus {
  max-height: none;
  overflow: visible;
  scrollbar-width: none;
}

.roh-catnav__card--focus::-webkit-scrollbar {
  display: none;
}

.roh-catnav__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-catnav__head-text {
  min-width: 0;
}

.roh-catnav__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
}

.roh-catnav__title {
  margin: 0;
  font-family: var(--roh-font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.roh-catnav__gender {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.roh-catnav__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--roh-radius);
  background: #faf8f4;
  color: var(--roh-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition:
    background 0.25s var(--roh-ease),
    border-color 0.25s var(--roh-ease),
    color 0.25s var(--roh-ease),
    transform 0.25s var(--roh-ease);
}

.roh-catnav__pill:hover {
  border-color: rgba(183, 148, 66, 0.55);
  background: #fff;
  color: var(--roh-black);
  transform: translateY(-1px);
}

.roh-catnav__pill.is-active {
  background: var(--roh-black);
  border-color: var(--roh-black);
  color: var(--roh-gold);
}

.roh-catnav__pill-icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--roh-gold-dark);
}

.roh-catnav__pill.is-active .roh-catnav__pill-icon {
  color: var(--roh-gold);
}

.roh-catnav__pill-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roh-catnav__pill-label {
  display: block;
}

.roh-catnav__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.roh-catnav__collection {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--roh-radius);
  background: #faf8f4;
  color: var(--roh-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s var(--roh-ease),
    border-color 0.25s var(--roh-ease),
    color 0.25s var(--roh-ease),
    transform 0.25s var(--roh-ease);
}

.roh-catnav__collection:hover {
  border-color: rgba(183, 148, 66, 0.55);
  background: #fff;
  color: var(--roh-black);
  transform: translateY(-1px);
}

.roh-catnav__collection-label {
  display: block;
}

.roh-catnav__icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--roh-gold-dark);
  flex-shrink: 0;
}

.roh-catnav__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roh-catnav__all {
  display: none;
}

.roh-filters {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--roh-border);
  border-radius: 0;
  padding: 0 1.75rem 0 0;
  position: sticky;
  top: calc(var(--roh-header-h) + var(--roh-safe-top) + 1.5rem);
  max-height: calc(100vh - var(--roh-header-h) - var(--roh-safe-top) - 2.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

.roh-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-filters__title {
  font-family: var(--roh-font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: 0;
}

.roh-filters__close {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--roh-text);
}

.roh-filters__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.roh-filter-group {
  margin: 0;
  border-bottom: 1px solid var(--roh-border);
  padding-block: 0.35rem;
}

.roh-filter-group__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  list-style: none;
  cursor: pointer;
  padding-block: 0.95rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roh-text);
  user-select: none;
}

.roh-filter-group__label::-webkit-details-marker {
  display: none;
}

.roh-filter-group__label svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.3s var(--roh-ease);
  opacity: 0.55;
}

.roh-filter-group[open] > .roh-filter-group__label svg {
  transform: rotate(180deg);
}

.roh-filter-group__body {
  padding-bottom: 1rem;
}

.roh-filter-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
  color: var(--roh-text-muted);
  cursor: pointer;
  transition: color 0.25s;
}

.roh-filter-option:hover {
  color: var(--roh-text);
}

.roh-filter-option input {
  accent-color: var(--roh-gold-dark);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.roh-filter-range {
  width: 100%;
  accent-color: var(--roh-gold-dark);
}

.roh-filter-range__value {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
}

.roh-shop__main {
  min-width: 0;
}

.roh-shop__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--roh-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.roh-shop__toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.roh-shop__count {
  margin: 0;
  font-size: 0.875rem;
  color: var(--roh-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.roh-shop__count-label {
  font-family: var(--roh-font-display);
  font-size: 1.125rem;
  color: var(--roh-text);
  letter-spacing: -0.02em;
}

.roh-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
}

.roh-sort select {
  min-height: 42px;
  padding: 0 2.25rem 0 1rem;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  background: var(--roh-white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 0.85rem center;
  appearance: none;
  font-family: var(--roh-font-body);
  font-size: 0.8125rem;
  color: var(--roh-text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.roh-sort select:focus {
  border-color: var(--roh-gold-dark);
  box-shadow: 0 0 0 3px rgba(183, 148, 66, 0.15);
}

.roh-product-grid--shop {
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .roh-product-grid--shop {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .roh-shop .roh-product-grid--shop {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roh-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.25rem;
}

.roh-pagination a,
.roh-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--roh-radius-sm);
  border: 1px solid var(--roh-border);
  background: var(--roh-white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.roh-pagination a:hover {
  transform: translateY(-2px);
}

.roh-pagination a:hover,
.roh-pagination .is-active {
  background: var(--roh-black);
  color: var(--roh-gold);
  border-color: var(--roh-black);
}

.roh-filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.roh-filters-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

@media (min-width: 900px) {
  .roh-filters-toggle {
    display: none !important;
  }
}

.roh-shop-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--roh-radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.roh-shop-empty__title {
  font-family: var(--roh-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.roh-shop-empty__text {
  margin: 0.75rem auto 1.75rem;
  color: var(--roh-text-muted);
  max-width: 36ch;
}

.roh-shop-assure {
  background: var(--roh-black);
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.roh-shop-assure__list {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .roh-shop-assure__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.roh-shop-assure__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(215, 181, 109, 0.35);
}

.roh-shop-assure__item strong {
  font-family: var(--roh-font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--roh-gold);
}

.roh-shop-assure__item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

@media (max-width: 899px) {
  .roh-filters,
  .roh-catnav {
    display: none !important;
    position: fixed;
    inset: 0;
    z-index: 960;
    max-height: none;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .roh-filters.is-open-mobile,
  .roh-catnav.is-open-mobile {
    display: block !important;
  }

  .roh-catnav.is-open-mobile .roh-catnav__card {
    max-height: none;
    max-width: 360px;
    margin: 0 0 0 auto;
    min-height: 100%;
    border-radius: var(--roh-radius-lg) 0 0 var(--roh-radius-lg);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  }

  .roh-filters__close {
    display: inline-flex;
  }

  body.roh-filters-open {
    overflow: hidden;
  }
}

/* --------------------------------------------------------------------------
   Product Detail
   -------------------------------------------------------------------------- */

.roh-pdp {
  padding-block: var(--roh-space-section);
  padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + 3rem);
}

.roh-pdp__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .roh-pdp__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

.roh-gallery {
  display: grid;
  gap: 1rem;
}

.roh-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--roh-radius);
  overflow: hidden;
  background: var(--roh-bg);
  cursor: zoom-in;
}

.roh-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--roh-ease);
}

.roh-gallery__main.is-zoomed img {
  transform: scale(1.6);
  cursor: zoom-out;
}

.roh-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.roh-gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--roh-radius-sm);
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--roh-bg);
  opacity: 0.7;
  transition: opacity 0.3s, border-color 0.3s;
}

.roh-gallery__thumb.is-active,
.roh-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--roh-gold);
}

.roh-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roh-pdp__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
}

.roh-pdp__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
}

.roh-pdp__rating {
  margin-top: 1rem;
}

.roh-pdp__price {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.roh-pdp__desc {
  margin-top: 1.5rem;
  color: var(--roh-text-muted);
  line-height: 1.75;
  max-width: 42ch;
}

.roh-pdp__options {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roh-option-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.roh-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.roh-swatch {
  min-width: 48px;
  height: 42px;
  padding: 0 0.85rem;
  border: 1px solid var(--roh-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.roh-swatch.is-active,
.roh-swatch:hover {
  border-color: var(--roh-black);
  background: var(--roh-black);
  color: #fff;
}

.roh-pdp__buy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.roh-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--roh-border);
  border-radius: 999px;
  overflow: hidden;
}

.roh-qty button {
  width: 44px;
  height: 52px;
  font-size: 1.125rem;
  color: var(--roh-text);
}

.roh-qty span {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

.roh-specs {
  margin-top: 3rem;
  border-top: 1px solid var(--roh-border);
  padding-top: 2rem;
}

.roh-specs__table {
  width: 100%;
  border-collapse: collapse;
}

.roh-specs__table th,
.roh-specs__table td {
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--roh-border);
  font-size: 0.9375rem;
}

.roh-specs__table th {
  width: 40%;
  font-weight: 500;
  color: var(--roh-text-muted);
}

.roh-reviews {
  margin-top: 2.5rem;
}

.roh-review {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--roh-border);
}

.roh-review__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.roh-sticky-atc {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 800;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--roh-border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.06);
}

.roh-sticky-atc.is-visible {
  display: flex;
}

.roh-sticky-atc__info {
  display: none;
}

@media (min-width: 640px) {
  .roh-sticky-atc__info {
    display: block;
  }
}

.roh-sticky-atc__name {
  font-family: var(--roh-font-display);
  font-size: 1.125rem;
}

.roh-sticky-atc__price {
  font-size: 0.875rem;
  color: var(--roh-text-muted);
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */

.roh-banner--contact {
  min-height: clamp(380px, 52vh, 560px);
}

.roh-banner--contact .roh-banner__media img {
  transform: scale(1.04);
  animation: roh-about-kenburns 18s var(--roh-ease) infinite alternate;
}

.roh-banner--contact .roh-banner__veil {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78));
}

.roh-contact-channels {
  background: var(--roh-black);
  color: #fff;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid rgba(215, 181, 109, 0.18);
}

.roh-contact-channels__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .roh-contact-channels__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
  }
}

@media (min-width: 1000px) {
  .roh-contact-channels__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.roh-contact-channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.85rem 0.25rem;
  color: inherit;
  transition: color 0.35s var(--roh-ease);
}

.roh-contact-channel:hover {
  color: var(--roh-gold);
}

.roh-contact-channel__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.35rem;
  color: var(--roh-gold);
}

.roh-contact-channel__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.roh-contact-channel__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.roh-contact-channel:hover .roh-contact-channel__label {
  color: rgba(215, 181, 109, 0.75);
}

.roh-contact-channel__value {
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.35s var(--roh-ease);
}

.roh-contact-channel:hover .roh-contact-channel__value {
  color: var(--roh-gold);
}

.roh-contact {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 960px) {
  .roh-contact {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.roh-contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.roh-contact__info .roh-section__title {
  max-width: 14ch;
}

.roh-contact__lead {
  margin: -0.5rem 0 0;
  color: var(--roh-text-muted);
  font-size: 1.0125rem;
  line-height: 1.75;
  max-width: 38ch;
}

.roh-contact__block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--roh-border);
}

.roh-contact__block h3 {
  font-family: var(--roh-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
  margin-bottom: 0.85rem;
}

.roh-contact__block p,
.roh-contact__block a {
  color: var(--roh-text-muted);
  font-size: 0.9875rem;
  line-height: 1.75;
}

.roh-contact__block a:hover {
  color: var(--roh-gold-dark);
}

.roh-contact__block .roh-link-arrow {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
}

.roh-contact__hours {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 22rem;
}

.roh-contact__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9375rem;
  color: var(--roh-text-muted);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-contact__hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.roh-contact__hours li span:last-child {
  color: var(--roh-text);
  font-weight: 500;
}

.roh-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* Social follow card */
.roh-social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 22rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  background:
    linear-gradient(135deg, rgba(215, 181, 109, 0.08) 0%, transparent 55%),
    var(--roh-white);
  color: inherit;
  transition:
    border-color 0.35s var(--roh-ease),
    transform 0.35s var(--roh-ease),
    box-shadow 0.35s var(--roh-ease);
}

.roh-social-card:hover {
  border-color: rgba(215, 181, 109, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.roh-social-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--roh-black);
  color: var(--roh-gold);
}

.roh-social-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.roh-social-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.roh-social-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
}

.roh-social-card__handle {
  font-family: var(--roh-font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--roh-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roh-social-card__cta {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
  transition: color 0.35s var(--roh-ease);
}

.roh-social-card:hover .roh-social-card__cta {
  color: var(--roh-gold-dark);
}

.roh-contact-channel--social .roh-contact-channel__icon {
  color: var(--roh-gold);
}

.roh-form {
  background: var(--roh-white);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--roh-shadow);
  position: relative;
  overflow: hidden;
}

.roh-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--roh-gold-dark), var(--roh-gold-light));
}

.roh-form__title {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  max-width: none;
  margin-bottom: 0.5rem;
}

.roh-form__intro {
  margin: 0 0 1.75rem;
  color: var(--roh-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.roh-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.roh-form__status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--roh-radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}

.roh-form__status.is-success {
  background: #f3f8f1;
  color: #2f5d2a;
  border: 1px solid #c9dfc4;
}

.roh-form__status.is-error {
  background: #fbf2f0;
  color: #8a2e22;
  border: 1px solid #ebcfc8;
}

.roh-inquiry-form .roh-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.roh-form__row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .roh-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.roh-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--roh-text);
}

.roh-field input,
.roh-field textarea,
.roh-field select {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  background: var(--roh-bg);
  font-family: var(--roh-font-body);
  font-size: 0.9375rem;
  color: var(--roh-text);
  outline: none;
  transition: border-color 0.3s var(--roh-ease), background 0.3s var(--roh-ease), box-shadow 0.3s var(--roh-ease);
}

.roh-field textarea {
  min-height: 140px;
  resize: vertical;
}

.roh-field input::placeholder,
.roh-field textarea::placeholder {
  color: #a3a3a3;
}

.roh-field input:focus,
.roh-field textarea:focus,
.roh-field select:focus {
  border-color: var(--roh-gold);
  background: var(--roh-white);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.18);
}

.roh-contact-map {
  padding-bottom: var(--roh-space-section);
  background: var(--roh-white);
}

.roh-contact-map__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 36rem;
}

.roh-map {
  margin-top: var(--roh-space-section);
  border-radius: var(--roh-radius);
  overflow: hidden;
  border: 1px solid var(--roh-border);
  min-height: 380px;
  background: var(--roh-bg);
}

.roh-map--full {
  margin-top: 0;
  width: var(--roh-container-wide);
  margin-inline: auto;
  border-radius: var(--roh-radius-lg);
  min-height: 440px;
}

.roh-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}

.roh-map--full iframe {
  height: clamp(380px, 48vh, 520px);
}

.roh-faq {
  max-width: 48rem;
  margin-inline: auto;
}

.roh-contact-page .roh-faq {
  margin-top: 0;
}

.roh-faq__intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.roh-faq__item {
  border-bottom: 1px solid var(--roh-border);
}

.roh-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--roh-font-display);
  font-size: 1.125rem;
  color: var(--roh-text);
  transition: color 0.3s var(--roh-ease);
}

.roh-faq__q:hover {
  color: var(--roh-gold-dark);
}

.roh-faq__q span {
  color: var(--roh-gold-dark);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s var(--roh-ease);
  flex-shrink: 0;
}

.roh-faq__item.is-open .roh-faq__q span {
  transform: rotate(45deg);
}

.roh-faq__a {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--roh-text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

.roh-faq__item.is-open .roh-faq__a {
  display: block;
  animation: roh-fade-up 0.45s var(--roh-ease);
}

.roh-cta-band--contact {
  position: relative;
  overflow: hidden;
}

.roh-cta-band--contact::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.16), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.roh-cta-band--contact h2 {
  max-width: 18ch;
  margin-bottom: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .roh-banner--contact .roh-banner__media img {
    animation: none;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.roh-footer {
  background: var(--roh-black);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.roh-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 700px) {
  .roh-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .roh-footer__grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 3rem;
  }
}

.roh-footer__logo-card {
  display: block;
  width: 110px;
  height: 110px;
  max-width: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
  flex-shrink: 0;
}

.roh-footer__logo-img,
img.roh-footer__logo-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 10px;
}

.roh-footer__about {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.55);
}

.roh-footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.roh-footer__social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 181, 109, 0.35);
  border-radius: 50%;
  color: var(--roh-gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.roh-footer__social a:hover {
  background: var(--roh-gold);
  color: var(--roh-black);
  border-color: var(--roh-gold);
}

.roh-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: inherit;
}

.roh-footer__heading {
  font-family: var(--roh-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--roh-gold);
  margin-bottom: 1.25rem;
}

.roh-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roh-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.roh-footer__links a:hover {
  color: var(--roh-gold);
}

.roh-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roh-footer__map {
  margin-top: 1rem;
  border-radius: var(--roh-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.roh-footer__map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  display: block;
  filter: grayscale(1) brightness(0.7) contrast(1.1);
}

.roh-footer__map-link {
  display: block;
  padding: 0.55rem 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--roh-gold);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, background 0.2s ease;
}

.roh-footer__map-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.roh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
}

.roh-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.roh-footer__bottom-inner a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.roh-footer__bottom-inner a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp / Scroll Top
   -------------------------------------------------------------------------- */

.roh-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.roh-whatsapp {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--roh-ease);
}

.roh-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
}

.roh-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.roh-totop {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--roh-black);
  color: var(--roh-gold);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, background 0.3s;
  box-shadow: var(--roh-shadow);
}

.roh-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.roh-totop:hover {
  background: var(--roh-gold-dark);
  color: #fff;
}

.roh-totop svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.roh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.roh-text-center {
  text-align: center;
}

.roh-mx-auto {
  margin-inline: auto;
}

.roh-bg-white {
  background: var(--roh-white);
}

.roh-bg-soft {
  background: var(--roh-bg);
}

/* --------------------------------------------------------------------------
   About page — content layout
   -------------------------------------------------------------------------- */

.roh-about-prose {
  margin-top: 1.15rem;
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--roh-text-muted);
  max-width: 48ch;
}

.roh-offers-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 17%, rgba(215, 181, 109, 0.12), transparent 23rem),
    radial-gradient(circle at 96% 78%, rgba(0, 0, 0, 0.045), transparent 28rem),
    #f6f4ef;
}

.roh-offers-section::before {
  content: "";
  position: absolute;
  top: 7rem;
  right: -8rem;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 148, 66, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(215, 181, 109, 0.025),
    0 0 0 6rem rgba(215, 181, 109, 0.02);
  pointer-events: none;
}

.roh-offers-section__header {
  position: relative;
  align-items: flex-end;
}

.roh-offers-section__note {
  max-width: 20rem;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 1px solid var(--roh-gold);
  color: var(--roh-text-muted);
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
}

.roh-offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.roh-offer {
  position: relative;
  z-index: 0;
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(32, 27, 18, 0.04);
  transition:
    transform 0.55s var(--roh-ease),
    box-shadow 0.55s var(--roh-ease),
    border-color 0.55s var(--roh-ease);
}

.roh-offer:nth-child(1),
.roh-offer:nth-child(5) {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(215, 181, 109, 0.1), transparent 48%),
    #0e0e0e;
  border-color: rgba(215, 181, 109, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.roh-offer:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.75), transparent 55%),
    #e6c986;
  border-color: rgba(184, 148, 66, 0.25);
}

.roh-offer__glow {
  position: absolute;
  z-index: 0;
  right: -5rem;
  bottom: -6rem;
  width: 14rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.28), transparent 68%);
  pointer-events: none;
  transition: transform 0.7s var(--roh-ease);
}

.roh-offer__number {
  position: absolute;
  top: 0.15rem;
  right: 0.55rem;
  z-index: 0;
  color: rgba(17, 17, 17, 0.07);
  font-family: var(--roh-font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
  transition: color 0.5s var(--roh-ease);
}

.roh-offer__more {
  display: none !important;
}

.roh-offer:nth-child(1) .roh-offer__number,
.roh-offer:nth-child(5) .roh-offer__number {
  color: rgba(215, 181, 109, 0.16);
}

.roh-offer:nth-child(4) .roh-offer__number {
  color: rgba(17, 17, 17, 0.1);
}

.roh-offer__top,
.roh-offer__body,
.roh-offer__more {
  position: relative;
  z-index: 1;
}

.roh-offer__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.roh-offer__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 66, 0.35);
  color: var(--roh-gold-dark);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  transition:
    transform 0.5s var(--roh-ease),
    background 0.5s var(--roh-ease),
    color 0.5s var(--roh-ease);
}

.roh-offer:nth-child(1) .roh-offer__icon,
.roh-offer:nth-child(5) .roh-offer__icon {
  color: var(--roh-gold);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 181, 109, 0.35);
}

.roh-offer__line {
  width: 2.75rem;
  height: 1px;
  background: var(--roh-gold-dark);
  transform-origin: left;
  transition: width 0.55s var(--roh-ease);
}

.roh-offer__icon svg,
.roh-offer__more svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.roh-offer__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.roh-offer__body {
  position: relative;
  max-width: 30rem;
}

.roh-offer__title {
  margin-bottom: 0.75rem;
  font-family: var(--roh-font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.roh-offer__text {
  font-size: 0.925rem;
  line-height: 1.72;
  color: var(--roh-text-muted);
}

.roh-offer:nth-child(1) .roh-offer__text,
.roh-offer:nth-child(5) .roh-offer__text {
  color: rgba(255, 255, 255, 0.62);
}

.roh-offer:nth-child(4) .roh-offer__text {
  color: rgba(17, 17, 17, 0.68);
}

.roh-offer__more {
  display: none !important;
}

.roh-offer:nth-child(1) .roh-offer__more,
.roh-offer:nth-child(5) .roh-offer__more {
  color: var(--roh-gold);
}

.roh-offer__more svg {
  width: 1rem;
  transition: transform 0.45s var(--roh-ease);
}

.roh-offer:hover {
  z-index: 2;
  transform: translateY(-0.65rem);
  border-color: rgba(184, 148, 66, 0.45);
  box-shadow: 0 25px 65px rgba(32, 27, 18, 0.13);
}

.roh-offer:hover .roh-offer__glow {
  transform: scale(1.35) translate(-0.75rem, -0.5rem);
}

.roh-offer:hover .roh-offer__icon {
  color: var(--roh-gold);
  background: var(--roh-black);
  transform: rotate(-8deg) scale(1.06);
}

.roh-offer:nth-child(1):hover .roh-offer__icon,
.roh-offer:nth-child(5):hover .roh-offer__icon {
  color: var(--roh-black);
  background: var(--roh-gold);
}

.roh-offer:hover .roh-offer__line {
  width: 4.5rem;
}

.roh-offer:hover .roh-offer__more svg {
  transform: translateX(0.3rem);
}

@media (min-width: 640px) {
  .roh-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .roh-offer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .roh-offer:nth-child(1),
  .roh-offer:nth-child(5) {
    grid-column: span 5;
  }

  .roh-offer:nth-child(2),
  .roh-offer:nth-child(4) {
    grid-column: span 3;
  }

  .roh-offer:nth-child(3),
  .roh-offer:nth-child(6) {
    grid-column: span 4;
  }
}

.roh-lenses {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(215, 181, 109, 0.16), transparent 45%),
    var(--roh-black);
  color: #fff;
  border-radius: var(--roh-radius-lg);
  display: grid;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 181, 109, 0.18);
}

@media (min-width: 800px) {
  .roh-lenses {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.roh-lenses__title {
  font-family: var(--roh-font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.roh-lenses__lead {
  margin-top: 0.85rem;
  max-width: 42ch;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.roh-lenses__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .roh-lenses__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roh-lenses__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: var(--roh-radius-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition:
    background 0.35s var(--roh-ease),
    border-color 0.35s var(--roh-ease),
    transform 0.35s var(--roh-ease);
}

.roh-lenses__list li:hover {
  background: rgba(215, 181, 109, 0.1);
  border-color: rgba(215, 181, 109, 0.5);
  transform: translateX(4px);
}

.roh-lenses__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--roh-gold);
  color: var(--roh-black);
  font-size: 0.7rem;
  font-weight: 700;
}

.roh-why-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .roh-why-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .roh-why-about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.roh-why-about {
  padding: 1.85rem 1.55rem;
  background: var(--roh-bg);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-lg);
  border-top: 2px solid transparent;
  transition:
    transform 0.45s var(--roh-ease),
    box-shadow 0.45s var(--roh-ease),
    border-color 0.45s var(--roh-ease),
    background 0.45s var(--roh-ease);
}

.roh-why-about:hover {
  transform: translateY(-6px);
  background: var(--roh-white);
  border-color: rgba(215, 181, 109, 0.4);
  border-top-color: var(--roh-gold);
  box-shadow: var(--roh-shadow);
}

.roh-why-about__num {
  display: block;
  font-family: var(--roh-font-display);
  font-size: 1.125rem;
  color: var(--roh-gold-dark);
  margin-bottom: 0.85rem;
  transition: transform 0.4s var(--roh-ease);
}

.roh-why-about:hover .roh-why-about__num {
  transform: translateX(3px);
  color: var(--roh-gold);
}

.roh-why-about__title {
  font-family: var(--roh-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.roh-why-about__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--roh-text-muted);
}

.roh-commitment {
  position: relative;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(215, 181, 109, 0.12), transparent 40%),
    var(--roh-black);
  color: #fff;
  overflow: hidden;
}

.roh-commitment__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .roh-commitment__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.roh-commitment__title {
  font-family: var(--roh-font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  letter-spacing: -0.03em;
  max-width: 14ch;
  line-height: 1.15;
}

.roh-commitment__line {
  width: 64px;
  height: 2px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, var(--roh-gold), transparent);
}

.roh-commitment__text {
  font-size: 1.025rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.15rem;
  max-width: 52ch;
}

.roh-commitment__text:last-child {
  margin-bottom: 0;
}

.roh-experience {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .roh-experience {
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.roh-experience__gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(0.65rem, 1.5vw, 1.2rem);
  align-items: start;
}

.roh-experience__accent {
  position: absolute;
  z-index: 0;
  top: -6%;
  left: -8%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 148, 66, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.roh-experience__shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--roh-radius) + 2px);
  background: #111;
  border: 1px solid rgba(184, 148, 66, 0.35);
  clip-path: none !important;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.6s var(--roh-ease),
    box-shadow 0.6s var(--roh-ease);
}

.roh-experience__shot--sub {
  margin-top: clamp(1.5rem, 6vw, 3.75rem);
  border-radius: var(--roh-radius);
}

.roh-experience__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.9s var(--roh-ease);
}

.roh-experience__frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(215, 181, 109, 0.55);
  border-radius: calc(var(--roh-radius) - 4px);
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.roh-experience__gallery:hover .roh-experience__shot img {
  transform: scale(1.04);
}

.roh-experience__shot:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.16),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 599px) {
  .roh-experience__gallery {
    grid-template-columns: 1fr 0.92fr;
    gap: 0.55rem;
  }

  .roh-experience__shot--sub {
    margin-top: 1.25rem;
  }

  .roh-experience__frame {
    inset: 8px;
  }
}

/* Legacy single-media (kept safe if cached markup) */
.roh-experience__media {
  position: relative;
  border-radius: calc(var(--roh-radius) + 2px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: min(640px, 78vh);
  background: #111;
  border: 1px solid rgba(184, 148, 66, 0.35);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  clip-path: none !important;
}

.roh-experience__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1 !important;
  visibility: visible !important;
}

.roh-cta-band--about {
  position: relative;
  overflow: hidden;
}

.roh-cta-band--about::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.16), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.roh-cta-band__tagline {
  margin: 1.5rem auto 0;
  font-family: var(--roh-font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28ch;
}

.roh-cta-band__tagline em {
  font-style: italic;
  color: var(--roh-gold);
  font-size: 1.15em;
}

@media (prefers-reduced-motion: reduce) {
  .roh-banner--about .roh-banner__media img,
  .roh-banner--contact .roh-banner__media img,
  .roh-banner--shop .roh-banner__media img {
    animation: none;
    transform: none;
  }

  .roh-offer:hover,
  .roh-why-about:hover,
  .roh-mv__panel--mission,
  .roh-mv__panel--vision,
  .roh-mv__panel--mission:hover,
  .roh-mv__panel--vision:hover,
  .roh-mv__lens,
  .roh-media-hover:hover img,
  .roh-lenses__list li:hover {
    transform: none;
    animation: none;
  }
}

@media (min-width: 1600px) {
  :root {
    --roh-container: min(1520px, calc(100% - 4rem));
    --roh-container-wide: min(1760px, calc(100% - 3rem));
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Shop — 4-column luxury cards
   -------------------------------------------------------------------------- */

.roh-wc-archive .woocommerce-products-header,
.roh-wc-archive .woocommerce-breadcrumb {
  display: none;
}

.roh-wc-shop {
  padding-block: 0;
  transition: opacity 0.35s var(--roh-ease);
}

.roh-wc-shop.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.roh-shop--wc .roh-wc-shop__toolbar {
  margin-bottom: 1.75rem;
}

.roh-wc-shop__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.roh-wc-shop__toolbar .woocommerce-result-count {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

.roh-wc-shop__toolbar .woocommerce-ordering {
  margin: 0;
}

.roh-wc-shop__toolbar .woocommerce-ordering select {
  min-width: 200px;
  padding: 0.65rem 2.25rem 0.65rem 0.9rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--roh-text);
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.4' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}

.woocommerce ul.products,
.woocommerce-page ul.products,
.roh-wc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  clear: both;
}

@media (min-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .roh-wc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .roh-wc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.roh-wc-card {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--roh-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.045);
  transition:
    transform 0.45s var(--roh-ease),
    box-shadow 0.45s var(--roh-ease),
    border-color 0.45s var(--roh-ease);
}

.woocommerce ul.products li.product:hover,
.roh-wc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 148, 66, 0.4);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.1),
    0 8px 18px rgba(183, 148, 66, 0.1);
}

.roh-wc-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(215, 181, 109, 0.14), transparent 55%),
    #f4f2ed;
}

.roh-wc-card__image {
  display: block;
  width: 100%;
  height: 100%;
}

.roh-wc-card__img,
.woocommerce ul.products li.product img,
.roh-wc-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0 !important;
  transition: transform 0.85s var(--roh-ease);
}

.roh-wc-card:hover .roh-wc-card__img,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.07);
}

.roh-wc-card__badge,
.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  min-height: 0;
  min-width: 0;
  margin: 0 !important;
  padding: 0.4rem 0.75rem !important;
  line-height: 1;
  font-size: 0.625rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--roh-gold) !important;
  color: var(--roh-black) !important;
  border: 0;
}

.roh-wc-card__wishlist {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--roh-text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: color 0.25s, background 0.25s, transform 0.25s var(--roh-ease);
}

.roh-wc-card__wishlist:hover {
  color: var(--roh-gold-dark);
  background: #fff;
  transform: scale(1.06);
}

.roh-wc-card__wishlist.is-active,
.roh-wc-card__wishlist[aria-pressed="true"] {
  background: var(--roh-black);
  color: var(--roh-gold);
}

.roh-wc-card__wishlist.is-active svg path,
.roh-wc-card__wishlist[aria-pressed="true"] svg path {
  fill: currentColor;
  stroke: none;
}

.roh-wc-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.roh-wc-card__actions {
  position: absolute;
  top: 3.55rem;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--roh-ease), transform 0.35s var(--roh-ease);
}

.roh-wc-card:hover .roh-wc-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.roh-wc-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--roh-text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: color 0.25s, background 0.25s;
}

.roh-wc-card__action:hover {
  color: var(--roh-gold-dark);
  background: #fff;
}

.roh-wc-card__action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.roh-wc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.25rem;
  text-align: left;
}

.roh-wc-card__cat {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

.roh-wc-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--roh-font-display) !important;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem) !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  color: var(--roh-text);
}

.roh-wc-card__title a,
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
  text-decoration: none;
}

.roh-wc-card__title a:hover {
  color: var(--roh-gold-dark);
}

.roh-wc-card__meta {
  margin-top: 0.15rem;
}

.roh-wc-card__meta .price,
.woocommerce ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0 !important;
  font-family: var(--roh-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--roh-gold-dark) !important;
}

.roh-wc-card__meta .price del,
.woocommerce ul.products li.product .price del {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--roh-text-muted) !important;
  opacity: 0.85;
}

.roh-wc-card__meta .price ins,
.woocommerce ul.products li.product .price ins {
  background: none;
  text-decoration: none;
  color: var(--roh-gold-dark) !important;
}

.roh-wc-card__cart {
  margin-top: auto;
  padding-top: 0.85rem;
}

.roh-wc-card__cart .button,
.roh-wc-card__cart .add_to_cart_button,
.woocommerce ul.products li.product .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.6875rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--roh-text) !important;
  background: #f1eee8 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  transition:
    background 0.3s var(--roh-ease),
    color 0.3s var(--roh-ease),
    border-color 0.3s var(--roh-ease);
}

.roh-wc-card__cart .button:hover,
.roh-wc-card__cart .add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
  color: var(--roh-black) !important;
  background: var(--roh-gold) !important;
  border-color: var(--roh-gold) !important;
}

.roh-wc-card__cart .button.loading,
.roh-wc-card__cart .add_to_cart_button.loading {
  opacity: 0.65;
  pointer-events: none;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 2.75rem;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--roh-text);
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: var(--roh-black);
  background: var(--roh-gold);
  border-color: var(--roh-gold);
}

/* Fallback when old WC markup still wraps title/price in the default link */
.woocommerce ul.products li.product:not(.roh-wc-card) {
  text-align: left;
}

.woocommerce ul.products li.product:not(.roh-wc-card) .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}

.woocommerce ul.products li.product:not(.roh-wc-card) .onsale {
  right: auto;
}

.woocommerce ul.products li.product:not(.roh-wc-card) .button {
  margin-top: 0.85rem !important;
}

@media (max-width: 767px) {
  .roh-wc-card__actions {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Single Product (PDP)
   -------------------------------------------------------------------------- */

.roh-wc-pdp-body .roh-main,
.roh-wc-pdp-page {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(215, 181, 109, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(0, 0, 0, 0.03), transparent 50%),
    var(--roh-bg);
}

.roh-wc-pdp {
  padding-block: var(--roh-space-section);
  padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + 2.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.roh-wc-pdp__crumb {
  color: var(--roh-text-muted);
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.roh-wc-pdp__crumb a {
  color: var(--roh-text-muted);
  transition: color 0.3s var(--roh-ease);
}

.roh-wc-pdp__crumb a:hover {
  color: var(--roh-gold-dark);
}

.roh-wc-pdp__product {
  position: relative;
}

/* Reset WooCommerce default two-column floats */
.woocommerce .roh-wc-pdp div.product div.images,
.woocommerce .roh-wc-pdp div.product div.summary,
.woocommerce-page .roh-wc-pdp div.product div.images,
.woocommerce-page .roh-wc-pdp div.product div.summary,
.roh-wc-pdp .roh-wc-gallery,
.roh-wc-pdp .roh-wc-pdp__summary,
.roh-wc-pdp .roh-wc-pdp__gallery-col {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
}

.woocommerce .roh-wc-pdp div.product::before,
.woocommerce .roh-wc-pdp div.product::after,
.woocommerce-page .roh-wc-pdp div.product::before,
.woocommerce-page .roh-wc-pdp div.product::after {
  display: none !important;
  content: none !important;
}

.roh-wc-pdp__grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .roh-wc-pdp__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* Gallery */
.roh-wc-pdp__gallery-col {
  position: relative;
}

.roh-wc-pdp__gallery-col .onsale,
.roh-wc-gallery .onsale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0.45rem 0.85rem;
  line-height: 1;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--roh-black);
  color: var(--roh-gold);
  border: none;
}

.roh-wc-gallery {
  display: grid;
  gap: 1rem;
}

.roh-wc-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--roh-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(215, 181, 109, 0.12), transparent 55%),
    #f3f1ec;
  cursor: zoom-in;
  box-shadow: var(--roh-shadow);
  animation: roh-pdp-fade-up 0.7s var(--roh-ease) both;
}

.roh-wc-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--roh-ease);
}

.roh-wc-gallery__main.is-zoomed {
  cursor: zoom-out;
}

.roh-wc-gallery__main.is-zoomed img {
  transform: scale(1.65);
}

.roh-wc-gallery__hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-white);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--roh-ease), transform 0.35s var(--roh-ease);
}

.roh-wc-gallery__main:hover .roh-wc-gallery__hint {
  opacity: 1;
  transform: translateY(0);
}

.roh-wc-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.75rem;
  max-width: 100%;
}

@media (min-width: 480px) {
  .roh-wc-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.roh-wc-gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--roh-radius-sm);
  overflow: hidden;
  border: 1px solid transparent;
  background: #f3f1ec;
  opacity: 0.72;
  padding: 0;
  cursor: pointer;
  transition:
    opacity 0.3s var(--roh-ease),
    border-color 0.3s var(--roh-ease),
    transform 0.3s var(--roh-ease);
}

.roh-wc-gallery__thumb:hover,
.roh-wc-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--roh-gold);
  transform: translateY(-2px);
}

.roh-wc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Summary / product info */
.roh-wc-pdp__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.25rem;
  animation: roh-pdp-fade-up 0.75s var(--roh-ease) 0.08s both;
}

.roh-wc-pdp__summary > *:first-child {
  margin-top: 0;
}

.roh-wc-pdp__cat {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
  line-height: 1.5;
}

.roh-wc-pdp__cat a {
  color: inherit;
  text-decoration: none;
}

.roh-wc-pdp__cat a:hover {
  color: var(--roh-black);
}

.roh-wc-pdp__summary .product_title,
.roh-wc-pdp__summary .entry-title {
  font-family: var(--roh-font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--roh-text);
  margin: 0;
  max-width: 18ch;
}

.roh-wc-pdp__summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.roh-wc-pdp__summary .star-rating {
  float: none;
  color: var(--roh-gold-dark);
}

.roh-wc-pdp__summary .woocommerce-review-link {
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
  letter-spacing: 0.02em;
}

.roh-wc-pdp__summary .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  font-family: var(--roh-font-body);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--roh-text);
  line-height: 1.2;
}

.roh-wc-pdp__summary .price del {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--roh-text-muted);
  opacity: 0.75;
}

.roh-wc-pdp__summary .price ins {
  text-decoration: none;
  color: var(--roh-gold-dark);
}

.roh-wc-pdp__summary .woocommerce-product-details__short-description {
  margin: 1.5rem 0 0;
  max-width: 44ch;
  color: var(--roh-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.roh-wc-pdp__summary .woocommerce-product-details__short-description p {
  margin: 0 0 0.85rem;
}

.roh-wc-pdp__summary .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.roh-wc-pdp__summary .stock {
  margin: 1.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roh-wc-pdp__summary .stock.in-stock {
  color: var(--roh-success);
}

.roh-wc-pdp__summary .stock.out-of-stock {
  color: var(--roh-error);
}

/* Variations */
.roh-wc-pdp__summary .variations_form {
  width: 100%;
  margin-top: 1.75rem;
}

.roh-wc-pdp__summary table.variations {
  width: 100%;
  border: 0;
  margin: 0 0 1.25rem;
}

.roh-wc-pdp__summary table.variations th,
.roh-wc-pdp__summary table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.roh-wc-pdp__summary table.variations th.label {
  padding-bottom: 0.55rem;
}

.roh-wc-pdp__summary table.variations th.label label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--roh-text);
}

.roh-wc-pdp__summary table.variations td.value {
  padding-bottom: 1.15rem;
}

.roh-wc-pdp__summary table.variations select {
  width: 100%;
  max-width: 320px;
  height: 48px;
  padding: 0 2.5rem 0 1rem;
  border: 1px solid var(--roh-border);
  border-radius: 999px;
  background: var(--roh-white);
  color: var(--roh-text);
  font-size: 0.875rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111111' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  transition: border-color 0.3s var(--roh-ease);
}

.roh-wc-pdp__summary table.variations select:focus {
  outline: none;
  border-color: var(--roh-gold-dark);
}

.roh-wc-pdp__summary .reset_variations {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
}

/* Cart form / buy row */
.roh-wc-pdp__summary form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  width: 100%;
  padding: 0;
}

.roh-wc-pdp__summary form.cart .quantity {
  float: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--roh-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--roh-white);
  min-height: 52px;
}

.roh-wc-pdp__summary form.cart .quantity .qty {
  width: 3.25rem;
  min-height: 52px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--roh-text);
  -moz-appearance: textfield;
  appearance: textfield;
}

.roh-wc-pdp__summary form.cart .quantity .qty::-webkit-outer-spin-button,
.roh-wc-pdp__summary form.cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.roh-wc-pdp__summary form.cart .single_add_to_cart_button,
.roh-wc-pdp__summary form.cart button.button.alt,
.woocommerce .roh-wc-pdp__summary button.single_add_to_cart_button {
  flex: 1 1 180px;
  float: none;
  margin: 0 !important;
  min-height: 52px;
  padding: 0.85rem 1.75rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--roh-gold) !important;
  color: var(--roh-black) !important;
  font-family: var(--roh-font-body);
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: none !important;
  transition:
    background 0.35s var(--roh-ease),
    transform 0.35s var(--roh-ease),
    color 0.35s var(--roh-ease) !important;
}

.roh-wc-pdp__summary form.cart .single_add_to_cart_button:hover,
.woocommerce .roh-wc-pdp__summary button.single_add_to_cart_button:hover {
  background: var(--roh-gold-light) !important;
  color: var(--roh-black) !important;
  transform: translateY(-2px);
}

.roh-wc-pdp__summary form.cart .single_add_to_cart_button:disabled,
.roh-wc-pdp__summary form.cart .single_add_to_cart_button.disabled {
  opacity: 0.55;
  transform: none;
  cursor: not-allowed;
}

/* Meta */
.roh-wc-pdp__summary .product_meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--roh-border);
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
  line-height: 1.55;
}

.roh-wc-pdp__summary .product_meta > span {
  display: block;
}

.roh-wc-pdp__summary .product_meta .sku,
.roh-wc-pdp__summary .product_meta a {
  color: var(--roh-text);
  font-weight: 500;
}

.roh-wc-pdp__summary .product_meta a:hover {
  color: var(--roh-gold-dark);
}

/* After summary: tabs + related */
.roh-wc-pdp__after {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}

.roh-wc-pdp__after .woocommerce-tabs {
  margin: 0;
  padding: 0;
  border: 0;
}

.roh-wc-tabs {
  background: var(--roh-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--roh-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.roh-wc-tabs__nav,
.roh-wc-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 !important;
  padding: 0 1.25rem !important;
  list-style: none;
  border: 0 !important;
  border-bottom: 1px solid var(--roh-border) !important;
  background: transparent !important;
  overflow: visible !important;
}

.roh-wc-tabs__nav::before,
.roh-wc-tabs ul.tabs::before {
  display: none !important;
}

.roh-wc-tabs__nav li,
.roh-wc-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.roh-wc-tabs__nav li a,
.roh-wc-tabs ul.tabs li a,
.roh-wc-tabs__link {
  display: block;
  padding: 1.15rem 1.1rem !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--roh-text-muted) !important;
  transition: color 0.3s var(--roh-ease), border-color 0.3s var(--roh-ease);
}

.roh-wc-tabs__nav li.active a,
.roh-wc-tabs ul.tabs li.active a,
.roh-wc-tabs__nav li a:hover,
.roh-wc-tabs ul.tabs li a:hover {
  color: var(--roh-text) !important;
  border-bottom-color: var(--roh-gold) !important;
}

.roh-wc-tabs__panel,
.roh-wc-tabs .woocommerce-Tabs-panel {
  margin: 0 !important;
  padding: clamp(1.75rem, 4vw, 2.75rem) !important;
  border: 0 !important;
  background: transparent !important;
}

.roh-wc-tabs__panel > h2:first-child,
.roh-wc-tabs .woocommerce-Tabs-panel > h2:first-child {
  font-family: var(--roh-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 1.15rem;
  letter-spacing: -0.01em;
}

.roh-wc-tabs__panel p,
.roh-wc-tabs .woocommerce-Tabs-panel p {
  color: var(--roh-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 68ch;
  margin: 0 0 1rem;
}

.roh-wc-tabs__panel p:last-child,
.roh-wc-tabs .woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}

.roh-wc-tabs__panel ul,
.roh-wc-tabs__panel ol {
  color: var(--roh-text-muted);
  line-height: 1.8;
  padding-left: 1.25rem;
  max-width: 68ch;
}

/* Reviews */
.roh-wc-tabs #reviews .woocommerce-Reviews-title {
  font-family: var(--roh-font-display);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.roh-wc-tabs #review_form_wrapper {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--roh-border);
}

.roh-wc-tabs #review_form .comment-form input[type="text"],
.roh-wc-tabs #review_form .comment-form input[type="email"],
.roh-wc-tabs #review_form .comment-form textarea {
  width: 100%;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  padding: 0.85rem 1rem;
  background: var(--roh-bg);
  transition: border-color 0.3s var(--roh-ease);
}

.roh-wc-tabs #review_form .comment-form input:focus,
.roh-wc-tabs #review_form .comment-form textarea:focus {
  outline: none;
  border-color: var(--roh-gold-dark);
}

.roh-wc-tabs #review_form .comment-form .form-submit input {
  border: 0;
  border-radius: 999px;
  background: var(--roh-black);
  color: var(--roh-white);
  padding: 0.9rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--roh-ease);
}

.roh-wc-tabs #review_form .comment-form .form-submit input:hover {
  background: var(--roh-gold-dark);
}

/* Related / upsells */
.roh-wc-related {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 0;
}

.roh-wc-related__header {
  margin-bottom: 2rem;
}

.roh-wc-related .products {
  margin: 0 !important;
}

.roh-wc-related ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .roh-wc-related ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .roh-wc-related ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

/* Notices on PDP */
.roh-wc-pdp .woocommerce-notices-wrapper,
.roh-wc-pdp .woocommerce-message,
.roh-wc-pdp .woocommerce-info,
.roh-wc-pdp .woocommerce-error {
  margin-bottom: 1.5rem;
}

.roh-wc-pdp .woocommerce-message,
.roh-wc-pdp .woocommerce-info {
  border-top-color: var(--roh-gold);
  background: var(--roh-white);
  border-radius: var(--roh-radius-sm);
}

.roh-wc-pdp .woocommerce-message::before,
.roh-wc-pdp .woocommerce-info::before {
  color: var(--roh-gold-dark);
}

/* Sticky ATC on mobile PDP */
.roh-wc-pdp-body .roh-sticky-atc {
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
}

.roh-wc-pdp-body .roh-sticky-atc.is-visible {
  display: flex;
}

.roh-wc-pdp-body .roh-float {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 960px) {
  .roh-wc-pdp-body .roh-float {
    bottom: 1.5rem;
  }
}

@keyframes roh-pdp-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .roh-wc-gallery__main,
  .roh-wc-pdp__summary,
  .roh-wc-gallery__main img,
  .roh-wc-gallery__thumb {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 639px) {
  .roh-wc-pdp {
    padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + 1.5rem);
  }

  .roh-wc-pdp__summary .product_title,
  .roh-wc-pdp__summary .entry-title {
    max-width: none;
  }

  .roh-wc-tabs__nav,
  .roh-wc-tabs ul.tabs {
    padding: 0 0.75rem !important;
  }

  .roh-wc-tabs__nav li a,
  .roh-wc-tabs ul.tabs li a {
    padding: 1rem 0.7rem !important;
    font-size: 0.6875rem;
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Cart & Checkout
   -------------------------------------------------------------------------- */

.roh-banner--checkout {
  min-height: clamp(180px, 22vh, 260px);
}

.roh-banner--checkout .roh-banner__content {
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + 1.75rem);
}

.roh-banner--checkout .roh-banner__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.roh-banner--checkout .roh-banner__veil {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78));
}

.roh-wc-checkout-section {
  background: var(--roh-bg);
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

/* Simple cart page — no hero, just title + bag */
.roh-wc-cart-section {
  background: var(--roh-bg);
  padding-top: calc(var(--roh-header-h) + var(--roh-safe-top) + clamp(1.75rem, 3.5vw, 2.75rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.roh-wc-cart-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--roh-border);
}

.roh-wc-cart-head__title {
  margin: 0;
  font-family: var(--roh-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--roh-text);
  line-height: 1.15;
}

.roh-wc-cart-head__continue {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
  text-decoration: none;
  transition: color 0.25s var(--roh-ease);
}

.roh-wc-cart-head__continue:hover {
  color: var(--roh-gold-dark);
}

/* Hide leftover cross-sell / product grids if page content still has them */
.roh-wc-cart .wp-block-woocommerce-cart-cross-sells-block,
.roh-wc-cart .wc-block-cart-cross-sells,
.roh-wc-cart .wp-block-woocommerce-product-collection,
.roh-wc-cart .cross-sells,
.roh-wc-cart .roh-wc-cart-article > .wp-block-separator {
  display: none !important;
}

.roh-wc-checkout-wrap {
  max-width: min(1120px, calc(100% - 2rem));
}

.roh-wc-cart .roh-wc-checkout-wrap {
  max-width: min(920px, calc(100% - 2rem));
}

.roh-wc-checkout-article,
.roh-wc-cart-article {
  color: var(--roh-text);
  font-size: 1rem;
  line-height: 1.6;
}

.roh-wc-checkout-article > *:first-child,
.roh-wc-cart-article > *:first-child {
  margin-top: 0;
}

/* Soft entry animation */
.roh-wc-checkout .roh-wc-checkout-wrap,
.roh-wc-cart .roh-wc-checkout-wrap {
  animation: roh-pdp-fade-up 0.55s var(--roh-ease-out) both;
}

/* ----- Blocks: shared form controls ----- */

.roh-wc-checkout .wc-block-components-checkout-step,
.roh-wc-cart .wc-block-cart {
  margin: 0 0 1.25rem;
}

.roh-wc-checkout .wc-block-components-checkout-step__heading,
.roh-wc-checkout .wc-block-components-title,
.roh-wc-cart .wc-block-cart__totals-title,
.roh-wc-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
  font-family: var(--roh-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--roh-text);
}

.roh-wc-checkout .wc-block-components-checkout-step__title,
.roh-wc-checkout .wc-block-components-title {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem) !important;
  margin: 0 0 0.35rem !important;
}

.roh-wc-checkout .wc-block-components-checkout-step__description,
.roh-wc-checkout .wc-block-components-checkout-step__container > p {
  color: var(--roh-text-muted);
  font-size: 0.875rem;
}

.roh-wc-checkout .wc-block-components-checkout-step__container,
.roh-wc-checkout .wc-block-checkout__actions {
  margin-top: 0.85rem;
}

.roh-wc-checkout .wc-block-components-text-input,
.roh-wc-checkout .wc-block-components-textarea,
.roh-wc-checkout .wc-block-components-combobox,
.roh-wc-checkout .wc-block-components-country-input,
.roh-wc-checkout .wc-block-components-state-input,
.roh-wc-cart .wc-block-components-text-input {
  margin-top: 0.75rem;
}

.roh-wc-checkout .wc-block-components-text-input label,
.roh-wc-checkout .wc-block-components-textarea label,
.roh-wc-checkout .wc-block-components-combobox label,
.roh-wc-cart .wc-block-components-text-input label {
  font-size: 0.6875rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--roh-text-muted) !important;
}

.roh-wc-checkout .wc-block-components-text-input input,
.roh-wc-checkout .wc-block-components-textarea textarea,
.roh-wc-checkout .wc-block-components-combobox input,
.roh-wc-checkout .wc-block-components-combobox .components-form-token-field__input,
.roh-wc-checkout select,
.roh-wc-cart .wc-block-components-text-input input,
.roh-wc-checkout .woocommerce form .form-row input.input-text,
.roh-wc-checkout .woocommerce form .form-row textarea,
.roh-wc-checkout .woocommerce form .form-row select,
.roh-wc-cart .woocommerce form .form-row input.input-text,
.roh-wc-cart .woocommerce form .form-row select {
  min-height: 52px;
  padding: 0.75rem 1rem !important;
  border: 1px solid var(--roh-border) !important;
  border-radius: var(--roh-radius-sm) !important;
  background: var(--roh-white) !important;
  font-family: var(--roh-font-body) !important;
  font-size: 0.9375rem !important;
  color: var(--roh-text) !important;
  box-shadow: none !important;
  transition: border-color 0.25s var(--roh-ease), box-shadow 0.25s var(--roh-ease);
}

.roh-wc-checkout .wc-block-components-text-input.is-active input,
.roh-wc-checkout .wc-block-components-text-input input:focus,
.roh-wc-checkout .wc-block-components-textarea textarea:focus,
.roh-wc-checkout .wc-block-components-combobox input:focus,
.roh-wc-checkout .woocommerce form .form-row input.input-text:focus,
.roh-wc-checkout .woocommerce form .form-row textarea:focus,
.roh-wc-checkout .woocommerce form .form-row select:focus,
.roh-wc-cart .wc-block-components-text-input input:focus {
  border-color: var(--roh-gold) !important;
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.18) !important;
  outline: none !important;
}

/* Address / contact cards */
.roh-wc-checkout .wc-block-components-address-card,
.roh-wc-checkout .wc-block-components-address-form {
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  background: var(--roh-white);
  padding: 1.15rem 1.25rem;
}

.roh-wc-checkout .wc-block-components-address-card {
  display: block;
}

.roh-wc-checkout .wc-block-components-address-card address {
  font-style: normal;
  line-height: 1.65;
  color: var(--roh-text);
  font-size: 0.9375rem;
}

.roh-wc-checkout .wc-block-components-address-card__edit,
.roh-wc-checkout a.wc-block-components-address-card__edit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--roh-gold-dark);
}

.roh-wc-checkout .wc-block-components-address-card__edit:hover {
  color: var(--roh-black);
}

/* Radio / payment options */
.roh-wc-checkout .wc-block-components-radio-control-accordion-option,
.roh-wc-checkout .wc-block-components-radio-control__option,
.roh-wc-checkout .wc-block-components-radio-control__option-layout {
  border: 1px solid var(--roh-border) !important;
  border-radius: var(--roh-radius-sm) !important;
  background: var(--roh-white);
  padding: 0.95rem 1.1rem !important;
  margin: 0 0 0.65rem !important;
  transition: border-color 0.25s var(--roh-ease), box-shadow 0.25s var(--roh-ease);
}

.roh-wc-checkout .wc-block-components-radio-control__option:hover,
.roh-wc-checkout .wc-block-components-radio-control-accordion-option:hover {
  border-color: #d9d0bb !important;
}

.roh-wc-checkout .wc-block-components-radio-control__option--checked-option-highlighted,
.roh-wc-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.roh-wc-checkout .wc-block-components-radio-control__option .wc-block-components-radio-control__input:checked + *,
.roh-wc-checkout label.wc-block-components-radio-control__option:has(input:checked) {
  border-color: var(--roh-gold) !important;
  box-shadow: 0 0 0 1px var(--roh-gold);
  background: #fffdf8;
}

.roh-wc-checkout .wc-block-components-radio-control__label,
.roh-wc-checkout .wc-block-components-payment-method-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--roh-text);
}

.roh-wc-checkout .wc-block-components-radio-control__input:checked,
.roh-wc-checkout input[type="radio"]:checked {
  accent-color: var(--roh-gold-dark);
}

/* Primary CTA buttons (Place order / Proceed) */
.roh-wc-checkout .wc-block-components-checkout-place-order-button,
.roh-wc-checkout .wc-block-components-button:not(.is-link):not(.wc-block-components-totals-coupon__button),
.roh-wc-cart .wc-block-cart__submit-button,
.roh-wc-cart .wc-block-components-button:not(.is-link),
.roh-wc-checkout #place_order,
.roh-wc-cart button[name="update_cart"],
.roh-wc-cart .checkout-button,
.roh-wc-cart a.checkout-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px !important;
  padding: 0.9rem 1.75rem !important;
  border: none !important;
  border-radius: 999px !important;
  background: var(--roh-black) !important;
  color: var(--roh-white) !important;
  font-family: var(--roh-font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background 0.3s var(--roh-ease), transform 0.3s var(--roh-ease), box-shadow 0.3s var(--roh-ease) !important;
}

.roh-wc-checkout .wc-block-components-checkout-place-order-button:hover,
.roh-wc-checkout .wc-block-components-button:not(.is-link):not(.wc-block-components-totals-coupon__button):hover,
.roh-wc-cart .wc-block-cart__submit-button:hover,
.roh-wc-cart .wc-block-components-button:not(.is-link):hover,
.roh-wc-checkout #place_order:hover,
.roh-wc-cart .checkout-button:hover,
.roh-wc-cart a.checkout-button:hover {
  background: var(--roh-gold-dark) !important;
  color: var(--roh-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 148, 66, 0.3) !important;
}

.roh-wc-checkout .wc-block-components-button.is-link,
.roh-wc-cart .wc-block-components-button.is-link {
  background: transparent !important;
  color: var(--roh-gold-dark) !important;
  min-height: auto !important;
  letter-spacing: 0.06em !important;
  border-radius: 0 !important;
  width: auto !important;
  padding: 0 !important;
  text-transform: none !important;
  font-size: 0.875rem !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Order summary / sidebar */
.roh-wc-checkout .wc-block-checkout__sidebar,
.roh-wc-checkout .wp-block-woocommerce-checkout-order-summary-block,
.roh-wc-cart .wc-block-cart__sidebar,
.roh-wc-cart .wp-block-woocommerce-cart-order-summary-block {
  background: var(--roh-white);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow: var(--roh-shadow);
  position: relative;
  overflow: hidden;
}

.roh-wc-checkout .wc-block-checkout__sidebar::before,
.roh-wc-checkout .wp-block-woocommerce-checkout-order-summary-block::before,
.roh-wc-cart .wc-block-cart__sidebar::before,
.roh-wc-cart .wp-block-woocommerce-cart-order-summary-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--roh-gold-dark), var(--roh-gold-light));
}

.roh-wc-checkout .wc-block-components-checkout-order-summary__title,
.roh-wc-cart .wc-block-cart__totals-title,
.roh-wc-checkout .wp-block-woocommerce-checkout-order-summary-block > .wc-block-components-panel > .wc-block-components-panel__button {
  font-family: var(--roh-font-display);
  font-size: 1.35rem !important;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.roh-wc-checkout .wc-block-components-order-summary-item,
.roh-wc-cart .wc-block-cart-items__row {
  border-color: var(--roh-border) !important;
  padding: 1rem 0 !important;
}

.roh-wc-checkout .wc-block-components-order-summary-item__image img,
.roh-wc-cart .wc-block-cart-item__image img {
  border-radius: var(--roh-radius-sm);
  background: var(--roh-bg);
}

.roh-wc-checkout .wc-block-components-product-name,
.roh-wc-cart .wc-block-components-product-name,
.roh-wc-checkout .wc-block-components-product-metadata,
.roh-wc-cart .wc-block-components-product-details {
  color: var(--roh-text);
  font-size: 0.9375rem;
}

.roh-wc-checkout .wc-block-components-product-price,
.roh-wc-cart .wc-block-components-product-price,
.roh-wc-checkout .wc-block-components-product-price__value,
.roh-wc-checkout .wc-block-formatted-money-amount {
  font-weight: 600;
  color: var(--roh-text);
}

.roh-wc-checkout .wc-block-components-product-price__regular,
.roh-wc-cart .price del,
.roh-wc-checkout del .wc-block-formatted-money-amount,
.roh-wc-checkout .wc-block-components-sale-badge {
  color: var(--roh-text-muted);
}

.roh-wc-checkout .wc-block-components-sale-badge,
.roh-wc-cart .wc-block-components-sale-badge {
  background: rgba(215, 181, 109, 0.18) !important;
  color: var(--roh-gold-dark) !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 0.6875rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem !important;
}

.roh-wc-checkout .wc-block-components-totals-wrapper,
.roh-wc-cart .wc-block-components-totals-wrapper,
.roh-wc-checkout .wc-block-components-totals-item,
.roh-wc-cart .wc-block-components-totals-item {
  border-color: var(--roh-border) !important;
  color: var(--roh-text);
}

.roh-wc-checkout .wc-block-components-totals-footer-item,
.roh-wc-cart .wc-block-components-totals-footer-item {
  border-top: 1px solid var(--roh-border) !important;
  padding-top: 0.85rem !important;
  margin-top: 0.35rem;
}

.roh-wc-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.roh-wc-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.roh-wc-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.roh-wc-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--roh-font-display);
  font-size: 1.2rem !important;
  font-weight: 500;
}

/* Coupons panel */
.roh-wc-checkout .wc-block-components-totals-coupon,
.roh-wc-cart .wc-block-components-totals-coupon,
.roh-wc-checkout .wc-block-components-panel {
  border-color: var(--roh-border) !important;
}

.roh-wc-checkout .wc-block-components-panel__button,
.roh-wc-cart .wc-block-components-panel__button {
  font-size: 0.875rem !important;
  font-weight: 600;
  color: var(--roh-text) !important;
}

.roh-wc-checkout .wc-block-components-totals-coupon__button,
.roh-wc-cart .wc-block-components-totals-coupon__button {
  min-height: 48px !important;
  border-radius: var(--roh-radius-sm) !important;
  background: var(--roh-gold) !important;
  color: var(--roh-black) !important;
  letter-spacing: 0.08em !important;
  width: auto !important;
  padding: 0.65rem 1.1rem !important;
  transform: none !important;
  box-shadow: none !important;
}

.roh-wc-checkout .wc-block-components-totals-coupon__button:hover,
.roh-wc-cart .wc-block-components-totals-coupon__button:hover {
  background: var(--roh-gold-light) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Main checkout grid breathing room */
.roh-wc-checkout .wp-block-woocommerce-checkout,
.roh-wc-checkout .wc-block-checkout,
.roh-wc-cart .wp-block-woocommerce-cart,
.roh-wc-cart .wc-block-cart {
  gap: clamp(1.5rem, 3vw, 2.5rem) !important;
}

.roh-wc-checkout .wc-block-checkout__main,
.roh-wc-cart .wc-block-cart__main {
  padding-right: 0 !important;
}

@media (min-width: 960px) {
  .roh-wc-checkout .wc-block-checkout__sidebar,
  .roh-wc-cart .wc-block-cart__sidebar {
    position: sticky;
    top: calc(var(--roh-header-h) + 1.25rem);
    align-self: start;
  }
}

/* Tighten default Blocks step spacing */
.roh-wc-checkout .wc-block-components-checkout-step {
  padding: 0 0 1.5rem !important;
  border-bottom: 1px solid var(--roh-border);
  margin-bottom: 1.5rem !important;
}

.roh-wc-checkout .wc-block-components-checkout-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0 !important;
  padding-bottom: 0.5rem !important;
}

.roh-wc-checkout .wc-block-checkout__actions {
  padding-top: 0.5rem !important;
}

/* Express payment / terms */
.roh-wc-checkout .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__heading::before,
.roh-wc-checkout .wc-block-components-express-payment,
.roh-wc-checkout .wc-block-components-express-payment-continue-rule {
  border-color: var(--roh-border) !important;
}

.roh-wc-checkout .wc-block-components-checkbox label,
.roh-wc-checkout .wc-block-checkout__terms {
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
  line-height: 1.55;
}

.roh-wc-checkout .wc-block-components-checkbox a,
.roh-wc-checkout .wc-block-checkout__terms a {
  color: var(--roh-gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Notices */
.roh-wc-checkout .woocommerce-notices-wrapper,
.roh-wc-cart .woocommerce-notices-wrapper,
.roh-wc-checkout .wc-block-components-notice-banner,
.roh-wc-cart .wc-block-components-notice-banner {
  margin-bottom: 1.25rem;
}

.roh-wc-checkout .woocommerce-message,
.roh-wc-checkout .woocommerce-info,
.roh-wc-cart .woocommerce-message,
.roh-wc-cart .woocommerce-info,
.roh-wc-checkout .wc-block-components-notice-banner.is-success,
.roh-wc-checkout .wc-block-components-notice-banner.is-info,
.roh-wc-cart .wc-block-components-notice-banner.is-success,
.roh-wc-cart .wc-block-components-notice-banner.is-info {
  border-top-color: var(--roh-gold);
  border-color: var(--roh-border);
  background: var(--roh-white);
  border-radius: var(--roh-radius-sm);
  color: var(--roh-text);
}

.roh-wc-checkout .woocommerce-error,
.roh-wc-cart .woocommerce-error,
.roh-wc-checkout .wc-block-components-notice-banner.is-error,
.roh-wc-cart .wc-block-components-notice-banner.is-error {
  border-radius: var(--roh-radius-sm);
}

/* ----- Classic checkout / cart fallback ----- */

.roh-wc-checkout .woocommerce,
.roh-wc-cart .woocommerce {
  max-width: none;
}

.roh-wc-checkout form.checkout.woocommerce-checkout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .roh-wc-checkout form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    align-items: start;
  }

  .roh-wc-checkout form.checkout #customer_details {
    grid-column: 1;
  }

  .roh-wc-checkout form.checkout #order_review_heading,
  .roh-wc-checkout form.checkout #order_review {
    grid-column: 2;
  }

  .roh-wc-checkout form.checkout #order_review_heading {
    position: sticky;
    top: calc(var(--roh-header-h) + 1rem);
  }

  .roh-wc-checkout form.checkout #order_review {
    position: sticky;
    top: calc(var(--roh-header-h) + 3.5rem);
  }
}

.roh-wc-checkout .woocommerce-billing-fields > h3,
.roh-wc-checkout .woocommerce-shipping-fields > h3,
.roh-wc-checkout .woocommerce-additional-fields > h3,
.roh-wc-checkout #order_review_heading,
.roh-wc-cart .cart_totals > h2,
.roh-wc-checkout .woocommerce-checkout-payment .payment_methods {
  font-family: var(--roh-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.roh-wc-checkout .woocommerce-billing-fields > h3,
.roh-wc-checkout .woocommerce-shipping-fields > h3,
.roh-wc-checkout .woocommerce-additional-fields > h3,
.roh-wc-checkout #order_review_heading,
.roh-wc-cart .cart_totals > h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  margin: 0 0 1rem;
}

.roh-wc-checkout .woocommerce form .form-row label,
.roh-wc-cart .woocommerce form .form-row label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--roh-text-muted);
  margin-bottom: 0.45rem;
}

.roh-wc-checkout #order_review,
.roh-wc-cart .cart_totals {
  background: var(--roh-white);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  padding: 1.35rem;
  box-shadow: var(--roh-shadow);
  position: relative;
  overflow: hidden;
}

.roh-wc-checkout #order_review::before,
.roh-wc-cart .cart_totals::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--roh-gold-dark), var(--roh-gold-light));
}

.roh-wc-checkout .woocommerce-checkout-review-order-table,
.roh-wc-cart table.shop_table {
  border: none !important;
  border-collapse: collapse;
  width: 100%;
}

.roh-wc-checkout .woocommerce-checkout-review-order-table th,
.roh-wc-checkout .woocommerce-checkout-review-order-table td,
.roh-wc-cart table.shop_table th,
.roh-wc-cart table.shop_table td {
  border-color: var(--roh-border) !important;
  padding: 0.85rem 0 !important;
  font-size: 0.9375rem;
  background: transparent !important;
}

.roh-wc-checkout .woocommerce-checkout-payment {
  background: transparent !important;
  border: none !important;
  padding: 1rem 0 0 !important;
}

.roh-wc-checkout .woocommerce-checkout-payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  margin: 0 0 1rem !important;
}

.roh-wc-checkout .woocommerce-checkout-payment ul.payment_methods li {
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  background: var(--roh-white);
  padding: 0.95rem 1.1rem;
  margin: 0 0 0.65rem;
  list-style: none;
}

.roh-wc-checkout .woocommerce-checkout-payment ul.payment_methods li label {
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--roh-text);
}

.roh-wc-cart table.shop_table {
  background: var(--roh-white);
  border: 1px solid var(--roh-border) !important;
  border-radius: var(--roh-radius);
  overflow: hidden;
}

.roh-wc-cart table.shop_table img {
  border-radius: var(--roh-radius-sm);
  width: 72px;
  height: auto;
}

.roh-wc-cart .quantity .qty {
  min-height: 44px;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  text-align: center;
}

.roh-wc-cart .actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.roh-wc-cart .actions .coupon .input-text {
  min-height: 48px;
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  padding: 0.65rem 1rem;
  background: var(--roh-white);
}

.roh-wc-cart .actions .coupon .button,
.roh-wc-cart button[name="update_cart"] {
  width: auto !important;
  min-height: 48px !important;
  padding: 0.65rem 1.25rem !important;
  background: var(--roh-gold) !important;
  color: var(--roh-black) !important;
  border-radius: 999px !important;
  letter-spacing: 0.1em !important;
  transform: none !important;
  box-shadow: none !important;
}

.roh-wc-cart .actions .coupon .button:hover,
.roh-wc-cart button[name="update_cart"]:hover {
  background: var(--roh-gold-light) !important;
  transform: none !important;
}

.roh-wc-cart .wc-proceed-to-checkout {
  padding: 1rem 0 0;
}

.roh-wc-cart .wc-proceed-to-checkout a.checkout-button {
  margin: 0 !important;
}

/* Order received / thank you */
.roh-wc-checkout .woocommerce-order {
  background: var(--roh-white);
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--roh-shadow);
}

.roh-wc-checkout .woocommerce-thankyou-order-received {
  font-family: var(--roh-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.roh-wc-checkout ul.woocommerce-order-overview {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

@media (min-width: 700px) {
  .roh-wc-checkout ul.woocommerce-order-overview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.roh-wc-checkout ul.woocommerce-order-overview li {
  border: 1px solid var(--roh-border);
  border-radius: var(--roh-radius-sm);
  padding: 0.9rem 1rem;
  background: var(--roh-bg);
  margin: 0 !important;
  font-size: 0.8125rem;
  color: var(--roh-text-muted);
}

.roh-wc-checkout ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--roh-text);
  font-size: 0.9375rem;
}

/* Mobile refinements */
@media (max-width: 759px) {
  .roh-wc-checkout-wrap {
    max-width: calc(100% - 1.25rem);
  }

  .roh-wc-checkout .wc-block-checkout__sidebar,
  .roh-wc-checkout .wp-block-woocommerce-checkout-order-summary-block,
  .roh-wc-cart .wc-block-cart__sidebar,
  .roh-wc-cart .wp-block-woocommerce-cart-order-summary-block,
  .roh-wc-checkout #order_review,
  .roh-wc-cart .cart_totals {
    padding: 1.1rem;
  }

  .roh-wc-checkout .wc-block-components-checkout-step {
    padding-bottom: 1.15rem !important;
    margin-bottom: 1.15rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .roh-wc-checkout .roh-wc-checkout-wrap,
  .roh-wc-cart .roh-wc-checkout-wrap {
    animation: none;
  }

  .roh-wc-checkout .wc-block-components-checkout-place-order-button:hover,
  .roh-wc-cart .wc-block-cart__submit-button:hover,
  .roh-wc-checkout #place_order:hover {
    transform: none;
  }
}

/* ==========================================================================
   Global mobile / tablet refinements
   ========================================================================== */

@media (max-width: 1023px) {
  :root {
    --roh-container: min(1440px, calc(100% - 2rem));
    --roh-container-wide: min(1680px, calc(100% - 1.25rem));
    --roh-header-h: 64px;
    --roh-space-section: clamp(3.5rem, 9vw, 6rem);
  }

  .roh-header__inner {
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
  }

  .roh-header__actions {
    gap: 0.15rem;
  }

  .roh-icon-btn,
  .roh-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .roh-logo {
    max-width: min(148px, 40vw);
    height: 42px;
    max-height: 42px;
  }

  .roh-header .roh-logo,
  .roh-header .roh-logo a {
    height: 42px;
    max-height: 42px;
  }

  .roh-logo__img,
  img.roh-logo__img,
  .roh-header .roh-logo img,
  .roh-header .roh-logo__img,
  header.roh-header .roh-logo img.roh-logo__img {
    height: 42px !important;
    max-width: 148px !important;
    max-height: 42px !important;
  }

  .roh-hero__content {
    padding-bottom: clamp(3.25rem, 8vh, 5rem);
  }

  .roh-hero__brand {
    font-size: clamp(2.1rem, 9vw, 3.5rem);
    margin-bottom: 1rem;
  }

  .roh-hero__title {
    font-size: clamp(1.15rem, 4.2vw, 1.55rem);
    line-height: 1.4;
  }

  .roh-hero__text {
    font-size: 0.975rem;
    max-width: 38ch;
  }

  .roh-hero__actions {
    width: 100%;
    margin-top: 1.75rem;
  }

  .roh-hero__actions .roh-btn {
    flex: 1 1 auto;
    min-width: min(100%, 10.5rem);
    justify-content: center;
  }

  .roh-hero__scroll {
    display: none;
  }

  .roh-section__title {
    max-width: none;
  }

  .roh-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .roh-banner__content {
    padding-inline: 0;
  }

  .roh-banner__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .roh-drawer__panel {
    width: min(100%, 420px);
  }

  .roh-search {
    padding-inline: 1rem;
    padding-top: 14vh;
  }

  .roh-float {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 759px) {
  :root {
    --roh-container: min(1440px, calc(100% - 1.5rem));
    --roh-container-wide: min(1680px, calc(100% - 1rem));
  }

  .roh-icon-btn--hide-xs {
    display: none !important;
  }

  .roh-hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .roh-hero__media img {
    object-position: center 18%;
  }

  .roh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .roh-hero__actions .roh-btn {
    width: 100%;
    min-width: 0;
  }

  .roh-cat {
    aspect-ratio: 4 / 5;
  }

  .roh-cat__body {
    padding: 1.35rem;
  }

  .roh-cat__title {
    font-size: 1.5rem;
  }

  .roh-why__grid {
    gap: 1rem;
  }

  .roh-why__item {
    padding: 1.35rem 1.25rem;
  }

  .roh-product-grid {
    gap: 0.85rem;
  }

  .roh-product__cart {
    margin: 0 0.85rem 0.85rem;
  }

  .roh-product__body {
    padding: 0.9rem 0.85rem 1rem;
  }

  .roh-testi {
    padding: 1.5rem;
  }

  .roh-eyecare__content {
    padding-top: 0.25rem;
  }

  .roh-eyecare__list li {
    gap: 0.85rem;
  }

  .roh-shop__toolbar {
    padding: 0.85rem;
    gap: 0.85rem;
  }

  .roh-shop__toolbar-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .roh-sort {
    width: 100%;
    justify-content: space-between;
  }

  .roh-sort select {
    flex: 1;
    min-width: 0;
  }

  .roh-filters-toggle {
    width: 100%;
    justify-content: center;
  }

  .roh-shop-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .roh-cta-band {
    padding-inline: 1.25rem;
    text-align: center;
  }

  .roh-cta-band .roh-btn {
    width: 100%;
    max-width: 20rem;
  }

  .roh-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }

  .roh-footer__map {
    min-height: 180px;
  }

  .roh-welcome__gallery {
    grid-template-columns: 1fr 0.92fr;
    gap: 0.55rem;
  }

  .roh-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .roh-modal__panel {
    max-height: min(92dvh, 100%);
    overflow: auto;
  }

  .roh-sticky-atc {
    gap: 0.75rem;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  .roh-sticky-atc .roh-btn {
    flex: 1;
    min-width: 0;
  }

  .roh-contact__info .roh-section__title {
    max-width: none;
  }

  .roh-form {
    padding: 1.35rem 1.15rem;
  }

  .roh-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .roh-banner__actions .roh-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  :root {
    --roh-container: min(1440px, calc(100% - 1.25rem));
    --roh-header-h: 60px;
  }

  .roh-icon-btn--hide-sm {
    display: none !important;
  }

  .roh-logo {
    max-width: min(128px, 38vw);
    height: 38px;
    max-height: 38px;
  }

  .roh-header .roh-logo,
  .roh-header .roh-logo a {
    height: 38px;
    max-height: 38px;
  }

  .roh-logo__img,
  img.roh-logo__img,
  .roh-header .roh-logo img,
  .roh-header .roh-logo__img,
  header.roh-header .roh-logo img.roh-logo__img {
    height: 38px !important;
    max-width: 128px !important;
    max-height: 38px !important;
  }

  .roh-icon-btn,
  .roh-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .roh-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .roh-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .roh-product__title {
    font-size: 0.95rem;
  }

  .roh-product__meta,
  .roh-rating {
    font-size: 0.6875rem;
  }

  .roh-btn {
    min-height: 46px;
    padding-inline: 1.15rem;
  }

  .roh-btn--sm {
    min-height: 40px;
  }

  .roh-marquee__track {
    gap: 2.5rem;
  }

  .roh-contact-channels__list,
  .roh-about-trust__list {
    gap: 1rem;
  }

  .roh-form__row--2 {
    grid-template-columns: 1fr;
  }

  .roh-modal__media img {
    min-height: 220px;
  }
}

/* Touch / coarse pointer polish */
@media (pointer: coarse) {
  .roh-nav__link,
  .roh-mobile__link,
  .roh-footer__links a,
  .roh-shop-cat,
  .roh-filters-toggle {
    min-height: 44px;
  }

  .roh-product:hover {
    transform: none;
  }

  .roh-offer:hover {
    transform: none;
  }
}


