@charset "UTF-8";
/*! Ramenwasser Depot — built CSS. Edit SCSS in assets/scss/, then: npm run build:css */
/**
 * Design tokens — WCD brand palette. Run: npm run build:css
 */
:root {
  --rw-color-navy: #003362;
  --rw-color-navy-dark: #060f1f;
  --rw-color-navy-mid: #003362;
  --rw-color-brand: #0044f1;
  --rw-color-brand-hover: #0038cc;
  --rw-color-brand-light: #7fa0f8;
  --rw-color-brand-light-hover: #6b90f6;
  --rw-color-primary: #003362;
  --rw-color-primary-dark: #060f1f;
  --rw-color-primary-light: #e8eef5;
  --rw-color-secondary: #4a5f7a;
  --rw-color-accent: #0044f1;
  --rw-color-text: #1a2b42;
  --rw-color-text-muted: #5c6b7f;
  --rw-color-text-inverse: #ffffff;
  --rw-color-bg: #ffffff;
  --rw-color-bg-alt: #f4f6f9;
  --rw-color-bg-dark: #003362;
  --rw-color-border: #d4dce6;
  --rw-color-border-light: #e8edf3;
  --rw-color-border-strong: #0b1f3f;
  --rw-color-header-main-bg: #ffffff;
  --rw-color-header-nav-bg: #ffffff;
  --rw-color-toggle-track: #d4dce6;
  --rw-color-breadcrumb-bg: #f4f6f9;
  --rw-color-sale: #d62839;
  --rw-color-success: #2d9d4e;
  --rw-color-warning: #e9a100;
  --rw-color-error: #c1121f;
  --rw-font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  --rw-font-size-xs: 0.75rem;
  --rw-font-size-sm: 0.875rem;
  --rw-font-size-base: 1rem;
  --rw-font-size-md: 1.125rem;
  --rw-font-size-lg: 1.25rem;
  --rw-font-size-xl: 1.5rem;
  --rw-font-size-2xl: 2rem;
  --rw-font-size-3xl: 2.5rem;
  --rw-font-size-hero: clamp(2rem, 4vw, 3rem);
  --rw-font-weight-normal: 400;
  --rw-font-weight-medium: 500;
  --rw-font-weight-semibold: 600;
  --rw-font-weight-bold: 700;
  --rw-line-height-tight: 1.2;
  --rw-line-height-base: 1.5;
  --rw-line-height-relaxed: 1.65;
  --rw-space-1: 0.25rem;
  --rw-space-2: 0.5rem;
  --rw-space-3: 0.75rem;
  --rw-space-4: 1rem;
  --rw-space-5: 1.25rem;
  --rw-space-6: 1.5rem;
  --rw-space-8: 2rem;
  --rw-space-10: 2.5rem;
  --rw-space-12: 3rem;
  --rw-space-16: 4rem;
  --rw-space-20: 5rem;
  --rw-container-max: 1280px;
  --rw-container-narrow: 720px;
  --rw-header-height: 72px;
  --rw-radius-sm: 15px;
  --rw-radius-md: 8px;
  --rw-radius-lg: 12px;
  --rw-radius-full: 9999px;
  --rw-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --rw-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --rw-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --rw-transition: 0.2s ease;
  --rw-bp-tablet: 768px;
  --rw-bp-desktop: 1024px;
  --rw-bp-wide: 1280px;
}

/**
 * Base styles and layout utilities.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rw-font-family);
  font-size: var(--rw-font-size-base);
  line-height: var(--rw-line-height-base);
  color: var(--rw-color-text);
  background-color: var(--rw-color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--rw-color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--rw-transition);
}

a:hover {
  color: var(--rw-color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rw-color-secondary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--rw-space-4);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text);
}

h1 {
  font-size: var(--rw-font-size-3xl);
}

h2 {
  font-size: var(--rw-font-size-2xl);
}

h3 {
  font-size: var(--rw-font-size-xl);
}

h4 {
  font-size: var(--rw-font-size-lg);
}

p {
  margin: 0 0 var(--rw-space-4);
}

ul, ol {
  margin: 0 0 var(--rw-space-4);
  padding-left: var(--rw-space-6);
}

.rw-skip-link {
  position: absolute;
  top: -100%;
  left: var(--rw-space-4);
  z-index: 9999;
  padding: var(--rw-space-3) var(--rw-space-4);
  background: var(--rw-color-primary);
  color: var(--rw-color-text-inverse);
  border-radius: var(--rw-radius-sm);
}

.rw-skip-link:focus {
  top: var(--rw-space-4);
}

.rw-container {
  width: 100%;
  max-width: var(--rw-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--rw-space-4);
  padding-right: var(--rw-space-4);
}

@media (min-width: 768px) {
  .rw-container {
    padding-left: var(--rw-space-6);
    padding-right: var(--rw-space-6);
  }
}
.rw-section {
  padding-top: var(--rw-space-12);
  padding-bottom: var(--rw-space-12);
}

.rw-section--alt {
  background-color: var(--rw-color-bg-alt);
}

.rw-section--centered {
  text-align: center;
}

.rw-section__header {
  text-align: center;
  max-width: var(--rw-container-narrow);
  margin: 0 auto var(--rw-space-10);
}

.rw-section__title {
  margin-bottom: var(--rw-space-3);
}

.rw-section__subtitle {
  color: var(--rw-color-text-muted);
  font-size: var(--rw-font-size-md);
  margin: 0;
}

.rw-site-main {
  min-height: 50vh;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

/**
 * Buttons
 */
.rw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rw-space-2);
  padding: var(--rw-space-3) var(--rw-space-6);
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--rw-radius-md);
  cursor: pointer;
  transition: background-color var(--rw-transition), border-color var(--rw-transition), color var(--rw-transition), transform var(--rw-transition);
}

.rw-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.rw-btn--primary {
  background-color: var(--rw-color-primary);
  color: var(--rw-color-text-inverse);
  border-color: var(--rw-color-primary);
}

.rw-btn--primary:hover {
  background-color: var(--rw-color-primary-dark);
  border-color: var(--rw-color-primary-dark);
  color: var(--rw-color-text-inverse);
}

.rw-btn--secondary {
  background-color: transparent;
  color: var(--rw-color-primary);
  border-color: var(--rw-color-primary);
}

.rw-btn--secondary:hover {
  background-color: var(--rw-color-primary-light);
  color: var(--rw-color-primary-dark);
}

.rw-btn--white {
  background-color: var(--rw-color-bg);
  color: var(--rw-color-primary);
  border-color: var(--rw-color-bg);
}

.rw-btn--white:hover {
  background-color: var(--rw-color-bg-alt);
  color: var(--rw-color-primary-dark);
}

.rw-btn--sm {
  padding: var(--rw-space-2) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
}

.rw-btn--block {
  width: 100%;
}

.rw-btn--hero-outline {
  background-color: transparent;
  color: var(--rw-color-text-inverse);
  border-color: rgba(255, 255, 255, 0.8);
}

.rw-btn--hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--rw-color-text-inverse);
  border-color: var(--rw-color-text-inverse);
}

/**
 * Site header — WCD 3-tier layout
 */
.rw-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--rw-color-header-nav-bg);
}

/* Tier 1: USP bar */
.rw-header-usp {
  background: var(--rw-color-navy);
  color: var(--rw-color-text-inverse);
  font-size: var(--rw-font-size-sm);
}

.rw-header-usp__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-3) var(--rw-space-6);
  padding-block: var(--rw-space-2);
}

.rw-header-usp__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-4) var(--rw-space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-header-usp__item {
  display: flex;
  align-items: center;
  gap: var(--rw-space-2);
}

.rw-header-usp__icon {
  display: flex;
  flex-shrink: 0;
  opacity: 0.9;
}

.rw-header-usp__item a,
.rw-header-usp__item span {
  color: var(--rw-color-text-inverse);
  text-decoration: none;
}

.rw-header-usp__item a:hover {
  text-decoration: underline;
}

.rw-lang-dropdown--header-usp > summary {
  color: var(--rw-color-text-inverse);
}

.rw-lang-dropdown--header-usp .rw-lang-dropdown__menu {
  background: var(--rw-color-bg);
  border-color: var(--rw-color-border);
}

.rw-lang-dropdown--header-usp .rw-lang-dropdown__menu a {
  color: var(--rw-color-text);
}

@media (min-width: 1024px) {
  .rw-header-usp__list {
    gap: var(--rw-space-12);
  }
}
/* Shared header column alignment (logo + nav left share column 1) */
.rw-header__grid {
  --rw-header-logo-col: minmax(0, 200px);
}

.rw-header-main__grid {
  display: grid;
  grid-template-columns: var(--rw-header-logo-col) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: var(--rw-space-6);
  row-gap: var(--rw-space-4);
  padding-block: var(--rw-space-4);
}

/* Tier 2: Logo + search + actions */
.rw-header-main {
  background: var(--rw-color-header-main-bg);
  border-bottom: 1px solid var(--rw-color-border-light);
}

.rw-header-main__logo {
  display: flex;
  align-items: center;
  grid-column: 1;
  min-width: 0;
}

.rw-header-main__logo .custom-logo-link,
.rw-header-main__logo .rw-header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.rw-header-main__logo img,
.rw-header__logo img {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 100%;
}

.rw-header-main__search {
  grid-column: 2;
  min-width: 0;
}

.rw-header-main__actions {
  grid-column: 3;
}

/* Product search group */
.rw-header-search-form,
.rw-header-main__search .woocommerce-product-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 720px;
  margin: 0;
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  overflow: hidden;
  background: var(--rw-color-bg);
}

.rw-header-search-form__category {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--rw-color-bg-alt);
  border-right: 1px solid var(--rw-color-border);
}

.rw-header-search-form__category-icon {
  display: none;
  padding-left: var(--rw-space-3);
  color: var(--rw-color-text-muted);
}

@media (min-width: 768px) {
  .rw-header-search-form__category-icon {
    display: flex;
  }
}
.rw-header-search-form__select {
  appearance: none;
  border: none;
  background: transparent;
  padding: var(--rw-space-3) var(--rw-space-8) var(--rw-space-3) var(--rw-space-3);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
  cursor: pointer;
  max-width: 160px;
}

.rw-header-search-form__chevron {
  position: absolute;
  right: var(--rw-space-2);
  pointer-events: none;
  color: var(--rw-color-text-muted);
}

.rw-header-search-form__input,
.rw-header-main__search .woocommerce-product-search input[type=search] {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  font-size: var(--rw-font-size-base);
  color: var(--rw-color-text);
  border: none;
  border-radius: 0;
  background: var(--rw-color-bg);
}

.rw-header-search-form__input::placeholder,
.rw-header-main__search .woocommerce-product-search input[type=search]::placeholder {
  color: var(--rw-color-text-muted);
}

.rw-header-search-form__input:focus,
.rw-header-main__search .woocommerce-product-search input[type=search]:focus {
  outline: none;
}

.rw-header-search-form__submit,
.rw-header-main__search .woocommerce-product-search button {
  display: flex;
  align-items: center;
  gap: var(--rw-space-2);
  flex-shrink: 0;
  padding: var(--rw-space-3) var(--rw-space-5);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-brand);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color var(--rw-transition);
}

.rw-header-search-form__submit:hover,
.rw-header-main__search .woocommerce-product-search button:hover {
  background: var(--rw-color-brand-hover);
  color: var(--rw-color-text-inverse);
}

.rw-header-search-form__submit span {
  display: none;
}

@media (min-width: 768px) {
  .rw-header-search-form__submit span {
    display: inline;
  }
}
/* Header actions */
.rw-header-main__actions {
  display: flex;
  align-items: center;
  gap: var(--rw-space-2);
}

.rw-header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rw-space-1);
  min-width: 64px;
  padding: var(--rw-space-1) var(--rw-space-2);
  color: var(--rw-color-navy);
  text-decoration: none;
  transition: color var(--rw-transition);
}

.rw-header-action:hover {
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-header-action__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.rw-header-action__label {
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-medium);
  line-height: 1.2;
  text-align: center;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rw-header__cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: var(--rw-font-weight-bold);
  line-height: 18px;
  text-align: center;
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-brand);
  border-radius: var(--rw-radius-full);
}

.rw-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--rw-color-navy);
  background: transparent;
  border: none;
  cursor: pointer;
}

.rw-header__toggle {
  display: flex;
}

@media (min-width: 1024px) {
  .rw-header__toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .rw-header-main__grid {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .rw-header-main__logo {
    grid-column: 1;
    grid-row: 1;
  }
  .rw-header-main__actions {
    grid-column: 2;
    grid-row: 1;
  }
  .rw-header-main__search {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .rw-header-search-form,
  .rw-header-main__search .woocommerce-product-search {
    max-width: none;
  }
  .rw-header-action__label {
    display: none;
  }
}
/* Tier 3: Main nav */
.rw-header-nav {
  display: none;
  position: relative;
  background: var(--rw-color-header-nav-bg);
  border-bottom: 1px solid var(--rw-color-border-light);
}

@media (min-width: 1024px) {
  .rw-header-nav {
    display: block;
  }
}
.rw-header-nav__grid {
  display: grid;
  grid-template-columns: var(--rw-header-logo-col) 1fr;
  align-items: center;
  column-gap: var(--rw-space-6);
  padding-block: var(--rw-space-3);
}

.rw-header-nav__grid .rw-mega-nav {
  display: contents;
}

.rw-header-nav__left,
.rw-header-nav__right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--rw-space-2);
}

.rw-header-nav__left {
  grid-column: 1;
  flex-shrink: 0;
}

.rw-header-nav__right {
  grid-column: 2;
  justify-content: flex-end;
}

.rw-mega-nav__item {
  position: relative;
}

.rw-mega-nav__item--categories {
  position: static;
}

.rw-header-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  padding: var(--rw-space-3) var(--rw-space-5);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-navy);
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--rw-transition);
}

.rw-header-nav__cta:hover {
  background: var(--rw-color-navy-dark);
  color: var(--rw-color-text-inverse);
}

.rw-header-nav__cta-icon svg {
  width: 18px;
  height: 18px;
}

.rw-header-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-1);
  padding: var(--rw-space-3) var(--rw-space-4);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.rw-header-nav__link:hover {
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-header-nav__link-icon svg {
  width: 16px;
  height: 16px;
}

.rw-mega-nav__pages {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-mega-nav__pages > li > a {
  display: flex;
  align-items: center;
  padding: var(--rw-space-3) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
  text-decoration: none;
  white-space: nowrap;
}

.rw-mega-nav__pages > li > a:hover {
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-mega-nav__pages > li.menu-item-highlight > a,
.rw-mega-nav__pages > li.menu-item-promoties > a {
  color: var(--rw-color-brand);
  font-weight: var(--rw-font-weight-semibold);
}

.rw-mega-nav__pages > li.menu-item-highlight > a::before,
.rw-mega-nav__pages > li.menu-item-promoties > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: var(--rw-space-2);
  background: var(--rw-color-brand);
  border-radius: var(--rw-radius-full);
  vertical-align: middle;
}

.rw-mobile-nav .rw-nav > li.menu-item-highlight > a,
.rw-mobile-nav .rw-nav > li.menu-item-promoties > a {
  color: var(--rw-color-brand);
  font-weight: var(--rw-font-weight-semibold);
}

.rw-mega-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 210;
  min-width: 220px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  box-shadow: var(--rw-shadow-md);
}

.rw-mega-nav__dropdown:not([hidden]) {
  display: block;
}

.rw-mega-nav__dropdown-list {
  list-style: none;
  margin: 0;
  padding: var(--rw-space-2) 0;
}

.rw-mega-nav__dropdown-list a {
  display: block;
  padding: var(--rw-space-2) var(--rw-space-5);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text);
  text-decoration: none;
}

.rw-mega-nav__dropdown-list a:hover {
  background: var(--rw-color-bg-alt);
  color: var(--rw-color-text);
}

/* Category mega menu panel */
.rw-mega-nav__dropdown--categories {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 220;
  min-width: unset;
  max-height: none;
  overflow: visible;
  padding: 0;
  border: none;
  border-top: 1px solid var(--rw-color-border-light);
  border-radius: 0;
  box-shadow: var(--rw-shadow-lg);
}

.rw-mega-menu {
  padding-block: var(--rw-space-8);
}

.rw-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--rw-space-8) var(--rw-space-10);
  align-items: start;
}

.rw-mega-menu__grid.has-promo {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(220px, 280px);
}

.rw-mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-8);
  min-width: 0;
}

.rw-mega-menu__group {
  min-width: 0;
}

.rw-mega-menu__heading {
  margin: 0 0 var(--rw-space-3);
  padding-bottom: var(--rw-space-2);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rw-color-border-light);
}

.rw-mega-menu__heading a {
  color: var(--rw-color-navy);
  text-decoration: none;
  transition: color var(--rw-transition);
}

.rw-mega-menu__heading a:hover {
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-mega-menu__list li + li {
  margin-top: var(--rw-space-2);
}

.rw-mega-menu__list a {
  display: block;
  padding: 0;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-normal);
  line-height: var(--rw-line-height-base);
  color: var(--rw-color-text);
  text-decoration: none;
  transition: color var(--rw-transition);
}

.rw-mega-menu__list a:hover {
  color: var(--rw-color-brand);
  background: transparent;
  text-decoration: none;
}

.rw-mega-menu__promo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  min-height: 280px;
  padding: var(--rw-space-6);
  background: linear-gradient(180deg, var(--rw-color-navy) 0%, var(--rw-color-navy-dark) 100%);
  border-radius: var(--rw-radius-md);
}

.rw-mega-menu__promo-label {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rw-color-brand-light);
}

.rw-mega-menu__promo-title {
  margin: 0 0 var(--rw-space-3);
  font-size: var(--rw-font-size-xl);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text-inverse);
}

.rw-mega-menu__promo-text {
  margin: 0 0 var(--rw-space-6);
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-relaxed);
  color: rgba(255, 255, 255, 0.85);
}

.rw-mega-menu__promo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  align-self: flex-start;
  padding: var(--rw-space-3) var(--rw-space-5);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-brand);
  background: var(--rw-color-bg);
  border-radius: var(--rw-radius-sm);
  text-decoration: none;
  transition: background-color var(--rw-transition), color var(--rw-transition);
}

.rw-mega-menu__promo-btn:hover {
  color: var(--rw-color-brand-hover);
  background: var(--rw-color-bg-alt);
  text-decoration: none;
}

.rw-mega-menu__promo-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 1279px) {
  .rw-mega-menu__grid,
  .rw-mega-menu__grid.has-promo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .rw-mega-menu__promo {
    grid-column: 1/-1;
    min-height: 200px;
  }
}
/* Language switcher */
.rw-lang-dropdown {
  position: relative;
}

.rw-lang-dropdown > summary {
  display: flex;
  align-items: center;
  gap: var(--rw-space-1);
  padding: var(--rw-space-2) var(--rw-space-3);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  list-style: none;
  cursor: pointer;
}

.rw-lang-dropdown > summary::-webkit-details-marker {
  display: none;
}

.rw-lang-dropdown > summary::marker {
  content: "";
}

.rw-lang-dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 210;
  min-width: 120px;
  margin: 0;
  padding: var(--rw-space-2) 0;
  list-style: none;
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border);
  box-shadow: var(--rw-shadow-md);
}

.rw-lang-dropdown__menu a {
  display: block;
  padding: var(--rw-space-2) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text);
  text-decoration: none;
}

.rw-lang-dropdown__menu a:hover,
.rw-lang-dropdown__menu a.is-active {
  background: var(--rw-color-bg-alt);
}

/* VAT toggle */
.rw-vat-toggle-wrap {
  display: flex;
  align-items: center;
  gap: var(--rw-space-2);
  margin-left: var(--rw-space-2);
}

.rw-vat-toggle__label {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
}

.rw-vat-toggle--switch {
  display: inline-flex;
  text-decoration: none;
}

.rw-vat-toggle--switch:hover {
  text-decoration: none;
}

.rw-vat-toggle__track {
  display: block;
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--rw-color-toggle-track);
  border-radius: var(--rw-radius-full);
  transition: background-color var(--rw-transition);
}

.rw-vat-toggle--switch.is-incl .rw-vat-toggle__track {
  background: var(--rw-color-brand);
}

.rw-vat-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--rw-color-bg);
  border-radius: var(--rw-radius-full);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform var(--rw-transition);
}

.rw-vat-toggle--switch.is-incl .rw-vat-toggle__knob {
  transform: translateX(20px);
}

.rw-vat-toggle:not(.rw-vat-toggle--switch) {
  display: flex;
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-sm);
  overflow: hidden;
}

.rw-vat-toggle__btn {
  padding: var(--rw-space-1) var(--rw-space-3);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}

.rw-vat-toggle__btn.is-active {
  background: var(--rw-color-navy);
  color: var(--rw-color-text-inverse);
}

/* Mobile nav */
.rw-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 199;
  padding: var(--rw-space-6);
  padding-top: 160px;
  background: var(--rw-color-bg);
  overflow-y: auto;
}

.rw-mobile-nav.is-open {
  display: block;
}

.rw-mobile-nav__search .rw-header-search-form,
.rw-mobile-nav__search .woocommerce-product-search {
  max-width: none;
}

.rw-mobile-nav__group {
  margin-bottom: var(--rw-space-4);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
}

.rw-mobile-nav__group summary {
  padding: var(--rw-space-4);
  font-weight: var(--rw-font-weight-semibold);
  cursor: pointer;
}

.rw-mobile-nav__group ul {
  list-style: none;
  margin: 0;
  padding: 0 var(--rw-space-4) var(--rw-space-4);
}

.rw-mobile-nav__group a {
  display: block;
  padding: var(--rw-space-2) 0;
  color: var(--rw-color-text);
  text-decoration: none;
}

.rw-mobile-nav__categories {
  padding: 0 var(--rw-space-4) var(--rw-space-4);
}

.rw-mobile-nav__subgroup {
  margin-bottom: var(--rw-space-2);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-sm);
}

.rw-mobile-nav__subgroup summary {
  padding: var(--rw-space-3) var(--rw-space-4);
  font-weight: var(--rw-font-weight-medium);
  cursor: pointer;
}

.rw-mobile-nav__subgroup summary a {
  display: inline;
  padding: 0;
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-navy);
}

.rw-mobile-nav__subgroup ul {
  list-style: none;
  margin: 0;
  padding: 0 var(--rw-space-4) var(--rw-space-3);
}

.rw-mobile-nav__category-link {
  display: block;
  padding: var(--rw-space-3) var(--rw-space-4);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-navy);
  text-decoration: none;
}

.rw-mobile-nav__utilities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-4);
  margin-top: var(--rw-space-6);
  padding-top: var(--rw-space-6);
  border-top: 1px solid var(--rw-color-border-light);
}

body.rw-nav-open {
  overflow: hidden;
}

.rw-header__logo {
  display: flex;
  align-items: center;
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-text);
  text-decoration: none;
}

.rw-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-nav a {
  display: block;
  padding: var(--rw-space-3) 0;
  color: var(--rw-color-text);
  text-decoration: none;
}

/**
 * Site footer — WCD layered structure
 */
.rw-footer {
  color: var(--rw-color-text-inverse);
}

.rw-footer a {
  text-decoration: none;
}

/* Band A: Newsletter */
.rw-footer-newsletter {
  background: var(--rw-color-navy-mid);
  padding: var(--rw-space-10) 0;
}

.rw-footer-newsletter__inner {
  display: grid;
  gap: var(--rw-space-8);
}

@media (min-width: 1024px) {
  .rw-footer-newsletter__inner {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.rw-footer-newsletter__kicker {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rw-color-brand-light);
}

.rw-footer-newsletter__headline {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, var(--rw-font-size-2xl));
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text-inverse);
}

.rw-footer-newsletter__form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-3);
}

.rw-lang-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--rw-space-2);
  justify-content: flex-start;
  margin: 0 0 var(--rw-space-1);
  padding: 0;
  background: none;
}

.rw-lang-pills__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: var(--rw-space-2) var(--rw-space-4);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  line-height: 1;
  color: var(--rw-color-text-inverse);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--rw-radius-sm);
  background: transparent;
  transition: background-color var(--rw-transition), border-color var(--rw-transition), color var(--rw-transition);
}

.rw-lang-pills__link:hover {
  color: var(--rw-color-text-inverse);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.rw-lang-pills__link.is-active {
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-brand-light);
  border-color: var(--rw-color-brand-light);
}

.rw-lang-pills__link.is-active:hover {
  background: var(--rw-color-brand-light-hover);
  border-color: var(--rw-color-brand-light-hover);
}

.rw-newsletter-form__row {
  display: flex;
  border-radius: var(--rw-radius-md);
  overflow: hidden;
  background: var(--rw-color-bg);
}

.rw-newsletter-form input[type=email] {
  flex: 1;
  min-width: 0;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: none;
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  color: var(--rw-color-text);
}

.rw-newsletter-form input[type=email]:focus {
  outline: none;
}

.rw-newsletter-form__submit {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  flex-shrink: 0;
  padding: var(--rw-space-3) var(--rw-space-5);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-brand);
  border: none;
  cursor: pointer;
  transition: background-color var(--rw-transition);
}

.rw-newsletter-form__submit:hover {
  background: var(--rw-color-brand-hover);
}

.rw-footer-newsletter__terms {
  margin: 0;
  font-size: var(--rw-font-size-xs);
  color: rgba(255, 255, 255, 0.7);
}

.rw-footer-newsletter__terms a {
  color: var(--rw-color-brand-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rw-footer-newsletter__terms a:hover {
  color: var(--rw-color-brand-light-hover);
}

.rw-footer-newsletter__notice {
  margin: 0;
  font-size: var(--rw-font-size-sm);
}

.rw-footer-newsletter__notice--success {
  color: #8fd9a8;
}

.rw-footer-newsletter__notice--error {
  color: #f5a5ad;
}

/* Band B: Columns */
.rw-footer-columns-wrap {
  background: var(--rw-color-navy);
  padding: var(--rw-space-12) 0 var(--rw-space-10);
}

.rw-footer-columns-layout {
  display: grid;
  gap: var(--rw-space-8);
}

.rw-footer-columns__brand {
  display: flex;
  align-items: flex-start;
}

.rw-footer__logo img,
.rw-footer__logo-img {
  max-height: 72px;
  width: auto;
}

.rw-footer-columns {
  display: grid;
  gap: var(--rw-space-8);
  min-width: 0;
}

@media (min-width: 768px) {
  .rw-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rw-footer-columns-layout {
    grid-template-columns: minmax(160px, 220px) 1fr;
    align-items: start;
    gap: var(--rw-space-10) var(--rw-space-12);
  }
  .rw-footer-columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
.rw-footer__title {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 var(--rw-space-4);
  color: var(--rw-color-text-inverse);
}

.rw-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-footer__menu li {
  margin-bottom: var(--rw-space-2);
}

.rw-footer__menu a,
.rw-footer__menu em {
  font-size: var(--rw-font-size-sm);
  color: rgba(255, 255, 255, 0.75);
}

.rw-footer__menu a:hover {
  color: var(--rw-color-text-inverse);
  text-decoration: underline;
}

.rw-footer__menu .menu-item-highlight > a,
.rw-footer__cta {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-brand-light);
}

.rw-footer__menu .menu-item-highlight > a:hover,
.rw-footer__cta:hover {
  color: var(--rw-color-text-inverse);
  text-decoration: underline;
}

.rw-footer__menu em {
  font-style: normal;
}

.rw-footer__cta-wrap {
  margin: var(--rw-space-4) 0 0;
}

/* Band C: Trust */
.rw-footer-trust-wrap {
  background: var(--rw-color-navy-dark);
  padding: var(--rw-space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rw-footer-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--rw-space-5);
}

@media (min-width: 1024px) {
  .rw-footer-trust {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--rw-space-8) var(--rw-space-10);
  }
}
.rw-footer-trust__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
  min-width: 0;
}

@media (min-width: 1024px) {
  .rw-footer-trust__block {
    flex-wrap: nowrap;
  }
}
.rw-footer-trust__title {
  flex-shrink: 0;
  align-self: center;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  color: var(--rw-color-text-inverse);
}

.rw-footer-trust__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 32px;
  gap: var(--rw-space-2);
  min-width: 0;
}

@media (min-width: 1024px) {
  .rw-footer-trust__icons {
    flex-wrap: nowrap;
  }
}
.rw-footer-trust__icons img {
  display: block;
  flex-shrink: 0;
  height: 26px;
  width: auto;
  max-height: 26px;
  max-width: 56px;
  object-fit: contain;
  object-position: center;
}

.rw-footer-trust__block--payment .rw-footer-trust__icons {
  gap: var(--rw-space-2);
}

.rw-footer-trust__block--payment .rw-footer-trust__icons img {
  height: 26px;
  max-height: 26px;
  max-width: 44px;
}

.rw-footer-trust__block--shipping .rw-footer-trust__icons img {
  max-width: 64px;
}

.rw-footer-trust__placeholder {
  font-size: var(--rw-font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--rw-line-height-relaxed);
}

.rw-footer-trust__lang {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .rw-footer-trust__lang {
    margin-left: auto;
  }
}
.rw-footer-trust__block--social {
  align-items: center;
}

.rw-footer-trust .rw-footer-social--icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  min-height: 32px;
  gap: var(--rw-space-2);
}

@media (min-width: 1024px) {
  .rw-footer-trust .rw-footer-social--icons {
    flex-wrap: nowrap;
  }
}
.rw-footer-trust .rw-footer-social__link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--rw-color-text-inverse);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--rw-radius-sm);
  transition: background-color var(--rw-transition), color var(--rw-transition);
}

.rw-footer-trust .rw-footer-social__link:hover {
  background: var(--rw-color-brand);
  color: var(--rw-color-text-inverse);
  text-decoration: none;
}

.rw-footer-trust .rw-footer-social__link img {
  display: block;
  height: 13px;
  width: auto;
  object-fit: contain;
}

.rw-lang-dropdown--footer-trust > summary {
  padding: 0;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-inverse);
}

.rw-lang-dropdown--footer-trust .rw-lang-dropdown__flag {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: auto;
  border-radius: 1px;
}

.rw-lang-dropdown--footer-trust .rw-lang-dropdown__menu {
  top: auto;
  bottom: 100%;
  right: 0;
  margin-bottom: var(--rw-space-2);
}

/* Band D: Legal */
.rw-footer-legal-wrap {
  background: var(--rw-color-navy-dark);
  padding: var(--rw-space-6) 0 var(--rw-space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rw-footer-legal__disclaimer {
  margin: 0 0 var(--rw-space-6);
  font-size: var(--rw-font-size-xs);
  line-height: var(--rw-line-height-relaxed);
  color: rgba(255, 255, 255, 0.55);
}

.rw-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-4);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .rw-footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
.rw-footer-bottom__copy {
  margin: 0;
  font-size: var(--rw-font-size-xs);
  color: rgba(255, 255, 255, 0.55);
}

.rw-footer-bottom__legal .rw-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-4);
}

.rw-footer-bottom__legal .rw-footer__menu li {
  margin: 0;
}

.rw-footer-bottom__legal .rw-footer__menu a {
  font-size: var(--rw-font-size-xs);
  color: rgba(255, 255, 255, 0.65);
}

.rw-footer-bottom__legal .rw-footer__menu a:hover {
  color: var(--rw-color-text-inverse);
}

/**
 * Homepage — hero slider
 */
.rw-site-main--home {
  padding: 0;
}

.rw-slider {
  position: relative;
  color: var(--rw-color-text-inverse);
  overflow: hidden;
}

.rw-slider__viewport {
  position: relative;
  width: 100%;
}

.rw-slider__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
}

.rw-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.rw-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.rw-slider__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rw-color-primary-dark) 0%, var(--rw-color-primary) 50%, var(--rw-color-secondary) 100%);
}

.rw-slider__slide[style*="--rw-slider-image"] .rw-slider__media {
  background-image: linear-gradient(90deg, rgba(0, 35, 70, 0.82) 0%, rgba(0, 35, 70, 0.45) 55%, rgba(0, 35, 70, 0.2) 100%), var(--rw-slider-image);
  background-size: cover;
  background-position: center;
}

.rw-slider__content {
  position: relative;
  z-index: 1;
  padding: var(--rw-space-16) 0;
  max-width: 640px;
}

.rw-slider__title {
  font-size: var(--rw-font-size-hero);
  color: var(--rw-color-text-inverse);
  margin: 0 0 var(--rw-space-4);
}

.rw-slider__text {
  font-size: var(--rw-font-size-md);
  line-height: var(--rw-line-height-relaxed);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 var(--rw-space-8);
}

.rw-slider__cta {
  margin-top: var(--rw-space-2);
}

.rw-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--rw-radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: var(--rw-color-text-inverse);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--rw-transition), border-color var(--rw-transition);
}

.rw-slider__arrow:hover,
.rw-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  outline: none;
}

.rw-slider__arrow--prev {
  left: var(--rw-space-4);
}

.rw-slider__arrow--next {
  right: var(--rw-space-4);
}

@media (min-width: 1024px) {
  .rw-slider__arrow--prev {
    left: var(--rw-space-8);
  }
  .rw-slider__arrow--next {
    right: var(--rw-space-8);
  }
}
.rw-slider__dots {
  position: absolute;
  left: 50%;
  bottom: var(--rw-space-6);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: var(--rw-space-2);
}

.rw-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: var(--rw-radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--rw-transition), transform var(--rw-transition);
}

.rw-slider__dot.is-active {
  background: var(--rw-color-text-inverse);
  transform: scale(1.2);
}

.rw-slider__dot:hover,
.rw-slider__dot:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  outline: none;
}

/* Legacy homepage sections (reserved for later) */
.rw-hero {
  position: relative;
  background: linear-gradient(135deg, var(--rw-color-primary-dark) 0%, var(--rw-color-primary) 50%, var(--rw-color-secondary) 100%);
  color: var(--rw-color-text-inverse);
  padding: var(--rw-space-16) 0;
  overflow: hidden;
}

.rw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.rw-hero__inner {
  position: relative;
  display: grid;
  gap: var(--rw-space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .rw-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.rw-hero__content {
  max-width: 560px;
}

.rw-hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--rw-space-4);
  padding: var(--rw-space-1) var(--rw-space-3);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--rw-radius-full);
}

.rw-hero__title {
  font-size: var(--rw-font-size-hero);
  color: var(--rw-color-text-inverse);
  margin-bottom: var(--rw-space-4);
}

.rw-hero__text {
  font-size: var(--rw-font-size-md);
  line-height: var(--rw-line-height-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--rw-space-8);
}

.rw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-4);
}

.rw-hero__visual {
  display: none;
}

@media (min-width: 1024px) {
  .rw-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rw-hero__visual-inner {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rw-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--rw-font-size-sm);
    color: rgba(255, 255, 255, 0.6);
  }
}
/* Categories */
.rw-categories__grid {
  display: grid;
  gap: var(--rw-space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rw-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rw-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rw-category-card {
  display: flex;
  flex-direction: column;
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--rw-transition), transform var(--rw-transition);
}

.rw-category-card:hover {
  box-shadow: var(--rw-shadow-md);
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.rw-category-card__image {
  aspect-ratio: 3/2;
  background: var(--rw-color-bg-alt);
  overflow: hidden;
}

.rw-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rw-category-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--rw-color-text-muted);
  font-size: var(--rw-font-size-sm);
}

.rw-category-card__body {
  padding: var(--rw-space-5);
}

.rw-category-card__title {
  font-size: var(--rw-font-size-md);
  font-weight: var(--rw-font-weight-semibold);
  margin: 0 0 var(--rw-space-2);
}

.rw-category-card__count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  margin: 0;
}

/* USP bar */
.rw-usp-bar {
  background: var(--rw-color-primary-light);
  border-top: 1px solid var(--rw-color-border-light);
  border-bottom: 1px solid var(--rw-color-border-light);
  padding: var(--rw-space-8) 0;
}

.rw-usp-bar__grid {
  display: grid;
  gap: var(--rw-space-6);
}

@media (min-width: 768px) {
  .rw-usp-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rw-usp-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rw-usp-item {
  display: flex;
  gap: var(--rw-space-4);
  align-items: flex-start;
}

.rw-usp-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rw-color-bg);
  border-radius: var(--rw-radius-md);
  color: var(--rw-color-primary);
  font-size: var(--rw-font-size-xl);
  box-shadow: var(--rw-shadow-sm);
}

.rw-usp-item__title {
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  margin: 0 0 var(--rw-space-1);
}

.rw-usp-item__text {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  margin: 0;
  line-height: var(--rw-line-height-relaxed);
}

/* Featured products section */
.rw-featured__grid {
  display: grid;
  gap: var(--rw-space-6);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .rw-featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .rw-featured__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rw-featured__footer {
  text-align: center;
  margin-top: var(--rw-space-10);
}

.rw-empty-state {
  text-align: center;
  padding: var(--rw-space-12);
  color: var(--rw-color-text-muted);
  background: var(--rw-color-bg-alt);
  border-radius: var(--rw-radius-lg);
}

/**
 * Product card (shop loop)
 */
.rw-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--rw-transition), transform var(--rw-transition);
  list-style: none;
  margin: 0;
}

.rw-product-card:hover {
  box-shadow: var(--rw-shadow-md);
  transform: translateY(-2px);
}

.rw-product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--rw-color-bg-alt);
  overflow: hidden;
}

.rw-product-card__media a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.rw-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rw-transition);
}

.rw-product-card:hover .rw-product-card__media img {
  transform: scale(1.03);
}

.rw-product-card__badge {
  position: absolute;
  top: var(--rw-space-3);
  left: var(--rw-space-3);
  z-index: 2;
  padding: var(--rw-space-1) var(--rw-space-3);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--rw-color-text-inverse);
  background: var(--rw-color-sale);
  border-radius: var(--rw-radius-sm);
}

.rw-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--rw-space-5);
}

.rw-product-card__category {
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--rw-space-2);
}

.rw-product-card__title {
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  margin: 0 0 var(--rw-space-2);
  line-height: var(--rw-line-height-tight);
}

.rw-product-card__title a {
  color: var(--rw-color-text);
  text-decoration: none;
}

.rw-product-card__title a:hover {
  color: var(--rw-color-primary);
}

.rw-product-card__excerpt {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  margin: 0 0 var(--rw-space-3);
  line-height: var(--rw-line-height-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rw-product-card__price {
  margin-top: auto;
  margin-bottom: var(--rw-space-4);
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-text);
}

.rw-product-card__price del {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-normal);
  color: var(--rw-color-text-muted);
  margin-right: var(--rw-space-2);
}

.rw-product-card__price ins {
  text-decoration: none;
  color: var(--rw-color-sale);
}

.rw-product-card__actions .button,
.rw-product-card__actions .rw-btn {
  width: 100%;
  min-height: 44px;
}

@media (max-width: 767px) {
  .rw-product-card__body {
    padding: var(--rw-space-4);
  }
  .rw-product-card__title {
    font-size: var(--rw-font-size-sm);
  }
  .rw-product-card__excerpt {
    -webkit-line-clamp: 1;
  }
  .rw-product-card__price {
    font-size: var(--rw-font-size-base);
    margin-bottom: var(--rw-space-3);
  }
}
/**
 * Theme blocks — Grid, Accordion
 */
/* Shared section header */
.rw-block {
  margin-bottom: var(--rw-space-12);
}

.rw-block__header {
  margin-bottom: var(--rw-space-8);
}

.rw-block__title {
  margin: 0 0 var(--rw-space-3);
  font-size: var(--rw-font-size-xl);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text);
}

.rw-block__intro {
  margin: 0;
  font-size: var(--rw-font-size-base);
  line-height: var(--rw-line-height-relaxed);
  color: var(--rw-color-text-muted);
}

/* Grid blocks */
.rw-block-grid__items {
  display: grid;
  gap: var(--rw-space-4);
}

.rw-block-grid__items--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rw-block-grid__items--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rw-block-grid__item {
  min-width: 0;
}

/* Grid van 3 — bordered cards */
.rw-block-grid--3 .rw-block-grid__item {
  padding: var(--rw-space-6);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
}

.rw-block-grid__item-title {
  margin: 0 0 var(--rw-space-3);
  font-size: var(--rw-font-size-md);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text);
}

.rw-block-grid__item-title a {
  color: inherit;
  text-decoration: none;
}

.rw-block-grid__item-title a:hover {
  color: var(--rw-color-primary);
  text-decoration: underline;
}

.rw-block-grid__item-desc {
  margin: 0;
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-relaxed);
  color: var(--rw-color-text-muted);
}

.rw-block-grid__item-desc p:last-child {
  margin-bottom: 0;
}

/* Grid van 2 — clickable rows */
.rw-block-grid--2 .rw-block-grid__item {
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  transition: background-color var(--rw-transition), border-color var(--rw-transition);
}

.rw-block-grid--2 .rw-block-grid__item:hover {
  background: var(--rw-color-primary-light);
  border-color: var(--rw-color-border-light);
}

.rw-block-grid__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-4);
  padding: var(--rw-space-5) var(--rw-space-6);
  color: inherit;
  text-decoration: none;
}

.rw-block-grid__link:hover {
  text-decoration: none;
  color: inherit;
}

.rw-block-grid__link-text {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-1);
  min-width: 0;
}

.rw-block-grid__link-title {
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-block-grid__link-desc {
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-base);
  color: var(--rw-color-text-muted);
}

.rw-block-grid__chevron {
  flex-shrink: 0;
  color: var(--rw-color-text-muted);
}

.rw-block-grid__chevron svg {
  display: block;
}

/* Accordion */
.rw-block-accordion__items {
  border-top: 1px solid var(--rw-color-border);
}

.rw-block-accordion__item {
  border-bottom: 1px solid var(--rw-color-border);
}

.rw-block-accordion__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--rw-space-4);
  padding: var(--rw-space-5) 0;
  list-style: none;
  cursor: pointer;
}

.rw-block-accordion__summary::-webkit-details-marker {
  display: none;
}

.rw-block-accordion__summary::marker {
  content: "";
}

.rw-block-accordion__summary-text {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-2);
  min-width: 0;
}

.rw-block-accordion__title {
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-block-accordion__summary-desc {
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-relaxed);
  color: var(--rw-color-text-muted);
}

.rw-block-accordion__chevron {
  flex-shrink: 0;
  margin-top: var(--rw-space-1);
  color: var(--rw-color-text-muted);
  transition: transform var(--rw-transition);
}

.rw-block-accordion__chevron svg {
  display: block;
}

.rw-block-accordion__item[open] .rw-block-accordion__chevron {
  transform: rotate(180deg);
}

.rw-block-accordion__content {
  padding: 0 0 var(--rw-space-5);
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-relaxed);
  color: var(--rw-color-text);
}

.rw-block-accordion__content p:last-child {
  margin-bottom: 0;
}

/* Page content spacing */
.entry-content > .rw-block:first-child {
  margin-top: var(--rw-space-6);
}

.entry-content > .rw-block:last-child {
  margin-bottom: 0;
}

.entry-content > .wp-block-heading + .rw-block,
.entry-content > p + .rw-block {
  margin-top: var(--rw-space-10);
}

/* Editor-only helpers */
.rw-block-editor__empty,
.rw-block-editor__placeholder {
  padding: var(--rw-space-4);
  border: 1px dashed var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  color: var(--rw-color-text-muted);
}

.rw-block-editor__items {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-4);
}

.rw-block-editor__item {
  padding: var(--rw-space-4);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg-alt);
}

.rw-block-editor__item-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-3);
}

.rw-block-editor__item-actions {
  display: flex;
  gap: var(--rw-space-2);
}

@media (max-width: 1023px) {
  .rw-block-grid__items--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .rw-block-grid__items--3,
  .rw-block-grid__items--2 {
    grid-template-columns: 1fr;
  }
}
/**
 * WooCommerce global styles
 */
/* Breadcrumbs */
.rw-breadcrumb-bar {
  background: var(--rw-color-breadcrumb-bg);
  border-bottom: 1px solid var(--rw-color-border-light);
}

.rw-breadcrumb-bar .rw-container {
  padding-top: var(--rw-space-3);
  padding-bottom: var(--rw-space-3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rw-breadcrumb-bar .woocommerce-breadcrumb,
.rw-breadcrumb-bar .rw-breadcrumb {
  white-space: nowrap;
}

.woocommerce-breadcrumb,
.rw-breadcrumb {
  margin: 0;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.woocommerce-breadcrumb a,
.rw-breadcrumb a {
  color: var(--rw-color-text-muted);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover,
.rw-breadcrumb a:hover {
  color: var(--rw-color-brand);
}

.rw-breadcrumb-current {
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-navy);
}

/* Shop layout */
.rw-shop-page .rw-breadcrumb-bar + .rw-container .rw-shop-layout,
.rw-shop-page .rw-page-header + .rw-breadcrumb-bar + .rw-container .rw-shop-layout,
.rw-shop-page .rw-page-header + .rw-container .rw-shop-layout {
  padding-top: 0;
}

.rw-shop-layout {
  display: grid;
  gap: var(--rw-space-8);
  padding-top: var(--rw-space-8);
  padding-bottom: var(--rw-space-12);
}

@media (min-width: 1024px) {
  .rw-shop-layout--sidebar {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}
.rw-shop-sidebar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.rw-shop-filters {
  background: var(--rw-color-bg-alt);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-lg);
  overflow: hidden;
}

.rw-shop-filters__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-3);
  padding: var(--rw-space-4) var(--rw-space-5);
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.rw-shop-filters__toggle::-webkit-details-marker {
  display: none;
}
.rw-shop-filters__toggle::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--rw-transition);
}

.rw-shop-filters[open] > .rw-shop-filters__toggle::after {
  transform: rotate(-135deg);
}

.rw-shop-filters__panel {
  padding: 0 var(--rw-space-5) var(--rw-space-5);
}

@media (min-width: 1024px) {
  .rw-shop-sidebar {
    background: var(--rw-color-bg-alt);
    border: 1px solid var(--rw-color-border-light);
    border-radius: var(--rw-radius-lg);
    padding: var(--rw-space-6);
  }
  .rw-shop-filters {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .rw-shop-filters__toggle {
    display: none;
  }
  .rw-shop-filters__panel {
    padding: 0;
  }
}
.rw-shop-header {
  margin-bottom: var(--rw-space-8);
}

.rw-shop-header .woocommerce-products-header__title {
  margin-bottom: var(--rw-space-4);
}

.rw-shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-6);
}

@media (min-width: 768px) {
  .rw-shop-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--rw-space-4);
  }
}
.woocommerce-result-count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  margin: 0;
}

.woocommerce-ordering {
  margin: 0;
}

.woocommerce-ordering select {
  width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  font-family: inherit;
  font-size: var(--rw-font-size-sm);
  background: var(--rw-color-bg);
  min-height: 44px;
}

@media (min-width: 768px) {
  .woocommerce-ordering select {
    width: auto;
    min-width: 200px;
  }
}
/* Product grid */
.woocommerce ul.products {
  display: grid !important;
  gap: var(--rw-space-6);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
  .rw-shop-layout--sidebar .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .rw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--rw-space-3) var(--rw-space-6);
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  line-height: 1;
  color: var(--rw-color-text-inverse) !important;
  background: var(--rw-color-primary) !important;
  border: 2px solid var(--rw-color-primary) !important;
  border-radius: var(--rw-radius-md) !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color var(--rw-transition), border-color var(--rw-transition);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--rw-color-primary-dark) !important;
  border-color: var(--rw-color-primary-dark) !important;
  color: var(--rw-color-text-inverse) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--rw-color-secondary) !important;
  border-color: var(--rw-color-secondary) !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: var(--rw-space-4) var(--rw-space-6);
  margin-bottom: var(--rw-space-6);
  border-radius: var(--rw-radius-md);
  border-left: 4px solid;
  list-style: none;
}

.woocommerce-message {
  background: #e8f5e9;
  border-color: var(--rw-color-success);
}

.woocommerce-info {
  background: var(--rw-color-primary-light);
  border-color: var(--rw-color-primary);
}

.woocommerce-error {
  background: #fde8ea;
  border-color: var(--rw-color-error);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: var(--rw-space-10);
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: var(--rw-space-2);
  border: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--rw-space-3);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--rw-color-primary);
  color: var(--rw-color-text-inverse);
  border-color: var(--rw-color-primary);
}

/* Star ratings */
.star-rating {
  color: var(--rw-color-accent);
}

/**
 * Single product page (PDP).
 */
/* Layout */
.rw-single-product {
  padding-top: var(--rw-space-8);
  padding-bottom: var(--rw-space-12);
}

.rw-single-product__grid {
  display: grid;
  gap: var(--rw-space-10);
}

@media (min-width: 1024px) {
  .rw-single-product__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.rw-single-product__summary {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-6);
}

/* Gallery */
.rw-single-product__gallery .woocommerce-product-gallery,
.rw-pdp-gallery {
  margin-bottom: 0;
  width: 100%;
  position: relative;
}

.rw-pdp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rw-space-3);
}

@media (min-width: 768px) {
  .rw-pdp-gallery {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
  }
}
.rw-pdp-gallery__badges {
  position: absolute;
  top: var(--rw-space-4);
  left: var(--rw-space-4);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-2);
}

@media (min-width: 768px) {
  .rw-pdp-gallery__badges {
    left: calc(72px + var(--rw-space-6));
  }
}
.rw-pdp-gallery__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--rw-space-1) var(--rw-space-3);
  border-radius: var(--rw-radius-sm);
  background: var(--rw-color-brand);
  color: var(--rw-color-text-inverse);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rw-pdp-gallery__badge--new {
  background: var(--rw-color-primary);
}

.rw-pdp-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: var(--rw-space-4);
  right: var(--rw-space-4);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  color: var(--rw-color-text);
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}
.rw-pdp-gallery .woocommerce-product-gallery__trigger::before {
  content: none;
}
.rw-pdp-gallery .woocommerce-product-gallery__trigger span {
  display: none;
}
.rw-pdp-gallery .woocommerce-product-gallery__trigger svg {
  display: block;
  flex-shrink: 0;
}

.rw-pdp-gallery .woocommerce-product-gallery__wrapper {
  grid-column: 1;
}

@media (min-width: 768px) {
  .rw-pdp-gallery .woocommerce-product-gallery__wrapper {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
.rw-pdp-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg-alt);
}

.rw-pdp-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--rw-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  grid-column: 1;
}

@media (min-width: 768px) {
  .rw-pdp-gallery .flex-control-thumbs {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    max-height: 520px;
    grid-row: 1/span 2;
  }
}
.rw-pdp-gallery .flex-control-thumbs li {
  flex: 0 0 auto;
  width: 72px;
  margin: 0;
}

.rw-pdp-gallery .flex-control-thumbs li img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--rw-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--rw-transition), border-color var(--rw-transition);
}

.rw-pdp-gallery .flex-control-thumbs li img.flex-active,
.rw-pdp-gallery .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: var(--rw-color-primary);
}

.rw-pdp-gallery .flex-direction-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: var(--rw-font-size-xl);
}

.rw-pdp-gallery__counter {
  position: absolute;
  bottom: var(--rw-space-4);
  left: var(--rw-space-4);
  z-index: 3;
  padding: var(--rw-space-1) var(--rw-space-3);
  border-radius: var(--rw-radius-sm);
  background: rgba(255, 255, 255, 0.92);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
}

@media (min-width: 768px) {
  .rw-pdp-gallery__counter {
    left: calc(72px + var(--rw-space-6));
  }
}
.rw-pdp-gallery .onsale {
  display: none;
}

/* Meta */
.rw-pdp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-2) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-meta__brand {
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rw-pdp-meta__origin,
.rw-pdp-meta__sku {
  color: var(--rw-color-text-muted);
}

/* Header */
.rw-pdp-header__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-primary);
  margin: 0;
}

.rw-pdp-header__subtitle {
  margin: var(--rw-space-3) 0 0;
  color: var(--rw-color-text-muted);
  line-height: var(--rw-line-height-relaxed);
}

.rw-pdp-header__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
  margin-top: var(--rw-space-4);
}

/* Custom PDP rating */
.rw-pdp-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
  margin-top: var(--rw-space-4);
}

.rw-pdp-rating__stars {
  position: relative;
  display: inline-flex;
  width: 90px;
  height: 18px;
  flex: 0 0 auto;
}

.rw-pdp-rating__stars-empty,
.rw-pdp-rating__stars-filled {
  display: inline-flex;
  gap: 0;
  line-height: 0;
}

.rw-pdp-rating__stars-empty {
  color: var(--rw-color-border);
}

.rw-pdp-rating__stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--rw-rating, 0) / 5 * 100%);
  color: var(--rw-color-accent);
}

.rw-pdp-rating__stars svg {
  width: 18px;
  height: 18px;
}

.rw-pdp-rating__score {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-pdp-rating__count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rw-pdp-rating__count:hover {
  color: var(--rw-color-brand-hover);
}

/* Pricing */
.rw-pdp-pricing__price {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-primary);
}

.rw-pdp-pricing__price del {
  font-size: var(--rw-font-size-lg);
  color: var(--rw-color-text-muted);
}

.rw-pdp-pricing__price ins {
  text-decoration: none;
  color: var(--rw-color-sale);
}

.rw-pdp-pricing__excl {
  margin: var(--rw-space-2) 0 0;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-pricing__excl-prefix {
  margin-right: var(--rw-space-1);
}

.rw-pdp-pricing__excl-amount {
  font-weight: var(--rw-font-weight-medium);
}

.rw-pdp-pricing__vat-note {
  display: block;
  margin-top: var(--rw-space-1);
}

.rw-pdp-pricing__tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rw-space-3);
  margin-top: var(--rw-space-5);
}

.rw-pdp-tier-card {
  padding: var(--rw-space-4);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  text-align: center;
}

.rw-pdp-tier-card.is-selected {
  border-color: var(--rw-color-brand);
  box-shadow: inset 0 0 0 1px var(--rw-color-brand);
}

.rw-pdp-tier-card__label {
  display: block;
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  text-transform: uppercase;
  color: var(--rw-color-text-muted);
}

.rw-pdp-tier-card__price {
  display: block;
  margin-top: var(--rw-space-2);
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-primary);
}

/* Variations */
.rw-pdp-variations {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-5);
}

.rw-pdp-variation-group__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--rw-space-4);
  margin-bottom: var(--rw-space-3);
}

.rw-pdp-variation-group__label {
  margin: 0;
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rw-color-text-muted);
}

.rw-pdp-variation-group__value {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-primary);
}

.rw-pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-3);
}

.rw-pdp-swatches--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rw-pdp-swatch {
  position: relative;
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  color: var(--rw-color-text);
  cursor: pointer;
  transition: border-color var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-pdp-swatch--card {
  min-height: 72px;
  padding: var(--rw-space-4);
  font-weight: var(--rw-font-weight-semibold);
}

.rw-pdp-swatch--pill {
  min-height: 44px;
  padding: var(--rw-space-3) var(--rw-space-5);
  font-weight: var(--rw-font-weight-medium);
}

.rw-pdp-swatch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-3);
  width: 100%;
}

.rw-pdp-swatch--card .rw-pdp-swatch__inner {
  flex-direction: column;
  align-items: flex-start;
}

.rw-pdp-swatch__label {
  font-weight: inherit;
}

.rw-pdp-swatch__price-diff {
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-normal);
  color: var(--rw-color-text-muted);
  white-space: nowrap;
}

.rw-pdp-swatch__price-diff[hidden] {
  display: none;
}

.rw-pdp-swatch.is-selected {
  border-color: var(--rw-color-brand);
  box-shadow: inset 0 0 0 1px var(--rw-color-brand);
}

.rw-pdp-swatch__badge {
  position: absolute;
  top: calc(-1 * var(--rw-space-2));
  right: var(--rw-space-2);
  padding: 0 var(--rw-space-2);
  border-radius: var(--rw-radius-sm);
  background: var(--rw-color-brand);
  color: var(--rw-color-text-inverse);
  font-size: 0.625rem;
  font-weight: var(--rw-font-weight-bold);
  text-transform: uppercase;
}

/* Purchase */
.rw-pdp-purchase__status {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-2);
}

.rw-pdp-purchase__stock-card,
.rw-pdp-purchase__cutoff-card {
  display: flex;
  align-items: flex-start;
  gap: var(--rw-space-3);
  padding: var(--rw-space-4) var(--rw-space-5);
  border-radius: var(--rw-radius-md);
}

.rw-pdp-purchase__stock-card {
  border: 1px solid var(--rw-color-border-light);
  background: var(--rw-color-bg);
}

.rw-pdp-purchase__stock-card.in-stock {
  color: var(--rw-color-success);
}

.rw-pdp-purchase__stock-card.out-of-stock {
  color: var(--rw-color-error);
}

.rw-pdp-purchase__stock-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: currentColor;
}

.rw-pdp-purchase__stock-text,
.rw-pdp-purchase__cutoff-text {
  font-size: var(--rw-font-size-sm);
  line-height: var(--rw-line-height-relaxed);
}

.rw-pdp-purchase__stock-label {
  font-weight: var(--rw-font-weight-semibold);
  color: inherit;
}

.rw-pdp-purchase__stock-detail {
  color: var(--rw-color-text-muted);
}

.rw-pdp-purchase__cutoff-card {
  border: 1px solid rgba(0, 68, 241, 0.12);
  background: rgba(0, 68, 241, 0.08);
  color: var(--rw-color-primary);
}

.rw-pdp-purchase__cutoff-icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 0.1rem;
  color: var(--rw-color-brand);
}

.rw-pdp-purchase__cutoff-text strong {
  font-weight: var(--rw-font-weight-semibold);
}

.rw-pdp-purchase__cutoff-text span {
  color: var(--rw-color-text-muted);
}

.rw-pdp-purchase__cart {
  display: flex;
  align-items: stretch;
  gap: var(--rw-space-3);
}

.rw-pdp-purchase__cart form,
.rw-pdp-variations-form,
.rw-pdp-simple-form {
  flex: 1;
  min-width: 0;
}

.rw-pdp-add-to-cart,
.rw-pdp-variation-wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--rw-space-3);
  width: 100%;
}

.rw-pdp-qty {
  display: inline-flex;
  flex: 0 0 120px;
  align-items: stretch;
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  overflow: hidden;
  background: var(--rw-color-bg);
}

.rw-pdp-qty .quantity {
  display: contents;
}

.rw-pdp-qty .quantity label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rw-pdp-qty__btn {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--rw-color-bg-alt);
  color: var(--rw-color-text);
  font-size: var(--rw-font-size-lg);
  line-height: 1;
  cursor: pointer;
  transition: background var(--rw-transition);
}

.rw-pdp-qty__btn:hover {
  background: var(--rw-color-border-light);
}

.rw-pdp-qty input.qty {
  width: 40px;
  min-height: 52px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--rw-color-border-light);
  border-right: 1px solid var(--rw-color-border-light);
  border-radius: 0;
  text-align: center;
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  -moz-appearance: textfield;
}

.rw-pdp-qty input.qty::-webkit-outer-spin-button,
.rw-pdp-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.rw-pdp-add-to-cart__button {
  display: inline-flex !important;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-4);
  min-height: 52px;
  padding: var(--rw-space-3) var(--rw-space-5) !important;
  background: var(--rw-color-primary) !important;
  border-color: var(--rw-color-primary) !important;
}

.rw-pdp-add-to-cart__button:hover {
  background: var(--rw-color-primary-dark, #002244) !important;
  border-color: var(--rw-color-primary-dark, #002244) !important;
}

.rw-pdp-add-to-cart__label {
  font-weight: var(--rw-font-weight-semibold);
}

.rw-pdp-add-to-cart__price {
  font-weight: var(--rw-font-weight-bold);
}

.rw-pdp-purchase__wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  min-height: 52px;
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  color: var(--rw-color-text-muted);
  text-decoration: none;
  transition: color var(--rw-transition), border-color var(--rw-transition);
}

.rw-pdp-purchase__wishlist:hover {
  color: var(--rw-color-brand);
  border-color: var(--rw-color-brand);
}

.rw-pdp-shipping-progress {
  margin-top: var(--rw-space-2);
}

.rw-pdp-shipping-progress__text {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-shipping-progress__bar {
  height: 6px;
  border-radius: var(--rw-radius-full);
  background: var(--rw-color-border-light);
  overflow: hidden;
}

.rw-pdp-shipping-progress__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--rw-color-brand);
}

/* Delivery cards */
.rw-pdp-delivery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rw-space-4);
}

@media (min-width: 768px) {
  .rw-pdp-delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.rw-pdp-delivery-card {
  display: flex;
  gap: var(--rw-space-4);
  padding: var(--rw-space-5);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg-alt);
}

.rw-pdp-delivery-card__icon {
  flex: 0 0 auto;
  color: var(--rw-color-brand);
}

.rw-pdp-delivery-card__title {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-base);
}

.rw-pdp-delivery-card__text {
  margin: 0;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  line-height: var(--rw-line-height-relaxed);
}

/* Features */
.rw-pdp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rw-space-4);
}

.rw-pdp-feature {
  display: flex;
  align-items: center;
  gap: var(--rw-space-3);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-feature__icon {
  flex: 0 0 auto;
  color: var(--rw-color-brand);
}

/* Sticky bar */
.rw-pdp-sticky-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 180;
  border-top: 1px solid var(--rw-color-border-light);
  background: var(--rw-color-bg);
  box-shadow: var(--rw-shadow-md);
}

.rw-pdp-sticky-bar[hidden] {
  display: none !important;
}

.rw-pdp-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-4);
  min-height: 72px;
  padding-top: var(--rw-space-3);
  padding-bottom: var(--rw-space-3);
}

.rw-pdp-sticky-bar__product {
  display: flex;
  align-items: center;
  gap: var(--rw-space-4);
  min-width: 0;
  flex: 1;
}

.rw-pdp-sticky-bar__thumb {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: var(--rw-radius-sm);
  object-fit: cover;
}

.rw-pdp-sticky-bar__info {
  min-width: 0;
}

.rw-pdp-sticky-bar__title {
  margin: 0;
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rw-pdp-sticky-bar__config {
  margin: var(--rw-space-1) 0 0;
  font-size: var(--rw-font-size-xs);
  color: var(--rw-color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rw-pdp-sticky-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--rw-space-4);
  flex-shrink: 0;
}

.rw-pdp-sticky-bar__price {
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-primary);
  white-space: nowrap;
}

.rw-pdp-sticky-bar__submit {
  display: inline-flex !important;
  align-items: center;
  gap: var(--rw-space-2);
  min-height: 48px;
  white-space: nowrap;
}

body.rw-product-page.rw-pdp-sticky-visible {
  padding-bottom: 88px;
}

@media (max-width: 767px) {
  .rw-pdp-pricing__tiers,
  .rw-pdp-swatches--cards {
    grid-template-columns: 1fr;
  }
  .rw-pdp-purchase__cart {
    flex-direction: column;
  }
  .rw-pdp-add-to-cart,
  .rw-pdp-variation-wrap .woocommerce-variation-add-to-cart {
    flex-direction: column;
  }
  .rw-pdp-qty {
    flex: 1 1 auto;
    width: 100%;
  }
  .rw-pdp-qty input.qty {
    flex: 1;
    width: auto;
  }
  .rw-pdp-add-to-cart__button,
  .rw-pdp-purchase__wishlist {
    width: 100%;
  }
  .rw-pdp-sticky-bar__config,
  .rw-pdp-sticky-bar__title {
    display: none;
  }
  .rw-pdp-sticky-bar__product {
    flex: 0 0 auto;
  }
}
/* Tabs (PDP-specific extensions) */
.rw-pdp-tab-about {
  display: grid;
  gap: var(--rw-space-8);
}

@media (min-width: 1024px) {
  .rw-pdp-tab-about {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.rw-pdp-tab-about__secondary h3 {
  margin-top: 0;
  font-size: var(--rw-font-size-lg);
}

.rw-pdp-tab-about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rw-pdp-tab-about__list li + li {
  margin-top: var(--rw-space-5);
}

.rw-pdp-tab-about__list p {
  margin: var(--rw-space-2) 0 0;
  color: var(--rw-color-text-muted);
  line-height: var(--rw-line-height-relaxed);
}

.rw-pdp-tab-inbox ul,
.rw-pdp-tab-downloads ul {
  margin: 0;
  padding-left: var(--rw-space-5);
}

.rw-pdp-tab-downloads a {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-pdp-tab-downloads a:hover {
  text-decoration: underline;
}

.rw-pdp-tab-specs {
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  overflow: hidden;
}

.rw-pdp-specs-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.rw-pdp-specs-table tbody tr {
  border-bottom: 1px solid var(--rw-color-border-light);
}

.rw-pdp-specs-table tbody tr:last-child {
  border-bottom: none;
}

.rw-pdp-specs-table th,
.rw-pdp-specs-table td {
  padding: var(--rw-space-4) var(--rw-space-5);
  text-align: left;
  vertical-align: top;
  font-size: var(--rw-font-size-base);
  line-height: var(--rw-line-height-relaxed);
  border: none;
}

.rw-pdp-specs-table th {
  width: 38%;
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
  background: var(--rw-color-bg-alt);
}

.rw-pdp-specs-table td {
  color: var(--rw-color-text);
  background: var(--rw-color-bg);
}

.rw-pdp-specs-table td p {
  margin: 0;
}

.rw-pdp-specs-table td a {
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-pdp-specs-table td a:hover {
  text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: var(--rw-space-12);
  clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-2);
  list-style: none;
  margin: 0 0 var(--rw-space-6);
  padding: 0;
  border-bottom: 2px solid var(--rw-color-border-light);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: var(--rw-space-4) var(--rw-space-6);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--rw-color-primary);
  border-bottom-color: var(--rw-color-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a .rw-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  margin-left: var(--rw-space-2);
  padding: 0.125rem var(--rw-space-2);
  border-radius: var(--rw-radius-full);
  background: var(--rw-color-bg-alt);
  color: var(--rw-color-text-muted);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-medium);
  line-height: 1.2;
  vertical-align: middle;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: var(--rw-space-6) 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: var(--rw-font-size-lg);
}

@media (max-width: 767px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
    border-bottom: 1px solid var(--rw-color-border-light);
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: var(--rw-space-4);
    margin-bottom: 0;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    border-left-color: var(--rw-color-primary);
    background: var(--rw-color-bg-alt);
  }
  .woocommerce div.product .woocommerce-tabs .panel {
    padding: var(--rw-space-5) var(--rw-space-4);
    border: 1px solid var(--rw-color-border-light);
    border-radius: var(--rw-radius-md);
    margin-top: var(--rw-space-4);
  }
}
/* Related products */
.woocommerce .related.products,
.woocommerce .upsells.products {
  margin-top: var(--rw-space-16);
  padding-top: var(--rw-space-12);
  border-top: 1px solid var(--rw-color-border-light);
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  text-align: center;
  margin-bottom: var(--rw-space-8);
}

.star-rating {
  color: var(--rw-color-warning);
}

/* Reviews tab */
.rw-star-rating {
  position: relative;
  display: inline-flex;
  width: calc(var(--rw-star-size, 16px) * 5);
  height: var(--rw-star-size, 16px);
  flex: 0 0 auto;
}

.rw-star-rating__empty,
.rw-star-rating__filled {
  display: inline-flex;
  gap: 0;
  line-height: 0;
}

.rw-star-rating__empty {
  color: var(--rw-color-border);
}

.rw-star-rating__filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: calc(var(--rw-rating, 0) / 5 * 100%);
  color: var(--rw-color-warning);
}

.rw-star-rating svg {
  width: var(--rw-star-size, 16px);
  height: var(--rw-star-size, 16px);
}

.rw-pdp-reviews__grid {
  display: grid;
  gap: var(--rw-space-8);
}

@media (min-width: 768px) {
  .rw-pdp-reviews__grid {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: var(--rw-space-10);
    align-items: start;
  }
}
.rw-pdp-reviews__summary {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-4);
}

.rw-pdp-reviews__score {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-primary);
}

.rw-pdp-reviews__score-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
}

.rw-pdp-reviews__count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-reviews__distribution {
  list-style: none;
  margin: var(--rw-space-2) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-2);
}

.rw-pdp-reviews__distribution-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2rem;
  align-items: center;
  gap: var(--rw-space-3);
}

.rw-pdp-reviews__distribution-label {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-1);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  white-space: nowrap;
}

.rw-pdp-reviews__distribution-bar {
  display: block;
  height: 8px;
  border-radius: var(--rw-radius-full);
  background: var(--rw-color-bg-alt);
  overflow: hidden;
}

.rw-pdp-reviews__distribution-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--rw-color-brand);
}

.rw-pdp-reviews__distribution-count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  text-align: right;
}

.rw-pdp-reviews__list .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-pdp-review-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--rw-color-border-light);
}

.rw-pdp-review-item:first-child .rw-pdp-review {
  padding-top: 0;
}

.rw-pdp-review {
  padding: var(--rw-space-6) 0;
}

.rw-pdp-review__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-3);
}

.rw-pdp-review__author-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--rw-space-2);
  min-width: 0;
}

.rw-pdp-review__author {
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-primary);
}

.rw-pdp-review__subtitle {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-review__separator {
  color: var(--rw-color-text-muted);
}

.rw-pdp-review__body {
  margin: 0;
  font-size: var(--rw-font-size-base);
  line-height: var(--rw-line-height-relaxed);
  color: var(--rw-color-text);
}

.rw-pdp-review__body p {
  margin: 0;
}

.rw-pdp-review__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-2);
  margin-top: var(--rw-space-3);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-pdp-review__verified {
  color: var(--rw-color-text-muted);
}

.rw-pdp-reviews__empty,
.rw-pdp-review__pending {
  margin: 0;
  color: var(--rw-color-text-muted);
}

.rw-pdp-reviews__form {
  margin-top: var(--rw-space-10);
  padding-top: var(--rw-space-8);
  border-top: 1px solid var(--rw-color-border-light);
}

.rw-pdp-reviews__form .comment-reply-title {
  display: block;
  margin-bottom: var(--rw-space-5);
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-primary);
}

.rw-pdp-reviews__form .comment-form-author,
.rw-pdp-reviews__form .comment-form-email,
.rw-pdp-reviews__form .comment-form-rating,
.rw-pdp-reviews__form .comment-form-comment {
  margin-bottom: var(--rw-space-4);
}

.rw-pdp-reviews__form label {
  display: block;
  margin-bottom: var(--rw-space-2);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
}

.rw-pdp-reviews__form input[type=text],
.rw-pdp-reviews__form input[type=email],
.rw-pdp-reviews__form select,
.rw-pdp-reviews__form textarea {
  width: 100%;
  max-width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  color: var(--rw-color-text);
  font: inherit;
}

.rw-pdp-reviews__form .form-submit {
  margin-top: var(--rw-space-5);
}

.rw-pdp-reviews__form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--rw-space-3) var(--rw-space-6);
  border: none;
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-brand);
  color: var(--rw-color-text-inverse);
  font-weight: var(--rw-font-weight-semibold);
  cursor: pointer;
}

.rw-pdp-reviews__form .submit:hover {
  background: var(--rw-color-brand-hover);
}

.rw-pdp-reviews__verification {
  margin-top: var(--rw-space-8);
  color: var(--rw-color-text-muted);
}

.woocommerce-variation-price {
  display: none;
}

.woocommerce-variation-availability {
  display: none;
}

/**
 * Cart, checkout, and my account pages
 */
.rw-page-header {
  padding-top: var(--rw-space-8);
  padding-bottom: var(--rw-space-6);
  background: var(--rw-color-bg-alt);
  border-bottom: 1px solid var(--rw-color-border-light);
  margin-bottom: var(--rw-space-8);
}

.rw-page-header .entry-title {
  margin: 0;
  font-size: var(--rw-font-size-2xl);
}

.rw-account-page,
.rw-cart-page,
.rw-checkout-page {
  padding-bottom: var(--rw-space-16);
}

/* Cart table */
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--rw-space-8);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: var(--rw-space-4);
  border-bottom: 1px solid var(--rw-color-border-light);
  text-align: left;
}

.woocommerce-cart table.shop_table th {
  font-weight: var(--rw-font-weight-semibold);
  background: var(--rw-color-bg-alt);
}

.woocommerce-cart .product-thumbnail img {
  max-width: 80px;
  border-radius: var(--rw-radius-sm);
}

.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-6);
}

.woocommerce-cart .coupon input[type=text] {
  flex: 1;
  min-width: 200px;
  padding: var(--rw-space-3);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
}

.woocommerce-cart .cart-collaterals {
  background: var(--rw-color-bg-alt);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-lg);
  padding: var(--rw-space-6);
}

.woocommerce-cart .cart_totals h2 {
  font-size: var(--rw-font-size-lg);
  margin-bottom: var(--rw-space-4);
}

.woocommerce-cart .actions .button {
  min-height: 44px;
}

.woocommerce-cart .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-size: var(--rw-font-size-xl);
  line-height: 1;
  text-decoration: none;
  color: var(--rw-color-text-muted);
}

.woocommerce-cart .product-quantity .qty {
  min-width: 64px;
  min-height: 44px;
  padding: var(--rw-space-2) var(--rw-space-3);
  text-align: center;
}

@media (max-width: 767px) {
  .woocommerce-cart table.shop_table {
    border: none;
  }
  .woocommerce-cart table.shop_table thead {
    display: none;
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item {
    display: block;
    border: 1px solid var(--rw-color-border-light);
    border-radius: var(--rw-radius-lg);
    margin-bottom: var(--rw-space-4);
    padding: var(--rw-space-4);
    background: var(--rw-color-bg);
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--rw-space-3);
    border: none;
    padding: var(--rw-space-3) 0;
    text-align: right;
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item td::before {
    content: attr(data-title);
    font-weight: var(--rw-font-weight-semibold);
    font-size: var(--rw-font-size-sm);
    color: var(--rw-color-text-muted);
    text-align: left;
    flex: 1;
  }
  .woocommerce-cart table.shop_table td.product-remove {
    justify-content: flex-end;
    padding-top: 0;
  }
  .woocommerce-cart table.shop_table td.product-remove::before {
    display: none;
  }
  .woocommerce-cart table.shop_table td.product-thumbnail,
  .woocommerce-cart table.shop_table td.product-name {
    display: block;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce-cart table.shop_table td.product-thumbnail::before,
  .woocommerce-cart table.shop_table td.product-name::before {
    display: none;
  }
  .woocommerce-cart table.shop_table td.product-thumbnail {
    padding-bottom: var(--rw-space-2);
  }
  .woocommerce-cart table.shop_table td.product-thumbnail img {
    max-width: 120px;
  }
  .woocommerce-cart table.shop_table td.product-name {
    font-weight: var(--rw-font-weight-semibold);
    padding-bottom: var(--rw-space-3);
    border-bottom: 1px solid var(--rw-color-border-light);
    margin-bottom: var(--rw-space-2);
  }
  .woocommerce-cart table.shop_table tr:not(.cart_item) td {
    display: block;
    border: none;
    padding: var(--rw-space-3) 0;
  }
  .woocommerce-cart table.shop_table tr:not(.cart_item) td::before {
    display: none;
  }
  .woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce-cart .coupon input[type=text] {
    min-width: 0;
    width: 100%;
  }
  .woocommerce-cart .coupon .button,
  .woocommerce-cart .actions .button {
    width: 100%;
  }
  .woocommerce-cart .cart-collaterals {
    margin-top: var(--rw-space-6);
  }
}
/* Checkout order review table — mobile card layout */
@media (max-width: 767px) {
  .woocommerce-checkout #order_review .shop_table thead {
    display: none;
  }
  .woocommerce-checkout #order_review .shop_table tbody tr {
    display: block;
    border-bottom: 1px solid var(--rw-color-border-light);
    padding: var(--rw-space-3) 0;
  }
  .woocommerce-checkout #order_review .shop_table tbody tr td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--rw-space-3);
    border: none;
    padding: var(--rw-space-2) 0;
    text-align: right;
  }
  .woocommerce-checkout #order_review .shop_table tbody tr td::before {
    content: attr(data-title);
    font-weight: var(--rw-font-weight-semibold);
    font-size: var(--rw-font-size-sm);
    color: var(--rw-color-text-muted);
    text-align: left;
    flex: 1;
  }
  .woocommerce-checkout #order_review .shop_table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--rw-space-3);
    padding: var(--rw-space-3) 0;
    border-bottom: 1px solid var(--rw-color-border-light);
  }
  .woocommerce-checkout #order_review .shop_table tfoot tr th,
  .woocommerce-checkout #order_review .shop_table tfoot tr td {
    border: none;
    padding: 0;
    background: none;
  }
}
/* Checkout */
.woocommerce-checkout .col2-set {
  display: grid;
  gap: var(--rw-space-8);
  margin-bottom: var(--rw-space-8);
}

@media (min-width: 1024px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr 1fr;
  }
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-size: var(--rw-font-size-lg);
  margin-bottom: var(--rw-space-4);
}

.woocommerce-checkout .form-row {
  margin-bottom: var(--rw-space-4);
}

.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: var(--rw-space-2);
  font-weight: var(--rw-font-weight-medium);
  font-size: var(--rw-font-size-sm);
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  background: var(--rw-color-bg);
}

.woocommerce-checkout #order_review {
  background: var(--rw-color-bg-alt);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-lg);
  padding: var(--rw-space-6);
}

.woocommerce-checkout #payment {
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  padding: var(--rw-space-4);
  margin-top: var(--rw-space-6);
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: var(--rw-space-3);
}

.woocommerce-checkout #payment ul.payment_methods li input {
  min-width: 20px;
  min-height: 20px;
  margin-right: var(--rw-space-3);
  vertical-align: middle;
}

.woocommerce-checkout #payment .payment_box {
  margin-top: var(--rw-space-3);
}

.woocommerce-checkout #payment .payment_box iframe {
  max-width: 100%;
}

.woocommerce-checkout #place_order {
  min-height: 48px;
}

@media (max-width: 767px) {
  .woocommerce-checkout .col2-set {
    gap: var(--rw-space-6);
    margin-bottom: var(--rw-space-6);
  }
  .woocommerce-checkout #order_review {
    padding: var(--rw-space-4);
  }
  .woocommerce-checkout #payment {
    padding: var(--rw-space-3);
  }
  .woocommerce-checkout #place_order {
    width: 100%;
  }
}
/* Block checkout/cart compatibility */
.wc-block-cart,
.wc-block-checkout {
  max-width: var(--rw-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--rw-space-4);
  padding-right: var(--rw-space-4);
}

.wc-block-components-button:not(.is-link) {
  background-color: var(--rw-color-primary) !important;
  border-radius: var(--rw-radius-md) !important;
}

/**
 * My Account login / register (logged-out view)
 */
.rw-login-page .woocommerce > .woocommerce-notices-wrapper:first-child {
  max-width: var(--rw-container-narrow);
  margin: 0 auto var(--rw-space-6);
  padding: 0 var(--rw-space-4);
}

.rw-login {
  padding: var(--rw-space-10) 0 var(--rw-space-16);
}

.rw-login__container {
  max-width: var(--rw-container-narrow);
  margin: 0 auto;
  padding: 0 var(--rw-space-4);
}

.rw-login__header {
  margin-bottom: var(--rw-space-8);
  text-align: center;
}

.rw-login__title {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-2xl);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text);
}

.rw-login__subtitle {
  margin: 0;
  font-size: var(--rw-font-size-base);
  color: var(--rw-color-text-muted);
}

.rw-login-form {
  margin-bottom: var(--rw-space-8);
}

.rw-login-form__field {
  margin-bottom: var(--rw-space-5);
}

.rw-login-form__field label {
  display: block;
  margin-bottom: var(--rw-space-2);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text);
}

.rw-login-form__field .required {
  color: var(--rw-color-error);
}

.rw-login-form__field .input-text {
  width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  background: var(--rw-color-bg-alt);
  color: var(--rw-color-text);
  transition: border-color var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-login-form__field .input-text::placeholder {
  color: var(--rw-color-text-muted);
}

.rw-login-form__field .input-text:focus {
  outline: none;
  border-color: var(--rw-color-brand);
  box-shadow: 0 0 0 3px rgba(0, 68, 241, 0.12);
  background: var(--rw-color-bg);
}

.rw-login-form__input-wrap {
  position: relative;
  display: block;
}

.rw-login-form__input-wrap .input-text {
  padding-right: calc(var(--rw-space-4) + 2.5rem);
}

.rw-login-form__toggle-password {
  position: absolute;
  top: 50%;
  right: var(--rw-space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: var(--rw-radius-md);
  background: transparent;
  color: var(--rw-color-text-muted);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--rw-transition), background-color var(--rw-transition);
}

.rw-login-form__toggle-password:hover,
.rw-login-form__toggle-password:focus-visible {
  color: var(--rw-color-text);
  background: var(--rw-color-primary-light);
}

.rw-login-form__toggle-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.rw-login-form__toggle-icon--hide {
  display: none;
}

.rw-login-form__toggle-password[aria-pressed=true] .rw-login-form__toggle-icon--show {
  display: none;
}

.rw-login-form__toggle-password[aria-pressed=true] .rw-login-form__toggle-icon--hide {
  display: block;
}

.rw-login-form__hint {
  display: block;
  margin-top: var(--rw-space-2);
  font-size: var(--rw-font-size-xs);
  color: var(--rw-color-text-muted);
  line-height: var(--rw-line-height-base);
}

.rw-login-form__hint--standalone {
  margin-bottom: var(--rw-space-5);
}

.rw-login-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-4);
  margin-bottom: var(--rw-space-6);
}

.rw-login-form__remember {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  margin: 0;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text);
  cursor: pointer;
}

.rw-login-form__remember input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--rw-color-primary);
}

.rw-login-form__lost-password {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-brand);
  text-decoration: none;
  white-space: nowrap;
}

.rw-login-form__lost-password:hover {
  color: var(--rw-color-brand-hover);
  text-decoration: underline;
}

.rw-login-form__submit {
  margin: 0;
}

.rw-login-social {
  margin-bottom: var(--rw-space-8);
}

.rw-login-social__divider {
  display: flex;
  align-items: center;
  gap: var(--rw-space-4);
  margin: 0 0 var(--rw-space-5);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-login-social__divider::before,
.rw-login-social__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rw-color-border-light);
}

.rw-login-social__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--rw-space-3);
}

.rw-login-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rw-space-2);
  min-height: 48px;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border-strong);
  border-radius: var(--rw-radius-md);
  background: var(--rw-color-bg);
  color: var(--rw-color-text);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  text-decoration: none;
  transition: background-color var(--rw-transition), border-color var(--rw-transition), transform var(--rw-transition);
}

.rw-login-social__btn:hover {
  background: var(--rw-color-bg-alt);
  border-color: var(--rw-color-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.rw-login-social__icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.rw-login__footer {
  margin: 0;
  text-align: center;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-login__footer a {
  margin-left: var(--rw-space-1);
  color: var(--rw-color-brand);
  font-weight: var(--rw-font-weight-semibold);
  text-decoration: none;
}

.rw-login__footer a:hover {
  color: var(--rw-color-brand-hover);
  text-decoration: underline;
}

.rw-login--register {
  display: none;
}

.rw-login-page:has(#customer-register:target) #customer-login {
  display: none;
}

.rw-login-page:has(#customer-register:target) .rw-login--register {
  display: block;
}

@media (max-width: 767px) {
  .rw-login {
    padding-top: var(--rw-space-8);
    padding-bottom: var(--rw-space-12);
  }
  .rw-login__title {
    font-size: var(--rw-font-size-xl);
  }
  .rw-login-form__options {
    flex-direction: column;
    align-items: flex-start;
  }
  .rw-login-social__buttons {
    grid-template-columns: 1fr;
  }
}
/**
 * My Account dashboard (logged-in view)
 */
.rw-account-page:not(.rw-login-page) .woocommerce > .woocommerce-notices-wrapper:first-child {
  max-width: var(--rw-container-max);
  margin: 0 auto var(--rw-space-6);
  padding: 0 var(--rw-space-4);
}

.rw-account {
  padding: var(--rw-space-10) 0 var(--rw-space-16);
}

.rw-account__layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: var(--rw-space-10);
  align-items: start;
}

/* Sidebar */
.rw-account-sidebar {
  position: sticky;
  top: calc(var(--rw-header-height, 72px) + var(--rw-space-6));
}

.rw-account-sidebar__brand {
  display: flex;
  align-items: center;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-6);
  padding: var(--rw-space-3) var(--rw-space-4);
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-text);
  text-decoration: none;
  border-radius: var(--rw-radius-md);
}

.rw-account-sidebar__brand:hover,
.rw-account-sidebar__brand.is-active {
  color: var(--rw-color-primary);
  background: var(--rw-color-primary-light);
  text-decoration: none;
}

.rw-account-sidebar__brand-icon svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.rw-account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-account-nav li + li {
  margin-top: var(--rw-space-1);
}

.rw-account-nav a {
  display: flex;
  align-items: center;
  gap: var(--rw-space-3);
  padding: var(--rw-space-3) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
  color: var(--rw-color-text-muted);
  text-decoration: none;
  border-radius: var(--rw-radius-md);
  transition: color var(--rw-transition), background-color var(--rw-transition);
}

.rw-account-nav a:hover,
.rw-account-nav li.is-active a {
  color: var(--rw-color-primary);
  background: var(--rw-color-primary-light);
  text-decoration: none;
}

.rw-account-nav__icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.rw-account-nav__item--logout {
  margin-top: var(--rw-space-4);
  padding-top: var(--rw-space-4);
  border-top: 1px solid var(--rw-color-border-light);
}

/* Main content */
.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
}

.rw-account-dashboard__hero {
  margin-bottom: var(--rw-space-10);
}

.rw-account-dashboard__greeting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rw-space-3);
  margin-bottom: var(--rw-space-3);
}

.rw-account-dashboard__title {
  margin: 0;
  font-size: var(--rw-font-size-2xl);
  font-weight: var(--rw-font-weight-bold);
  line-height: var(--rw-line-height-tight);
  color: var(--rw-color-text);
}

.rw-account-dashboard__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--rw-space-1) var(--rw-space-3);
  font-size: var(--rw-font-size-xs);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text-muted);
  background: var(--rw-color-bg-alt);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-full, 999px);
}

.rw-account-dashboard__intro {
  margin: 0;
  font-size: var(--rw-font-size-base);
  color: var(--rw-color-text-muted);
}

.rw-account-section + .rw-account-section {
  margin-top: var(--rw-space-10);
}

.rw-account-section__title {
  margin: 0 0 var(--rw-space-5);
  font-size: var(--rw-font-size-lg);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-text);
}

.rw-account-section__footer {
  margin: var(--rw-space-5) 0 0;
}

.rw-account-link {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-space-2);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-brand);
  text-decoration: none;
}

.rw-account-link:hover {
  color: var(--rw-color-brand-hover);
  text-decoration: underline;
}

.rw-account-link svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.rw-account-empty {
  margin: 0;
  padding: var(--rw-space-5);
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  background: var(--rw-color-bg-alt);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
}

/* Orders list */
.rw-account-orders {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-account-orders__item + .rw-account-orders__item {
  margin-top: var(--rw-space-3);
}

.rw-account-orders__link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--rw-space-4);
  padding: var(--rw-space-4);
  color: inherit;
  text-decoration: none;
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  transition: border-color var(--rw-transition), box-shadow var(--rw-transition);
}

.rw-account-orders__link:hover {
  border-color: var(--rw-color-border);
  box-shadow: var(--rw-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
  text-decoration: none;
}

.rw-account-orders__thumb {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  background: var(--rw-color-bg-alt);
  border-radius: var(--rw-radius-sm);
}

.rw-account-orders__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rw-account-orders__meta {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-1);
  min-width: 0;
}

.rw-account-orders__date {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-account-orders__count {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-account-orders__total {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
  white-space: nowrap;
}

.rw-account-orders__chevron svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--rw-color-text-muted);
}

/* Invoices list */
.rw-account-invoices {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-account-invoices__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--rw-space-4);
  padding: var(--rw-space-4);
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
}

.rw-account-invoices__item + .rw-account-invoices__item {
  margin-top: var(--rw-space-3);
}

.rw-account-invoices__meta {
  display: flex;
  flex-direction: column;
  gap: var(--rw-space-1);
}

.rw-account-invoices__date {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-account-invoices__ref {
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
}

.rw-account-invoices__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--rw-space-4);
  margin-left: auto;
}

.rw-account-invoices__total {
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
  white-space: nowrap;
}

.rw-account-invoices__actions .rw-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Details card */
.rw-account-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) auto;
  gap: var(--rw-space-6);
  align-items: center;
  padding: var(--rw-space-5);
  background: var(--rw-color-bg);
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
}

.rw-account-details__company {
  margin: 0;
  font-size: var(--rw-font-size-base);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-text);
}

.rw-account-details__address,
.rw-account-details__channels {
  margin: 0;
  font-size: var(--rw-font-size-sm);
  color: var(--rw-color-text-muted);
  line-height: var(--rw-line-height-relaxed);
}

.rw-account-details__sep {
  margin: 0 var(--rw-space-2);
}

.rw-account-details__action {
  white-space: nowrap;
}

/* Sub-pages (orders table, edit account, etc.) */
.rw-account-panel__header {
  margin-bottom: var(--rw-space-6);
}

.rw-account-panel__title {
  margin: 0 0 var(--rw-space-2);
  font-size: var(--rw-font-size-2xl);
  font-weight: var(--rw-font-weight-bold);
  color: var(--rw-color-text);
}

.rw-account-panel__intro {
  margin: 0;
  font-size: var(--rw-font-size-base);
  color: var(--rw-color-text-muted);
}

.rw-account-wcd__badge {
  display: inline-flex;
  margin-bottom: var(--rw-space-4);
  padding: var(--rw-space-2) var(--rw-space-4);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-semibold);
  color: var(--rw-color-primary);
  background: var(--rw-color-primary-light);
  border-radius: var(--rw-radius-full, 999px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table {
  border-collapse: collapse;
  border: 1px solid var(--rw-color-border-light);
  border-radius: var(--rw-radius-md);
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table td {
  padding: var(--rw-space-3) var(--rw-space-4);
  border-bottom: 1px solid var(--rw-color-border-light);
  font-size: var(--rw-font-size-sm);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table th {
  font-weight: var(--rw-font-weight-semibold);
  text-align: left;
  background: var(--rw-color-bg-alt);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tr:last-child td,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tr:last-child th {
  border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields label {
  display: block;
  margin-bottom: var(--rw-space-2);
  font-size: var(--rw-font-size-sm);
  font-weight: var(--rw-font-weight-medium);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .input-text,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .input-text {
  width: 100%;
  padding: var(--rw-space-3) var(--rw-space-4);
  border: 1px solid var(--rw-color-border);
  border-radius: var(--rw-radius-md);
  font-family: inherit;
  font-size: var(--rw-font-size-base);
  background: var(--rw-color-bg-alt);
}

@media (max-width: 991px) {
  .rw-account__layout {
    grid-template-columns: 1fr;
    gap: var(--rw-space-8);
  }
  .rw-account-sidebar {
    position: static;
  }
  .rw-account-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--rw-space-2);
  }
  .rw-account-nav li + li {
    margin-top: 0;
  }
  .rw-account-nav__item--logout {
    grid-column: 1/-1;
    margin-top: var(--rw-space-2);
    padding-top: var(--rw-space-2);
  }
}
@media (max-width: 767px) {
  .rw-account {
    padding-top: var(--rw-space-8);
    padding-bottom: var(--rw-space-12);
  }
  .rw-account-dashboard__title {
    font-size: var(--rw-font-size-xl);
  }
  .rw-account-orders__link {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "thumb meta chevron" "thumb total chevron";
  }
  .rw-account-orders__thumb {
    grid-area: thumb;
  }
  .rw-account-orders__meta {
    grid-area: meta;
  }
  .rw-account-orders__total {
    grid-area: total;
  }
  .rw-account-orders__chevron {
    grid-area: chevron;
  }
  .rw-account-details {
    grid-template-columns: 1fr;
    gap: var(--rw-space-4);
  }
  .rw-account-details__action {
    justify-self: start;
  }
  .rw-account-invoices__actions {
    width: 100%;
    justify-content: space-between;
  }
  .rw-account-nav ul {
    grid-template-columns: 1fr;
  }
}
