:root {
  --rcp-ink: #1c2a22;
  --rcp-muted: #5c6b62;
  --rcp-bg: #f7f4ef;
  --rcp-card: #fffdf8;
  --rcp-accent: #2f6b4f;
  --rcp-accent-2: #c45c26;
  --rcp-line: #ddd4c6;
  --rcp-dark: #14201a;
  --rcp-radius: 18px;
  --font: "Segoe UI", "Avenir Next", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html {
  font-size: medium;
  -webkit-text-size-adjust: auto;
  text-size-adjust: auto;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
@supports (font: -apple-system-body) {
  html:not(.rcp-sysfont) { font: -apple-system-body; }
}
@media (max-width: 900px) {
  html { font-size: 115%; }
  @supports (font: -apple-system-body) {
    html:not(.rcp-sysfont) {
      font: -apple-system-body;
      font-size: 115%;
    }
  }
}
html.rcp-sysfont {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.rcp {
  margin: 0;
  font-family: var(--font);
  color: var(--rcp-ink);
  background: var(--rcp-bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rcp-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rcp-header, .rcp-main, .rcp-footer, .rcp-hero, .rcp-hero-image, .rcp-hero-overlay {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.rcp-wrap {
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.rcp-announce {
  background: var(--rcp-accent-2);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.rcp-announce a { color: #fff; text-decoration: underline; }
.cms-admin-bar {
  position: sticky; top: 0; z-index: 60;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0.95rem;
  background: #0f172a; color: #e2e8f0;
  padding: 0.48rem 1rem; font-size: 0.8rem; font-weight: 600;
}
.cms-admin-who { color: #94a3b8; font-weight: 500; }
.cms-admin-bar a { color: #fff; text-decoration: none; }
.cms-admin-bar a:hover { text-decoration: underline; }
body.has-admin-bar .rcp-announce { top: 2.2rem; }
body.has-admin-bar .rcp-header { top: 2.2rem; }
body.has-admin-bar .rcp-announce + .rcp-header { top: calc(2.2rem + var(--rcp-announce-h, 2.4rem)); }
.rcp-header {
  background: var(--rcp-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.rcp-announce + .rcp-header { top: 0; }
.rcp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem 1rem; min-height: 76px; flex-wrap: wrap; }
.rcp-logo { color: #fff; font-weight: 750; font-size: 1.2rem; letter-spacing: 0.01em; text-decoration: none; min-width: 0; overflow-wrap: anywhere; }
.rcp-logo span { font-weight: 400; margin-left: 0.35rem; opacity: 0.75; font-size: 0.88rem; }
.rcp-search { display: flex; flex: 1 1 12rem; min-width: 0; max-width: 360px; }
.rcp-search input {
  flex: 1 1 auto; min-width: 0; width: 100%; border: 0; border-radius: 999px 0 0 999px; padding: 0.55rem 0.9rem;
  font: inherit; font-size: 1rem;
}
.rcp-search button {
  flex: 0 0 auto; border: 0; background: var(--rcp-accent); color: #fff; border-radius: 0 999px 999px 0; padding: 0.55rem 0.9rem; font-weight: 600; cursor: pointer;
}
.rcp-header-end { display: flex; align-items: center; gap: 0.55rem; flex: 0 0 auto; }
.rcp-nav { display: flex; gap: 0.95rem; align-items: center; flex-wrap: wrap; }
.rcp-nav a { color: #e8efe9; font-size: 0.95rem; text-decoration: none; }
.rcp-nav-item { position: relative; }
.rcp-nav-item > a { display: inline-block; }
.rcp-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: #14201a;
  border: 1px solid #2a3c32;
  border-radius: 10px;
  padding: 0.4rem 0;
  z-index: 45;
  box-shadow: 0 12px 30px rgba(20, 32, 26, 0.35);
}
.rcp-sub a { display: block; padding: 0.45rem 0.9rem; white-space: nowrap; }
.rcp-nav-item:hover .rcp-sub,
.rcp-nav-item:focus-within .rcp-sub { display: block; }
.rcp-nav a:hover, .rcp-cta { color: #fff; }
.rcp-cta {
  display: inline-block;
  background: var(--rcp-accent);
  color: #fff !important;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
}
.rcp-cta:hover { background: #245540; }
.rcp-nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.4rem; }
.rcp-header .rcp-cart-link { color: #fff; }
.rcp-cart-link,
.rcp-sticky-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rcp-cart-icon { display: block; }
.rcp-cart-count {
  position: absolute;
  top: -0.4rem;
  right: -0.55rem;
  min-width: 1.15rem;
  text-align: center;
  background: var(--rcp-accent-2);
  color: #fff;
  border-radius: 999px;
  padding: 0.05rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}
.rcp-main { min-height: 60vh; padding-bottom: 3rem; overflow-x: clip; }
.rcp-product-page { padding-top: 2rem; padding-bottom: 2rem; }
.rcp-hero, .rcp-hero-image {
  position: relative;
  overflow: hidden;
  color: var(--rcp-hero-fg, #fff);
  height: var(--rcp-hero-h, 8.8rem);
  min-height: var(--rcp-hero-h, 8.8rem);
  padding: 0;
  background: #14201a;
}
.rcp-hero h1 {
  font-size: clamp(1.2rem, 1.35rem, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.2rem;
  max-width: 40ch;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.rcp-lead {
  font-size: 0.95rem; max-width: 46rem; margin: 0; opacity: 0.94;
  width: 100%; min-width: 0; overflow-wrap: break-word; word-break: break-word; white-space: normal;
}
.rcp-hero-overlay .rcp-wrap { width: 100%; min-width: 0; max-width: 100%; }
.rcp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--rcp-hero-pos, center 38%);
}
.rcp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0.7rem 0;
  --rcp-overlay: var(--rcp-hero-overlay, 0.8);
  background: linear-gradient(
    90deg,
    rgba(16, 24, 20, var(--rcp-overlay)) 0%,
    rgba(16, 24, 20, calc(var(--rcp-overlay) * 0.6)) 58%,
    rgba(16, 24, 20, calc(var(--rcp-overlay) * 0.28)) 100%
  );
}
.rcp-hero:has(.rcp-hero-shop) {
  height: auto;
  min-height: var(--rcp-hero-h, 10.2rem);
}
.rcp-hero .rcp-cta { margin-top: 0.4rem; padding: 0.4rem 0.9rem; font-size: 0.88rem; }
.rcp-hero-shop { max-width: 100%; white-space: normal; text-align: center; }
.rcp-prose { padding-top: 2rem; padding-bottom: 2rem; }
.rcp-prose h2 { font-size: 1.8rem; }
.rcp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.rcp-card { background: var(--rcp-card); border: 1px solid var(--rcp-line); border-radius: var(--rcp-radius); padding: 1.15rem; box-shadow: 0 10px 28px rgba(20,32,26,.05); }
.rcp-card h3 { margin-top: 0.5rem; }
.rcp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; padding-top: 2rem; padding-bottom: 2rem; }
.rcp-footer { background: #101814; color: #c9d4cc; padding: 2.5rem 0 1.5rem; }
.rcp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.rcp-footer a { color: #9ad0b0; }
.rcp-legal { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; font-size: 0.85rem; }
.rcp-form { display: grid; gap: 0.75rem; max-width: 32rem; }
.rcp-form input, .rcp-form textarea, .rcp-form select {
  width: 100%; padding: 0.7rem 0.8rem; border: 1px solid var(--rcp-line); border-radius: 10px; font: inherit;
}
.rcp-faq { background: var(--rcp-card); border: 1px solid var(--rcp-line); border-radius: 12px; padding: 0.85rem 1rem; margin: 0.6rem 0; }
.rcp-success { color: var(--rcp-accent); font-weight: 600; }
.rcp-shop-page { padding-top: 0.85rem; padding-bottom: 3rem; }
.rcp-shop-bar {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: nowrap;
  margin: 0 0 0.85rem;
}
.rcp-shop-bar .rcp-tabs {
  margin: 0; flex: 1 1 auto; flex-wrap: nowrap; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.rcp-shop-bar .rcp-tabs::-webkit-scrollbar { display: none; }
.rcp-shop-bar .rcp-tab { flex: 0 0 auto; }
.rcp-sort { display: flex; gap: 0.45rem; align-items: center; color: var(--rcp-muted); font-size: 0.92rem; flex: 0 0 auto; }
.rcp-sort select { border: 1px solid var(--rcp-line); border-radius: 999px; padding: 0.45rem 0.75rem; font: inherit; background: #fff; }
.rcp-cat-row,
.rcp-cat-pick,
.rcp-cat-all { display: none; }
.rcp-cat-pick select {
  width: 100%; border: 1px solid var(--rcp-line); border-radius: 999px; padding: 0.45rem 0.75rem; font: inherit; background: #fff;
}
.rcp-check { display: flex; gap: 0.5rem; align-items: flex-start; }
.rcp-check input { width: auto; margin-top: 0.25rem; }
.rcp-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.65rem 0 0.85rem; }
.rcp-tab {
  border: 1px solid var(--rcp-line); background: #fff; border-radius: 999px; padding: 0.45rem 0.9rem; cursor: pointer; font: inherit;
}
.rcp-tab.is-active { background: var(--rcp-accent); color: #fff; border-color: var(--rcp-accent); }
.rcp-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rcp-product-card { cursor: pointer; text-align: left; width: 100%; background: var(--rcp-card); border: 1px solid var(--rcp-line); border-radius: var(--rcp-radius); overflow: hidden; padding: 0; font: inherit; color: inherit; text-decoration: none; display: block; }
.rcp-product-card:hover { text-decoration: none; color: inherit; }
.rcp-product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #ece6dc; }
.rcp-product-card h3 { font-size: 1rem; margin: 0.75rem 0.85rem 0.25rem; }
.rcp-product-card p, .rcp-product-card .rcp-price { margin: 0 0.85rem 0.9rem; color: var(--rcp-muted); font-size: 0.92rem; }
.rcp-dialog {
  position: relative; overflow: hidden;
  border: 0; padding: 0; width: min(1180px, 100%); max-width: 100%; max-height: 92vh; border-radius: 20px; background: var(--rcp-card);
}
.rcp-dialog::backdrop { background: rgba(16,24,20,.62); }
.rcp-dialog-body { display: flex; flex-direction: column; max-height: 92vh; overflow: auto; }
.rcp-dialog-top { display: grid; grid-template-columns: minmax(260px, 1.15fr) minmax(300px, 0.95fr); align-items: start; gap: 0; }
.rcp-dialog-media { background: #ece6dc; position: relative; }
.rcp-dialog-media img, .rcp-dialog-media video, .rcp-dialog-media iframe { width: 100%; height: auto; object-fit: contain; max-height: 46vh; background: #fff; display: block; }
.rcp-gallery { display: flex; flex-direction: column; }
.rcp-gallery-main { position: relative; }
.rcp-gallery-stage { display: flex; align-items: center; justify-content: center; background: #fff; aspect-ratio: 4 / 3; width: 100%; }
.rcp-gallery-stage img, .rcp-gallery-stage video { width: 100%; height: 100%; max-height: none; object-fit: contain; }
.rcp-gallery-stage iframe { width: 100%; height: 100%; border: 0; }
.rcp-dialog-detail { padding: 0 1.5rem 2rem; border-top: 1px solid var(--rcp-line); }
#rcp-product-root { display: block; overflow: visible; }
#rcp-product-root .rcp-dialog-top { background: var(--rcp-card); border: 1px solid var(--rcp-line); border-radius: var(--rcp-radius); overflow: visible; }
#rcp-product-root .rcp-dialog-detail { padding: 1.2rem 0 0; border-top: 0; overflow: visible; }
.rcp-gallery-hit {
  position: absolute; top: 0; bottom: 0; width: 33.333%; z-index: 2;
  border: 0; padding: 0; background: transparent; cursor: pointer;
  touch-action: pan-y;
}
.rcp-gallery-hit.prev { left: 0; }
.rcp-gallery-hit.next { right: 0; }
.rcp-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none;
  background: rgba(20,32,26,.72); color: #fff; border: 0; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
}
.rcp-gallery-arrow.prev { left: 0.55rem; }
.rcp-gallery-arrow.next { right: 0.55rem; }
.rcp-gallery-thumbs { display: flex; gap: 0.4rem; padding: 0.55rem; overflow-x: auto; background: #d9d0c3; }
.rcp-thumb { border: 2px solid transparent; padding: 0; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; cursor: pointer; background: #fff; flex: 0 0 auto; color: var(--rcp-accent); font-weight: 700; }
.rcp-thumb img { width: 100%; height: 100%; object-fit: cover; max-height: none; }
.rcp-thumb.is-active { border-color: var(--rcp-accent); }
.rcp-video { margin: 0 0 1rem; background: #1c2a22; width: 100%; max-width: 100%; }
.rcp-video iframe, .rcp-video video { width: 100%; max-width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; display: block; }
.rcp-dialog-copy { padding: 0.85rem 1rem 1rem; min-width: 0; max-width: 100%; }
.rcp-dialog-copy h1 { font-size: 1.25rem; line-height: 1.25; margin: 0 0 0.35rem; overflow-wrap: break-word; }
.rcp-dialog-copy .rcp-stars, .rcp-dialog-copy .rcp-price { margin: 0 0 0.4rem; }
.rcp-dialog-copy .rcp-price { font-size: 1.15rem; }
.rcp-price-opt { margin: -0.2rem 0 0.55rem; font-size: 0.88rem; color: var(--rcp-muted); }
.rcp-price-opt:empty, .rcp-price-opt[hidden] { display: none; }
.rcp-buy-form { gap: 0.45rem; max-width: none; }
.rcp-buy-form label { font-size: 0.88rem; display: grid; gap: 0.2rem; }
.rcp-buy-form input, .rcp-buy-form select { padding: 0.45rem 0.55rem; border-radius: 8px; }
.rcp-buy-form .rcp-cta { margin-top: 0.15rem; padding: 0.6rem 1rem; width: 100%; }
.rcp-highlights { margin: 0.65rem 0 0; padding: 0 0 0 1.15rem; font-size: 0.88rem; line-height: 1.35; color: var(--rcp-ink); }
.rcp-highlights li { margin: 0.18rem 0; }
.rcp-dd { position: relative; min-width: 0; }
.rcp-dd-label { display: block; font-size: 0.88rem; font-weight: 600; margin: 0 0 0.2rem; }
.rcp-dd-toggle, .rcp-dd-item {
  display: flex; align-items: center; gap: 0.55rem; width: 100%; text-align: left;
  background: #fff; color: inherit; font: inherit; cursor: pointer;
}
.rcp-dd-toggle {
  justify-content: space-between; border: 1px solid var(--rcp-line); border-radius: 8px; padding: 0.35rem 0.5rem;
}
.rcp-dd-caret { color: var(--rcp-muted); font-size: 0.85rem; }
.rcp-dd-row { display: flex; align-items: center; gap: 0.55rem; min-width: 0; }
.rcp-dd-row img, .rcp-choice-ph {
  width: 36px; height: 36px; aspect-ratio: 1; object-fit: cover; border-radius: 4px; background: #eee8dc; flex: 0 0 auto;
}
.rcp-dd-menu {
  position: absolute; left: 0; right: 0; z-index: 8; margin-top: 2px; max-height: 240px; overflow: auto;
  border: 1px solid var(--rcp-line); border-radius: 8px; background: #fff; box-shadow: 0 10px 24px rgba(20,32,26,.12);
}
.rcp-dd-item { border: 0; border-bottom: 1px solid var(--rcp-line); padding: 0.35rem 0.55rem; border-radius: 0; }
.rcp-dd-item:last-child { border-bottom: 0; }
.rcp-dd-item:hover, .rcp-dd-item.is-active { background: #f3efe6; }
.rcp-prod-nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 90;
  background: rgba(20,32,26,.72); color: #fff; border: 0; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.rcp-prod-nav.prev { left: max(0.55rem, env(safe-area-inset-left)); }
.rcp-prod-nav.next { right: max(0.55rem, env(safe-area-inset-right)); }
.rcp-prod-nav[hidden] { display: none; }
.rcp-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 120;
  border: 2px solid #fff;
  background: #14201a;
  color: #fff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.rcp-close:hover { background: var(--rcp-accent-2); }
.rcp-stars { color: var(--rcp-accent-2); letter-spacing: 0.05em; }
.rcp-stars-link {
  display: inline; border: 0; padding: 0; background: none; font: inherit;
  color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 0.18em;
}
.rcp-rec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.rcp-recs { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.rcp-recs h2 { margin: 0; }
.rcp-recs-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 0 0 1rem; }
.rcp-carousel-nav { display: flex; gap: 0.4rem; }
.rcp-carousel-nav button {
  width: 2.2rem; height: 2.2rem; border-radius: 999px; border: 1px solid var(--rcp-line);
  background: #fff; color: var(--rcp-ink); font-size: 1.35rem; line-height: 1; cursor: pointer;
}
.rcp-carousel-nav button:hover { background: var(--rcp-accent); color: #fff; border-color: var(--rcp-accent); }
.rcp-recs, .rcp-carousel { min-width: 0; max-width: 100%; }
.rcp-carousel {
  display: flex; gap: 0.85rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0 0 0.65rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.rcp-carousel-card {
  flex: 0 0 min(230px, 72vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.rcp-carousel-card:hover { text-decoration: none; }
.rcp-carousel-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #ece6dc; }
.rcp-carousel-card h3 { font-size: 1rem; margin: 0.75rem 0.85rem 0.25rem; }
.rcp-carousel-card .rcp-price { margin: 0 0.85rem 0.9rem; }
.rcp-featured-card {
  display: grid; grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.1fr); gap: 1.25rem;
  align-items: center; background: var(--rcp-card); border: 1px solid var(--rcp-line);
  border-radius: var(--rcp-radius); overflow: hidden; color: inherit; text-decoration: none;
}
.rcp-featured-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; max-height: none; }
.rcp-featured-card > div { padding: 1rem 1.2rem 1.2rem; }
.rcp-featured-card h3 { margin: 0 0 0.4rem; }
.rcp-featured-card .rcp-cta { margin-top: 0.75rem; }
.rcp-muted { color: var(--rcp-muted); }
.rcp-price { font-weight: 700; color: var(--rcp-ink); }
.rcp-ptabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 1.2rem 0 0.6rem; }
.rcp-ppanel { margin-top: 0.4rem; }
.rcp-prose img, .rcp-prose iframe, .rcp-prose video, .rcp-prose pre { max-width: 100%; }
.rcp-prose table, .rcp-specs { width: 100%; max-width: 100%; overflow-x: auto; }
.rcp-specs { width: 100%; border-collapse: collapse; }
.rcp-specs th, .rcp-specs td { text-align: left; padding: 0.45rem 0.55rem; border-bottom: 1px solid var(--rcp-line); vertical-align: top; }
.rcp-specs th { width: 38%; color: var(--rcp-muted); font-weight: 600; }
.rcp-prose .wp-block-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.rcp-prose details.rcp-acc {
  border: 1px solid var(--rcp-line);
  border-radius: 10px;
  margin: 0.45rem 0;
  background: #fff;
}
.rcp-prose details.rcp-acc summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.7rem 0.9rem;
  color: var(--rcp-accent);
  list-style: none;
}
.rcp-prose details.rcp-acc summary::-webkit-details-marker { display: none; }
.rcp-prose details.rcp-acc[open] summary { background: var(--rcp-accent); color: #fff; }
.rcp-prose details.rcp-acc .rcp-acc-body { padding: 0.85rem 1rem 1rem; }
@media (max-width: 980px) {
  .rcp-product-grid, .rcp-rec-grid, .rcp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .rcp-dialog-top, .rcp-split, .rcp-footer-grid, .rcp-featured-card { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .rcp-wrap {
    padding-left: max(1.2rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.2rem, env(safe-area-inset-right, 0px));
  }
  .rcp-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo end"
      "search search"
      "nav nav";
    gap: 0.45rem 0.55rem;
    min-width: 0;
    min-height: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.65rem;
    align-items: center;
  }
  .rcp-logo,
  .rcp-header .rcp-logo { grid-area: logo; font-size: 1.22rem !important; line-height: 1.15; }
  .rcp-logo span,
  .rcp-header .rcp-logo span { display: inline; margin-left: 0.2rem; font-size: 0.95rem !important; }
  .rcp-header-end { grid-area: end; gap: 0.2rem; }
  .rcp-header .rcp-cart-link {
    width: 2.65rem;
    height: 2.65rem;
  }
  .rcp-header .rcp-cart-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .rcp-header .rcp-cart-count {
    top: 0.05rem;
    right: 0.05rem;
    font-size: 0.72rem;
  }
  .rcp-search { grid-area: search; max-width: none; width: 100%; flex: none; }
  .rcp-search input { padding: 0.5rem 0.75rem; font-size: 1rem; }
  .rcp-search button { padding: 0.5rem 0.75rem; }
  .rcp-hero, .rcp-hero-image, .rcp-hero:has(.rcp-hero-shop) {
    height: auto;
    min-height: 0;
  }
  .rcp-hero-overlay {
    position: relative;
    inset: auto;
    min-height: 8.2rem;
    padding: 1rem 0 1.15rem;
  }
  .rcp-hero h1 { max-width: 100%; width: 100%; font-size: 1.15rem; }
  .rcp-hero .rcp-lead { font-size: 0.88rem; max-width: 100%; width: 100%; }
  .rcp-hero .rcp-cta { font-size: 0.82rem; padding: 0.35rem 0.75rem; max-width: 100%; }
  .rcp-nav { display: none; grid-area: nav; width: 100%; flex-direction: column; align-items: flex-start; padding: 0.25rem 0 0.5rem; }
  .rcp-nav.open { display: flex; }
  .rcp-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.85rem;
    line-height: 1;
    padding: 0;
  }
  .rcp-sub { position: static; display: block; box-shadow: none; border: 0; padding: 0.2rem 0 0.2rem 0.8rem; min-width: 0; }
  .rcp-nav-item { width: 100%; }
  .rcp-product-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .rcp-product-card h3 { font-size: 0.88rem; margin: 0.55rem 0.6rem 0.2rem; overflow-wrap: break-word; }
  .rcp-prose .wp-block-columns { grid-template-columns: 1fr; }
  .rcp-shop-bar { flex-wrap: wrap; }
  .rcp-sort { width: 100%; }
  .rcp-sort select { width: 100%; max-width: 100%; }
  .rcp-shop-bar .rcp-tabs { display: none; }
  .rcp-cat-row {
    display: flex; align-items: center; gap: 0.45rem; width: 100%;
  }
  .rcp-cat-all { display: inline-flex; flex: 0 0 auto; }
  .rcp-cat-pick { display: block; flex: 1 1 auto; min-width: 0; }
  .rcp-product-page { padding-top: 0.85rem; padding-bottom: 2rem; }
  .rcp-product-page > .rcp-muted { overflow-wrap: break-word; }
  .rcp-dialog-copy h1 { overflow-wrap: anywhere; max-width: 100%; width: 100%; }
  #rcp-product-root,
  #rcp-product-root .rcp-dialog-top,
  #rcp-product-root .rcp-dialog-media,
  #rcp-product-root .rcp-gallery,
  #rcp-product-root .rcp-gallery-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  #rcp-product-root .rcp-dialog-top { border-radius: 12px; overflow: hidden; }
  .rcp-gallery-stage {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
  }
  .rcp-gallery-stage img,
  .rcp-gallery-stage video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .rcp-gallery-stage iframe, .rcp-dialog-media iframe, .rcp-dialog-media video {
    width: 100%; max-width: 100%; height: 100%;
  }
  .rcp-gallery-thumbs { padding: 0.4rem; }
  .rcp-thumb { width: 48px; height: 48px; }
  .rcp-video { max-height: 56vw; }
  .rcp-video iframe, .rcp-video video { max-height: 56vw; }
  .rcp-carousel { max-width: 100%; }
  .rcp-carousel-card { flex-basis: min(200px, 68vw); }
  .rcp-prod-nav { display: none; }
  body.rcp .rcp-wrap {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px)) !important;
  }
}

.bm-form { display: grid; gap: 0.75rem; max-width: 32rem; }
.bm-form input, .bm-form textarea, .bm-form select {
  width: 100%; padding: 0.55rem 0.65rem; border: 1px solid var(--rcp-line); border-radius: 10px; font: inherit;
}
.bm-cta, a.bm-cta {
  display: inline-block; background: var(--rcp-accent); color: #fff; border: 0; border-radius: 10px;
  padding: 0.7rem 1.1rem; font: inherit; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none;
}
.bm-cta:hover, a.bm-cta:hover { background: #25563f; text-decoration: none; color: #fff; }
.bm-muted { color: var(--rcp-muted); }
#bm-stripe-el { margin: 0 0 0.75rem; }
#bm-stripe-el.bm-stripe-ready { min-height: 12rem; padding: 0.75rem; border: 1px solid var(--rcp-line); border-radius: 12px; background: #fff; }

.bm-cart-list { display: grid; gap: 0.85rem; }
.bm-cart-item {
  display: grid; gap: 0.65rem; padding: 0.9rem 1rem; background: var(--rcp-card);
  border: 1px solid var(--rcp-line); border-radius: var(--rcp-radius);
}
.bm-cart-edit { color: inherit; text-decoration: none; }
.bm-cart-edit:hover { text-decoration: none; }
.bm-cart-edit img { max-width: 140px; margin-top: 0.45rem; border-radius: 8px; }
.bm-cart-item-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.bm-cart-qty { display: flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; }
.bm-cart-qty input { width: 4.2rem; padding: 0.35rem 0.4rem; border: 1px solid var(--rcp-line); border-radius: 8px; }
.bm-cart-item-price { font-weight: 700; }
.bm-cart-remove {
  width: 100%; padding: 0.55rem 0.75rem; border: 1px solid var(--rcp-line); border-radius: 10px;
  background: #fff; color: #9b2c2c; font: inherit; cursor: pointer;
}
.bm-cart-totals { margin: 1.1rem 0 0.6rem; display: grid; gap: 0.35rem; }
.bm-cart-totals div { display: flex; justify-content: space-between; }
.bm-cart-total { font-weight: 700; font-size: 1.1rem; }
.bm-cart-checkout { width: 100%; }

.rcp-sticky-buy {
  display: none; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0.85rem; background: var(--rcp-card); border-top: 1px solid var(--rcp-line);
}
.rcp-sticky-buy.is-on { display: flex; }
.rcp-sticky-buy-copy { flex: 1; min-width: 0; }
.rcp-sticky-buy-copy strong { display: block; font-size: 1.05rem; }
.rcp-sticky-opt { display: block; font-size: 0.82rem; color: var(--rcp-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rcp-sticky-cart {
  flex-shrink: 0; color: var(--rcp-accent); background: none; border: 0;
  padding: 0.25rem; cursor: pointer; font: inherit;
}
.rcp-sticky-cart .rcp-cart-count { background: var(--rcp-accent); }
.rcp-sticky-add { width: auto; margin: 0; padding: 0.55rem 0.9rem; white-space: nowrap; }
html.rcp-product-view .rcp-announce + .rcp-header,
body.rcp-product-view .rcp-announce + .rcp-header {
  top: var(--rcp-announce-h, 0px);
}
html.rcp-product-view .rcp-ptabs-sentinel,
body.rcp-product-view .rcp-ptabs-sentinel { height: 0; }
html.rcp-product-view .rcp-ptabs,
body.rcp-product-view .rcp-ptabs {
  position: sticky;
  top: var(--rcp-sticky-top, 0px);
  z-index: 36;
  background: var(--rcp-bg);
  padding: 0.55rem 0;
  box-shadow: 0 8px 16px rgba(20,32,26,.08);
}
html.rcp-product-view .rcp-ptabs.is-fixed,
body.rcp-product-view .rcp-ptabs.is-fixed {
  position: fixed;
  top: var(--rcp-sticky-top, 0px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.55rem max(1rem, calc((100vw - 1180px) / 2 + 1rem));
}
html.rcp-product-view .rcp-sticky-buy.is-on,
body.rcp-product-view .rcp-sticky-buy.is-on {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  box-shadow: 0 -8px 22px rgba(20,32,26,.16);
  padding-left: max(1rem, calc((100vw - 1180px) / 2 + 1rem));
  padding-right: max(1rem, calc((100vw - 1180px) / 2 + 1rem));
}
html.rcp-product-view body,
body.rcp.rcp-product-view { padding-bottom: 4.75rem; }
@media (max-width: 980px) {
  html.rcp-product-view .rcp-announce,
  html.rcp-product-view .rcp-header,
  body.rcp-product-view .rcp-announce,
  body.rcp-product-view .rcp-header { position: relative; top: auto; z-index: 20; }
  html.rcp-product-view .rcp-ptabs,
  body.rcp-product-view .rcp-ptabs {
    top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0.55rem 0;
  }
  html.rcp-product-view .rcp-ptabs.is-fixed,
  body.rcp-product-view .rcp-ptabs.is-fixed {
    margin: 0;
    padding: 0.55rem max(1.25rem, env(safe-area-inset-left, 0px)) 0.55rem max(1.25rem, env(safe-area-inset-right, 0px));
  }
}
.rcp-cart-pop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.rcp-cart-pop.is-open { display: block; }
.rcp-cart-pop-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 20, 0.58);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.rcp-cart-pop-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(28rem, 100%);
  background: var(--rcp-card, #fff);
  box-shadow: -12px 0 40px rgba(16, 24, 20, 0.18);
  display: flex;
  flex-direction: column;
}
.rcp-cart-pop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--rcp-line);
}
.rcp-cart-pop-head h2 { margin: 0; font-size: 1.2rem; }
.rcp-cart-pop-close {
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  padding: 0.15rem 0.4rem;
}
.rcp-cart-pop-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.rcp-cart-pop-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.75rem;
  align-items: start;
}
.rcp-cart-pop-item img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 8px;
  background: #ece6dc;
}
.rcp-cart-pop-item strong { display: block; font-size: 0.95rem; }
.rcp-cart-pop-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.rcp-cart-pop-meta input { width: 3.4rem; padding: 0.3rem 0.35rem; border: 1px solid var(--rcp-line); border-radius: 8px; }
.rcp-cart-pop-remove {
  background: none;
  border: 0;
  color: var(--rcp-muted);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font: inherit;
}
.rcp-cart-pop-price { font-weight: 700; white-space: nowrap; }
.rcp-cart-pop-foot {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--rcp-line);
  display: grid;
  gap: 0.55rem;
}
.rcp-cart-pop-totals { display: grid; gap: 0.3rem; }
.rcp-cart-pop-totals div { display: flex; justify-content: space-between; }
.rcp-cart-pop-totals .rcp-cart-pop-total { font-weight: 700; font-size: 1.05rem; }
.rcp-cart-pop-actions { display: grid; gap: 0.5rem; }
.rcp-cart-pop-actions .rcp-cta { text-align: center; }
.rcp-cart-pop-continue {
  background: none;
  border: 0;
  color: var(--rcp-accent);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  padding: 0.35rem;
}
body.rcp-cart-pop-on { overflow: hidden; }
