@font-face {
  font-family: "Butler";
  src: url("../fonts/butler.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --rg-espresso: #1e1915;
  --rg-espresso-2: #2a2420;
  --rg-espresso-3: #2e2822;
  --rg-border-dark: #3a2e20;
  --rg-border-lounge: #38312b;
  --rg-cream: #faf6f0;
  --rg-sand: #f0e9de;
  --rg-sand-2: #ece4d8;
  --rg-border: #e4dbcf;
  --rg-mint: #7fc1aa;
  --rg-green: #33806b;
  --rg-text: #1e1915;
  --rg-muted: #c9c0b5;
  --rg-taupe: #8a8075;
  --rg-price: #574f47;
  --rg-gold: #c9a85e;
  --rg-footer-muted: #948b80;
  --rg-max: 1248px;
  --rg-pad: 96px;
  --font-display: "Butler", "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rg-text);
  background: var(--rg-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Typography */
.rg-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  color: var(--rg-cream);
}

.rg-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
  color: var(--rg-text);
  text-align: center;
}

.rg-h2--light {
  color: var(--rg-cream);
  text-align: left;
  text-transform: none;
}

.rg-h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.16;
  margin: 0;
  color: var(--rg-text);
}

.rg-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rg-taupe);
  margin: 0;
}

.rg-eyebrow--mint {
  color: var(--rg-mint);
}

.rg-eyebrow--green {
  color: var(--rg-green);
}

/* Buttons */
.rg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.rg-btn--solid {
  background: var(--rg-green);
  color: var(--rg-cream);
  padding: 21px 56px;
}

.rg-btn--solid:hover {
  background: #2a6b59;
}

.rg-btn--serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.24;
  text-transform: uppercase;
}

.rg-btn--dark {
  background: var(--rg-espresso);
  color: var(--rg-cream);
  padding: 13px 26px;
}

.rg-btn--dark:hover {
  background: #2c241c;
}

.rg-btn--block {
  width: 100%;
  padding: 12px 16px;
}

.rg-btn--outline {
  background: transparent;
  color: var(--rg-mint);
  border: 1px solid var(--rg-mint);
  padding: 11px 24px;
}

.rg-btn--outline:hover {
  background: rgba(127, 193, 170, 0.12);
}

.rg-btn--outline-sm {
  background: transparent;
  color: var(--rg-green);
  border: 1px solid var(--rg-green);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1px;
}

.rg-btn--ghost {
  background: transparent;
  color: var(--rg-cream);
  border: 1px solid rgba(228, 219, 207, 0.5);
  padding: 16px 28px;
}

/* Layout */
.rg-container {
  width: 100%;
  max-width: calc(var(--rg-max) + var(--rg-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--rg-pad);
}

.rg-section {
  padding: 78px 0;
}

.rg-section--cream {
  background: var(--rg-cream);
}

.rg-section--sand {
  background: var(--rg-sand);
}

.rg-section--dark {
  background: var(--rg-espresso);
}

.rg-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  text-align: center;
}

.rg-section__lead {
  margin: 0;
  color: var(--rg-taupe);
  font-size: 15px;
}

.rg-page {
  padding: 80px 0 100px;
}

.rg-content {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--rg-taupe);
}

/* Header */
.rg-header {
  background: var(--rg-espresso);
  border-bottom: 1px solid var(--rg-border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 56px 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.rg-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.rg-logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rg-cream);
  line-height: 1.1;
}

.rg-footer .rg-logo__name {
  font-size: 24px;
}

.rg-logo__tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rg-mint);
}

.rg-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rg-nav__list a {
  font-weight: 500;
  font-size: 15px;
  color: var(--rg-muted);
  transition: color 0.2s;
}

.rg-nav__list .current-menu-item > a,
.rg-nav__list a:hover {
  color: var(--rg-mint);
  font-weight: 600;
}

.rg-utility {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.rg-utility__link,
.rg-cart-link {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--rg-muted);
  text-transform: none;
}

.rg-cart-link {
  font-weight: 600;
  color: var(--rg-mint);
}

.rg-nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 28px;
  height: 22px;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.rg-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--rg-cream);
  width: 100%;
}

/* Hero */
.rg-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--rg-cream);
}

.rg-hero__bg {
  position: absolute;
  inset: 0;
}

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

.rg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145.5deg, rgba(32, 24, 15, 0.3) 10%, rgba(23, 18, 13, 0.3) 47%, rgba(14, 11, 8, 0.3) 77%);
}

.rg-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px var(--rg-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.rg-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 647px;
}

.rg-hero__cta {
  padding-top: 12px;
}

.rg-promo-slide {
  position: relative;
  display: flex;
  width: 631px;
  max-width: 100%;
  height: 176px;
  background: rgba(42, 36, 32, 0.45);
  backdrop-filter: blur(4px);
  border: 0.63px solid rgba(228, 219, 207, 0.4);
  flex-shrink: 0;
}

.rg-promo-slide__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px 16px 56px;
}

.rg-promo-slide__pill {
  display: inline-flex;
  align-items: center;
  background: var(--rg-green);
  color: var(--rg-cream);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 4px 9px;
  width: fit-content;
}

.rg-promo-slide__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.16;
  margin: 0;
  color: var(--rg-cream);
}

.rg-promo-slide__sub {
  margin: 0;
  font-size: 10px;
  color: var(--rg-muted);
}

.rg-promo-slide__img {
  width: 302px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.rg-promo-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-promo-slide__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(109deg, rgba(90, 67, 38, 0.21) 0%, rgba(18, 13, 8, 0.27) 83%);
}

.rg-promo-slide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0.8px solid var(--rg-mint);
  background: rgba(30, 25, 21, 0.55);
  color: var(--rg-cream);
  font-family: var(--font-display);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rg-promo-slide__arrow--l {
  left: 12px;
}

.rg-promo-slide__arrow--r {
  right: 12px;
}

/* Claim band */
.rg-claim {
  background: var(--rg-espresso-2);
  padding: 17px var(--rg-pad);
  text-align: center;
}

.rg-claim p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rg-muted);
  font-weight: 500;
}

/* Categories */
.rg-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rg-cat {
  background: var(--rg-cream);
  border: 1px solid var(--rg-border);
  display: flex;
  flex-direction: column;
}

.rg-cat__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.rg-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-cat__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(90, 67, 38, 0.7) 0%, rgba(18, 13, 8, 0.7) 77%);
}

.rg-cat__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 28px;
  text-align: center;
  flex: 1;
  min-height: 241px;
}

.rg-cat__body p {
  margin: 0;
  color: var(--rg-taupe);
  font-size: 16px;
}

/* Products */
.rg-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rg-product {
  background: var(--rg-cream);
  border: 1px solid var(--rg-border);
  display: flex;
  flex-direction: column;
}

.rg-product__media {
  display: block;
  position: relative;
  height: 274px;
  background: var(--rg-sand-2);
  overflow: hidden;
}

.rg-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-product__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #a79e92;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rg-product__sale {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rg-green);
  color: var(--rg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.rg-product__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 20px 24px 24px;
  text-align: center;
}

.rg-product__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.24;
  margin: 0;
}

.rg-product__title a:hover {
  color: var(--rg-green);
}

.rg-product__price {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--rg-price);
}

.rg-product__price del {
  color: var(--rg-taupe);
  font-weight: 400;
  margin-right: 8px;
}

.rg-product__price ins {
  text-decoration: none;
  color: var(--rg-green);
  font-weight: 600;
}

/* Brands */
.rg-brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rg-brand {
  border: 1px solid var(--rg-border);
  background: var(--rg-cream);
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 20px;
  transition: border-color 0.2s;
}

.rg-brand:hover {
  border-color: var(--rg-green);
}

.rg-brand img {
  max-height: 79px;
  max-width: 154px;
  width: auto;
  object-fit: contain;
}

.rg-brand span {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rg-green);
}

/* Lounge */
.rg-lounge {
  display: flex;
  background: var(--rg-espresso-2);
  border: 1px solid var(--rg-border-lounge);
  overflow: hidden;
}

.rg-lounge__content {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.rg-lounge__text {
  margin: 0;
  color: var(--rg-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 555px;
}

.rg-lounge__meta {
  display: flex;
  gap: 30px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.rg-lounge__label {
  display: block;
  color: var(--rg-mint);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.rg-lounge__meta p {
  margin: 0;
  color: var(--rg-muted);
  font-weight: 500;
}

.rg-lounge__meta a {
  color: var(--rg-muted);
}

.rg-lounge__map {
  width: 560px;
  flex-shrink: 0;
}

.rg-lounge__map img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

/* Articles */
.rg-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rg-article {
  background: var(--rg-cream);
  border: 1px solid var(--rg-border);
  display: flex;
  flex-direction: column;
}

.rg-article__img {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.rg-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-article__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(90, 67, 38, 0.35) 0%, rgba(18, 13, 8, 0.35) 77%);
}

.rg-article__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 28px 28px;
}

.rg-article__cat {
  margin: 0;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rg-green);
}

.rg-article__body p:not(.rg-article__cat) {
  margin: 0;
  color: var(--rg-taupe);
  font-size: 14px;
}

/* Trust + Newsletter */
.rg-trust {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: var(--rg-espresso-2);
}

.rg-trust__bg {
  position: absolute;
  inset: 0;
}

.rg-trust__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.rg-trust .rg-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.rg-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rg-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.rg-trust__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.4px solid var(--rg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rg-mint);
  font-weight: 600;
  font-size: 15px;
}

.rg-trust__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: #efe7d8;
}

.rg-trust__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--rg-muted);
  max-width: 200px;
}

.rg-newsletter {
  background: rgba(42, 36, 32, 0.45);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(228, 219, 207, 0.4);
  padding: 56px 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.rg-newsletter .rg-h2 {
  text-transform: uppercase;
}

.rg-newsletter__lead {
  margin: 0;
  color: var(--rg-muted);
  font-size: 15px;
  max-width: 560px;
}

.rg-newsletter__form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding-top: 16px;
}

.rg-newsletter__form input[type="email"] {
  flex: 1;
  background: rgba(241, 234, 223, 0.3);
  border: 1px solid rgba(228, 219, 207, 0.6);
  color: var(--rg-cream);
  padding: 17px 20px;
  outline: none;
}

.rg-newsletter__form input::placeholder {
  color: var(--rg-muted);
}

.rg-newsletter__form .rg-btn {
  padding: 17px 34px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
}

.rg-newsletter__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 560px;
  text-align: left;
  padding-top: 12px;
  color: var(--rg-muted);
  font-size: 12px;
  line-height: 1.5;
}

.rg-newsletter__consent input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--rg-green);
}

.rg-newsletter__consent a {
  color: var(--rg-gold);
  text-decoration: underline;
}

/* Footer */
.rg-footer {
  background: var(--rg-espresso);
  padding: 76px var(--rg-pad) 30px;
  color: var(--rg-muted);
}

.rg-footer__inner {
  max-width: var(--rg-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.rg-footer__top {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.rg-footer__brand {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rg-footer__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  max-width: 340px;
}

.rg-footer__pay {
  margin: 0;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rg-footer__cols {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.rg-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rg-footer__col h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.24;
  color: var(--rg-mint);
  text-transform: uppercase;
}

.rg-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rg-footer__links a {
  font-size: 14px;
  color: var(--rg-muted);
  transition: color 0.2s;
}

.rg-footer__links a:hover {
  color: var(--rg-cream);
}

.rg-footer__divider {
  height: 1px;
  background: var(--rg-espresso-3);
  width: 100%;
}

.rg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rg-footer__bottom p {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rg-footer-muted);
}

/* Age gate */
.rg-agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 11, 8, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rg-agegate.is-hidden {
  display: none;
}

.rg-agegate__card {
  background: var(--rg-espresso);
  border: 1px solid var(--rg-border-dark);
  padding: 48px 56px;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rg-agegate__card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--rg-cream);
}

.rg-agegate__text {
  margin: 0;
  color: var(--rg-muted);
}

.rg-agegate__actions {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* WooCommerce overrides */
.rg-shop-main {
  padding: 48px 0 80px;
  background: var(--rg-cream);
}

.woocommerce .woocommerce-breadcrumb {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rg-taupe);
  margin-bottom: 28px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--rg-cream);
  border: 1px solid var(--rg-border);
  padding: 0 0 24px;
  text-align: center;
}

.woocommerce ul.products li.product a img {
  margin: 0;
  width: 100%;
  height: 274px;
  object-fit: cover;
  background: var(--rg-sand-2);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  padding: 20px 16px 8px;
  color: var(--rg-text);
}

.woocommerce ul.products li.product .price {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--rg-price);
  margin-bottom: 12px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--rg-espresso) !important;
  color: var(--rg-cream) !important;
  border-radius: 0 !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 26px !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--rg-green) !important;
}

.woocommerce span.onsale {
  background: var(--rg-green) !important;
  border-radius: 50%;
  min-width: 56px;
  min-height: 56px;
  line-height: 56px;
  font-weight: 600;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--rg-green);
}

.woocommerce-checkout .col2-set,
.woocommerce-cart-form,
.cart-collaterals {
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --rg-pad: 40px;
  }

  .rg-header__inner {
    padding: 18px 24px;
    flex-wrap: wrap;
  }

  .rg-nav-toggle {
    display: flex;
  }

  .rg-nav,
  .rg-utility {
    display: none;
  }

  body.rg-nav-open .rg-nav,
  body.rg-nav-open .rg-utility {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  body.rg-nav-open .rg-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .rg-display {
    font-size: 40px;
  }

  .rg-h2 {
    font-size: 34px;
  }

  .rg-hero__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .rg-promo-slide {
    width: 100%;
  }

  .rg-cats,
  .rg-products,
  .rg-brands,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-articles,
  .rg-trust__grid {
    grid-template-columns: 1fr;
  }

  .rg-lounge {
    flex-direction: column;
  }

  .rg-lounge__map {
    width: 100%;
  }

  .rg-footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .rg-footer__brand {
    width: 100%;
  }

  .rg-footer__cols {
    flex-wrap: wrap;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rg-cats,
  .rg-products,
  .rg-brands,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .rg-promo-slide {
    flex-direction: column;
    height: auto;
  }

  .rg-promo-slide__img {
    width: 100%;
    height: 160px;
  }

  .rg-newsletter__form {
    flex-direction: column;
  }

  .rg-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .rg-claim p {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
