:root {
  --rsp-green: #9bf719;
  --rsp-pink: #ff75b5;
  --rsp-cream: #fff8ea;
  --rsp-paper: #fffdf7;
  --rsp-ink: #171717;
  --rsp-line: rgba(23, 23, 23, 0.18);
  --rsp-muted: #5d574f;
  --rsp-display: "League Gothic", "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --rsp-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --rsp-body: "Manrope", Arial, sans-serif;
  --rsp-radius: 12px;
  --rsp-shadow: 0 16px 44px rgba(23, 23, 23, 0.1);
}

.rsp-storefront,
.rsp-storefront * {
  box-sizing: border-box;
}

.rsp-storefront {
  margin: 0;
  overflow: clip;
  background: var(--rsp-cream);
  color: var(--rsp-ink);
  color-scheme: light;
  font-family: var(--rsp-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.rsp-storefront a {
  color: inherit;
  text-decoration: none;
}

.rsp-storefront img,
.rsp-storefront svg {
  display: block;
  max-width: 100%;
}

.rsp-storefront button,
.rsp-storefront input,
.rsp-storefront select,
.rsp-storefront textarea {
  font: inherit;
}

.rsp-storefront .amount,
.rsp-storefront .price,
.rsp-storefront .woocommerce-Price-amount,
.rsp-storefront .woocommerce-Price-currencySymbol {
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
}

.rsp-shell {
  width: min(1720px, calc(100% - 40px));
  margin-inline: auto;
}

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

.rsp-light-section {
  background: var(--rsp-cream);
  color: var(--rsp-ink);
}

.rsp-paper-section {
  background: var(--rsp-paper);
  color: var(--rsp-ink);
}

.rsp-dark-section {
  background: var(--rsp-ink);
  color: var(--rsp-cream);
}

.rsp-kicker {
  display: block;
  margin-bottom: 13px;
  color: currentColor;
  font: 800 15px/1.2 var(--rsp-heading);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rsp-section {
  padding: 82px 0;
}

.rsp-section h2,
.rsp-related h2 {
  margin: 0;
  color: var(--rsp-ink) !important;
  font: 400 clamp(58px, 5.6vw, 92px)/0.92 var(--rsp-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.rsp-dark-section h2 {
  color: var(--rsp-cream) !important;
}

.rsp-section h2 em,
.rsp-related h2 em {
  color: var(--rsp-pink);
  font-style: normal;
}

.rsp-section-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--rsp-muted) !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.rsp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.rsp-section-head > a {
  border-bottom: 2px solid currentColor;
  color: var(--rsp-ink) !important;
  font: 800 15px/1.2 var(--rsp-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rsp-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 2px solid var(--rsp-ink);
  border-radius: 6px;
  font: 800 14px/1 var(--rsp-heading);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rsp-button:hover,
.rsp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--rsp-ink);
}

.rsp-button-green {
  background: var(--rsp-green);
  color: var(--rsp-ink) !important;
}

.rsp-button-light {
  background: var(--rsp-paper);
  color: var(--rsp-ink) !important;
}

.rsp-button-dark {
  background: var(--rsp-ink);
  color: var(--rsp-cream) !important;
}

/* Header */
.rsp-announcement {
  padding: 9px 18px;
  background: var(--rsp-ink);
  color: var(--rsp-cream);
  font: 800 13px/1.25 var(--rsp-body);
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.rsp-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--rsp-line);
  background: var(--rsp-cream);
}

.rsp-nav {
  width: min(1720px, calc(100% - 40px));
  min-height: 96px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.rsp-logo {
  display: block;
  width: 220px;
}

.rsp-logo img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.rsp-links {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 3vw, 54px);
  font: 800 17px/1 var(--rsp-heading);
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.rsp-links a,
.rsp-actions a {
  color: var(--rsp-ink) !important;
}

.rsp-links a:hover,
.rsp-links a:focus-visible {
  color: #3f7000 !important;
}

.rsp-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 800 16px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-actions button {
  display: none;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--rsp-ink);
  font: 800 15px/1 var(--rsp-heading);
  text-transform: uppercase;
  cursor: pointer;
}

.rsp-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 27px;
  height: 27px;
  margin-inline-start: 5px;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--rsp-green);
  color: var(--rsp-ink) !important;
  font-size: 12px;
}

.rsp-mobile-menu[hidden] {
  display: none !important;
}

.rsp-mobile-menu {
  padding: 8px 20px 20px;
  border-top: 1px solid var(--rsp-line);
  background: var(--rsp-paper);
}

.rsp-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--rsp-line);
  color: var(--rsp-ink) !important;
  font-size: 16px;
  font-weight: 800;
}

/* Home hero */
.rsp-hero {
  padding: 48px 0 56px;
  border-bottom: 2px solid var(--rsp-ink);
}

.rsp-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.86fr) minmax(640px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
}

.rsp-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--rsp-ink) !important;
  font: 400 clamp(76px, 7.1vw, 126px)/0.86 var(--rsp-display);
  letter-spacing: -0.012em;
  text-transform: uppercase;
}

.rsp-hero-copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: #2d2924 !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.58;
}

.rsp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rsp-hero-carousel {
  position: relative;
  min-width: 0;
  min-height: 610px;
  padding: 25px 25px 34px;
  overflow: hidden;
  border: 2px solid var(--rsp-ink);
  border-radius: 14px;
  background: #efe2cd;
  box-shadow: 12px 14px 0 rgba(23, 23, 23, 0.08);
  touch-action: pan-y;
}

.rsp-carousel-topline {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  color: var(--rsp-ink);
  font: 800 13px/1 var(--rsp-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rsp-float-pill {
  padding: 9px 14px;
  border: 2px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-pink);
  color: var(--rsp-ink);
}

.rsp-carousel-viewport {
  height: 500px;
  min-height: 500px;
  overflow: hidden;
}

.rsp-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.44s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.rsp-hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 500px;
  min-height: 500px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rsp-hero-product {
  position: relative;
  min-width: 0;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--rsp-line);
  border-radius: 10px;
  background: var(--rsp-paper);
}

.rsp-hero-product-image,
.rsp-hero-product-image img {
  width: 100%;
  height: 100%;
}

.rsp-hero-product-image img {
  object-fit: cover;
  transition: transform 0.28s ease;
}

.rsp-hero-product:hover .rsp-hero-product-image img {
  transform: scale(1.025);
}

.rsp-hero-product b {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border: 1px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-green);
  color: var(--rsp-ink);
  font: 800 13px/1 var(--rsp-heading);
  text-align: center;
  text-transform: uppercase;
}

.rsp-carousel-progress {
  height: 4px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.14);
}

.rsp-carousel-progress span {
  width: 33.333%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--rsp-green);
  transform: translateX(0);
  transition: transform 0.44s ease, width 0.2s ease;
}

.rsp-carousel-hint {
  display: none;
  margin-top: 9px;
  color: #5c554b;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* Trust strip */
.rsp-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--rsp-ink);
  color: var(--rsp-cream);
}

.rsp-trust span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--rsp-cream);
  font: 800 14px/1.3 var(--rsp-body);
  text-align: center;
  text-transform: uppercase;
}

.rsp-trust span:last-child {
  border-right: 0;
}

.rsp-trust svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--rsp-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Mood cards */
.rsp-mood-heading .rsp-heading-green {
  color: #4f8700;
}

.rsp-mood-heading .rsp-heading-pink {
  color: #d94e91;
}

.rsp-mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.rsp-mood-card {
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--rsp-ink);
  border-radius: var(--rsp-radius);
  color: var(--rsp-ink) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rsp-mood-card:hover,
.rsp-mood-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 var(--rsp-ink);
}

.rsp-mood-media {
  height: 340px;
  overflow: hidden;
  background: #eee7da;
}

.rsp-mood-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-mood-character-pair {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 28px;
  background: linear-gradient(135deg, #fffdf7, #f1eadf);
}

.rsp-mood-character-pair img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.rsp-mood-copy {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px;
}

.rsp-mood-copy h3 {
  margin: 0;
  color: var(--rsp-ink) !important;
  font: 400 clamp(48px, 4vw, 68px)/0.95 var(--rsp-display);
  text-transform: uppercase;
}

.rsp-mood-copy p {
  margin: 14px 0 24px;
  color: #2d2924 !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.rsp-mood-copy > span {
  margin-top: auto;
  padding: 11px 15px;
  border: 2px solid var(--rsp-ink);
  border-radius: 6px;
  background: var(--rsp-paper);
  color: var(--rsp-ink);
  font: 800 13px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-mood-original {
  background: var(--rsp-cream);
}

.rsp-mood-hustle {
  background: var(--rsp-green);
}

.rsp-mood-urban {
  background: var(--rsp-pink);
}

/* Nino and Gigi */
.rsp-persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rsp-persona-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 2px solid var(--rsp-ink);
  border-radius: var(--rsp-radius);
  background: var(--rsp-paper);
  color: var(--rsp-ink) !important;
}

.rsp-persona-model,
.rsp-persona-model img {
  width: 100%;
  height: 100%;
}

.rsp-persona-model {
  position: absolute;
  inset: 0;
}

.rsp-persona-model img {
  object-fit: cover;
}

.rsp-persona-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(23, 23, 23, 0.92));
}

.rsp-persona-character {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.rsp-persona-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  color: var(--rsp-cream);
}

.rsp-persona-copy span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-green);
  color: var(--rsp-ink);
  font: 800 13px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-persona-gigi .rsp-persona-copy span {
  background: var(--rsp-pink);
}

.rsp-persona-copy h3 {
  max-width: 680px;
  margin: 14px 0 16px;
  color: var(--rsp-cream) !important;
  font: 400 clamp(42px, 4vw, 64px)/0.95 var(--rsp-display);
  text-transform: uppercase;
}

.rsp-persona-copy b {
  color: var(--rsp-cream);
  font: 800 15px/1 var(--rsp-heading);
  text-transform: uppercase;
}

/* Product cards */
.rsp-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.rsp-product-card {
  width: calc(25% - 14px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rsp-line);
  border-radius: var(--rsp-radius);
  background: var(--rsp-cream);
  color: var(--rsp-ink) !important;
  box-shadow: 0 7px 22px rgba(23, 23, 23, 0.04);
}

.rsp-product-image {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #eee7da;
}

.rsp-product-image-stack,
.rsp-product-image-stack img {
  width: 100%;
  height: 100%;
}

.rsp-product-image-stack {
  position: relative;
  display: block;
}

.rsp-product-image-stack img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.rsp-product-secondary-image {
  opacity: 0;
}

.rsp-product-card:hover .rsp-product-secondary-image {
  opacity: 1;
}

.rsp-product-card:hover .rsp-product-primary-image {
  opacity: 0;
}

.rsp-product-card:hover .rsp-product-image-stack img {
  transform: scale(1.02);
}

.rsp-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border: 1px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-pink);
  color: var(--rsp-ink);
  font: 800 12px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.rsp-pill {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-green);
  color: var(--rsp-ink) !important;
  font: 800 13px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-product-card h3 {
  min-height: 54px;
  display: -webkit-box;
  margin: 14px 0 13px;
  overflow: hidden;
  color: var(--rsp-ink) !important;
  font: 750 18px/1.35 var(--rsp-body);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rsp-product-card h3 a {
  color: var(--rsp-ink) !important;
}

.rsp-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #403b34 !important;
  font-size: 15px;
  line-height: 1.4;
}

.rsp-product-meta strong,
.rsp-product-meta .amount,
.rsp-single-price .amount {
  color: var(--rsp-ink) !important;
  font-size: 17px;
  font-weight: 800;
}

.rsp-delivery {
  margin: 14px 0;
  color: #285000 !important;
  font-size: 14px;
  font-weight: 750;
}

.rsp-product-card .rsp-button {
  width: 100%;
  margin-top: auto;
}

/* Benefits */
.rsp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rsp-benefit-grid > div {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rsp-benefit-grid > div:last-child {
  border-right: 0;
}

.rsp-benefit-grid h3 {
  margin: 0;
  color: var(--rsp-cream) !important;
  font: 400 44px/1 var(--rsp-display);
  text-transform: uppercase;
}

.rsp-benefit-grid p {
  margin-bottom: 0;
  color: #d8d0c4 !important;
  font-size: 16px;
  font-weight: 600;
}

/* Instagram */
.rsp-instagram #sbi_images,
.rsp-instagram .sbi_images {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 0 !important;
}

.rsp-instagram .sbi_item {
  float: none !important;
  width: calc(33.333% - 10px) !important;
  max-width: 500px !important;
  padding: 0 !important;
}

.rsp-instagram .sbi_photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--rsp-line);
  border-radius: var(--rsp-radius);
  background: var(--rsp-paper);
}

.rsp-instagram .sbi_photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.rsp-instagram .sb_instagram_header,
.rsp-instagram .sbi_header,
.rsp-instagram .sbi_header_link,
.rsp-instagram [class*="sbi_header"],
.rsp-instagram [class*="sbi_bio"],
.rsp-instagram [class*="sbi_avatar"],
.rsp-instagram .sbi_load_btn,
.rsp-instagram .sbi_follow_btn,
.rsp-instagram #sbi_load,
.rsp-instagram .sbi_info,
.rsp-instagram .sbi_feedtheme_header_text,
.rsp-instagram .sbi_header_text,
.rsp-instagram .sbi_bio {
  display: none !important;
}

/* Clean products page: intentionally no hero, categories, or filter form */
.rsp-catalog-section {
  padding-top: 52px;
}

.rsp-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rsp-line);
}

.rsp-catalog-heading h1 {
  margin: 0;
  color: var(--rsp-ink) !important;
  font: 400 clamp(54px, 5vw, 78px)/0.95 var(--rsp-display);
  text-transform: uppercase;
}

.rsp-catalog-count {
  display: grid;
  justify-items: end;
  gap: 7px;
  color: var(--rsp-ink);
  font-size: 14px;
}

.rsp-catalog-count a {
  border-bottom: 1px solid currentColor;
  color: var(--rsp-ink) !important;
  font-weight: 750;
}

.rsp-catalog-grid .rsp-product-card {
  width: calc(25% - 14px);
}

.rsp-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 40px;
}

.rsp-pagination a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rsp-ink);
  border-radius: 6px;
  color: var(--rsp-ink) !important;
  font-weight: 800;
}

.rsp-pagination a.is-current {
  background: var(--rsp-green);
}

.rsp-empty {
  padding: 72px 20px;
  color: var(--rsp-ink);
  text-align: center;
}

.rsp-empty h2 {
  font-size: 64px;
}

/* Single product */
.rsp-product-detail {
  padding-top: 46px;
}

.rsp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #4e4942 !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.rsp-breadcrumb a,
.rsp-breadcrumb strong {
  color: #4e4942 !important;
}

.rsp-breadcrumb a:hover {
  color: var(--rsp-ink) !important;
  text-decoration: underline;
}

.rsp-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  align-items: start;
  gap: clamp(32px, 3.5vw, 58px);
}

.rsp-gallery-main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--rsp-line);
  border-radius: var(--rsp-radius);
  background: #eee7da;
}

.rsp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 13px;
}

.rsp-thumb {
  width: 92px;
  height: 112px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #eee7da;
  cursor: pointer;
}

.rsp-thumb.is-active {
  border-color: var(--rsp-ink);
  box-shadow: 0 0 0 3px var(--rsp-green);
}

.rsp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-product-summary {
  position: sticky;
  top: 22px;
  padding: clamp(25px, 2.4vw, 36px);
  border: 2px solid var(--rsp-ink);
  border-radius: var(--rsp-radius);
  background: var(--rsp-cream);
  color: var(--rsp-ink) !important;
}

.rsp-product-summary h1 {
  margin: 16px 0 13px;
  color: var(--rsp-ink) !important;
  font: 400 clamp(40px, 3.2vw, 52px)/0.98 var(--rsp-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.rsp-single-price {
  margin-bottom: 18px;
  color: var(--rsp-ink) !important;
  font-size: 24px;
  font-weight: 800;
}

.rsp-short-description,
.rsp-short-description p {
  color: #38342f !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

.rsp-short-description strong,
.rsp-short-description b {
  color: var(--rsp-ink) !important;
  font-weight: 650;
}

.rsp-purchase-panel {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rsp-line);
}

.rsp-add-to-cart {
  color: var(--rsp-ink) !important;
}

.rsp-add-to-cart form.cart,
.rsp-add-to-cart form.variations_form {
  margin: 0 !important;
}

.rsp-add-to-cart table,
.rsp-add-to-cart table.variations {
  width: 100%;
  margin: 0 0 15px !important;
  color: var(--rsp-ink) !important;
}

.rsp-add-to-cart table.variations tr {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.rsp-add-to-cart table.variations th,
.rsp-add-to-cart table.variations td {
  display: block;
  width: 100%;
  padding: 0 !important;
  color: var(--rsp-ink) !important;
  text-align: left;
}

.rsp-add-to-cart table.variations label,
.rsp-add-to-cart .wapf-field-label,
.rsp-add-to-cart .wapf-field-label label,
.rsp-add-to-cart .wapf-field-label span {
  color: var(--rsp-ink) !important;
  font-size: 15px;
  font-weight: 700 !important;
}

.rsp-add-to-cart select,
.rsp-add-to-cart input[type="text"],
.rsp-add-to-cart input[type="number"],
.rsp-add-to-cart .wapf-input {
  min-height: 50px;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #625d55 !important;
  border-radius: 6px;
  background: #fff !important;
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
  color-scheme: light;
  font-size: 16px;
  font-weight: 600;
  opacity: 1 !important;
}

.rsp-add-to-cart select option,
.rsp-add-to-cart .wapf-input option {
  background: #fff !important;
  color: var(--rsp-ink) !important;
}

/* Custom accessible colour and size selectors */
.rsp-add-to-cart .rsp-enhanced-variation-row > .label,
.rsp-add-to-cart .rsp-enhanced-variation-row .wd-swatches-product,
.rsp-add-to-cart .rsp-enhanced-variation-row .wd-reset-var,
.rsp-add-to-cart .rsp-enhanced-wapf .wapf-field-label {
  display: none !important;
}

.rsp-add-to-cart .rsp-native-select {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.rsp-choice-group {
  display: grid;
  gap: 12px;
  margin-bottom: 17px;
}

.rsp-choice-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--rsp-ink);
  font-size: 15px;
}

.rsp-choice-heading > span {
  font-weight: 750;
}

.rsp-choice-heading strong {
  color: #514b43;
  font-size: 14px;
  font-weight: 600;
}

.rsp-choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rsp-choice-option {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid #69635b;
  border-radius: 999px;
  background: #fff;
  color: var(--rsp-ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.rsp-choice-option:hover,
.rsp-choice-option:focus-visible {
  border-color: var(--rsp-ink);
  transform: translateY(-1px);
}

.rsp-choice-option.is-selected {
  border-color: var(--rsp-ink);
  box-shadow: 0 0 0 3px var(--rsp-green);
}

.rsp-choice-option:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.rsp-color-swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(23, 23, 23, 0.35);
  border-radius: 999px;
  background: var(--rsp-option-color, #d7d1c8);
}

.rsp-choice-check {
  width: 18px;
  height: 18px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--rsp-ink);
  color: var(--rsp-cream);
  font-size: 11px;
}

.rsp-choice-option.is-selected .rsp-choice-check {
  display: grid;
}

.rsp-size-choice-group .rsp-choice-option {
  min-width: 52px;
  justify-content: center;
  padding-inline: 15px;
  border-radius: 7px;
}

.rsp-choice-reset {
  width: max-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #514b43;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.rsp-choice-error {
  margin: -4px 0 0;
  color: #9c1b1b;
  font-size: 13px;
  font-weight: 700;
}

.rsp-add-to-cart .reset_variations,
.rsp-add-to-cart .wd-reset-var,
.rsp-add-to-cart .wd-reset-var a {
  display: none !important;
}

.rsp-add-to-cart .wapf,
.rsp-add-to-cart .wapf-wrapper,
.rsp-add-to-cart .wapf-field-container,
.rsp-add-to-cart .wapf-field-input,
.rsp-add-to-cart .wapf-input-label,
.rsp-add-to-cart .wapf-product-totals,
.rsp-add-to-cart .wapf-product-totals * {
  color: var(--rsp-ink) !important;
}

.rsp-add-to-cart .wapf {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 6px;
}

.rsp-add-to-cart .wapf-product-totals {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 12px;
}

.rsp-add-to-cart .wapf-product-totals:empty,
.rsp-add-to-cart .wapf-product-totals .wapf--inner:empty {
  display: none !important;
}

.rsp-add-to-cart .single_variation_wrap {
  width: 100%;
}

.rsp-add-to-cart .woocommerce-variation-add-to-cart,
.rsp-add-to-cart form.cart:not(.variations_form) {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.rsp-add-to-cart .quantity {
  width: 182px !important;
  min-width: 182px;
  height: 58px;
  display: grid !important;
  grid-template-columns: 52px 1fr 52px;
  align-items: stretch;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--rsp-ink);
  border-radius: 6px;
  background: #fff;
}

.rsp-add-to-cart .quantity .minus,
.rsp-add-to-cart .quantity .plus,
.rsp-add-to-cart .quantity .qty {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
  text-align: center;
  opacity: 1 !important;
}

.rsp-add-to-cart .quantity .minus,
.rsp-add-to-cart .quantity .plus {
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.rsp-add-to-cart .quantity .minus {
  border-right: 1px solid var(--rsp-line) !important;
}

.rsp-add-to-cart .quantity .plus {
  border-left: 1px solid var(--rsp-line) !important;
}

.rsp-add-to-cart .single_add_to_cart_button {
  min-height: 58px;
  flex: 1 1 280px;
  width: auto !important;
  margin: 0 !important;
  padding: 14px 26px !important;
  border: 2px solid var(--rsp-ink) !important;
  border-radius: 6px !important;
  background: var(--rsp-green) !important;
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
  font: 800 15px/1 var(--rsp-heading) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1 !important;
}

.rsp-add-to-cart .single_add_to_cart_button.disabled,
.rsp-add-to-cart .single_add_to_cart_button:disabled {
  background: #d7d1c8 !important;
  color: #5a554e !important;
  -webkit-text-fill-color: #5a554e !important;
  cursor: not-allowed;
}

.rsp-option-guidance {
  margin: 11px 0 0;
  color: #5d574f;
  font-size: 13px;
  font-weight: 600;
}

.rsp-option-guidance.is-ready {
  color: #285000;
}

.rsp-add-to-cart .single_add_to_cart_button.is-adding {
  position: relative;
  background: var(--rsp-paper) !important;
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
  cursor: progress;
}

.rsp-add-to-cart .single_add_to_cart_button.is-added {
  background: var(--rsp-ink) !important;
  color: var(--rsp-cream) !important;
  -webkit-text-fill-color: var(--rsp-cream) !important;
}

.rsp-cart-feedback[hidden] {
  display: none !important;
}

.rsp-cart-feedback {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 2px solid var(--rsp-ink);
  border-radius: 8px;
  background: var(--rsp-green);
  color: var(--rsp-ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rsp-cart-feedback.is-visible {
  opacity: 1;
  transform: none;
}

.rsp-cart-feedback-check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
}

.rsp-cart-feedback strong,
.rsp-cart-feedback small {
  display: block;
}

.rsp-cart-feedback strong {
  font: 800 14px/1.2 var(--rsp-body);
}

.rsp-cart-feedback small {
  margin-top: 2px;
  font: 600 12px/1.35 var(--rsp-body);
}

.rsp-cart-feedback a {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: inherit !important;
  font: 800 12px/1 var(--rsp-heading);
  text-transform: uppercase;
  white-space: nowrap;
}

.rsp-cart-count.is-updated {
  animation: rsp-cart-pulse 0.8s ease;
}

@keyframes rsp-cart-pulse {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.35); box-shadow: 0 0 0 8px rgba(155, 247, 25, 0.22); }
}

.rsp-view-cart-link {
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--rsp-ink) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rsp-product-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.rsp-trust-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--rsp-line);
  border-radius: 8px;
  background: var(--rsp-paper);
  color: var(--rsp-ink) !important;
}

.rsp-trust-card svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: #477c00;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rsp-trust-card span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rsp-trust-card strong {
  color: var(--rsp-ink) !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.rsp-trust-card small {
  color: #5d574f !important;
  font-size: 12px;
  line-height: 1.45;
}

.rsp-product-sku {
  margin-top: 18px;
  color: #5d574f !important;
  font-size: 13px;
}

/* Product information tabs */
.rsp-product-tabs {
  margin-top: 58px;
  color: var(--rsp-ink) !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs {
  display: flex !important;
  list-style: none !important;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs::before,
.rsp-product-tabs .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--rsp-ink) !important;
  border-radius: 6px !important;
  background: var(--rsp-paper) !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs li::before,
.rsp-product-tabs .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs li.active {
  background: var(--rsp-green) !important;
}

.rsp-product-tabs .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 13px 18px !important;
  color: var(--rsp-ink) !important;
  font: 700 16px/1.2 var(--rsp-body) !important;
  letter-spacing: 0;
  text-transform: none;
}

.rsp-product-tabs .panel {
  margin: 0 !important;
  padding: 30px !important;
  border: 1px solid var(--rsp-line);
  border-radius: 10px;
  background: var(--rsp-cream);
  color: var(--rsp-ink) !important;
  font-family: var(--rsp-body) !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.rsp-product-tabs .panel h2,
.rsp-product-tabs .panel h3,
.rsp-product-tabs .panel h4 {
  color: var(--rsp-ink) !important;
  font-family: var(--rsp-body) !important;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.4;
  text-transform: none;
}

.rsp-product-tabs .panel p,
.rsp-product-tabs .panel li,
.rsp-product-tabs .panel td,
.rsp-product-tabs .panel th,
.rsp-product-tabs .panel span {
  color: var(--rsp-ink) !important;
  font-family: var(--rsp-body) !important;
  font-weight: 500;
}

.rsp-product-tabs .panel strong,
.rsp-product-tabs .panel b {
  color: var(--rsp-ink) !important;
  font-weight: 650;
}

.rsp-tab-accordion-toggle {
  display: none;
}

.rsp-related {
  margin-top: 70px;
}

.rsp-related h2 {
  margin-bottom: 28px;
}

/* Footer */
.rsp-footer {
  padding: 62px 0 20px;
  background: var(--rsp-ink);
  color: var(--rsp-cream);
}

.rsp-footer-grid {
  width: min(1720px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.rsp-footer h3 {
  margin: 0 0 18px;
  color: var(--rsp-cream) !important;
  font: 400 32px/1 var(--rsp-display);
  text-transform: uppercase;
}

.rsp-footer a,
.rsp-footer p {
  display: block;
  margin: 0 0 11px;
  color: #d8d0c4 !important;
  font-size: 14px;
}

.rsp-logo-footer {
  width: 210px;
}

.rsp-credit {
  width: min(1720px, calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #afa79c;
  font-size: 12px;
}

.rsp-preview-error {
  padding: 30px;
  background: #fff3cd;
  color: #664d03;
}

/* Quick select modal */
.rsp-modal-open {
  overflow: hidden !important;
}

.rsp-quick-modal[hidden],
.rsp-toast[hidden] {
  display: none !important;
}

.rsp-quick-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.rsp-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.rsp-quick-dialog {
  position: relative;
  width: min(820px, 100%);
  height: min(900px, calc(100vh - 36px));
  overflow: hidden;
  border: 2px solid var(--rsp-ink);
  border-radius: 12px;
  background: var(--rsp-paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.rsp-quick-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 2px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-green);
  color: var(--rsp-ink);
  font: 900 26px/1 Arial;
  cursor: pointer;
}

.rsp-quick-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--rsp-ink);
  font: 800 16px/1.4 var(--rsp-body);
}

.rsp-quick-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--rsp-paper);
}

.rsp-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000000;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(430px, calc(100vw - 40px));
  padding: 15px 19px;
  border: 2px solid var(--rsp-ink);
  border-radius: 8px;
  background: var(--rsp-green);
  color: var(--rsp-ink);
  font: 800 13px/1.2 var(--rsp-body);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.2s ease;
}

.rsp-toast a {
  margin-left: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: inherit !important;
  font: 900 12px/1 var(--rsp-heading);
  white-space: nowrap;
}

.rsp-toast.is-visible {
  opacity: 1;
  transform: none;
}

/* Embedded quick-select product */
.rsp-embedded {
  min-height: 100vh;
  overflow: visible;
  background: var(--rsp-paper);
}

.rsp-embedded .rsp-section {
  padding: 18px 0 30px;
}

.rsp-embedded .rsp-shell {
  width: min(100% - 24px, 760px);
}

.rsp-embedded .rsp-breadcrumb,
.rsp-embedded .rsp-product-tabs,
.rsp-embedded .rsp-related,
.rsp-embedded .rsp-product-trust,
.rsp-embedded .rsp-product-sku {
  display: none;
}

.rsp-embedded .rsp-product-layout {
  display: block;
}

.rsp-embedded .rsp-product-gallery-column {
  display: none;
}

.rsp-embedded .rsp-product-summary {
  position: static;
  padding: 24px;
  border: 0;
  background: var(--rsp-paper);
}

.rsp-embedded .rsp-product-summary h1 {
  font-size: clamp(38px, 8vw, 54px);
}

/* Global Elementor product wrapper */
body.rsp-global-product-template {
  margin: 0;
  background: var(--rsp-paper, #fffdf7);
}

.rsp-global-elementor-product,
.rsp-global-elementor-product > .elementor,
.rsp-global-elementor-product .elementor-widget-shortcode,
.rsp-global-elementor-product .elementor-widget-shortcode > .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Responsive */
@media (max-width: 1280px) {
  .rsp-hero-grid {
    grid-template-columns: minmax(400px, 0.9fr) minmax(540px, 1.1fr);
    gap: 32px;
  }

  .rsp-hero-carousel {
    min-height: 540px;
  }

  .rsp-carousel-viewport,
  .rsp-hero-slide,
  .rsp-hero-product {
    height: 430px;
    min-height: 430px;
  }

  .rsp-product-card,
  .rsp-catalog-grid .rsp-product-card {
    width: calc(33.333% - 12px);
  }

  .rsp-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 34px;
  }

  .rsp-product-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .rsp-shell,
  .rsp-nav,
  .rsp-footer-grid,
  .rsp-credit {
    width: min(100% - 32px, 1720px);
  }

  .rsp-hero-grid {
    grid-template-columns: 1fr;
  }

  .rsp-hero-copy {
    max-width: 880px;
  }

  .rsp-mood-grid {
    grid-template-columns: 1fr;
  }

  .rsp-mood-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .rsp-mood-media {
    height: 100%;
    min-height: 350px;
  }

  .rsp-product-layout {
    grid-template-columns: 1fr;
  }

  .rsp-product-summary {
    position: static;
  }

  .rsp-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rsp-benefit-grid > div:nth-child(2) {
    border-right: 0;
  }

  .rsp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .rsp-links,
  .rsp-actions > a {
    display: none;
  }

  .rsp-actions button {
    display: block;
  }

  .rsp-nav {
    min-height: 78px;
  }

  .rsp-logo {
    width: 165px;
  }

  .rsp-logo img {
    height: 56px;
  }

  .rsp-persona-grid {
    grid-template-columns: 1fr;
  }

  .rsp-product-card,
  .rsp-catalog-grid .rsp-product-card {
    width: calc(50% - 9px);
  }

  .rsp-catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .rsp-catalog-count {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .rsp-shell,
  .rsp-nav,
  .rsp-footer-grid,
  .rsp-credit {
    width: min(100% - 22px, 1720px);
  }

  .rsp-announcement {
    padding-block: 8px;
    font-size: 11px;
  }

  .rsp-hero {
    padding: 25px 0 36px;
  }

  .rsp-hero-copy h1 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .rsp-hero-copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  .rsp-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rsp-button {
    width: 100%;
  }

  .rsp-hero-carousel {
    min-height: 390px;
    padding: 16px 10px 24px;
    box-shadow: 6px 7px 0 rgba(23, 23, 23, 0.08);
  }

  .rsp-carousel-topline {
    min-height: 36px;
    margin-bottom: 8px;
    padding-inline: 4px;
    font-size: 11px;
  }

  .rsp-float-pill {
    padding: 7px 10px;
  }

  .rsp-carousel-viewport,
  .rsp-hero-slide,
  .rsp-hero-product {
    height: 305px;
    min-height: 305px;
  }

  .rsp-hero-slide {
    gap: 8px;
  }

  .rsp-hero-product b {
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 7px 5px;
    font-size: 10px;
  }

  .rsp-carousel-hint {
    display: block;
  }

  .rsp-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .rsp-trust span {
    min-height: 58px;
    padding: 13px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
  }

  .rsp-trust span:nth-child(2) {
    border-right: 0;
  }

  .rsp-section {
    padding: 54px 0;
  }

  .rsp-section h2,
  .rsp-related h2 {
    font-size: 56px;
  }

  .rsp-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rsp-mood-card {
    display: block;
  }

  .rsp-mood-media {
    height: 300px;
    min-height: 0;
  }

  .rsp-mood-copy {
    min-height: 195px;
    padding: 22px;
  }

  .rsp-mood-copy h3 {
    font-size: 52px;
  }

  .rsp-persona-card {
    min-height: 450px;
  }

  .rsp-persona-character {
    width: 88px;
    height: 88px;
  }

  .rsp-product-body {
    padding: 13px;
  }

  .rsp-product-card h3 {
    min-height: 44px;
    margin-block: 11px;
    font-size: 14px;
    line-height: 1.35;
  }

  .rsp-product-meta {
    align-items: flex-end;
    font-size: 12px;
  }

  .rsp-product-meta strong,
  .rsp-product-meta .amount {
    font-size: 13px;
  }

  .rsp-pill {
    padding: 6px 8px;
    font-size: 10px;
  }

  .rsp-delivery {
    margin: 10px 0;
    font-size: 11px;
  }

  .rsp-product-card .rsp-button {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 11px;
  }

  .rsp-benefit-grid {
    grid-template-columns: 1fr;
  }

  .rsp-benefit-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .rsp-instagram .sbi_item {
    width: calc(50% - 7px) !important;
    max-width: none !important;
  }

  .rsp-catalog-section {
    padding-top: 34px;
  }

  .rsp-catalog-heading {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .rsp-catalog-heading h1 {
    font-size: 52px;
  }

  .rsp-breadcrumb {
    gap: 7px;
    margin-bottom: 18px;
    font-size: 13px;
  }

  .rsp-breadcrumb strong {
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rsp-product-detail {
    padding-top: 28px;
  }

  .rsp-gallery-main {
    aspect-ratio: 4 / 5;
  }

  .rsp-thumb {
    width: 72px;
    height: 88px;
  }

  .rsp-product-summary {
    padding: 20px;
  }

  .rsp-product-summary h1 {
    font-size: 39px;
    line-height: 1;
  }

  .rsp-short-description,
  .rsp-short-description p {
    font-size: 16px;
    line-height: 1.68;
  }

  .rsp-choice-options {
    gap: 8px;
  }

  .rsp-choice-option {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .rsp-add-to-cart .woocommerce-variation-add-to-cart,
  .rsp-add-to-cart form.cart:not(.variations_form) {
    flex-direction: column;
  }

  .rsp-add-to-cart .quantity {
    width: 100% !important;
    grid-template-columns: 52px 1fr 52px;
  }

  .rsp-add-to-cart .single_add_to_cart_button {
    width: 100% !important;
    flex-basis: auto;
  }

  .rsp-product-trust {
    grid-template-columns: 1fr;
  }

  .rsp-product-tabs .woocommerce-tabs ul.tabs {
    display: none !important;
  }

  .rsp-tab-accordion-toggle {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding: 13px 16px;
    border: 1px solid var(--rsp-ink);
    border-radius: 7px;
    background: var(--rsp-paper);
    color: var(--rsp-ink);
    font-size: 15px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
  }

  .rsp-tab-accordion-toggle::after {
    content: "+";
    font-size: 21px;
  }

  .rsp-tab-accordion-toggle.is-open {
    background: var(--rsp-green);
  }

  .rsp-tab-accordion-toggle.is-open::after {
    content: "−";
  }

  .rsp-product-tabs .panel {
    display: none !important;
    margin-top: 8px !important;
    padding: 20px !important;
    font-size: 16px;
  }

  .rsp-product-tabs .panel.is-open {
    display: block !important;
  }

  .rsp-footer-grid {
    grid-template-columns: 1fr;
  }

  .rsp-quick-modal {
    padding: 0;
  }

  .rsp-quick-dialog {
    width: 100%;
    height: 100vh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .rsp-quick-close {
    top: 8px;
    right: 8px;
  }

  .rsp-embedded .rsp-section {
    padding-top: 10px;
  }
}

@media (max-width: 390px) {
  .rsp-product-card,
  .rsp-catalog-grid .rsp-product-card {
    width: 100%;
  }

  .rsp-instagram .sbi_item {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rsp-carousel-track,
  .rsp-carousel-progress span,
  .rsp-product-image-stack img,
  .rsp-mood-card,
  .rsp-button,
  .rsp-toast {
    transition: none !important;
  }
}

/* v4.3 interaction finishing rules */
body.rsp-mobile-menu-open {
  overflow: hidden;
}

.rsp-choice-group.has-error .rsp-choice-options {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(255, 117, 181, 0.42);
}

.rsp-choice-group.has-error .rsp-choice-heading > span,
.rsp-choice-group.has-error .rsp-choice-error {
  color: #6a153c !important;
}

.rsp-color-choice-group .rsp-choice-option {
  min-width: 126px;
  justify-content: flex-start;
}

.rsp-color-choice-group .rsp-color-swatch[style*="#ffffff"],
.rsp-color-choice-group .rsp-color-swatch[style*="rgb(255, 255, 255)"] {
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.25);
}

.rsp-global-product-template .elementor,
.rsp-global-product-template .elementor-element,
.rsp-global-product-template .elementor-widget-shortcode,
.rsp-global-product-template .elementor-shortcode {
  max-width: none;
}

@media (max-width: 720px) {
  .rsp-product-card h3 {
    font-size: 15.5px;
    line-height: 1.4;
  }

  .rsp-product-meta {
    font-size: 13px;
  }

  .rsp-product-meta strong,
  .rsp-product-meta .amount {
    font-size: 14.5px;
  }

  .rsp-color-choice-group .rsp-choice-option {
    min-width: calc(50% - 4px);
  }
}


@media (max-width: 560px) {
  .rsp-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .rsp-cart-feedback {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rsp-cart-feedback a {
    grid-column: 1 / -1;
    width: max-content;
    margin-left: 42px;
  }
}

/* =========================================================
   Rahraha Storefront 4.4 — functional catalogue and routing
   ========================================================= */

/* The iframe quick-select experience was removed in 4.4. */
.rsp-quick-modal,
.rsp-quick-backdrop,
.rsp-quick-dialog,
.rsp-quick-frame,
.rsp-quick-loading,
.rsp-quick-close {
  display: none !important;
}

.rsp-shop-page {
  padding-top: 48px;
}

.rsp-shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rsp-line);
}

.rsp-shop-heading h1 {
  max-width: 1050px;
  margin: 0;
  color: var(--rsp-ink) !important;
  font: 400 clamp(58px, 5.5vw, 88px)/0.92 var(--rsp-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.rsp-shop-heading p {
  max-width: 780px;
  margin: 18px 0 0;
  color: #4d473f !important;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.65;
}

.rsp-shop-heading-count {
  min-width: 210px;
  display: grid;
  justify-items: end;
  gap: 5px;
  padding-bottom: 7px;
  color: var(--rsp-ink);
  text-align: right;
}

.rsp-shop-heading-count strong {
  font-size: 15px;
  font-weight: 800;
}

.rsp-shop-heading-count span {
  color: var(--rsp-muted);
  font-size: 13px;
  font-weight: 650;
}

.rsp-category-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 22px;
}

.rsp-category-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1.5px solid var(--rsp-ink);
  border-radius: 12px;
  background: var(--rsp-cream);
  color: var(--rsp-ink) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.rsp-category-card:hover,
.rsp-category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 6px 7px 0 rgba(23, 23, 23, 0.12);
}

.rsp-category-card.is-active {
  background: var(--rsp-green);
  box-shadow: 5px 6px 0 var(--rsp-ink);
}

.rsp-category-visual {
  width: 92px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.rsp-category-visual img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.rsp-category-visual img + img {
  margin-left: -24px;
}

.rsp-category-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rsp-category-copy b {
  color: var(--rsp-ink);
  font: 800 26px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-category-copy small {
  color: #4d473f;
  font-size: 13px;
  font-weight: 700;
}

.rsp-category-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rsp-ink);
  border-radius: 50%;
  background: var(--rsp-paper);
  font-size: 17px;
  font-weight: 900;
}

.rsp-filter-panel {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--rsp-line);
  border-radius: 14px;
  background: var(--rsp-cream);
  box-shadow: 0 9px 28px rgba(23, 23, 23, 0.045);
}

.rsp-filter-panel > summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border-bottom: 1px solid transparent;
  color: var(--rsp-ink);
  cursor: pointer;
  list-style: none;
}

.rsp-filter-panel[open] > summary {
  border-bottom-color: var(--rsp-line);
}

.rsp-filter-panel > summary::-webkit-details-marker {
  display: none;
}

.rsp-filter-panel > summary > span:first-child {
  display: grid;
  gap: 2px;
}

.rsp-filter-panel > summary b {
  font: 800 19px/1.15 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-filter-panel > summary small {
  color: var(--rsp-muted);
  font-size: 13px;
  font-weight: 600;
}

.rsp-filter-summary-count {
  padding: 8px 12px;
  border: 1px solid var(--rsp-ink);
  border-radius: 999px;
  background: var(--rsp-paper);
  color: var(--rsp-ink);
  font: 800 12px/1 var(--rsp-heading);
  text-transform: uppercase;
}

.rsp-filter-panel[open] .rsp-filter-summary-count {
  background: var(--rsp-green);
}

.rsp-filter-form {
  padding: 22px;
}

.rsp-filter-form.is-submitting {
  opacity: 0.65;
  pointer-events: none;
}

.rsp-filter-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(145px, 0.8fr));
  align-items: end;
  gap: 16px;
}

.rsp-filter-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--rsp-ink);
}

.rsp-filter-field > span,
.rsp-filter-field legend {
  padding: 0;
  color: var(--rsp-ink);
  font: 800 13px/1.1 var(--rsp-heading);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rsp-filter-field input,
.rsp-filter-field select {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid #736c62;
  border-radius: 7px;
  background: #fff;
  color: var(--rsp-ink) !important;
  -webkit-text-fill-color: var(--rsp-ink) !important;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  opacity: 1;
}

.rsp-filter-field input:focus,
.rsp-filter-field select:focus {
  outline: 3px solid rgba(155, 247, 25, 0.45);
  outline-offset: 1px;
  border-color: var(--rsp-ink);
}

.rsp-filter-search {
  grid-column: span 2;
}

.rsp-price-filter {
  grid-column: span 2;
}

.rsp-price-filter > div {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
}

.rsp-price-filter > div > span {
  color: var(--rsp-muted);
  font-weight: 800;
}

.rsp-stock-filter {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px;
  border: 1px solid #736c62;
  border-radius: 7px;
  background: #fff;
  color: var(--rsp-ink);
  cursor: pointer;
}

.rsp-stock-filter input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--rsp-green);
}

.rsp-stock-filter span {
  display: grid;
  gap: 1px;
}

.rsp-stock-filter b {
  font-size: 14px;
}

.rsp-stock-filter small {
  color: var(--rsp-muted);
  font-size: 11px;
}

.rsp-filter-actions {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rsp-filter-actions .rsp-button {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  font-size: 12px;
}

.rsp-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--rsp-ink);
  font-size: 13px;
  font-weight: 700;
}

.rsp-active-filters > span {
  color: var(--rsp-muted);
}

.rsp-active-filters b,
.rsp-active-filters a {
  padding: 7px 10px;
  border: 1px solid var(--rsp-line);
  border-radius: 999px;
  background: var(--rsp-cream);
  color: var(--rsp-ink) !important;
  font-size: 12px;
}

.rsp-active-filters a {
  border-color: var(--rsp-ink);
  background: var(--rsp-ink);
  color: var(--rsp-cream) !important;
}

.rsp-catalog-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
  color: var(--rsp-ink);
}

.rsp-catalog-result-bar strong {
  font-size: 15px;
}

.rsp-catalog-result-bar span {
  color: var(--rsp-muted);
  font-size: 13px;
  font-weight: 650;
}

.rsp-pagination .rsp-page-gap {
  min-width: 28px;
  display: grid;
  place-items: center;
  color: var(--rsp-muted);
  font-weight: 800;
}

.rsp-pagination .rsp-page-arrow {
  width: auto;
  min-width: 52px;
  padding-inline: 14px;
}

@media (max-width: 1280px) {
  .rsp-filter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rsp-filter-search,
  .rsp-price-filter {
    grid-column: span 2;
  }

  .rsp-filter-actions {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .rsp-shop-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rsp-shop-heading-count {
    justify-items: start;
    text-align: left;
  }

  .rsp-category-card {
    grid-template-columns: 72px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 12px;
  }

  .rsp-category-visual {
    width: 72px;
    height: 68px;
  }

  .rsp-category-visual img {
    width: 62px;
    height: 62px;
  }

  .rsp-category-copy b {
    font-size: 21px;
  }
}

@media (max-width: 820px) {
  .rsp-category-showcase {
    grid-template-columns: 1fr;
  }

  .rsp-category-card {
    min-height: 86px;
  }

  .rsp-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rsp-filter-search,
  .rsp-price-filter,
  .rsp-filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .rsp-shop-page {
    padding-top: 30px;
  }

  .rsp-shop-heading {
    padding-bottom: 22px;
  }

  .rsp-shop-heading h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .rsp-shop-heading p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.55;
  }

  .rsp-category-showcase {
    display: flex;
    gap: 10px;
    margin: 22px -11px 16px;
    padding: 0 11px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .rsp-category-card {
    min-width: min(84vw, 310px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .rsp-filter-panel > summary {
    min-height: 66px;
    padding: 13px 15px;
  }

  .rsp-filter-panel > summary small {
    display: none;
  }

  .rsp-filter-form {
    padding: 15px;
  }

  .rsp-filter-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .rsp-filter-search,
  .rsp-price-filter,
  .rsp-filter-actions {
    grid-column: auto;
  }

  .rsp-filter-category-select {
    display: grid;
  }

  .rsp-filter-actions {
    grid-template-columns: 1fr;
  }

  .rsp-active-filters {
    margin-bottom: 16px;
  }

  .rsp-catalog-result-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (min-width: 821px) {
  .rsp-filter-category-select {
    display: none;
  }
}
