:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #fff;
  --surface-2: #f7f7f7;
  --text: #050505;
  --muted: #737373;
  --line: #dedede;
  --line-strong: rgba(0,0,0,.24);
  --button-bg: #000;
  --button-text: #fff;
  --inverse: #fff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow: 0 18px 60px rgba(0,0,0,.10);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mobile-header: 58px;
  --bottom-nav: 66px;
  --desktop-header: 84px;
  --container: 1280px;
  --desktop-shop-cols: 4;
  --mobile-shop-cols: 2;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text, .sr-only {
  position:absolute;width:1px;height:1px;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;
}
.screen-reader-text:focus, .skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  z-index: 10000;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app {
  min-height: 100vh;
  background: radial-gradient(circle at 14% 0%, rgba(0,0,0,.035), transparent 28%), linear-gradient(#fff,#fff);
}

.mobile-header, .bottom-nav { display:none; }

.desktop-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--desktop-header);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.desktop-header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  align-items: center;
  gap: 24px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:18px;
}
.brand-mark {
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:#000;color:#fff;
  font-size:15px;letter-spacing:.02em;font-weight:900;
}
.brand-logo img { max-height: 46px; width:auto; }
.desktop-nav {
  display:flex;justify-content:center;align-items:center;gap:26px;
  font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
}
.desktop-nav a:hover { border-bottom:1px solid currentColor; }
.desktop-actions { display:flex;justify-content:flex-end;align-items:center;gap:10px; }

.icon-button {
  position:relative;
  width:42px;height:42px;border:1px solid var(--line);
  border-radius:var(--radius-pill);display:grid;place-items:center;background:var(--surface);
  transition:transform .15s ease,border-color .15s ease;
}
.icon-button:hover { transform:translateY(-1px);border-color:var(--line-strong); }
.icon-button .badge, .badge {
  position:absolute;transform:translate(14px,-13px);
  min-width:18px;height:18px;padding:0 5px;border-radius:999px;
  background:#000;color:#fff;font-size:10px;display:grid;place-items:center;font-weight:800;
}
.desktop-search-pill {
  min-width:170px;height:42px;border:1px solid var(--line);
  border-radius:var(--radius-pill);display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:0 14px 0 18px;color:var(--muted);font-size:12px;letter-spacing:.04em;background:var(--surface);
}

main.site-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 28px 80px;
}

.hero {
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:28px;
  align-items:stretch;
}
.hero-panel {
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:var(--surface);
  min-height:100%;
  position:relative;
}
.hero-copy {
  padding:54px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.eyebrow {
  margin:0 0 18px;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.24em;
  text-transform:uppercase;
}
h1,h2,h3,p { margin-top:0; }
.hero h1 {
  max-width:650px;
  margin-bottom:22px;
  font-size:clamp(44px,6vw,86px);
  line-height:.9;
  letter-spacing:-.065em;
}
.hero-copy p {
  max-width:560px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  margin-bottom:30px;
}
.cta-row { display:flex;gap:12px;flex-wrap:wrap; }
.rp-theme .btn,
.rp-theme a.button,
.rp-theme button.button,
.rp-theme input.button,
.rp-theme .single_add_to_cart_button {
  min-height:46px;
  padding:0 22px;
  border-radius:var(--radius-pill);
  border:1px solid var(--button-bg);
  background:var(--button-bg);
  color:var(--button-text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  line-height:1;
  text-decoration:none;
}
.rp-theme .btn.secondary,
.rp-theme a.button.secondary,
.rp-theme button.button.secondary {
  background:#fff;
  color:#000;
}
.hero-visual {
  display:grid;place-items:center;
  background:radial-gradient(circle at 50% 35%, rgba(0,0,0,.08), transparent 30%),linear-gradient(160deg,#fff,#f5f5f5);
}
.phone-frame {
  width:min(310px,80%);
  aspect-ratio:9/18;
  border:10px solid #000;
  border-radius:42px;
  background:#fff;
  box-shadow:0 24px 80px rgba(0,0,0,.24);
  overflow:hidden;
  position:relative;
}
.phone-notch {
  width:86px;height:22px;border-radius:0 0 16px 16px;background:#000;
  position:absolute;top:0;left:50%;transform:translateX(-50%);z-index:2;
}
.phone-screen { height:100%;padding:42px 16px 18px;display:flex;flex-direction:column;gap:14px; }
.mini-card { border:1px solid var(--line);border-radius:18px;padding:12px;background:#fff; }
.mini-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:8px; }
.mini-img { aspect-ratio:1;border-radius:14px;background:linear-gradient(140deg,#f8f8f8,#e8e8e8); }

.section-head {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin:44px 0 22px;
}
.section-head h1, .section-head h2 {
  font-size:clamp(42px,7vw,82px);
  line-height:.9;
  letter-spacing:-.06em;
  margin:0;
}
.section-head h2 { font-size:clamp(28px,4vw,54px);letter-spacing:-.05em; }
.section-head p {
  max-width:420px;
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

.panel {
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:22px;
}
.panel h1, .panel h2 {
  margin-bottom:18px;
  font-size:clamp(28px,4vw,48px);
  line-height:.95;
  letter-spacing:-.05em;
}
.muted { color:var(--muted);line-height:1.65; }

.rp-theme .product-grid,
.rp-theme .woocommerce ul.products,
.rp-theme main.site-main .products {
  display:grid;
  grid-template-columns:repeat(var(--desktop-shop-cols), minmax(0,1fr));
  gap:16px;
  margin:0;
  padding:0;
  list-style:none;
}
.rp-theme .product-card,
.rp-theme.woocommerce ul.products li.product.product-card,
.rp-theme .woocommerce ul.products li.product.product-card {
  width:auto;
  float:none;
  margin:0;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  transition:transform .16s ease,border-color .16s ease;
  position:relative;
}
.product-card:hover { transform:translateY(-3px);border-color:var(--line-strong); }
.product-img {
  aspect-ratio:1;
  background:radial-gradient(circle at 55% 40%, rgba(0,0,0,.10), transparent 26%),linear-gradient(145deg,#fafafa,#ededed);
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
}
.product-img img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:16px;
}
.product-shape {
  width:46%;
  aspect-ratio:1;
  border-radius:34% 66% 42% 58%;
  background:#111;
  opacity:.88;
}
.product-shape.light { background:#ddd;border:1px solid #cfcfcf; }
.product-shape.tall { width:34%;aspect-ratio:.7/1.25;border-radius:999px 999px 24px 24px; }
.like-btn {
  position:absolute;
  top:12px;right:12px;
  width:36px;height:36px;border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);
  display:grid;place-items:center;z-index:2;
}
.rp-theme .like-btn.active,
.rp-theme .wishlist-single.active {
  background:#000;
  color:#fff;
  border-color:#000;
}
.product-info { padding:14px; }
.product-name {
  min-height:34px;
  margin-bottom:8px;
  font-size:12px;
  font-weight:900;
  line-height:1.35;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.product-meta {
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.product-price { color:#000;font-weight:900; }
.quick-add {
  width:100%;
  margin-top:12px;
  min-height:38px;
  border:1px solid #000;
  border-radius:var(--radius-pill);
  background:#000;
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
}

.drawer-overlay {
  position:fixed;inset:0;z-index:180;background:rgba(0,0,0,.28);
  opacity:0;pointer-events:none;transition:opacity .18s ease;
}
.drawer-overlay.open { opacity:1;pointer-events:auto; }
.drawer {
  position:fixed;top:0;right:0;z-index:200;width:min(430px,100vw);height:100vh;
  background:#fff;border-left:1px solid var(--line);
  transform:translateX(100%);
  transition:transform .22s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
}
.drawer.open { transform:translateX(0); }
.drawer-head {
  min-height:74px;padding:0 20px;border-bottom:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;
}
.drawer-head h2 { margin:0;font-size:18px;letter-spacing:.12em;text-transform:uppercase; }
.drawer-body { padding:20px;overflow:auto;flex:1; }

.search-full {
  position:fixed;inset:0;z-index:220;background:rgba(255,255,255,.97);
  opacity:0;pointer-events:none;transition:opacity .16s ease;
  padding:max(24px, env(safe-area-inset-top)) 24px 24px;
}
.search-full.open { opacity:1;pointer-events:auto; }
.search-box { max-width:900px;margin:8vh auto 0; }
.search-box form {
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:10px;
  margin-bottom:24px;
}
.search-box input {
  height:60px;border:1px solid #000;border-radius:var(--radius-pill);
  padding:0 24px;font-size:18px;outline:none;
}
.search-results { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px; }
.toast {
  position:fixed;left:50%;bottom:24px;transform:translate(-50%,20px);z-index:400;
  min-width:220px;max-width:min(420px,calc(100vw - 32px));
  padding:13px 18px;border-radius:var(--radius-pill);background:#000;color:#fff;
  font-size:13px;text-align:center;opacity:0;pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;
}
.toast.show { opacity:1;transform:translate(-50%,0); }

.mobile-only { display:none; }

@media (max-width:767px) {
  :root { --desktop-header:0px; }
  body {
    padding-top:var(--mobile-header);
    padding-bottom:calc(var(--bottom-nav) + env(safe-area-inset-bottom));
  }
  .desktop-header { display:none; }
  .mobile-header {
    display:grid;
    grid-template-columns:48px 1fr 48px;
    align-items:center;
    height:var(--mobile-header);
    position:fixed;top:0;left:0;right:0;z-index:120;
    background:rgba(255,255,255,.94);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(18px);
    padding:0 8px;
  }
  .mobile-header .brand { justify-content:center;font-size:14px;letter-spacing:.18em; }
  .mobile-header .brand-mark { width:34px;height:34px;font-size:12px; }
  .brand-logo img { max-height:36px; }
  .mobile-icon { width:44px;height:44px;border-radius:50%;display:grid;place-items:center; }

  .bottom-nav {
    position:fixed;left:0;right:0;bottom:0;z-index:120;
    display:grid;grid-template-columns:repeat(7,1fr);
    min-height:calc(var(--bottom-nav) + env(safe-area-inset-bottom));
    padding-bottom:env(safe-area-inset-bottom);
    background:rgba(255,255,255,.94);
    border-top:1px solid var(--line);
    backdrop-filter:blur(18px);
  }
  .bottom-nav a, .bottom-nav button {
    display:grid;place-items:center;align-content:center;gap:3px;min-width:0;
    color:var(--muted);font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
  }
  .bottom-nav span:first-child { font-size:20px;line-height:1; }

  main.site-main { padding:14px 12px 32px; }
  .hero { min-height:auto;display:block; }
  .hero-panel { border-radius:22px; }
  .hero-copy {
    padding:30px 22px;
    min-height:calc(100vh - var(--mobile-header) - var(--bottom-nav) - 34px);
    justify-content:center;
  }
  .hero h1 { font-size:clamp(48px,16vw,72px);letter-spacing:-.07em; }
  .hero-copy p { font-size:14px;line-height:1.62; }
  .hero-visual { display:none; }
  .cta-row { display:grid; }
  .btn { width:100%;min-height:50px; }
  .section-head { display:block;margin:28px 0 16px; }
  .section-head h1, .section-head h2 { margin-bottom:10px;font-size:36px; }
  .section-head p { font-size:14px; }
  .product-grid, .products {
    grid-template-columns:repeat(var(--mobile-shop-cols), minmax(0,1fr));
    gap:10px;
  }
  .product-card { border-radius:16px; }
  .product-info { padding:10px; }
  .product-name { font-size:10px;min-height:30px; }
  .product-meta { display:block;font-size:11px; }
  .quick-add { min-height:34px;font-size:9px; }
  .like-btn { width:32px;height:32px;top:8px;right:8px; }

  .drawer {
    width:100vw;border-left:0;border-radius:24px 24px 0 0;
    top:auto;bottom:0;height:min(82vh,720px);
    transform:translateY(100%);
  }
  .drawer.open { transform:translateY(0); }
  .drawer-head { min-height:62px; }

  .search-full { padding:calc(var(--mobile-header) + 18px) 12px 24px; }
  .search-box { margin:0; }
  .search-box form { grid-template-columns:1fr; }
  .search-box input { height:54px;font-size:16px; }
  .search-results { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .rp-theme .desktop-only { display:none; }
  .mobile-only { display:block; }
  .toast { bottom:calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 16px); }
}

@media (min-width:768px) and (max-width:1140px) {
  .desktop-header-inner { grid-template-columns:170px 1fr auto; }
  .desktop-search-pill { min-width:128px; }
  .product-grid, .products { grid-template-columns:repeat(2,minmax(0,1fr)); }
}


.like-count {
  position:absolute;
  right:-5px;
  bottom:-5px;
  min-width:17px;
  height:17px;
  padding:0 5px;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-size:9px;
  font-weight:900;
  display:grid;
  place-items:center;
}
.like-btn.active .like-count {
  background:#fff;
  color:#000;
}


.like-count {
  position:absolute;
  right:-5px;
  bottom:-5px;
  min-width:17px;
  height:17px;
  padding:0 5px;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-size:9px;
  font-weight:900;
  display:grid;
  place-items:center;
}
.like-btn.active .like-count {
  background:#fff;
  color:#000;
}
.cart-drawer-lines {
  display:grid;
  gap:0;
}
.cart-line {
  display:grid;
  grid-template-columns:74px 1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 0;
  border-top:1px solid rgba(0,0,0,.08);
}
.cart-line:first-child { border-top:0; }
.cart-img {
  aspect-ratio:1;
  border-radius:16px;
  background:linear-gradient(145deg,#f8f8f8,#ededed);
  overflow:hidden;
  display:block;
}
.cart-img img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
}
.cart-line h3 {
  margin:0 0 6px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.cart-remove {
  margin-top:6px;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.summary-row {
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  color:var(--muted);
}
.summary-row.total {
  color:#000;
  font-size:18px;
  font-weight:900;
  border-bottom:0;
}
.wishlist-actions {
  display:flex;
  justify-content:flex-end;
  margin:-8px 0 18px;
}
.search-results .product-card .quick-add {
  display:none;
}


.rp-rating {
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--muted);
  font-size:12px;
  line-height:1;
}
.rp-rating.compact {
  font-size:11px;
}
.rp-rating.large {
  font-size:14px;
}
.rp-stars {
  position:relative;
  display:inline-block;
  font-size:15px;
  letter-spacing:.06em;
  line-height:1;
}
.rp-rating.large .rp-stars {
  font-size:19px;
}
.rp-stars-empty {
  color:rgba(0,0,0,.18);
}
.rp-stars-fill {
  position:absolute;
  left:0;
  top:0;
  overflow:hidden;
  white-space:nowrap;
  color:#000;
}
.rp-rating-text {
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.rp-card-rating {
  width:100%;
  margin-top:10px;
  min-height:24px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
}
.rp-single-rating {
  width:100%;
  margin:0 0 18px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  background:#fff;
  text-align:left;
}
.rp-single-rating > span:last-child {
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.rp-reviews-drawer {
  display:grid;
  gap:22px;
}
.rp-review-summary {
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:20px;
  align-items:start;
  padding-bottom:18px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.rp-review-average {
  display:block;
  font-size:44px;
  line-height:.9;
  letter-spacing:-.05em;
  margin-bottom:10px;
}
.rp-rating-bars {
  display:grid;
  gap:8px;
}
.rp-rating-bar {
  display:grid;
  grid-template-columns:34px 1fr 28px;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}
.rp-rating-bar i {
  height:7px;
  border-radius:999px;
  background:rgba(0,0,0,.08);
  overflow:hidden;
}
.rp-rating-bar b {
  display:block;
  height:100%;
  border-radius:999px;
  background:#000;
}
.rp-rating-bar em {
  font-style:normal;
  text-align:right;
}
.rp-reviews-list {
  display:grid;
  gap:12px;
}
.rp-review-card {
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:#fff;
}
.rp-review-card header {
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.rp-review-card header strong {
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.rp-review-card header span {
  color:var(--muted);
  font-size:12px;
}
.rp-review-content {
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
  margin-top:10px;
}
.rp-review-content p:last-child {
  margin-bottom:0;
}
.rp-review-verified {
  margin:10px 0 0;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.rp-review-form {
  display:grid;
  gap:12px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.08);
}
.rp-review-form h3 {
  margin:0;
  font-size:15px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.rp-review-form label {
  display:grid;
  gap:7px;
}
.rp-review-form label span {
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.rp-review-form input,
.rp-review-form select,
.rp-review-form textarea {
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:12px 14px;
}
.rp-review-form textarea {
  resize:vertical;
}
.rp-theme .rp-hp {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}
@media (max-width:767px) {
  .rp-single-rating {
    display:grid;
  }
  .rp-review-summary {
    grid-template-columns:1fr;
  }
}


/* v0.6.0 cleanup */
.product-meta-clean {
  justify-content:flex-start;
  min-height:22px;
}
.product-meta-clean .product-price {
  font-size:13px;
}
.home-contact-visual {
  padding:24px;
  display:grid;
  align-content:center;
  gap:18px;
}
.home-contact-image {
  margin:0;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg,#f8f8f8,#ededed);
}
.home-contact-image img {
  width:100%;
  height:min(320px,36vh);
  object-fit:cover;
}
.home-contact-card {
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}
.home-contact-card h2 {
  margin:0 0 12px;
  font-size:clamp(28px,4vw,48px);
  line-height:.95;
  letter-spacing:-.05em;
}
.home-social-links {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.home-social-links a,
.footer-social-links a {
  min-height:34px;
  padding:0 13px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  display:inline-flex;
  align-items:center;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.site-footer {
  max-width:var(--container);
  margin:24px auto calc(var(--bottom-nav) + 24px);
  padding:0 28px;
}
.site-footer-inner {
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  padding:28px;
  display:grid;
  grid-template-columns:minmax(260px,1.25fr) repeat(3,minmax(0,1fr));
  gap:28px;
}
.site-footer-brand p {
  color:var(--muted);
  line-height:1.65;
  margin:16px 0;
}
.site-footer-col {
  display:grid;
  align-content:start;
  gap:10px;
}
.site-footer-col h3 {
  margin:0 0 8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.site-footer-col a {
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}
.site-footer-col a:hover {
  color:var(--text);
}
.site-footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:var(--muted);
  font-size:11px;
  padding:14px 8px 0;
}
.site-footer-bottom p {
  margin:0;
}
@media (max-width:900px) {
  .site-footer-inner {
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width:767px) {
  .home-contact-visual {
    display:block;
    padding:18px;
  }
  .home-contact-image img {
    height:220px;
  }
  .home-contact-card {
    margin-top:12px;
    box-shadow:none;
  }
  .site-footer {
    padding:0 12px;
    margin-bottom:calc(var(--bottom-nav) + 18px);
  }
  .site-footer-inner {
    grid-template-columns:1fr;
    border-radius:22px;
    padding:22px;
  }
  .site-footer-bottom {
    display:grid;
  }
}


/* v0.7.0 bottom nav and rating cleanup */
@media (max-width:767px) {
  body.rp-theme .bottom-nav {
    grid-template-columns:repeat(7,1fr);
    overflow:hidden;
    height:calc(var(--bottom-nav) + env(safe-area-inset-bottom));
    min-height:calc(var(--bottom-nav) + env(safe-area-inset-bottom));
  }
  body.rp-theme .bottom-nav a,
  body.rp-theme .bottom-nav button {
    width:100%;
    height:var(--bottom-nav);
    min-width:0;
    padding:5px 1px 4px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    text-align:center;
    line-height:1.05;
    font-size:7.5px;
    letter-spacing:.02em;
  }
  .bottom-nav a span:first-child,
  .bottom-nav button span:first-child {
    width:22px;
    height:22px;
    display:grid;
    place-items:center;
    font-size:var(--mobile-nav-icon-size, 19px);
    line-height:1;
    margin:0;
  }
  .bottom-nav a span:last-child,
  .bottom-nav button span:last-child {
    min-height:18px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    white-space:normal;
    overflow:hidden;
    max-width:100%;
  }
}
.product-card .rp-rating-text:empty,
.search-results .rp-rating-text:empty,
.rp-wishlist-grid .rp-rating-text:empty {
  display:none;
}
.product-card .rp-rating-text {
  display:none;
}
.rp-card-rating {
  min-height:18px;
}
.rp-card-rating .rp-stars {
  font-size:13px;
}
.rp-mag-native {
  display:grid;
  gap:14px;
}
.rp-mag-head h3 {
  margin:0;
  font-size:24px;
  line-height:1;
  letter-spacing:-.04em;
}
.rp-mag-tabs {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.rp-mag-tabs a {
  min-height:40px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  display:grid;
  place-items:center;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:center;
}
.rp-mag-tabs a.active {
  background:#000;
  color:#fff;
  border-color:#000;
}
.rp-mag-review-box {
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  background:#fff;
}
.rp-mag-review-box h4 {
  margin:0 0 8px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.rp-review-dash {
  margin:0 0 6px;
  font-size:28px;
  line-height:1;
}
.rp-review-actions {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:12px;
}
.rp-review-actions a {
  min-height:38px;
  border:1px solid #000;
  border-radius:var(--radius-pill);
  display:grid;
  place-items:center;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.rp-review-actions a:first-child {
  background:#000;
  color:#fff;
}


/* v0.8.0 configurable icons */
.rp-icon {
  display:inline-grid;
  place-items:center;
  line-height:1;
  font-style:normal;
  font-weight:900;
}
.icon-button .rp-icon,
.mobile-icon .rp-icon,
.desktop-search-pill .rp-icon {
  font-size:var(--header-icon-size, 18px);
}
.bottom-nav .rp-icon {
  width:24px;
  height:24px;
  font-size:var(--mobile-nav-icon-size, 19px);
  line-height:1;
}
.bottom-nav .bottom-nav-label {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:18px;
  line-height:1.05;
}
.wishlist-single .rp-single-wishlist-icon {
  display:inline-flex;
  margin-right:8px;
}
.like-btn .rp-icon {
  font-size:16px;
}
@media (max-width:767px) {
  body.rp-theme .bottom-nav a span:first-child,
  body.rp-theme .bottom-nav button span:first-child {
    font-size:var(--mobile-nav-icon-size, 19px);
  }
}


.footer-cookie-button {
  width:max-content;
  min-height:28px;
  padding:0 11px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:#fff;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.footer-cookie-button:hover {
  color:var(--text);
  border-color:var(--line-strong);
}


/* v1.0 Google Web Stories in Magazine */
.rp-web-stories-box {
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  background:#fff;
  display:grid;
  gap:12px;
}
.rp-web-stories-box h4 {
  margin:0 0 6px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.rp-web-stories-list {
  display:grid;
  gap:9px;
}
.rp-web-story-row {
  display:grid;
  grid-template-columns:54px 1fr;
  gap:10px;
  align-items:center;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:8px;
  background:#fff;
}
.rp-web-story-thumb {
  width:54px;
  height:72px;
  border-radius:12px;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#f8f8f8,#e8e8e8);
}
.rp-web-story-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.rp-web-story-thumb i {
  font-style:normal;
  font-size:22px;
  font-weight:900;
}
.rp-web-story-row b {
  font-size:12px;
  line-height:1.15;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rp-web-story-row em {
  grid-column:2;
  color:var(--muted);
  font-style:normal;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.rp-web-stories-link {
  min-height:38px;
  border:1px solid #000;
  border-radius:var(--radius-pill);
  display:grid;
  place-items:center;
  background:#000;
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}


/* v1.0 media preview fix */
.home-contact-image.is-empty {
  display:grid;
  place-items:center;
  min-height:220px;
}
.home-contact-image-placeholder {
  width:100%;
  min-height:220px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#f8f8f8,#e8e8e8);
}
.home-contact-image-placeholder span {
  min-height:38px;
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
@media (max-width:767px) {
  body.rp-theme .home-contact-visual {
    display:block;
  }
  .home-contact-image.is-empty,
  .home-contact-image-placeholder {
    min-height:180px;
  }
}


/* v1.0 specificity lock: frontend frozen without forced declarations */
body.rp-theme .app .bottom-nav {
  display:grid;
  grid-template-columns:repeat(7,1fr);
}
body.rp-theme .app .bottom-nav a,
body.rp-theme .app .bottom-nav button {
  display:flex;
}
body.rp-theme .site-main .product-grid,
body.rp-theme.woocommerce .site-main ul.products,
body.rp-theme .site-main .woocommerce ul.products {
  display:grid;
}
body.rp-theme.woocommerce .site-main ul.products li.product.product-card,
body.rp-theme .site-main .woocommerce ul.products li.product.product-card {
  float:none;
  width:auto;
  margin:0;
}
body.rp-theme .site-main .quick-add,
body.rp-theme .site-main button.quick-add,
body.rp-theme .site-main a.quick-add {
  background:#000;
  color:#fff;
  border-color:#000;
}
body.rp-theme .site-main .like-btn.active,
body.rp-theme .site-main .wishlist-single.active {
  background:#000;
  color:#fff;
  border-color:#000;
}


/* v1.0 desktop-mobile separation and Woo button lock */
body.rp-theme .site-main section:not(.shop-page-shell) > .product-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
body.rp-theme.rp-shop-context .site-main .shop-main ul.products,
body.rp-theme.rp-shop-context .site-main .shop-main .products {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
body.rp-theme .site-main .product-card {
  align-self:start;
}
body.rp-theme.single-product .site-main .single_add_to_cart_button,
body.rp-theme.single-product .site-main button.single_add_to_cart_button,
body.rp-theme.single-product .site-main .summary .single_add_to_cart_button,
body.rp-theme.single-product .site-main form.cart .single_add_to_cart_button {
  background:#000;
  color:#fff;
  border-color:#000;
}
body.rp-theme .home-contact-image {
  cursor:pointer;
  position:relative;
}
body.rp-theme .home-contact-edit-shortcut {
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  min-height:34px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.92);
  color:#000;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
@media (max-width:767px) {
  body.rp-theme .site-main section:not(.shop-page-shell) > .product-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  body.rp-theme.rp-shop-context .site-main .shop-main ul.products,
  body.rp-theme.rp-shop-context .site-main .shop-main .products {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* v1.0 footer nav desktop lock */
@media (min-width:768px) {
  body.rp-theme .app .bottom-nav,
  body.rp-theme .bottom-nav {
    display:none;
  }
}
@media (max-width:767px) {
  body.rp-theme .app .bottom-nav,
  body.rp-theme .bottom-nav {
    display:grid;
  }
}


/* v1.0 home product grid freeze */
body.rp-theme .home-featured-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:stretch;
}
body.rp-theme .home-featured-grid .product-card {
  min-height:100%;
  display:grid;
  grid-template-rows:auto 1fr;
}
body.rp-theme .home-featured-grid .product-img {
  aspect-ratio:1;
}
body.rp-theme .home-featured-grid .product-info {
  display:grid;
  grid-template-rows:auto auto auto 1fr;
  align-content:start;
}
body.rp-theme .home-featured-grid .product-name {
  min-height:34px;
  max-height:34px;
  overflow:hidden;
}
body.rp-theme .home-featured-grid .product-meta-clean {
  min-height:22px;
}
body.rp-theme .home-featured-grid .rp-card-rating {
  min-height:24px;
}
body.rp-theme .home-featured-grid .quick-add {
  align-self:end;
}
@media (max-width:767px) {
  body.rp-theme .home-featured-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


/* v1.0 identical home editor cards */
body.rp-theme .home-editor-hero {
  min-height:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}
body.rp-theme .home-editor-card {
  padding:24px;
  display:grid;
  grid-template-rows:minmax(160px, 38%) 1fr;
  gap:18px;
  min-height:520px;
  background:var(--surface);
}
body.rp-theme .home-editor-media {
  margin:0;
  min-height:160px;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(145deg,#f8f8f8,#ededed);
  display:grid;
  place-items:center;
  position:relative;
}
body.rp-theme .home-editor-media img {
  width:100%;
  height:100%;
  min-height:160px;
  object-fit:cover;
}
body.rp-theme .home-editor-media-placeholder {
  width:100%;
  height:100%;
  min-height:160px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#f8f8f8,#ededed);
}
body.rp-theme .home-editor-media-placeholder span {
  min-height:38px;
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  display:inline-flex;
  align-items:center;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
body.rp-theme .home-editor-body {
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  background:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:0;
}
body.rp-theme .home-editor-body h1,
body.rp-theme .home-editor-body h2 {
  margin:0 0 18px;
  font-size:clamp(36px,4.8vw,64px);
  line-height:.92;
  letter-spacing:-.06em;
  max-width:560px;
}
body.rp-theme .home-editor-body .muted {
  max-width:560px;
  margin:0 0 24px;
  font-size:15px;
  line-height:1.65;
}
body.rp-theme .home-editor-body .cta-row {
  margin-top:auto;
}
@media (max-width:767px) {
  body.rp-theme .home-editor-hero {
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }
  body.rp-theme .home-editor-card {
    min-height:0;
    padding:14px;
    border-radius:22px;
    grid-template-rows:minmax(150px,auto) auto;
  }
  body.rp-theme .home-editor-body {
    border-radius:20px;
    padding:22px;
  }
  body.rp-theme .home-editor-body h1,
  body.rp-theme .home-editor-body h2 {
    font-size:clamp(42px,14vw,62px);
  }
  body.rp-theme .home-editor-body .muted {
    font-size:14px;
  }
}




/* v1.0 Magazine drawer only */
body.rp-theme .rp-mag-only {
  display:grid;
  gap:16px;
}
body.rp-theme .rp-mag-only .rp-mag-card {
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  background:#fff;
  display:grid;
  gap:14px;
}
body.rp-theme .rp-mag-only .rp-mag-card-head h4 {
  margin:0 0 8px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-list {
  display:grid;
  gap:10px;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-row {
  display:grid;
  grid-template-columns:76px 1fr;
  gap:12px;
  align-items:center;
  padding:8px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  background:#fff;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-row span {
  width:76px;
  height:76px;
  border-radius:12px;
  overflow:hidden;
  background:#f4f4f4;
  display:grid;
  place-items:center;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-row img {
  width:100%;
  height:100%;
  object-fit:cover;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-row b {
  display:block;
  font-size:13px;
  line-height:1.15;
  letter-spacing:.02em;
}
body.rp-theme .rp-mag-only .rp-mobile-mag-row em {
  grid-column:2;
  margin-top:-6px;
  color:var(--muted);
  font-style:normal;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
body.rp-theme .rp-mag-only .rp-mag-card-cta {
  min-height:48px;
  border:1px solid #000;
  border-radius:var(--radius-pill);
  display:grid;
  place-items:center;
  background:#000;
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}


/* v1.0 desktop header dropdown */
body.rp-theme .desktop-nav {
  position:relative;
  display:flex;
  align-items:center;
  gap:28px;
}
body.rp-theme .desktop-nav > a,
body.rp-theme .desktop-nav-item > a {
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  color:#000;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
body.rp-theme .desktop-nav-item {
  position:relative;
}
body.rp-theme .desktop-dropdown {
  position:absolute;
  top:calc(100% - 8px);
  left:50%;
  transform:translate(-50%,8px);
  min-width:230px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 22px 70px rgba(0,0,0,.12);
  display:grid;
  gap:4px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .14s ease, transform .14s ease, visibility .14s ease;
  z-index:80;
}
body.rp-theme .desktop-dropdown::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-16px;
  height:16px;
}
body.rp-theme .desktop-nav-item:hover .desktop-dropdown,
body.rp-theme .desktop-nav-item:focus-within .desktop-dropdown {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}
body.rp-theme .desktop-dropdown a {
  min-height:40px;
  padding:0 12px;
  border-radius:12px;
  display:flex;
  align-items:center;
  color:#000;
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown a:hover,
body.rp-theme .desktop-dropdown a:focus-visible {
  background:#f5f5f5;
}


/* v1.0 header category/account dropdowns */
body.rp-theme .desktop-dropdown button {
  width:100%;
  min-height:40px;
  padding:0 12px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:#000;
  display:flex;
  align-items:center;
  text-align:left;
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  cursor:pointer;
}
body.rp-theme .desktop-dropdown button:hover,
body.rp-theme .desktop-dropdown button:focus-visible {
  background:#f5f5f5;
}
body.rp-theme .desktop-dropdown-categories {
  min-width:560px;
  max-width:min(720px, calc(100vw - 48px));
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  align-items:start;
}
body.rp-theme .desktop-dropdown-group {
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:8px;
  background:#fff;
}
body.rp-theme .desktop-dropdown-parent {
  min-height:36px;
  padding:0 10px;
  border-radius:10px;
  display:flex;
  align-items:center;
  color:#000;
  font-size:11px;
  font-weight:950;
  letter-spacing:.11em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown-children {
  display:grid;
  gap:2px;
  padding:2px 0 0;
}
body.rp-theme .desktop-dropdown-children a {
  min-height:30px;
  padding:0 10px;
  border-radius:9px;
  color:var(--muted);
  font-size:10px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown-children a:hover,
body.rp-theme .desktop-dropdown-parent:hover {
  background:#f5f5f5;
  color:#000;
}


/* v1.0 shop dropdown all categories */
body.rp-theme .desktop-dropdown-categories {
  min-width:760px;
  max-width:min(920px, calc(100vw - 48px));
  max-height:min(72vh, 720px);
  overflow:auto;
  grid-template-columns:1fr;
  gap:12px;
  align-items:start;
}
body.rp-theme .desktop-dropdown-shop-head {
  border-bottom:1px solid var(--line);
  padding:0 0 8px;
}
body.rp-theme .desktop-dropdown-shop-head a {
  min-height:42px;
  border-radius:12px;
  background:#000;
  color:#fff;
  justify-content:center;
}
body.rp-theme .desktop-dropdown-category-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
body.rp-theme .desktop-dropdown-group {
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:8px;
  background:#fff;
  min-width:0;
}
body.rp-theme .desktop-dropdown-parent {
  min-height:34px;
  padding:0 10px;
  border-radius:10px;
  display:flex;
  align-items:center;
  color:#000;
  font-size:11px;
  font-weight:950;
  letter-spacing:.10em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown-children {
  display:grid;
  gap:2px;
  padding:3px 0 0;
}
body.rp-theme .desktop-dropdown-node {
  min-width:0;
}
body.rp-theme .desktop-dropdown-child {
  min-height:28px;
  padding:0 10px;
  border-radius:9px;
  color:var(--muted);
  display:flex;
  align-items:center;
  font-size:10px;
  font-weight:850;
  letter-spacing:.05em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown-child.depth-2 {
  padding-left:18px;
  font-size:9.5px;
}
body.rp-theme .desktop-dropdown-child.depth-3 {
  padding-left:26px;
}
body.rp-theme .desktop-dropdown-flat {
  border-top:1px solid var(--line);
  padding-top:10px;
  display:grid;
  gap:8px;
}
body.rp-theme .desktop-dropdown-flat p {
  margin:0;
  color:var(--muted);
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
body.rp-theme .desktop-dropdown-flat > div {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
body.rp-theme .desktop-dropdown-flat a {
  min-height:30px;
  padding:0 10px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  font-size:9.5px;
  white-space:nowrap;
}
body.rp-theme .desktop-dropdown-parent:hover,
body.rp-theme .desktop-dropdown-child:hover,
body.rp-theme .desktop-dropdown-flat a:hover {
  background:#f5f5f5;
  color:#000;
}


/* v1.0 golden stars */
body.rp-theme {
  --star-gold:#d6a21e;
  --star-muted:#d9d9d9;
}
body.rp-theme .rp-stars,
body.rp-theme .star-rating,
body.rp-theme .woocommerce .star-rating,
body.rp-theme .comment-form-rating .stars,
body.rp-theme .wc-block-components-product-rating__stars {
  color:var(--star-gold);
}
body.rp-theme .rp-stars .empty,
body.rp-theme .rp-stars-empty,
body.rp-theme .rp-star-empty {
  color:var(--star-muted);
}
body.rp-theme .rp-card-rating .rp-stars {
  color:var(--star-gold);
}
body.rp-theme .rp-card-rating .rp-stars::selection {
  background:transparent;
}
body.rp-theme .woocommerce .star-rating::before,
body.rp-theme .star-rating::before {
  color:var(--star-muted);
}
body.rp-theme .woocommerce .star-rating span::before,
body.rp-theme .star-rating span::before {
  color:var(--star-gold);
}
body.rp-theme .comment-form-rating .stars a {
  color:var(--star-gold);
}


/* v1.0 force golden stars without important */
body.rp-theme {
  --star-gold:#d6a21e;
  --star-muted:#d6a21e;
}
body.rp-theme .rp-stars,
body.rp-theme .rp-stars span,
body.rp-theme .rp-card-rating,
body.rp-theme .rp-card-rating *,
body.rp-theme .rp-single-rating,
body.rp-theme .rp-single-rating *,
body.rp-theme .comment-form-rating .stars,
body.rp-theme .comment-form-rating .stars *,
body.rp-theme .woocommerce .star-rating,
body.rp-theme .woocommerce .star-rating *,
body.rp-theme .star-rating,
body.rp-theme .star-rating *,
body.rp-theme [class*="star"] {
  color:#d6a21e;
}
body.rp-theme .woocommerce .star-rating::before,
body.rp-theme .woocommerce .star-rating span::before,
body.rp-theme .star-rating::before,
body.rp-theme .star-rating span::before {
  color:#d6a21e;
}
body.rp-theme .desktop-dropdown-categories .desktop-dropdown-flat {
  display:none;
}
body.rp-theme .desktop-dropdown-category-grid-only {
  grid-template-columns:repeat(2,minmax(0,1fr));
}


/* v1.0 force golden stars */
body.rp-theme {
  --star-gold:#d6a21e;
  --star-muted:#d6a21e;
}
body.rp-theme .rp-stars,
body.rp-theme .rp-stars span,
body.rp-theme .rp-card-rating,
body.rp-theme .rp-card-rating *,
body.rp-theme .rp-single-rating,
body.rp-theme .rp-single-rating *,
body.rp-theme .comment-form-rating .stars,
body.rp-theme .comment-form-rating .stars *,
body.rp-theme .woocommerce .star-rating,
body.rp-theme .woocommerce .star-rating *,
body.rp-theme .star-rating,
body.rp-theme .star-rating *,
body.rp-theme [class*="star"] {
  color:#d6a21e;
}
body.rp-theme .woocommerce .star-rating::before,
body.rp-theme .woocommerce .star-rating span::before,
body.rp-theme .star-rating::before,
body.rp-theme .star-rating span::before {
  color:#d6a21e;
}
body.rp-theme .desktop-dropdown-categories .desktop-dropdown-flat {
  display:none;
}
body.rp-theme .desktop-dropdown-category-grid-only {
  grid-template-columns:repeat(2,minmax(0,1fr));
}

/* v1.0 global touch targets for Lighthouse/PageSpeed */
body.rp-theme {
  --rp-touch-target:48px;
  --rp-touch-gap:8px;
}
body.rp-theme :where(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  select,
  summary,
  [role="button"],
  [role="tab"],
  [role="menuitem"],
  .desktop-nav a,
  .desktop-dropdown a,
  .desktop-dropdown button,
  .desktop-actions button,
  .mobile-header button,
  .bottom-nav a,
  .bottom-nav button,
  .drawer a,
  .drawer button,
  .search-box button,
  .search-results a,
  .search-results button,
  .cta-row a,
  .cta-row button,
  .site-footer a,
  .site-footer button,
  .footer-social-links a,
  .home-social-links a,
  .footer-cookie-button,
  .product-name a,
  .product-card button,
  .quick-add,
  .like-btn,
  .wishlist-single,
  .cart-remove,
  .wishlist-actions a,
  .wishlist-actions button,
  .rp-mag-tabs a,
  .rp-review-actions a,
  .rp-web-stories-link,
  .rp-mobile-mag-tabs a,
  .rp-mobile-mag-tabs button,
  .rp-mobile-mag-row,
  .rp-link-card,
  .wp-block-button__link,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce .button,
  .added_to_cart,
  .page-numbers,
  .woocommerce-pagination a,
  .woocommerce-pagination span,
  .woocommerce-MyAccount-navigation a,
  .cm__btn,
  .cm__link,
  .cc-btn,
  .cc-link,
  .cky-btn,
  .cky-policy,
  [data-cc],
  [data-role="show"],
  [data-open-search],
  [data-open-drawer],
  [data-cart-link],
  [data-wishlist-toggle],
  [data-rp-age-open],
  [data-rp-cc-preferences]
) {
  min-width:var(--rp-touch-target);
  min-height:var(--rp-touch-target);
}
body.rp-theme :where(
  .desktop-nav a,
  .desktop-dropdown a,
  .desktop-dropdown button,
  .desktop-actions button,
  .mobile-header button,
  .bottom-nav a,
  .bottom-nav button,
  .drawer a,
  .drawer button,
  .search-box button,
  .search-results a,
  .search-results button,
  .cta-row a,
  .cta-row button,
  .site-footer a,
  .site-footer button,
  .footer-social-links a,
  .home-social-links a,
  .footer-cookie-button,
  .quick-add,
  .like-btn,
  .wishlist-single,
  .cart-remove,
  .wishlist-actions a,
  .wishlist-actions button,
  .rp-mag-tabs a,
  .rp-review-actions a,
  .rp-web-stories-link,
  .rp-mobile-mag-tabs a,
  .rp-mobile-mag-tabs button,
  .wp-block-button__link,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce .button,
  .added_to_cart,
  .page-numbers,
  .woocommerce-pagination a,
  .woocommerce-pagination span,
  .woocommerce-MyAccount-navigation a,
  .cm__btn,
  .cm__link,
  .cc-btn,
  .cc-link,
  .cky-btn,
  .cky-policy,
  [data-cc],
  [data-role="show"],
  [data-open-search],
  [data-open-drawer],
  [data-cart-link],
  [data-wishlist-toggle],
  [data-rp-age-open],
  [data-rp-cc-preferences]
) {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
body.rp-theme :where(.desktop-nav, .desktop-actions, .desktop-dropdown, .cta-row, .wishlist-actions, .footer-social-links, .home-social-links, .rp-mag-tabs, .rp-review-actions, .rp-mobile-mag-tabs) {
  gap:max(var(--rp-touch-gap), 8px);
}
body.rp-theme :where(.site-footer-col, .drawer-body, .cart-drawer-lines, .rp-web-stories-list, .rp-faq-list) {
  gap:max(var(--rp-touch-gap), 8px);
}
body.rp-theme :where(.site-footer a, .site-footer button, .footer-cookie-button) {
  width:fit-content;
  padding-left:12px;
  padding-right:12px;
  margin-left:-12px;
}
body.rp-theme :where(.site-footer a, .site-footer button, .footer-cookie-button) {
  margin-right:-12px;
}
body.rp-theme :where(.like-btn, .icon-button, .mobile-icon, .product-lightbox-close, .product-lightbox-nav) {
  width:var(--rp-touch-target);
  height:var(--rp-touch-target);
}
body.rp-theme :where(.desktop-search-pill) {
  min-height:var(--rp-touch-target);
}
body.rp-theme :where(.search-box form) {
  gap:max(var(--rp-touch-gap), 8px);
}
body.rp-theme :where(.search-box button) {
  padding-left:18px;
  padding-right:18px;
}
body.rp-theme :where(.cm__btn, .cc-btn, .cky-btn, [data-role="show"]) {
  padding-left:18px;
  padding-right:18px;
}
body.rp-theme :where(.cm__link, .cc-link, .cky-policy) {
  padding-left:8px;
  padding-right:8px;
}
@media (max-width:767px) {
  body.rp-theme :where(.mobile-header button, .bottom-nav a, .bottom-nav button, .quick-add, .like-btn, .site-footer a, .site-footer button, .footer-cookie-button, .cart-remove, .rp-mobile-mag-tabs a, .rp-mobile-mag-tabs button) {
    min-width:var(--rp-touch-target);
    min-height:var(--rp-touch-target);
  }
  body.rp-theme .app .bottom-nav a,
  body.rp-theme .app .bottom-nav button,
  body.rp-theme .bottom-nav a,
  body.rp-theme .bottom-nav button {
    min-height:var(--rp-touch-target);
  }
  body.rp-theme .product-card .quick-add,
  body.rp-theme .site-main button.quick-add,
  body.rp-theme .site-main a.quick-add {
    min-height:var(--rp-touch-target);
  }
  body.rp-theme .product-card .like-btn {
    width:var(--rp-touch-target);
    height:var(--rp-touch-target);
    top:4px;
    right:4px;
  }
  body.rp-theme .site-footer-col {
    gap:8px;
  }
}



/* v1.0 targeted UI corrections: magazine repetition, social touch spacing, cart drawer card */
.footer-social-links {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
}
.footer-social-links a {
  width:fit-content;
}
.cart-drawer-lines {
  gap:12px;
}
.cart-line {
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  padding:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.cart-line:first-child {
  border-top:1px solid var(--line);
}
.cart-line strong {
  justify-self:end;
  white-space:nowrap;
}
@media (max-width:767px) {
  .footer-social-links {
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-social-links a {
    width:fit-content;
  }
  .cart-line {
    grid-template-columns:68px 1fr auto;
    gap:12px;
  }
}
