:root {
  --font-display: 'Inter', sans-serif;

  --color-primary-sky-25: #fafbf9;
  --color-primary-sky-100: #e9ebe3;
  --color-primary-sky-900: #333c1b;
  --color-primary-sky-950: #252c14;
  --color-neutral-25: #ffffff;
  --color-neutral-50: #e8e8e8;
  --color-neutral-300: #a2a2a2;
  --color-neutral-400: #8b8b8b;
  --color-neutral-700: #3a3939;
  --color-neutral-800: #202020;
  --color-neutral-900: #171717;

  --color-text-default: #161616;
  --color-text-oncolor-primary: #ffffff;
  --color-text-oncolor-secondary: rgba(255, 255, 255, 0.8);
  --color-text-oncolor-tertiary: rgba(255, 255, 255, 0.7);
  --color-border-primary: #627334;
  --color-border-neutral-primary: #a2a2a2;
  --color-icon-default: #161616;
  --color-icon-oncolor: #ffffff;

  --spacing-sm: 6px;
  --spacing-2xl: 20px;
  --spacing-5xl: 40px;
  --spacing-7xl: 64px;
  --spacing-8xl: 80px;
  --spacing-9xl: 96px;
  --spacing-10xl: 128px;

  --section-gap: 32px;
  --section-padding: 32px;
  --card-lg-gap: 24px;
  --card-lg-padding: 32px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text-default);
  margin: 0;
  background: #fbf8f3;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* ==================== ANNOUNCEMENT BAR ==================== */

.rr-announcement-bar {
  background: var(--color-primary-sky-950);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
}

.rr-announcement-bar__text {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(251, 250, 248, 0.85);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* ==================== HERO ==================== */

.rr-hero {
  position: relative;
  background: #111110;
  overflow: hidden;
}

.rr-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.rr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, 0.85) 0%, rgba(17, 17, 16, 0.3) 62.52%, rgba(17, 17, 16, 0.4) 100%);
}

.rr-hero__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) var(--spacing-8xl);
  display: flex;
  flex-direction: column;
  min-height: 800px;
  justify-content: flex-end;
}

/* ---- Nav (sobreposta ao hero) ---- */

.rr-nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--spacing-9xl);
}

.rr-nav-solid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: var(--color-neutral-800);
}

.rr-nav--solid {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  z-index: auto;
  margin: 0 auto;
}

.rr-nav--solid .rr-nav__link {
  color: rgba(251, 250, 248, 0.8);
}

.rr-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.rr-nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text-oncolor-primary);
}

.rr-nav__links {
  display: flex;
  align-items: center;
}

.rr-nav__links--start {
  gap: var(--section-gap);
}

.rr-nav__links--end {
  gap: var(--card-lg-gap);
}

.rr-nav__link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(251, 250, 248, 0.8);
  text-transform: uppercase;
  white-space: nowrap;
}

.rr-nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rr-nav__logo img {
  height: 64px;
}

.rr-nav__cart {
  background: #fff0d3;
  color: var(--color-text-default);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 16px;
  white-space: nowrap;
}

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

.rr-hero__reveal {
  display: flex;
  gap: var(--card-lg-padding);
  align-items: center;
  width: 100%;
}

.rr-hero__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--card-lg-padding);
  flex: 1 0 0;
  min-width: 0;
}

.rr-hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--card-lg-gap);
}

.rr-hero__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 240, 211, 0.7);
  text-transform: uppercase;
}

.rr-hero__title {
  margin: 0;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  color: #fff0d3;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.rr-hero__subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 240, 211, 0.85);
  max-width: 540px;
}

.rr-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff0d3;
  color: var(--color-text-default);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 16px 24px;
  white-space: nowrap;
}

/* ---- Mini best-sellers stack ---- */

.rr-hero__side {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.rr-hero__stack-col {
  display: flex;
  flex-direction: column;
  gap: var(--card-lg-gap);
  height: 100%;
  justify-content: flex-end;
}

.rr-hero__stack {
  position: relative;
  width: 258.906px;
  height: 193px;
}

.rr-hero__stack-item {
  position: absolute;
  background: radial-gradient(78% 88% at 10% 45%, #4b4841 0%, #33322d 38%, #232320 68%, #181811 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: left 0.3s ease, top 0.3s ease, width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.rr-hero__stack-item img {
  width: 100%;
  flex: 1 0 0;
  min-height: 0;
  padding: 10px;
  object-fit: contain;
}

.rr-hero__stack-item span {
  display: block;
  color: #fff;
  opacity: 0.5;
  white-space: nowrap;
  text-transform: uppercase;
}

.rr-hero__stack-item--sm {
  left: 0.14px;
  top: 32px;
  width: 128.975px;
  height: 129px;
  z-index: 1;
}

.rr-hero__stack-item--sm span {
  padding: var(--spacing-sm);
  font-size: 10px;
  line-height: 14px;
}

.rr-hero__stack-item--md {
  left: 50%;
  transform: translateX(calc(-50% - 15.83px));
  top: 16px;
  width: 160.969px;
  height: 161px;
  z-index: 2;
}

.rr-hero__stack-item--md span {
  padding: var(--spacing-sm);
  font-size: 10px;
  line-height: 14px;
}

.rr-hero__stack-item--lg {
  right: -0.2px;
  top: 0;
  width: 192.962px;
  height: 193px;
  z-index: 3;
}

.rr-hero__stack-item--lg span {
  padding: 8px;
  font-size: 12px;
  line-height: 18px;
}


.rr-hero__arrows {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.rr-hero__arrows-group {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
}

.rr-round-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-neutral-primary);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.rr-round-btn img {
  display: block;
}

/* ==================== TRUST STRIP ==================== */

.rr-trust-strip {
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  display: flex;
  justify-content: center;
}

.rr-trust-strip__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79.989px;
  max-width: 1440px;
  width: 100%;
  padding: 0 var(--spacing-9xl);
}

.rr-trust-strip__container p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-neutral-400);
  white-space: nowrap;
}

/* ==================== CATEGORIES ==================== */

.rr-categories {
  padding: var(--accordion-md-header-gap, 48px) 0 var(--spacing-7xl);
}

.rr-categories__heading {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-categories__heading p {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: var(--color-neutral-900);
  letter-spacing: -0.72px;
}

.rr-categories__grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 48px;
}

.rr-category-card {
  position: relative;
  flex: 1 0 50%;
  max-width: 50%;
  height: 620px;
  overflow: hidden;
  background: #111110;
  display: block;
}

.rr-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-category-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 310px;
  background: linear-gradient(0deg, rgba(17, 17, 16, 0.85) 0%, rgba(17, 17, 16, 0.676) 36.748%, rgba(17, 17, 16, 0.45) 63.273%, rgba(17, 17, 16, 0) 100%);
}

.rr-category-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rr-category-card__title {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: #fbfaf8;
  letter-spacing: -0.72px;
  white-space: nowrap;
}

.rr-category-card__desc {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(251, 250, 248, 0.8);
  max-width: 384px;
}

.rr-category-card__link {
  margin-top: 24px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-oncolor-tertiary);
  text-decoration: underline;
}

.rr-categories__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.rr-categories__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-primary);
  padding: 16px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #434e23;
  text-decoration: underline;
}

/* ==================== BEST SELLERS ==================== */

.rr-best-sellers {
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
  padding: var(--spacing-9xl) 0;
}

.rr-best-sellers__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-best-sellers__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.rr-best-sellers__header p {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: var(--color-neutral-900);
  letter-spacing: -0.72px;
}

.rr-best-sellers__header a {
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-default);
  text-decoration: underline;
}

.rr-best-sellers__grid {
  display: flex;
  gap: var(--card-lg-gap);
  align-items: stretch;
  margin-top: 48px;
}

.rr-product-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.rr-product-card__image {
  background: var(--color-neutral-50);
  aspect-ratio: 1 / 1;
  display: flex;
  overflow: hidden;
  position: relative;
}

.rr-product-card__image img {
  position: absolute;
  left: 0;
  top: -18.28%;
  width: 100%;
  height: 122.91%;
  object-fit: cover;
}

.rr-product-card__name {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #111110;
}

.rr-product-card__meta {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #8a8880;
}

.rr-product-card__price {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 22.5px;
  font-weight: 400;
  color: #111110;
}

/* ==================== LINE SLIDER ==================== */

.rr-line-slider {
  background: #111110;
}

.rr-line-slide {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.rr-line-slide__bg {
  position: absolute;
  inset: 0;
}

.rr-line-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-line-slide__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, 0.95) 0%, rgba(17, 17, 16, 0.85) 20%, rgba(17, 17, 16, 0.2) 55%, rgba(17, 17, 16, 0) 100%);
}

.rr-line-slide__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: var(--spacing-9xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.rr-line-slide__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-neutral-300);
  text-transform: uppercase;
}

.rr-line-slide__eyebrow--white {
  color: #fff;
}

.rr-line-slide__title {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: var(--color-neutral-25);
  letter-spacing: -0.72px;
}

.rr-line-slide__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-oncolor-secondary);
  max-width: 448px;
}

.rr-line-slide__cta {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-oncolor-primary);
  text-decoration: underline;
}

.rr-line-slide__footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 48px var(--spacing-9xl) 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rr-line-slide__arrows {
  display: flex;
  gap: 16px;
}

.rr-line-slide__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.rr-line-slide__tab {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-neutral-25);
  opacity: 0.7;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.rr-line-slide__tab--active {
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
}

.rr-line-slide__tab-sep {
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ==================== WHY US ==================== */

.rr-why-us {
  position: relative;
  background: var(--color-primary-sky-950);
  padding: var(--spacing-10xl) 0;
  overflow: hidden;
}

.rr-why-us__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rr-why-us__mountain {
  position: absolute;
  left: 35.35%;
  right: 35.38%;
  top: 14.02%;
  bottom: 14.13%;
}

.rr-why-us__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-why-us__eyebrow {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #fff0d3;
}

.rr-why-us__grid {
  display: flex;
  align-items: stretch;
  margin-top: 64px;
}

.rr-why-us__item {
  flex: 1 0 0;
  min-width: 0;
  padding: 0 40px;
}

.rr-why-us__item:first-child {
  padding-left: 0;
}

.rr-why-us__item:not(:first-child) {
  border-left: 1.17px solid rgba(255, 240, 211, 0.15);
}

.rr-why-us__item-title {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: #fff0d3;
}

.rr-why-us__item-desc {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(255, 240, 211, 0.7);
  max-width: 272px;
}

/* ==================== TESTIMONIALS ==================== */

.rr-testimonials {
  position: relative;
  background: #fbf8f3;
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
  padding: var(--spacing-9xl) 0;
  overflow: hidden;
}

.rr-testimonials__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-testimonials__header {
  text-align: center;
}

.rr-testimonials__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-testimonials__title {
  margin: 16px 0 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  color: var(--color-neutral-900);
  letter-spacing: -0.96px;
}

.rr-testimonials__gallery {
  position: relative;
  height: 730px;
  margin-top: 48px;
  --rr-testi-col: 325px;
}

.rr-testimonials__gallery-group {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rr-testimonials__gallery-single {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: calc(var(--rr-testi-col) + 110px);
}

.rr-testimonials__gallery-single.rr-testimonials__gallery-col--offset-lg {
  padding-top: 0;
}

.rr-testimonials__gallery-group--left .rr-testimonials__gallery-single {
  padding-top: 64px;
}

.rr-testimonials__gallery-group--right .rr-testimonials__gallery-single img {
  margin-top: auto;
}

.rr-testimonials__gallery-group--left {
  left: 0;
}

.rr-testimonials__gallery-group--right {
  right: 0;
}

.rr-testimonials__gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: var(--rr-testi-col);
}

.rr-testimonials__gallery-col--offset {
  padding-top: 64px;
}

.rr-testimonials__gallery-col--offset-lg {
  padding-top: 128px;
}

.rr-testimonials__gallery-col img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 1760px) {
  .rr-testimonials__gallery { height: 680px; --rr-testi-col: 300px; }
}

@media (max-width: 1670px) {
  .rr-testimonials__gallery { height: 660px; --rr-testi-col: 290px; }
}

@media (max-width: 1640px) {
  .rr-testimonials__gallery { height: 640px; --rr-testi-col: 280px; }
}

@media (max-width: 1600px) {
  .rr-testimonials__gallery { height: 620px; --rr-testi-col: 270px; }
}

@media (max-width: 1560px) {
  .rr-testimonials__gallery { height: 600px; --rr-testi-col: 260px; }
}

@media (max-width: 1520px) {
  .rr-testimonials__gallery { height: 580px; --rr-testi-col: 250px; }
}

@media (max-width: 1480px) {
  .rr-testimonials__gallery { height: 560px; --rr-testi-col: 240px; }
}

@media (max-width: 1440px) {
  .rr-testimonials__gallery { height: 540px; --rr-testi-col: 230px; }
}

@media (max-width: 1400px) {
  .rr-testimonials__gallery { height: 520px; --rr-testi-col: 220px; }
}

@media (max-width: 1360px) {
  .rr-testimonials__gallery { height: 500px; --rr-testi-col: 210px; }
}

@media (max-width: 1320px) {
  .rr-testimonials__gallery { height: 480px; --rr-testi-col: 200px; }
}

@media (max-width: 1280px) {
  .rr-testimonials__gallery { height: 460px; --rr-testi-col: 190px; }
}

@media (max-width: 1240px) {
  .rr-testimonials__gallery { height: 455px; --rr-testi-col: 183.478px; }
}

.rr-testimonials__gallery-single img {
  width: 100%;
  height: var(--rr-testi-col);
  object-fit: cover;
}

.rr-testimonials__gallery-fade {
  display: none;
}

.rr-testimonials__gallery-group--left {
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 127px);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 127px);
}

.rr-testimonials__gallery-group--right {
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 127px);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 127px);
}

.rr-testimonial-swiper {
  margin-top: 48px;
}

.rr-testimonial-card {
  background: #fff;
  border: 1px solid var(--color-primary-sky-100);
  padding: var(--card-lg-gap);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rr-testimonial-card__quote {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--color-neutral-700);
}

.rr-testimonial-card__author {
  margin: 32px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-neutral-700);
  text-transform: uppercase;
}

.rr-testimonials__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.rr-testimonials__dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.rr-testimonials__dot {
  width: 4px;
  height: 4px;
  background: var(--color-neutral-300);
  border: none;
  padding: 0;
  cursor: pointer;
}

.rr-testimonials__dot--active {
  width: 29px;
  background: var(--color-primary-sky-900);
}

.rr-testimonials__arrows {
  display: flex;
  gap: 16px;
}

/* ==================== FAQ ==================== */

.rr-faq {
  padding: var(--spacing-9xl) 0;
}

.rr-faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
  display: grid;
  grid-template-columns: minmax(0, 493.22px) minmax(0, 690.53px);
  gap: 64px;
}

.rr-faq__title {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: var(--color-neutral-900);
  letter-spacing: -0.72px;
}

.rr-faq__contact {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-default);
  text-decoration: underline;
}

.rr-faq-item {
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-faq-item:first-child {
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.rr-faq-item__question {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-faq-item__icon {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #8a8880;
}

.rr-faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.rr-faq-item--open .rr-faq-item__panel {
  max-height: 200px;
}

.rr-faq-item__answer {
  margin: 0;
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #8a8880;
  max-width: 512px;
}

/* ==================== FAQ PAGE ==================== */

.rr-faq-page {
  padding: var(--spacing-9xl) 0 var(--spacing-10xl);
}

.rr-faq-page__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.rr-faq-page__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(88px + 32px);
}

.rr-faq-page__nav-link {
  text-align: left;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: none;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #8a8880;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.rr-faq-page__nav-link:hover {
  color: #111110;
}

.rr-faq-page__nav-link--active {
  background: rgba(17, 17, 16, 0.05);
  color: #111110;
}

.rr-faq-page__panel {
  display: none;
}

.rr-faq-page__panel--active {
  display: block;
}

.rr-faq-page__panel-mobile-title {
  display: none;
}

.rr-product-tabs__faq-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-default);
  text-decoration: underline;
}

.rr-faq-page__contact-link {
  color: var(--color-text-default);
  text-decoration: underline;
}

/* ==================== CTA BANNER ==================== */

.rr-cta-banner {
  position: relative;
  background: #111110;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rr-cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.rr-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 16, 0.6);
}

.rr-cta-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

.rr-cta-banner__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rr-cta-banner__title {
  margin: 0;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  color: #fbfaf8;
  letter-spacing: -1.2px;
  text-align: center;
  white-space: nowrap;
}

.rr-cta-banner__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(251, 250, 248, 0.85);
  text-align: center;
  max-width: 448px;
}

.rr-cta-banner__form {
  display: flex;
  align-items: stretch;
  width: 494px;
}

.rr-cta-banner__input-wrap {
  flex: 1 0 0;
  min-width: 0;
  border: 1.17px solid rgba(251, 250, 248, 0.4);
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

.rr-cta-banner__input-wrap input {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(251, 250, 248, 0.85);
  text-transform: uppercase;
}

.rr-cta-banner__input-wrap input::placeholder {
  color: rgba(251, 250, 248, 0.5);
  text-transform: uppercase;
}

.rr-cta-banner__submit {
  flex-shrink: 0;
  background: #fff0d3;
  color: var(--color-text-default);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
}

/* ==================== FOOTER ==================== */

.rr-footer {
  position: relative;
  background: linear-gradient(to bottom, var(--color-primary-sky-900), var(--color-primary-sky-950));
  padding: var(--spacing-9xl) 0;
  overflow: hidden;
}

.rr-footer__watermark {
  position: absolute;
  left: 35.35%;
  right: 35.37%;
  top: 8.2%;
  bottom: 19.57%;
}

.rr-footer__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-footer__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rr-footer__brand {
  flex: 1 0 0;
  min-width: 0;
  padding-right: 16px;
}

.rr-footer__logo img {
  height: 96px;
}

.rr-footer__tagline {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-text-oncolor-tertiary);
}

.rr-footer__col {
  flex: 1 0 0;
  min-width: 0;
}

.rr-footer__col-title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-text-default-disabled, #8b8b8b);
  text-transform: uppercase;
}

.rr-footer__list {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-footer__list a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-text-oncolor-secondary);
  text-transform: uppercase;
}

.rr-footer__aside {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.rr-footer__aside-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rr-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.rr-footer__social img {
  width: 24px;
  height: 24px;
}

.rr-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.rr-footer__contact-link img {
  width: 24px;
  height: 24px;
}

.rr-footer__contact-link span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-text-oncolor-secondary);
  text-transform: uppercase;
}

.rr-footer__bottom {
  border-top: 1.17px solid rgba(255, 255, 255, 0.2);
  margin-top: 80px;
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.rr-footer__legal {
  display: flex;
  gap: 24px;
}

.rr-footer__legal span,
.rr-footer__legal a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-text-default-disabled, #8b8b8b);
  text-transform: uppercase;
}

.rr-footer__disclaimer {
  margin: 0;
  max-width: 576px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  text-align: right;
}

/* ==================== HOVER / INTERACTION STATES ==================== */

.rr-nav__link:hover {
  color: var(--color-text-oncolor-primary);
}

.rr-nav__cart:hover {
  background: #ffe6b3;
}

.rr-nav-offcanvas__link:hover {
  opacity: 0.7;
}

.rr-hero__cta:hover {
  background: #ffe6b3;
}

.rr-round-btn:hover {
  border-color: var(--color-text-default);
  background: rgba(0, 0, 0, 0.05);
}

.rr-hero__arrows .rr-round-btn:hover,
.rr-line-slide__arrows .rr-round-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.rr-round-btn:active {
  transform: scale(0.94);
}

.rr-category-card {
  transition: box-shadow 0.3s ease;
}

.rr-category-card:hover img {
  transform: scale(1.04);
}

.rr-category-card__link {
  transition: opacity 0.2s ease;
}

.rr-category-card:hover .rr-category-card__link {
  opacity: 1;
}

.rr-categories__cta a {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rr-categories__cta a:hover {
  background: var(--color-border-primary);
  color: #fff;
}

.rr-best-sellers__header a:hover,
.rr-faq__contact:hover {
  opacity: 0.6;
}

.rr-product-card {
  transition: transform 0.25s ease;
}

.rr-product-card:hover {
  transform: translateY(-4px);
}

.rr-product-card:hover img {
  transform: scale(1.05);
}

.rr-product-card__image img {
  transition: transform 0.4s ease;
}

.rr-line-slide__cta:hover,
.rr-line-slide__tab:not(.rr-line-slide__tab--active):hover {
  opacity: 1;
}

.rr-line-slide__tab {
  transition: opacity 0.2s ease;
}

.rr-why-us__item {
  transition: opacity 0.2s ease;
}

.rr-testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rr-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 17, 16, 0.08);
}

.rr-faq-item__button:hover .rr-faq-item__question {
  color: var(--color-border-primary);
}

.rr-faq-item__question,
.rr-faq-item__icon {
  transition: color 0.2s ease, transform 0.2s ease;
}

.rr-faq-item__icon {
  display: inline-block;
}

.rr-cta-banner__submit:hover {
  background: #ffe6b3;
}

.rr-cta-banner__input-wrap {
  transition: border-color 0.2s ease;
}

.rr-cta-banner__input-wrap:focus-within {
  border-color: #fff0d3;
}

.rr-footer__list a:hover {
  color: #fff;
  text-decoration: underline;
}

.rr-footer__social a,
.rr-footer__contact-link {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rr-footer__social a:hover,
.rr-footer__contact-link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.rr-footer__legal a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==================== NAV OFFCANVAS ==================== */

.rr-nav-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--color-primary-sky-100);
}

.rr-nav-offcanvas .offcanvas-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rr-nav-offcanvas__link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-default);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-primary-sky-100);
}

.rr-nav-offcanvas__link--active {
  color: var(--color-border-primary);
}

.rr-nav-offcanvas__close {
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.rr-nav-offcanvas__close span {
  position: absolute;
  left: 2px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--color-text-default);
}

.rr-nav-offcanvas__close span:first-child {
  transform: rotate(45deg);
}

.rr-nav-offcanvas__close span:last-child {
  transform: rotate(-45deg);
}

/* ==================== SHOP ==================== */

.rr-page-head {
  background: #fbfaf8;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-top: calc(88px + var(--card-lg-padding));
}

.rr-page-head__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) var(--spacing-5xl);
}

.rr-page-head__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-page-head__title {
  margin: 16px 0 0;
  font-size: 60px;
  line-height: 72px;
  font-weight: 400;
  color: #111110;
  letter-spacing: -1.2px;
}

.rr-shop {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--spacing-5xl) var(--spacing-9xl) var(--spacing-9xl);
}

.rr-shop__toolbar {
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-bottom: var(--section-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.rr-shop__filters {
  display: flex;
  align-items: center;
  gap: var(--card-lg-gap);
  flex-wrap: wrap;
}

.rr-shop__filter {
  padding: 0 0 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  border: none;
  border-bottom: 1.17px solid transparent;
  background: none;
  cursor: pointer;
}

.rr-shop__filter--active {
  color: #2e4034;
  border-bottom-color: #2e4034;
}

.rr-shop__sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rr-shop__sort-label {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-shop__sort-dropdown {
  position: relative;
  width: 186px;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.4);
  padding-bottom: 4px;
}

.rr-shop__sort-select {
  width: 100%;
  border: none;
  background: none;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111110;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
  padding-right: 20px;
  outline: none;
}

.rr-shop__filter:focus-visible,
.rr-shop__sort-select:focus-visible {
  outline: 1.17px solid #2e4034;
  outline-offset: 2px;
}

.rr-shop__sort-dropdown::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #111110;
  pointer-events: none;
}

.rr-shop__count {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-shop__grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-lg-gap);
}

.rr-shop__grid .rr-product-card {
  flex: 1 0 calc(25% - var(--card-lg-gap) * 3 / 4);
  max-width: calc(25% - var(--card-lg-gap) * 3 / 4);
}

/* ==================== PRODUCT ==================== */

.rr-product-breadcrumb {
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-top: calc(88px + var(--card-lg-padding));
}

.rr-product-breadcrumb__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rr-product-breadcrumb a,
.rr-product-breadcrumb span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-product-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--spacing-6xl, 48px) var(--spacing-9xl);
  display: flex;
  gap: var(--spacing-8xl);
  align-items: flex-start;
}

.rr-product-gallery {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rr-product-gallery__main {
  background: var(--color-neutral-50);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.rr-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-product-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.rr-product-gallery__thumb {
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
  background: var(--color-neutral-50);
  border: 1.17px solid transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.rr-product-gallery__thumbs {
  /* .ll-product-gallery__thumbs (legacy, kept loaded) sets margin-top: 12px
     unopposed since this rule didn't set it — reset explicitly. */
  margin-top: 0;
}

.rr-product-gallery__thumb--active {
  border-color: #111110;
}

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

.rr-product-info {
  flex: 1 0 0;
  min-width: 0;
  padding-top: 24px;
}

.rr-product-info__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-product-info__title {
  margin: 16px 0 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  color: #111110;
  letter-spacing: -0.96px;
}

.rr-product-info__variant {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #8a8880;
}

.rr-product-info__price {
  margin: 24px 0 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #111110;
}

.rr-product-info__desc {
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.8);
  max-width: 584px;
}

.rr-product-purchase {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rr-product-purchase__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.17px solid rgba(17, 17, 16, 0.15);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.rr-product-purchase__option:hover {
  border-color: rgba(17, 17, 16, 0.35);
}

.rr-product-purchase__option--active {
  border-color: #111110;
  background: rgba(17, 17, 16, 0.03);
}

.rr-product-purchase__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rr-product-purchase__radio {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.17px solid rgba(17, 17, 16, 0.3);
  position: relative;
  transition: border-color 0.15s ease;
}

.rr-product-purchase__radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111110;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}

.rr-product-purchase__option--active .rr-product-purchase__radio {
  border-color: #111110;
}

.rr-product-purchase__option--active .rr-product-purchase__radio::after {
  transform: translate(-50%, -50%) scale(1);
}

.rr-product-purchase__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}

.rr-product-purchase__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-product-purchase__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--color-primary-sky-900);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.rr-product-purchase__hint {
  flex-basis: 100%;
  font-size: 13px;
  line-height: 18px;
  color: #8a8880;
}

.rr-product-purchase__price {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-product-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-product-actions__row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.rr-product-qty {
  /* qty-stepper (kept as cart.js's required JS hook — see product/info.blade.php)
     carries legacy pill styling (border-radius:pill, overflow:hidden) that
     isn't opposed by any property below — reset explicitly. */
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  border: 1.17px solid rgba(17, 17, 16, 0.2);
}

.rr-product-qty button {
  /* legacy .qty-stepper button forces a fixed 32x32px box — override with
     auto sizing so this rule's own padding actually takes effect. */
  width: auto;
  height: auto;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 28px;
  color: #8a8880;
  background: none;
  border: none;
  cursor: pointer;
}

.rr-product-qty__value {
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-product-addtocart {
  flex: 1 0 0;
  min-width: 0;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.rr-product-buynow {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--color-border-neutral-primary);
  background: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-neutral-700);
  cursor: pointer;
}

.rr-product-deflist {
  margin-top: 32px;
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-product-deflist__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-product-deflist__term {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-product-deflist__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-product-info__shipping {
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-product-tabs {
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-product-tabs__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-product-tabs__nav {
  display: flex;
  gap: 40px;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-product-tabs__link {
  padding: 24px 0 22.83px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  border: none;
  border-bottom: 1.17px solid transparent;
  background: none;
  cursor: pointer;
}

.rr-product-tabs__link--active {
  color: #2e4034;
  border-bottom-color: #2e4034;
}

.rr-product-tabs__panel {
  display: none;
  padding: 64px 0;
}

.rr-product-tabs__panel--active {
  display: block;
}

.rr-product-tabs__panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 699.85px) minmax(0, 499.91px);
  gap: 48px;
}

.rr-product-tabs__panel-grid p {
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
}

.rr-product-tabs__panel-grid p:first-child {
  margin: 0;
}

.rr-product-tabs__list {
  border-left: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-product-tabs__list-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(17, 17, 16, 0.8);
}

.rr-product-tabs__list-item span:first-child {
  color: #2e4034;
}

.rr-product-related {
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
  padding: var(--spacing-9xl) 0;
}

.rr-product-related__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-product-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.rr-product-related__header p {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: #111110;
  letter-spacing: -0.72px;
}

.rr-product-related__header a {
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111110;
  text-transform: uppercase;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.4);
}

.rr-product-related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-lg-gap);
  margin-top: 48px;
}

.rr-product-related__grid .rr-product-card {
  flex: 1 0 calc(25% - var(--card-lg-gap) * 3 / 4);
  max-width: calc(25% - var(--card-lg-gap) * 3 / 4);
}

/* ---- Nutrition Facts ---- */

.rr-nutrition-card {
  border: 1.17px solid rgba(17, 17, 16, 0.2);
  background: #fff;
  max-width: 512px;
}

.rr-nutrition-card__title {
  margin: 0;
  padding: 16px 24px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111110;
  border-bottom: 3.51px solid #111110;
}

.rr-nutrition-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-nutrition-card__row--head {
  border-bottom-color: rgba(17, 17, 16, 0.2);
  justify-content: space-between;
}

.rr-nutrition-card__row:not(.rr-nutrition-card__row--head) span:first-child {
  flex: 1 0 0;
}

.rr-nutrition-card__dv {
  margin-left: auto;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-nutrition-card__note {
  margin: 0;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-nutrition-card__other {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  max-width: 512px;
}

/* ---- Reviews ---- */

.rr-reviews-summary {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-reviews-summary__number {
  margin: 0;
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -1.2px;
}

.rr-reviews-summary__count {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-reviews-summary__stars {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  color: #f79009;
}

.rr-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}

.rr-review {
  max-width: 592px;
  padding-bottom: 40px;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rr-review__stars {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #f79009;
}

.rr-review__verified {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-review__title {
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #111110;
}

.rr-review__body {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.8);
}

.rr-review__author {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

/* ==================== ABOUT US ==================== */

.rr-about-head {
  background: #fbfaf8;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-top: calc(88px + var(--spacing-6xl, 48px));
}

.rr-about-head__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) var(--spacing-8xl);
}

.rr-about-head__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-about-head__title {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -0.96px;
}

.rr-about-head__desc {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
  max-width: 576px;
}

.rr-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rr-about-story__image {
  background: #111110;
  height: 600px;
  overflow: hidden;
}

.rr-about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-about-story__content {
  display: flex;
  align-items: center;
  padding: var(--spacing-6xl, 64px) var(--spacing-9xl);
}

.rr-about-story__inner {
  max-width: 528px;
}

.rr-about-story__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-about-story__title {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -0.96px;
}

.rr-about-story__desc {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.8);
  max-width: 448px;
}

.rr-about-story__link {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-default);
  text-decoration: underline;
}

.rr-about-stats {
  background: #111110;
  padding: var(--spacing-9xl) 0;
}

.rr-about-stats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 0;
}

.rr-about-stats__item {
  padding: 0 40px;
}

.rr-about-stats__item:first-child {
  padding-left: 0;
}

.rr-about-stats__item:not(:first-child) {
  border-left: 1.17px solid rgba(251, 250, 248, 0.15);
}

.rr-about-stats__number {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  color: #fbfaf8;
  letter-spacing: -0.72px;
}

.rr-about-stats__label {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-about-rules {
  padding: var(--spacing-10xl) 0;
}

.rr-about-rules__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
}

.rr-about-rules__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-about-rules__title {
  margin: 20px 0 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -0.72px;
  max-width: 672px;
}

.rr-about-rules__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 0;
}

.rr-about-rules__item {
  padding: 0 40px;
}

.rr-about-rules__item:first-child {
  padding-left: 0;
}

.rr-about-rules__item:not(:first-child) {
  border-left: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-about-rules__item-title {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: #111110;
}

.rr-about-rules__item-desc {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(17, 17, 16, 0.7);
}

/* ==================== CONTACT ==================== */

.rr-contact-head {
  background: #fbfaf8;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-top: calc(88px + var(--spacing-6xl, 48px));
}

.rr-contact-head__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) var(--spacing-8xl);
}

.rr-contact-head__eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-contact-head__title {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -0.96px;
}

.rr-contact-head__desc {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
  max-width: 576px;
}

.rr-contact-body {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.rr-contact-form-col {
  flex: 1 0 0;
  min-width: 0;
  padding: var(--spacing-7xl) var(--spacing-9xl);
}

.rr-contact-form {
  max-width: 651px;
}

.rr-contact-form__row {
  display: flex;
  gap: 40px;
}

.rr-contact-field {
  flex: 1 0 0;
  min-width: 0;
  margin-top: 40px;
}

.rr-contact-form__row:first-child .rr-contact-field {
  margin-top: 0;
}

.rr-contact-field label {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-contact-field input,
.rr-contact-field select,
.rr-contact-field textarea {
  width: 100%;
  margin-top: 12px;
  padding: 4px 0 8px;
  border: none;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.3);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111110;
  text-transform: uppercase;
  background: none;
  font-family: inherit;
}

.rr-contact-field select {
  appearance: none;
  cursor: pointer;
  color: #111110;
}

.rr-contact-field textarea {
  resize: none;
  height: 60px;
}

.rr-contact-field input::placeholder,
.rr-contact-field textarea::placeholder {
  color: #8a8880;
}

.rr-contact-submit {
  margin-top: 40px;
  background: #111110;
  color: #fbfaf8;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 13px 40px;
  border: none;
  cursor: pointer;
}

.rr-contact-image {
  flex: 1 0 0;
  min-width: 0;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

.rr-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.rr-contact-image__mountain {
  position: absolute;
  inset: 18.32% 15.75%;
  opacity: 0.15;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .rr-contact-body {
    flex-direction: column;
    align-items: stretch;
  }

  .rr-contact-image {
    order: -1;
    flex: 0 0 auto;
    height: 220px;
  }

  .rr-contact-form-col {
    padding: var(--spacing-5xl) var(--spacing-2xl);
  }
}

/* ==================== CART ==================== */

.rr-cart-body {
  padding: var(--spacing-8xl) 0;
}

.rr-cart-body__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
  display: grid;
  grid-template-columns: minmax(0, 709px) minmax(0, 443px);
  gap: 96px;
  align-items: start;
}

.rr-cart-table__head {
  display: grid;
  grid-template-columns: 526px 74px 1fr;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  padding-bottom: 16px;
}

.rr-cart-table__head span {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-cart-table__head span:last-child {
  text-align: right;
}

.rr-cart-item {
  display: grid;
  grid-template-columns: 96px 1fr 104px 59px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-cart-item__image {
  width: 96px;
  height: 96px;
  background: var(--color-neutral-50);
  overflow: hidden;
}

.rr-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-cart-item__info p {
  margin: 0;
}

.rr-cart-item__name {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #111110;
}

.rr-cart-item__variant {
  margin-top: 8px !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-cart-item__price {
  margin-top: 8px !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-cart-item__qty {
  display: flex;
  align-items: center;
  border: 1.17px solid rgba(17, 17, 16, 0.2);
  justify-self: start;
}

.rr-cart-item__qty button {
  padding: 8px 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #8a8880;
  background: none;
  border: none;
  cursor: pointer;
}

.rr-cart-item__qty span {
  width: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-cart-item__totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.rr-cart-item__totals p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-cart-item__remove {
  margin-top: 13px;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.3);
  cursor: pointer;
}

.rr-cart-continue {
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 6px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111110;
  text-transform: uppercase;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.4);
}

.rr-cart-sidebar {
  border: 1.17px solid rgba(17, 17, 16, 0.15);
  padding: var(--section-padding);
}

.rr-cart-sidebar__title {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  color: #111110;
}

.rr-cart-sidebar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-cart-sidebar__row:first-of-type {
  margin-top: 32px;
}

.rr-cart-sidebar__row span:first-child {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-cart-sidebar__row span:last-child {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-cart-sidebar__row--total span:first-child {
  align-self: center;
}

.rr-cart-sidebar__row--total span:last-child {
  font-size: 18px;
  line-height: 28px;
}

.rr-cart-sidebar__checkout {
  display: block;
  margin-top: 32px;
  width: 100%;
  padding: 16px 40px;
  background: #111110;
  color: #fbfaf8;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
}

.rr-cart-sidebar__note {
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  text-align: center;
}

/* ==================== THANK YOU ==================== */

.rr-thankyou2 {
  background: #fbfaf8;
  padding-top: calc(88px + var(--spacing-10xl));
  padding-bottom: var(--spacing-10xl);
  display: flex;
  justify-content: center;
}

.rr-thankyou2__inner {
  max-width: 1183px;
  width: 100%;
  padding: 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.rr-thankyou2__icon {
  width: 64px;
  height: 64px;
  border-radius: 158.4px;
  background: var(--color-primary-sky-500, #75844c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-thankyou2__icon img {
  width: 38.4px;
  height: 38.4px;
}

.rr-thankyou2__title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: var(--color-primary-sky-950);
  letter-spacing: -0.96px;
}

.rr-thankyou2__desc {
  margin: 0;
  max-width: 528px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__badge {
  margin: 0;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--color-neutral-200, #b9b9b9);
  background: var(--color-neutral-25, #fff);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #202020;
}

.rr-thankyou2__columns {
  display: flex;
  align-items: stretch;
  gap: 20px;
  max-width: 960px;
  width: 100%;
  text-align: left;
}

.rr-thankyou2__card {
  flex: 1 0 0;
  min-width: 0;
  background: var(--color-primary-sky-25, #fafbf9);
  border: 1px solid rgba(17, 17, 16, 0.08);
}

.rr-thankyou2__right {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rr-thankyou2__right .rr-thankyou2__card {
  flex: 0 0 auto;
}

.rr-thankyou2__card-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.08);
}

.rr-thankyou2__card-header p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111110;
}

.rr-thankyou2__product {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(17, 17, 16, 0.08);
}

.rr-thankyou2__product-image {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 5px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e4dc;
}

.rr-thankyou2__product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rr-thankyou2__product-info {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rr-thankyou2__product-name {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111110;
}

.rr-thankyou2__product-plan {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__product-each {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__product-price {
  flex: 0 0 auto;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111110;
}

.rr-thankyou2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__row span:last-child {
  color: #111110;
}

.rr-thankyou2__row--total {
  padding-top: 14px;
  padding-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #111110;
}

.rr-thankyou2__row--total span:last-child {
  color: #111110;
}

.rr-thankyou2__divider {
  margin: 14px 20px 0;
  height: 1px;
  background: rgba(17, 17, 16, 0.08);
}

.rr-thankyou2__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 20px 16px;
  font-size: 13px;
}

.rr-thankyou2__detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rr-thankyou2__detail-row span:first-child {
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__detail-row span:last-child {
  font-weight: 500;
  color: #111110;
}

.rr-thankyou2__address {
  padding: 14px 20px 16px;
  font-size: 13px;
}

.rr-thankyou2__address p {
  margin: 2px 0 0;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__address p:first-child {
  margin-top: 0;
}

.rr-thankyou2__address-name {
  font-weight: 600;
  color: #111110 !important;
}

.rr-thankyou2__actions {
  display: flex;
  gap: 24px;
}

.rr-thankyou2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.rr-thankyou2__cta--outline {
  background: none;
  border: 1px solid var(--color-border-neutral-primary, #a2a2a2);
  color: var(--color-neutral-700, #3a3939);
}

.rr-thankyou2__support {
  margin: 0;
  font-size: 13px;
  color: rgba(17, 17, 16, 0.7);
}

.rr-thankyou2__support a,
.rr-thankyou2__support strong {
  color: #111110;
  font-weight: 500;
}

.rr-thankyou2__support a {
  text-decoration: underline;
}

.rr-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}

.rr-zoom-overlay[hidden] {
  display: none;
}

.rr-zoom-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
  border-radius: 4px;
}

.rr-zoom-overlay__close {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.rr-zoom-overlay__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==================== CHECKOUT ==================== */

.rr-checkout-header {
  background: #f0efeb;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--spacing-9xl);
}

.rr-checkout-header__logo img {
  height: 37px;
}

.rr-checkout-header__back {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-text-default);
  text-transform: uppercase;
}

.rr-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 813.78px) minmax(0, 1fr);
  min-height: calc(100vh - 88px);
}

.rr-checkout-main {
  background: #fbf8f3;
  padding: 80px 96px;
}

.rr-checkout-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.rr-checkout-steps__item {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1.17px solid transparent;
}

.rr-checkout-steps__item--active {
  color: #2e4034;
  border-bottom-color: #2e4034;
}

.rr-checkout-steps__sep {
  color: #8a8880;
  font-size: 12px;
}

.rr-checkout-main h1 {
  margin: 0 0 40px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  color: #111110;
  letter-spacing: -0.72px;
}

.rr-checkout-main__note {
  margin: -24px 0 40px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-checkout-form__row {
  display: flex;
  gap: 24px;
}

.rr-checkout-field {
  flex: 1 0 0;
  min-width: 0;
  margin-top: 24px;
}

.rr-checkout-form > .rr-checkout-field:first-child,
.rr-checkout-form__row:first-child .rr-checkout-field {
  margin-top: 0;
}

.rr-checkout-field label {
  display: block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-checkout-field input,
.rr-checkout-field select {
  width: 100%;
  margin-top: 12px;
  padding: 4px 0 8px;
  border: none;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.3);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #111110;
  background: none;
  font-family: inherit;
  appearance: none;
}

.rr-checkout-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.17px solid rgba(17, 17, 16, 0.15);
  padding: 20px 24px;
  margin-top: 16px;
  cursor: pointer;
}

.rr-checkout-form > .rr-checkout-radio:first-child {
  margin-top: 0;
}

.rr-checkout-radio:has(input:checked) {
  border-color: #2e4034;
  background: rgba(46, 64, 52, 0.05);
}

.rr-checkout-radio__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rr-checkout-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #2e4034;
}

.rr-checkout-radio__name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-checkout-radio__time {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8a8880;
}

.rr-checkout-radio__price {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.rr-checkout-back {
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #111110;
  text-transform: uppercase;
  border-bottom: 1.17px solid rgba(17, 17, 16, 0.4);
}

.rr-checkout-continue {
  padding: 16px 40px;
  background: #111110;
  color: #fbfaf8;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.rr-checkout-sidebar {
  background: #f0efeb;
  border-left: 1.17px solid rgba(17, 17, 16, 0.1);
  padding: 64px 80px;
}

.rr-checkout-sidebar__item {
  display: flex;
  gap: 16px;
}

.rr-checkout-sidebar__item-image {
  width: 72px;
  height: 72px;
  background: var(--color-neutral-50);
  overflow: hidden;
  flex-shrink: 0;
}

.rr-checkout-sidebar__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-checkout-sidebar__item-info p {
  margin: 0;
}

.rr-checkout-sidebar__item-name {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #111110;
}

.rr-checkout-sidebar__item-variant {
  margin-top: 4px !important;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-checkout-sidebar__item-price {
  margin-top: 8px !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #111110;
}

.rr-checkout-sidebar__totals {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
}

.rr-checkout-sidebar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.rr-checkout-sidebar__row span:first-child {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8a8880;
  text-transform: uppercase;
}

.rr-checkout-sidebar__row span:last-child {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #111110;
}

.rr-checkout-sidebar__row--total {
  border-top: 1.17px solid rgba(17, 17, 16, 0.1);
  margin-top: 8px;
  padding-top: 20px;
}

.rr-checkout-sidebar__row--total span:last-child {
  font-size: 18px;
  line-height: 28px;
}

/* ==================== RESPONSIVE ==================== */

/* ---- xl (max 1399.98px) ---- */
@media (max-width: 1399.98px) {
  .rr-hero__title {
    font-size: 48px;
    line-height: 58px;
    white-space: normal;
  }

  .rr-why-us__item-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ---- lg (max 1199.98px) ---- */
@media (max-width: 1199.98px) {
  :root {
    --spacing-9xl: 64px;
  }

  .rr-hero__side {
    display: none;
  }

  .rr-footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .rr-footer__disclaimer {
    text-align: left;
  }

  .rr-testimonials__gallery {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 var(--spacing-9xl);
  }

  .rr-testimonials__gallery-group {
    position: static;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .rr-testimonials__gallery-group--right {
    display: none;
  }

  .rr-testimonials__gallery-group--left {
    display: flex;
  }

  .rr-testimonials__gallery-group--left .rr-testimonials__gallery-single {
    display: none;
  }

  .rr-testimonials__gallery-fade {
    display: none;
  }
}

/* ---- md (max 991.98px) ---- */
@media (max-width: 991.98px) {
  .rr-product-main {
    flex-direction: column;
  }

  .rr-product-tabs__panel-grid {
    grid-template-columns: 1fr;
  }

  .rr-cart-body__inner {
    grid-template-columns: 1fr;
  }

  .rr-cart-table__head {
    display: none;
  }

  .rr-cart-item {
    grid-template-columns: 96px 1fr;
    grid-template-areas:
      "image info"
      "image qty"
      "image totals";
    row-gap: 8px;
  }

  .rr-cart-item__image {
    grid-area: image;
  }

  .rr-cart-item__info {
    grid-area: info;
  }

  .rr-cart-item__qty {
    grid-area: qty;
  }

  .rr-cart-item__totals {
    grid-area: totals;
    align-items: flex-start;
  }

  .rr-checkout-layout {
    grid-template-columns: 1fr;
  }

  .rr-checkout-main {
    padding: 48px var(--spacing-2xl, 20px);
  }

  .rr-checkout-sidebar {
    border-left: none;
    border-top: 1.17px solid rgba(17, 17, 16, 0.1);
    padding: 32px var(--spacing-2xl, 20px);
  }

  .rr-thankyou2__inner {
    padding: 0 var(--spacing-2xl, 20px);
  }

  .rr-thankyou2__columns {
    flex-direction: column;
  }

  .rr-thankyou2__actions {
    flex-direction: column;
    width: 100%;
  }

  .rr-thankyou2__cta {
    width: 100%;
  }

  .rr-faq-page__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rr-faq-page__nav {
    display: none;
  }

  .rr-faq-page__panels {
    display: flex;
    flex-direction: column;
  }

  .rr-faq-page__panel {
    display: block;
    border-bottom: 1.17px solid rgba(17, 17, 16, 0.1);
  }

  .rr-faq-page__panel:first-child {
    border-top: 1.17px solid rgba(17, 17, 16, 0.1);
  }

  .rr-faq-page__panel-mobile-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #111110;
  }

  .rr-faq-page__panel-mobile-icon {
    font-size: 20px;
    line-height: 30px;
    color: #8a8880;
  }

  .rr-faq-page__panel-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .rr-faq-page__panel--open .rr-faq-page__panel-body {
    max-height: none;
    padding-bottom: 16px;
  }

  .rr-nav__toggle {
    display: flex;
  }

  .rr-nav__links--start {
    display: none;
  }

  .rr-nav__links--end .rr-nav__link {
    display: none;
  }

  .rr-nav__logo {
    left: auto;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .rr-hero__title {
    font-size: 40px;
    line-height: 48px;
  }

  .rr-hero__subtitle {
    max-width: 100%;
  }

  .rr-categories__grid {
    flex-wrap: wrap;
  }

  .rr-category-card {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .rr-best-sellers__grid {
    flex-wrap: wrap;
    row-gap: var(--card-lg-gap);
  }

  .rr-product-card,
  .rr-shop__grid .rr-product-card,
  .rr-product-related__grid .rr-product-card {
    flex: 1 0 calc(50% - var(--card-lg-gap) / 2);
    max-width: calc(50% - var(--card-lg-gap) / 2);
  }

  .rr-why-us__grid {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .rr-why-us__item {
    flex: 1 0 50%;
    max-width: 50%;
  }

  .rr-why-us__item:nth-child(2) {
    border-left: 1.17px solid rgba(255, 240, 211, 0.15);
  }

  .rr-why-us__item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }

  .rr-why-us__item:nth-child(3),
  .rr-why-us__item:nth-child(4) {
    padding-top: 40px;
  }

  .rr-faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rr-cta-banner__title {
    font-size: 44px;
    line-height: 52px;
  }

  .rr-footer__top {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .rr-footer__brand {
    flex: 1 0 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .rr-footer__col {
    flex: 1 0 33%;
  }

  .rr-footer__aside {
    flex: 1 0 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ---- sm (max 767.98px) ---- */
@media (max-width: 767.98px) {
  :root {
    --spacing-9xl: 24px;
    --spacing-8xl: 48px;
  }

  .rr-about-story {
    grid-template-columns: 1fr;
  }

  .rr-about-story__image {
    height: auto;
  }

  .rr-about-story__image img {
    height: auto;
    object-fit: contain;
  }

  .rr-about-rules__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .rr-about-rules__item {
    padding: 0 20px;
    border-left: none !important;
  }

  .rr-about-rules__item:nth-child(2n+1) {
    padding-left: 0;
  }

  .rr-about-rules__item:nth-child(2n) {
    border-left: 1.17px solid rgba(17, 17, 16, 0.1) !important;
  }

  .rr-about-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .rr-about-stats__item {
    padding: 0 20px;
    border-left: none !important;
  }

  .rr-about-stats__item:nth-child(2n+1) {
    padding-left: 0;
  }

  .rr-about-stats__item:nth-child(2n) {
    border-left: 1.17px solid rgba(251, 250, 248, 0.15) !important;
  }

  .rr-nav {
    padding: 16px var(--spacing-9xl);
  }

  .rr-nav__logo img {
    height: 48px;
  }

  .rr-hero__container {
    min-height: 640px;
    padding-bottom: 48px;
  }

  .rr-hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .rr-hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .rr-trust-strip__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    height: auto;
    padding: 16px var(--spacing-9xl);
  }

  .rr-trust-strip__container p {
    text-align: center;
  }

  .rr-categories__heading p,
  .rr-best-sellers__header p,
  .rr-testimonials__title,
  .rr-faq__title {
    font-size: 28px;
    line-height: 36px;
  }

  .rr-category-card {
    height: 420px;
  }

  .rr-category-card__content {
    padding: 24px;
  }

  .rr-best-sellers__grid {
    gap: 16px;
  }

  .rr-product-card {
    flex: 1 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .rr-product-related__grid .rr-product-card {
    flex: 1 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .rr-line-slide {
    height: 640px;
  }

  .rr-line-slide__title {
    font-size: 28px;
    line-height: 36px;
    white-space: normal;
  }

  .rr-line-slide__desc {
    max-width: 100%;
  }

  .rr-line-slide__footer {
    padding: 24px var(--spacing-9xl) 24px;
  }

  .rr-why-us__item {
    flex: 1 0 100%;
    max-width: 100%;
    border-left: none !important;
    padding-left: 0 !important;
    padding-top: 24px !important;
  }

  .rr-why-us__item:first-child {
    padding-top: 0 !important;
  }

  .rr-testimonials__header {
    text-align: left;
  }

  .rr-testimonial-card__quote {
    font-size: 18px;
    line-height: 27px;
  }

  .rr-testimonials__footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .rr-cta-banner {
    height: auto;
    padding: 64px 0;
  }

  .rr-cta-banner__title {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

  .rr-cta-banner__form {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .rr-cta-banner__input-wrap {
    width: 100%;
  }

  .rr-footer__col {
    flex: 1 0 50%;
  }

  .rr-footer__aside {
    flex-direction: column;
    gap: 32px;
  }

  .rr-footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .rr-footer__disclaimer {
    text-align: left;
  }
}

/* ---- xs (max 575.98px) ---- */
@media (max-width: 575.98px) {
  .rr-about-rules__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rr-about-rules__item,
  .rr-about-rules__item:nth-child(2n+1) {
    padding: 0;
    border-left: none !important;
  }

  .rr-about-rules__item:nth-child(2n) {
    border-left: none !important;
  }

  .rr-about-stats__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rr-about-stats__item,
  .rr-about-stats__item:nth-child(2n+1) {
    padding: 0;
    border-left: none !important;
  }

  .rr-about-stats__item:nth-child(2n) {
    border-left: none !important;
  }

  .rr-product-tabs__nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .rr-announcement-bar__text {
    white-space: normal;
    text-align: center;
    padding: 0 8px;
  }

  .rr-hero__eyebrow,
  .rr-hero__cta {
    white-space: normal;
  }

  .rr-hero__cta {
    text-align: center;
    width: 100%;
  }

  .rr-categories__grid {
    width: 100%;
    padding: 0;
  }

  .rr-category-card {
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .rr-best-sellers__header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rr-product-card,
  .rr-shop__grid .rr-product-card,
  .rr-product-related__grid .rr-product-card {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .rr-line-slide__tabs {
    gap: 12px;
  }

  .rr-line-slide__tab {
    font-size: 14px;
  }

  .rr-testimonials__gallery {
    display: none;
  }

  .rr-faq-item__question {
    font-size: 15px;
  }

  .rr-footer__col {
    flex: 1 0 100%;
  }

  .rr-footer__legal {
    flex-wrap: wrap;
  }
}


/* newsletter.js's shared .newsletterSubmitBtn hook carries legacy round-icon
   CSS from cdn/css/style.css (border-radius:50%, padding:4px!important,
   position:absolute, transform:translateY(-50%), its own background/color)
   meant for a different field layout — reset every property that rule sets
   back to the template's own rectangular Subscribe button, instead of
   touching the shared legacy stylesheet or the JS hook itself. */
.rr-cta-banner__submit.newsletterSubmitBtn {
  position: static;
  top: auto;
  right: auto;
  transform: none;
  border-radius: 0;
  padding: 10px 16px !important;
  width: auto;
  height: auto;
  display: inline-flex;
  background-color: #fff0d3;
  color: var(--color-text-default);
}

.rr-cta-banner__submit.newsletterSubmitBtn:hover {
  background-color: #ffe6b3;
}

.rr-cta-banner__input-wrap input {
  outline: none;
}

/* ==================== NEW SECTIONS NOT IN THE SOURCE TEMPLATE ====================
   The template shipped no shop pagination/empty-state, no contact info
   cards, and no legal/terms page — these were added to wire in real
   functionality/content the app needs. Styled to match the template's own
   tokens (spacing/color vars, 1.17px hairline borders, uppercase 12px
   meta text) rather than left unstyled. */

.rr-shop__empty {
  margin-top: 24px;
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  color: #8a8880;
}

.rr-shop__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-5xl);
}

.rr-faq-page__empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px var(--spacing-9xl);
  text-align: center;
  font-size: 14px;
  color: #8a8880;
}

.rr-legal-page {
  padding: var(--spacing-9xl) 0 var(--spacing-10xl);
}

.rr-legal-page__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl);
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text-default);
}

.rr-legal-page__body h2 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 600;
}

.rr-legal-page__body p {
  margin: 12px 0;
}

.rr-contact-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-9xl) var(--spacing-9xl);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rr-contact-card {
  flex: 1 1 200px;
  border: 1.17px solid rgba(17, 17, 16, 0.15);
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.rr-contact-card__title {
  font-size: 12px;
  text-transform: uppercase;
  color: #8a8880;
  margin: 0 0 4px;
}

.rr-contact-card__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-default);
  margin: 0;
}

/* Remove the default browser focus ring on every form control site-wide. */
input,
select,
textarea {
  outline: none;
}

/* iOS Safari auto-zooms the page on focus of any text field smaller than
   16px — override every form control's font-size on phone widths so
   focusing a field (contact, checkout, newsletter, etc.) doesn't zoom in.
   Selectors match (and so override) the smaller sizes set above. */
@media (max-width: 767.98px) {
  input,
  select,
  textarea,
  .rr-contact-field input,
  .rr-contact-field select,
  .rr-contact-field textarea,
  .rr-checkout-field input,
  .rr-checkout-field select,
  .rr-cta-banner__input-wrap input {
    font-size: 16px;
  }
}
