.rp-announcement {
  color: var(--rp-white);
  background: var(--rp-forest);
  overflow: hidden;
}

.rp-announcement__track {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.rp-announcement__track span {
  display: none;
}

.rp-announcement__track span.is-active {
  display: inline;
}

.rp-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--rp-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.rp-header-inner {
  width: min(100% - 2rem, 1480px);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2.2rem);
  align-items: center;
}

.rp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--rp-forest);
  font-weight: 900;
}

.rp-brand--image {
  gap: 0;
}

.rp-brand-logo {
  display: block;
  width: clamp(210px, 19vw, 286px);
  max-height: 74px;
  object-fit: contain;
}

.rp-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rp-white);
  background: var(--rp-forest);
  font-size: 0.85rem;
}

.rp-brand-text {
  font-size: 1.35rem;
  line-height: 1;
}

.rp-brand-text span {
  color: var(--rp-orange);
}

.rp-menu,
.rp-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.rp-primary-nav {
  justify-self: center;
}

.rp-menu__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--rp-radius);
  color: var(--rp-charcoal);
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.rp-menu__link:hover,
.rp-menu__link:focus-visible,
.rp-menu__link[aria-expanded="true"] {
  color: var(--rp-forest);
  background: rgba(31, 90, 70, 0.09);
}

.rp-menu__chevron {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.rp-menu__link[aria-expanded="true"] .rp-menu__chevron {
  transform: rotate(180deg);
}

.rp-header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.65rem;
  font-weight: 800;
}

.rp-icon-button,
.rp-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  color: var(--rp-forest);
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  line-height: 1;
}

.rp-icon-button {
  width: 48px;
  height: 48px;
  padding: 0;
}

.rp-icon-button svg,
.rp-icon-link svg,
.rp-menu-toggle svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.rp-icon-link {
  gap: 0.4rem;
  min-height: 48px;
  padding-inline: 0.85rem;
}

.rp-btn span[aria-hidden="true"] {
  margin-left: 0.35rem;
}

.rp-icon-link span {
  color: inherit;
}

.rp-whatsapp-link {
  border-color: rgba(18, 56, 47, 0.18);
  color: var(--rp-forest);
  background: var(--rp-white);
}

.rp-whatsapp-link:hover,
.rp-whatsapp-link:focus-visible {
  border-color: var(--rp-forest);
}

.rp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  padding: 0.6rem;
}

.rp-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--rp-forest);
  margin: 5px 0;
}

.rp-search-panel {
  border-top: 1px solid var(--rp-border);
  padding: 1rem;
  background: var(--rp-white);
}

.rp-search-panel form {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  gap: 0.8rem;
}

.rp-search-panel input {
  flex: 1;
  min-height: 46px;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 0.7rem 0.9rem;
}

.rp-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  pointer-events: none;
}

.rp-mega-panel {
  display: none;
  padding: 1rem;
  background: transparent;
  pointer-events: auto;
}

.rp-mega-panel.is-open {
  display: block;
}

.rp-mega-panel__inner {
  width: min(100%, 1460px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  box-shadow: var(--rp-shadow);
}

.rp-mega-panel h2 {
  font-size: clamp(1.85rem, 2.4vw, 2.65rem);
}

.rp-mega-panel h3 {
  color: var(--rp-pine);
  margin: 0;
  font-size: 1.08rem;
}

.rp-mega-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.rp-mega-panel a {
  color: var(--rp-charcoal);
}

.rp-mega-products {
  display: grid;
  grid-template-columns: minmax(320px, 410px) minmax(0, 1fr);
}

.rp-mega-intro {
  padding: 2rem 2rem 1.8rem;
  border-right: 1px solid var(--rp-border);
}

.rp-mega-intro p:not(.rp-kicker) {
  max-width: 250px;
  font-size: 1.03rem;
}

.rp-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  padding: 2rem 2rem 1.7rem;
}

.rp-mega-card {
  min-width: 0;
}

.rp-mega-card__head {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--rp-border);
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
}

.rp-mega-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--rp-forest);
  background: rgba(31, 90, 70, 0.1);
}

.rp-mega-icon svg {
  width: 27px;
  height: 27px;
}

.rp-mega-card li a {
  display: inline-flex;
  color: var(--rp-charcoal);
  font-weight: 600;
}

.rp-mega-card li a:hover,
.rp-mega-card li a:focus-visible,
.rp-mega-resource-list a:hover,
.rp-mega-resource-list a:focus-visible {
  color: var(--rp-pine);
}

.rp-mega-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
}

.rp-mega-quick {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: 1.25rem;
  align-items: center;
  border-top: 1px solid var(--rp-border);
  padding: 1.35rem 1.7rem;
}

.rp-mega-quick strong {
  color: var(--rp-forest);
  font-size: 1.08rem;
}

.rp-mega-quick p {
  margin: 0;
}

.rp-mega-icon--quick {
  width: 46px;
  height: 46px;
}

.rp-mega-panel__inner--resources {
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.rp-mega-panel__inner--resources h2 {
  font-size: 1.8rem;
}

.rp-mega-resource-list {
  display: grid;
  gap: 0.5rem;
}

.rp-mega-resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 0.72rem 0.8rem;
  color: var(--rp-forest);
  background: var(--rp-sand);
  font-weight: 800;
}

.rp-mega-promo {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--rp-radius);
  display: block;
}

.rp-mega-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-mega-promo span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--rp-radius);
  color: var(--rp-white);
  background: rgba(18, 56, 47, 0.82);
  font-weight: 900;
}

.rp-mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(94vw, 440px);
  height: 100vh;
  height: 100dvh;
  z-index: 120;
  display: flex;
  flex-direction: column;
  background: var(--rp-white);
  box-shadow: -20px 0 60px rgba(18, 56, 47, 0.2);
}

.rp-mobile-drawer[hidden] {
  display: none;
}

.rp-mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid var(--rp-border);
  padding: 0 1.35rem;
  color: var(--rp-forest);
  font-size: 1.35rem;
}

.rp-mobile-drawer .rp-mobile-drawer__close {
  display: inline-flex;
  width: 44px;
  height: 44px;
}

.rp-mobile-drawer__scroll {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1rem 1.4rem;
}

.rp-mobile-nav {
  display: grid;
  gap: 0;
}

.rp-mobile-nav__row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--rp-border);
  padding: 0.9rem 0.65rem;
  color: var(--rp-forest);
  background: var(--rp-white);
  font-size: 1.05rem;
  font-weight: 800;
}

.rp-mobile-nav__row--active {
  border-bottom: 0;
  border-radius: 0;
  background: rgba(31, 90, 70, 0.09);
}

.rp-mobile-products {
  border-bottom: 1px solid var(--rp-border);
  margin-bottom: 0.1rem;
}

.rp-mobile-products summary {
  cursor: pointer;
  list-style: none;
}

.rp-mobile-products summary::-webkit-details-marker {
  display: none;
}

.rp-mobile-product-groups {
  display: grid;
  gap: 0;
  padding: 1rem 0.25rem 0.3rem;
}

.rp-mobile-product-groups section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 0.8rem;
  border-bottom: 1px solid var(--rp-border);
  padding: 1rem 0.25rem;
}

.rp-mobile-product-groups section::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31, 90, 70, 0.1);
}

.rp-mobile-product-groups h3 {
  grid-column: 2;
  margin: 0 0 0.5rem;
  color: var(--rp-forest);
  font-size: 1.05rem;
}

.rp-mobile-product-groups ul {
  grid-column: 2;
  margin: 0;
  padding-left: 1rem;
  color: var(--rp-muted);
}

.rp-mobile-product-groups li {
  margin-bottom: 0.35rem;
  padding-left: 0.15rem;
}

.rp-mobile-product-groups a {
  color: var(--rp-charcoal);
  font-weight: 600;
}

.rp-mobile-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  border-top: 1px solid var(--rp-border);
  padding: 1rem;
  background: var(--rp-white);
  box-shadow: 0 -16px 30px rgba(18, 56, 47, 0.08);
}

.rp-mobile-drawer__actions .rp-btn {
  width: 100%;
  min-height: 50px;
}

.rp-mobile-drawer__actions .rp-btn--outline {
  border-color: var(--rp-forest);
  background: var(--rp-white);
}

.rp-mobile-drawer__cta {
  grid-column: 1 / -1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-forest);
  border-radius: var(--rp-radius);
  color: var(--rp-white) !important;
  background: var(--rp-forest) !important;
  font-weight: 900;
}

html.rp-menu-open #ht-ctc-chat {
  display: none !important;
}

.rp-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.rp-hero__media,
.rp-hero__overlay {
  position: absolute;
  inset: 0;
}

.rp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.rp-hero__overlay {
  background: linear-gradient(90deg, rgba(18, 56, 47, 0.74), rgba(18, 56, 47, 0.2) 48%, rgba(18, 56, 47, 0.03));
}

.rp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 5rem 0 6rem;
  color: var(--rp-white);
}

.rp-hero__content h1,
.rp-hero__content .rp-kicker {
  color: var(--rp-white);
}

.rp-hero__content p {
  max-width: 620px;
  font-size: 1.18rem;
}

.rp-page-hero,
.rp-landing-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--rp-sand);
}

.rp-page-hero--image {
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--rp-white);
}

.rp-page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 56, 47, 0.58);
}

.rp-page-hero--image .rp-container {
  position: relative;
  z-index: 1;
}

.rp-page-hero--image h1,
.rp-page-hero--image .rp-kicker,
.rp-page-hero--image .rp-breadcrumbs,
.rp-page-hero--image a {
  color: var(--rp-white);
}

.rp-landing-hero {
  color: var(--rp-white);
  background: var(--rp-forest);
}

.rp-landing-hero h1,
.rp-landing-hero .rp-kicker {
  color: var(--rp-white);
}

.rp-product-grid,
.rp-category-grid,
.rp-benefit-grid,
.rp-post-grid,
.rp-bundle-grid,
.rp-social-video-grid {
  display: grid;
  gap: 1rem;
}

.rp-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rp-category-grid,
.rp-benefit-grid,
.rp-social-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rp-post-grid,
.rp-bundle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rp-product-card {
  padding: 0;
  overflow: hidden;
}

.rp-product-card__image {
  aspect-ratio: 1 / 0.82;
  display: block;
  background: var(--rp-sand);
}

.rp-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-product-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1rem;
}

.rp-product-card__body .rp-status-pill {
  margin-bottom: 0.8rem;
  color: var(--rp-forest);
  background: var(--rp-sand);
  border: 1px solid var(--rp-border);
}

.rp-product-card__body p {
  min-height: 3.2em;
  color: var(--rp-muted);
  font-size: 0.93rem;
}

.rp-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.rp-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.rp-stars {
  display: block;
  color: var(--rp-orange);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.rp-stars small {
  color: var(--rp-muted);
  font-weight: 700;
}

.rp-activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.rp-activity-card {
  overflow: hidden;
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
}

.rp-activity-card img {
  aspect-ratio: 1.2 / 1;
  width: 100%;
  object-fit: cover;
}

.rp-activity-card div {
  padding: 1rem;
}

.rp-category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-sand);
  padding: 1.2rem;
}

.rp-category-card span {
  color: var(--rp-orange);
  font-weight: 900;
}

.rp-category-card small {
  color: var(--rp-pine);
  font-weight: 800;
}

.rp-benefit-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rp-radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.rp-benefit-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.rp-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.rp-trust-badges span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 0.8rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  color: var(--rp-forest);
  background: var(--rp-white);
  font-weight: 900;
  text-align: center;
}

.rp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.rp-image-panel {
  overflow: hidden;
  border-radius: var(--rp-radius);
}

.rp-image-panel img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.rp-video-placeholder {
  min-height: 320px;
  border-radius: var(--rp-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--rp-white);
  background: var(--rp-forest);
}

.rp-video-placeholder span {
  color: var(--rp-orange);
  font-weight: 900;
}

.rp-check-list {
  padding-left: 1.1rem;
}

.rp-check-list li {
  margin-bottom: 0.45rem;
}

.rp-form {
  display: grid;
  gap: 1rem;
}

.rp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rp-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--rp-forest);
  font-weight: 800;
}

.rp-form input,
.rp-form textarea,
.rp-form select {
  width: 100%;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 0.75rem 0.85rem;
  background: var(--rp-white);
  color: var(--rp-charcoal);
}

.rp-form-notice {
  padding: 1rem;
  border-radius: var(--rp-radius);
  margin-bottom: 1rem;
}

.rp-form-notice--success {
  background: #edf7ee;
  color: #17552b;
}

.rp-form-notice--error {
  background: #fff0eb;
  color: #8b2d15;
}

.rp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rp-form small {
  color: var(--rp-muted);
  font-weight: 700;
  line-height: 1.5;
}

.rp-signup-form,
.rp-notify-form {
  align-items: start;
}

.rp-form-grid--signup {
  width: 100%;
}

.rp-coming-soon-card {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-sand);
}

.rp-status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--rp-white);
  background: var(--rp-forest);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rp-review-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rp-review-placeholder {
  display: grid;
  gap: 0.45rem;
}

.rp-review-placeholder strong {
  color: var(--rp-forest);
}

.rp-review-placeholder span {
  color: var(--rp-muted);
}

.rp-collection-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.rp-filter-panel {
  position: sticky;
  top: 110px;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1rem;
  background: var(--rp-white);
}

.rp-filter-panel button {
  width: 100%;
  display: block;
  margin-bottom: 0.55rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 0.65rem;
  color: var(--rp-forest);
  background: var(--rp-sand);
  text-align: left;
  font-weight: 800;
}

.rp-faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.rp-faq-list details {
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1rem;
  background: var(--rp-white);
}

.rp-faq-list summary {
  color: var(--rp-forest);
  font-weight: 900;
  cursor: pointer;
}

.rp-size-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rp-table-wrap {
  grid-column: 1 / -1;
  overflow-x: auto;
}

.rp-site-footer {
  padding: 4rem 0 1.5rem;
  color: var(--rp-white);
  background: var(--rp-forest);
}

.rp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.rp-site-footer h3,
.rp-site-footer .rp-brand {
  color: var(--rp-white);
}

.rp-site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
}

.rp-footer-brand p {
  color: rgba(255, 255, 255, 0.78);
}

.rp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.rp-btn--ghost {
  color: var(--rp-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.rp-btn--outline {
  color: var(--rp-forest);
  background: transparent;
  border-color: var(--rp-forest);
}

.rp-hero--b2b {
  min-height: 76vh;
}

.rp-hero--b2b .rp-hero__overlay {
  background: linear-gradient(90deg, rgba(18, 56, 47, 0.82), rgba(18, 56, 47, 0.34) 48%, rgba(18, 56, 47, 0.08));
}

.rp-hero--b2b .rp-hero__content {
  max-width: 580px;
  padding: 4.6rem 0 5.4rem;
  transform: translateX(clamp(-13rem, -15vw, -4.5rem));
}

.rp-hero--b2b .rp-hero__content h1 {
  max-width: 580px;
  font-size: clamp(3rem, 4.55vw, 4.65rem);
}

.rp-hero--b2b .rp-hero__content p {
  max-width: 535px;
  font-size: 1.08rem;
}

.rp-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.rp-hero__proof span,
.rp-market-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border-radius: var(--rp-radius);
  font-weight: 900;
}

.rp-hero__proof span {
  color: var(--rp-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.rp-section--intro {
  padding: 3rem 0;
}

.rp-category-grid--b2b .rp-category-card {
  min-height: 250px;
}

.rp-category-grid--b2b {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rp-mega-panel__inner--products {
  grid-template-columns: 1.15fr repeat(5, minmax(0, 1fr));
}

.rp-mega-panel p {
  color: var(--rp-muted);
}

.rp-product-card--b2b .rp-status-pill {
  margin-bottom: 0.8rem;
}

.rp-product-note {
  display: block;
  color: var(--rp-forest);
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.rp-product-note small {
  display: block;
  color: var(--rp-muted);
  font-weight: 700;
}

.rp-product-card__sample {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
}

.rp-sample-price-label {
  color: var(--rp-muted);
  font-size: 0.78rem;
}

.rp-sample-order-anchor {
  display: block;
  scroll-margin-top: 110px;
}

.rp-b2b-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem auto 2rem;
  max-width: var(--rp-container);
}

.rp-b2b-spec-grid article {
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  padding: 1rem;
}

.rp-b2b-spec-grid span {
  display: block;
  color: var(--rp-muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.rp-b2b-spec-grid strong {
  color: var(--rp-forest);
  font-size: 0.95rem;
}

.rp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.rp-process-grid article {
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
  padding: 1.2rem;
}

.rp-process-grid span {
  display: inline-flex;
  color: var(--rp-orange);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.rp-market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rp-market-grid span {
  color: var(--rp-forest);
  background: var(--rp-white);
  border: 1px solid var(--rp-border);
}

.rp-quote-panel {
  border-top: 4px solid var(--rp-orange);
}

.rp-check-list--columns {
  columns: 2;
  column-gap: 2rem;
}

.rp-filter-panel a {
  width: 100%;
  display: block;
  margin-bottom: 0.55rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 0.65rem;
  color: var(--rp-forest);
  background: var(--rp-sand);
  text-align: left;
  font-weight: 800;
}

.rp-b2b-quote-box {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid var(--rp-border);
  border-left: 4px solid var(--rp-orange);
  border-radius: var(--rp-radius);
  background: var(--rp-sand);
}

.rp-shop-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.2rem;
  border: 1px solid var(--rp-border);
  border-left: 4px solid var(--rp-orange);
  border-radius: var(--rp-radius);
  background: var(--rp-sand);
}

.rp-shop-action-panel h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.rp-shop-action-panel p {
  max-width: 720px;
  color: var(--rp-muted);
}

.rp-shop-action-panel__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.rp-buyer-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.rp-buyer-path article {
  padding: 1rem;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  background: var(--rp-white);
}

.rp-buyer-path span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--rp-orange);
  font-weight: 900;
}

.rp-buyer-path p,
.rp-quote-checklist {
  color: var(--rp-muted);
}

.rp-quote-checklist {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}
