:root {
  --black: #080808;
  --dark: #111111;
  --red: #e10600;
  --white: #ffffff;
  --offwhite: #f5f5f5;
  --grey: #777777;
  --border: #e5e5e5;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.top-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.45rem;
  letter-spacing: 0.02em;
}

.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.logo span {
  color: var(--red);
}

.main-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.95rem;
}

.main-nav a,
.basket-link {
  color: var(--white);
  opacity: 0.86;
}

.main-nav a:hover,
.basket-link:hover {
  opacity: 1;
  color: var(--red);
}

.hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.55)),
    url('/assets/img/hero-racing-getup.webp') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--red);
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  max-width: 780px;
  margin: 0 0 1.4rem;
}

.hero p {
  max-width: 620px;
  font-size: 1.18rem;
  color: #e9e9e9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-dark {
  max-width: none;
  background: var(--black);
  color: var(--white);
}

.section-dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.brand-story h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-heading p {
  max-width: 760px;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card,
.product-card {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.category-card div,
.product-info {
  padding: 1.1rem;
}

.category-card h3,
.product-card h3 {
  margin: 0 0 0.45rem;
  line-height: 1.15;
}

.category-card p,
.product-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0;
}

.product-category {
  color: var(--red) !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem !important;
}

.product-price {
  margin-top: 0.8rem;
  font-weight: 900;
  font-size: 1.05rem;
}

.price-sale {
  color: var(--red);
}

.price-was {
  color: var(--grey);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.brand-story {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.brand-story p:last-child {
  font-size: 1.14rem;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 5rem 1.25rem;
}

.page-hero > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 760px;
  color: #e7e7e7;
}

.product-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
}

.main-product-image {
  border-radius: 26px;
  border: 1px solid var(--border);
}

.thumbnail-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumbnail-row img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.product-detail h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.product-price.large {
  font-size: 1.4rem;
}

.product-summary {
  font-size: 1.08rem;
  color: #333;
}

.product-detail form {
  margin: 2rem 0;
  display: grid;
  gap: 0.8rem;
}

.product-detail label {
  font-weight: 800;
}

.product-detail select,
.product-detail input {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.product-benefits p {
  background: var(--offwhite);
  padding: 0.8rem;
  border-radius: 12px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-description {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
}

.basket-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.basket-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
}

.basket-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.basket-item img {
  border-radius: 14px;
}

.basket-summary {
  background: var(--offwhite);
  padding: 1.5rem;
  border-radius: 22px;
  align-self: start;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.empty-basket {
  background: var(--offwhite);
  padding: 3rem;
  border-radius: 26px;
  text-align: center;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
}

.footer-grid a {
  display: block;
  color: #d8d8d8;
  margin-bottom: 0.5rem;
}

.footer-grid p {
  color: #d8d8d8;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
}

.signup-form input {
  flex: 1;
  padding: 0.85rem;
  border: 0;
  border-radius: 999px;
}

.signup-form button {
  border: 0;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.footer-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #b8b8b8;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-story,
  .product-page,
  .basket-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .basket-item {
    grid-template-columns: 90px 1fr;
  }
}


/* =========================================================
   RACING GETUP HOMEPAGE
   ========================================================= */

.rg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: #e10600;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rg-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #e10600;
  display: inline-block;
}

.rg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.rg-btn:hover {
  transform: translateY(-2px);
}

.rg-btn--primary {
  background: #e10600;
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 6, 0, 0.24);
}

.rg-btn--primary:hover {
  background: #b90500;
}

.rg-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}

.rg-btn--ghost:hover {
  background: #fff;
  color: #080808;
}

.rg-hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.36) 100%),
    url('/assets/img/hero-racing-getup.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.rg-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, #080808, transparent);
  pointer-events: none;
}

.rg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  min-height: 720px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: center;
}

.rg-hero__content {
  max-width: 780px;
}

.rg-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.095em;
  text-transform: uppercase;
}

.rg-hero__lead {
  max-width: 650px;
  margin: 1.55rem 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.rg-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.rg-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.rg-hero__badges span {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.86rem;
  backdrop-filter: blur(12px);
}

.rg-hero__panel {
  align-self: end;
  margin-bottom: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.rg-hero__panel p {
  margin: 0 0 0.55rem;
  color: #e10600;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.rg-hero__panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.rg-hero__panel span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
}

.rg-hero__panel a {
  display: inline-flex;
  margin-top: 1rem;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid #e10600;
}

.rg-trust-strip {
  background: #080808;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rg-trust-strip div {
  padding: 1.3rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.rg-trust-strip strong,
.rg-trust-strip span {
  display: block;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.rg-trust-strip strong {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.rg-trust-strip span {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.rg-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.rg-section--compact {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.rg-section__head {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

.rg-section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.rg-section__head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.rg-section__head p {
  color: #555;
  font-size: 1.05rem;
}

.rg-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.rg-category-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.11);
}

.rg-category-card__image {
  position: absolute;
  inset: 0;
}

.rg-category-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), rgba(0,0,0,0.12));
}

.rg-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.rg-category-card:hover .rg-category-card__image img {
  transform: scale(1.06);
}

.rg-category-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 410px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rg-category-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.75rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.rg-category-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
}

.rg-category-card span {
  display: inline-flex;
  margin-top: 1rem;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid #e10600;
  width: max-content;
}

.rg-product-band {
  background:
    radial-gradient(circle at top left, rgba(225,6,0,0.22), transparent 34%),
    #080808;
  color: #fff;
}

.rg-product-band .rg-section__head p {
  color: rgba(255,255,255,0.72);
}

.rg-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.rg-product-card {
  background: #fff;
  color: #080808;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rg-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.32);
}

.rg-product-card__image {
  position: relative;
  background: #f4f4f4;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
}

.rg-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.rg-product-card:hover .rg-product-card__image img {
  transform: scale(1.045);
}

.rg-product-badge {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  left: 0.85rem;
  background: #e10600;
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rg-product-card__content {
  padding: 1.1rem;
}

.rg-product-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.12;
}

.rg-product-card p {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
}

.rg-product-price {
  margin-top: 0.85rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.rg-centre-action {
  margin-top: 2rem;
  text-align: center;
}

.rg-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  background: #f4f4f4;
}

.rg-editorial__image {
  min-height: 620px;
}

.rg-editorial__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.rg-editorial__content {
  padding: 4rem clamp(1.25rem, 5vw, 5rem);
  max-width: 680px;
}

.rg-editorial h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.rg-editorial p {
  color: #444;
  font-size: 1.08rem;
}

.rg-text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 900;
  color: #080808;
  border-bottom: 2px solid #e10600;
}

.rg-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.rg-collection-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 30px;
  color: #fff;
  background: #111;
}

.rg-collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rg-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), rgba(0,0,0,0.08));
}

.rg-collection-card div {
  position: relative;
  z-index: 2;
  min-height: 430px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rg-collection-card p {
  margin: 0 0 0.4rem;
  color: #e10600;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.rg-collection-card h3 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.rg-collection-card span {
  margin-top: 1rem;
  width: max-content;
  font-weight: 900;
  border-bottom: 2px solid #e10600;
}

.rg-gift-section {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.62)),
    url('/assets/img/racing-gifts.webp') center/cover no-repeat;
  color: #fff;
  padding: 6rem 1.25rem;
}

.rg-gift-section__content {
  max-width: 1180px;
  margin: 0 auto;
}

.rg-gift-section h2 {
  max-width: 820px;
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.rg-gift-section p {
  max-width: 680px;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
}

.rg-gift-list {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.6rem 0 2rem;
}

.rg-gift-list span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}

.rg-journal-preview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.rg-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.rg-journal-grid article {
  background: #f4f4f4;
  padding: 1.35rem;
  border-radius: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rg-journal-grid p {
  color: #e10600;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.65rem;
}

.rg-journal-grid h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.rg-journal-grid span {
  margin-top: 1rem;
  color: #666;
  font-weight: 800;
}

.rg-newsletter {
  max-width: 1180px;
  margin: 0 auto 5rem;
  padding: 3rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(225,6,0,0.25), transparent 34%),
    #080808;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.rg-newsletter h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.rg-newsletter__form {
  display: flex;
  gap: 0.65rem;
  background: #fff;
  padding: 0.45rem;
  border-radius: 999px;
}

.rg-newsletter__form input {
  flex: 1;
  border: 0;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  outline: 0;
}

.rg-newsletter__form button {
  border: 0;
  background: #e10600;
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .rg-hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .rg-hero__panel {
    max-width: 460px;
    align-self: start;
  }

  .rg-trust-strip,
  .rg-section__head--split,
  .rg-editorial,
  .rg-newsletter {
    grid-template-columns: 1fr;
  }

  .rg-category-grid,
  .rg-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-collection-grid,
  .rg-journal-grid {
    grid-template-columns: 1fr;
  }

  .rg-editorial__image,
  .rg-editorial__image img {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 620px) {
  .rg-hero,
  .rg-hero__inner {
    min-height: 620px;
  }

  .rg-hero__inner {
    padding: 4rem 1rem;
  }

  .rg-hero h1 {
    font-size: 4rem;
  }

  .rg-hero__panel {
    display: none;
  }

  .rg-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rg-btn {
    width: 100%;
  }

  .rg-trust-strip,
  .rg-category-grid,
  .rg-product-grid {
    grid-template-columns: 1fr;
  }

  .rg-section,
  .rg-journal-preview {
    padding: 4rem 1rem;
  }

  .rg-category-card,
  .rg-category-card__content {
    min-height: 340px;
  }

  .rg-newsletter {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.5rem;
  }

  .rg-newsletter__form {
    flex-direction: column;
    border-radius: 22px;
  }

  .rg-newsletter__form button {
    width: 100%;
  }
}