:root {
  --rch-page: #3f3e40;
  --rch-surface: #ffffff;
  --rch-text: #000000;
  --rch-muted: #6e6e6e;
  --rch-border: #e7e7e7;
  --rch-green: #3A8F4A;
  --rch-green-dark: #3b960c;
  --rch-green-darker: #328209;
  --rch-green-darkest: #2d7807;
  --rch-pink: #F28B82;
  --rch-pink-dark: #c72f65;
  --rch-pink-light: #e795b1;
  --rch-blue: #0896e6;
  --rch-red: #cc1314;
  --rch-container: 1170px;
  --rch-gap: 30px;
}

@supports (color: color-mix(in srgb, red, black)) {
  :root {
    --rch-green-dark: color-mix(in srgb, var(--rch-green) 79%, black);
    --rch-green-darker: color-mix(in srgb, var(--rch-green) 68%, black);
    --rch-green-darkest: color-mix(in srgb, var(--rch-green) 63%, black);
    --rch-pink-dark: color-mix(in srgb, var(--rch-pink) 90%, black);
    --rch-pink-light: color-mix(in srgb, var(--rch-pink) 55%, white);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--rch-page);
  color: var(--rch-text);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--rch-blue);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--rch-green);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  appearance: none;
  background: var(--rch-green);
  border: 0;
  border-radius: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  text-transform: uppercase;
  font-weight: 700;
}

button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--rch-pink);
  color: #ffffff;
}

.rch-site {
  min-height: 100vh;
  background: var(--rch-surface);
}

.rch-container {
  width: min(var(--rch-container), calc(100% - 30px));
  margin-inline: auto;
}

.rch-header {
  background: #ffffff;
  color: #000000;
}

.rch-header-main {
  min-height: 149px;
}

.rch-top-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 39px;
  padding-top: 16px;
  color: var(--rch-muted);
  font-size: 12px;
  line-height: 18px;
}

.rch-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.rch-quick-links a {
  color: var(--rch-muted);
  font-weight: 700;
}

.rch-quick-links a::before {
  content: "*";
  display: inline-block;
  margin-right: 8px;
  color: var(--rch-pink);
}

.rch-quick-links a:hover,
.rch-quick-links a:focus,
.rch-top-phone:hover,
.rch-top-phone:focus {
  color: var(--rch-green);
}

.rch-top-phone {
  color: var(--rch-muted);
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rch-phone-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rch-brand-line {
  display: flex;
  align-items: center;
  min-height: 110px;
}

.rch-logo {
  display: block;
  flex: 0 0 300px;
  width: 300px;
}

.rch-logo img {
  display: block;
  max-height: 48px;
  object-fit: contain;
}

.rch-site-slogan {
  margin-left: 8px;
  color: var(--rch-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 57px;
  text-transform: uppercase;
  white-space: nowrap;
}

.rch-search {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 66px;
}

.rch-search input[type="search"] {
  width: 100%;
  height: 40px;
  margin: 13px 0;
  border: 0;
  border-radius: 0;
  color: var(--rch-muted);
  background: #ffffff;
  font-size: 16px;
  line-height: 22px;
  padding: 9px 44px 9px 21px;
}

.rch-search>button {
  position: absolute;
  top: 13px;
  right: 0;
  width: 40px;
  min-width: 0;
  min-height: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  color: #000000;
}

.rch-search>button:hover,
.rch-search>button:focus {
  background: transparent;
  color: var(--rch-blue);
}

.rch-search-icon {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.rch-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.rch-live-search-results {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.rch-live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s;
}

.rch-live-search-item:last-child {
  border-bottom: 0;
}

.rch-live-search-item:hover,
.rch-live-search-item:focus,
.rch-live-search-item.is-active {
  background: #f5f5f5;
  color: #333333;
}

.rch-live-search-thumb {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #fafafa;
}

.rch-live-search-title {
  flex: 1;
  min-width: 0;
}

.rch-live-search-empty {
  padding: 16px 14px;
  color: #999999;
  font-size: 14px;
  text-align: center;
}

.rch-live-search-all {
  position: static;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: auto;
  height: auto;
  padding: 14px;
  border: 0;
  border-top: 1px solid #e0e0e0;
  background: var(--rch-green-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.rch-live-search-all:hover,
.rch-live-search-all:focus {
  background: var(--rch-green-darker);
  color: #ffffff;
}

.rch-cart-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 66px;
  min-height: 66px;
  padding: 0 18px 0 0;
  background: var(--rch-green-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.rch-cart-link:hover,
.rch-cart-link:focus {
  background: var(--rch-green-darkest);
  color: #ffffff;
}

.rch-cart-icon {
  grid-column: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.rch-cart-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.rch-cart-copy {
  grid-column: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.rch-cart-count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: #ffffff;
  color: var(--rch-pink);
}

.rch-nav-wrap {
  min-height: 66px;
  background: var(--rch-green);
  color: #ffffff;
}

.rch-nav-grid {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 770px) 170px;
  gap: 30px;
  align-items: center;
  min-height: 66px;
}

.rch-menu-toggle {
  display: flex;
  width: 100%;
  min-height: 66px;
  height: 66px;
  padding: 0 18px;
  background: var(--rch-pink);
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.rch-menu-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border-top: 4px solid currentColor;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.rch-menu-toggle:hover,
.rch-menu-toggle:focus {
  background: var(--rch-pink-dark);
  color: #ffffff;
}

.rch-catalog-cell {
  position: relative;
  min-width: 0;
}

.rch-primary-navigation {
  position: absolute;
  top: 66px;
  left: 0;
  z-index: 30;
  display: none;
  width: min(var(--rch-container), calc(100vw - 30px));
  min-height: 360px;
  background: #ffffff;
  border: 1px solid var(--rch-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rch-catalog-cell:hover .rch-primary-navigation,
.rch-catalog-cell:focus-within .rch-primary-navigation,
.rch-primary-navigation.is-open {
  display: block;
}

.rch-primary-navigation.is-closed {
  display: none !important;
}

.rch-primary-menu {
  display: block;
  width: 270px;
  min-height: 360px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.rch-menu-root {
  position: static;
}

.rch-primary-menu>li>a,
.rch-menu-root-link {
  position: relative;
  display: block;
  min-height: 0;
  padding: 13px 34px 13px 15px;
  border-bottom: 1px solid var(--rch-border);
  color: #000000;
  font-weight: 400;
  line-height: 18px;
  text-transform: none;
}

.rch-menu-root.has-panel>.rch-menu-root-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.rch-primary-menu>li>a:hover,
.rch-primary-menu>li>a:focus,
.rch-primary-menu>li.current-menu-item>a,
.rch-menu-root.is-active>.rch-menu-root-link,
.rch-menu-root:hover>.rch-menu-root-link,
.rch-menu-root:focus-within>.rch-menu-root-link {
  background: #f7f7f7;
  color: var(--rch-blue);
}

.rch-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  left: 270px;
  display: none;
  min-height: 360px;
  padding: 28px 30px;
  background: #ffffff;
  border-left: 1px solid var(--rch-border);
}

.rch-menu-root.is-active>.rch-menu-panel,
.rch-menu-root:hover>.rch-menu-panel,
.rch-menu-root:focus-within>.rch-menu-panel {
  display: block;
}

.rch-primary-navigation:not(.has-active-root) .rch-primary-menu:not(:hover) .rch-menu-root.has-panel:first-child>.rch-menu-panel {
  display: block;
}

.rch-primary-navigation:not(.has-active-root) .rch-primary-menu:not(:hover) .rch-menu-root.has-panel:first-child>.rch-menu-root-link {
  background: #f7f7f7;
  color: var(--rch-blue);
}

.rch-primary-menu:hover .rch-menu-root.is-active:not(:hover):not(:focus-within)>.rch-menu-panel {
  display: none;
}

.rch-menu-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 28px 24px;
}

.rch-menu-group {
  min-width: 0;
}

.rch-menu-group-media {
  display: block;
  height: 160px;
  margin-bottom: 15px;
  background: #ffffff;
  overflow: hidden;
}

.rch-menu-group-media a,
.rch-menu-group-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.rch-menu-group-media img {
  object-fit: contain;
}

.rch-menu-group-title {
  display: block;
  margin-bottom: 10px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.rch-menu-group-title:hover,
.rch-menu-group-title:focus {
  color: var(--rch-blue);
}

.rch-menu-children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rch-menu-children li+li {
  margin-top: 7px;
}

.rch-menu-children a {
  color: var(--rch-pink);
  font-size: 14px;
  line-height: 18px;
}

.rch-menu-children a:hover,
.rch-menu-children a:focus {
  color: var(--rch-blue);
}

.rch-main {
  background: #ffffff;
  min-height: 420px;
}

.rch-content-layout,
.rch-shop-layout {
  padding: 30px 0 55px;
}

.rch-woo-shell {
  padding: 30px 0 55px;
}

.rch-woo-shell .rch-shop-layout {
  padding: 0;
}

.rch-shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.rch-content {
  max-width: 100%;
}

.rch-entry,
.rch-page-content,
.rch-shop-content {
  color: #000000;
}

.rch-entry-title,
.woocommerce-products-header__title.page-title,
.product_title.entry-title,
.rch-home-intro h1 {
  margin: 0 0 28px;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.single-product .product_title.entry-title {
  color: var(--rch-muted);
}

.rch-entry-content h2,
.rch-home-products h2,
.related.products h2,
.upsells.products h2 {
  margin: 24px 0 16px;
  font-size: 18px;
  line-height: 1.3;
}

.rch-breadcrumb {
  margin: 0 0 25px;
  color: #000000;
  font-size: 12px;
  line-height: 15px;
}

.rch-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rch-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rch-breadcrumb li+li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #b8b8b8;
  border-right: 1px solid #b8b8b8;
  transform: rotate(45deg);
}

.rch-breadcrumb a {
  color: var(--rch-pink);
}

.rch-breadcrumb a:hover,
.rch-breadcrumb a:focus {
  color: var(--rch-blue);
}

.rch-breadcrumb-home {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  color: #000000;
}

.rch-breadcrumb-home::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 9px;
  height: 6px;
  background: currentColor;
}

.rch-breadcrumb-home::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  background: #ffffff;
  transform: rotate(45deg);
}

.rch-breadcrumb-home span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.rch-page-layout .rch-entry-title,
.rch-blog-layout .rch-entry-title {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rch-border);
  margin-bottom: 28px;
}

.rch-page-layout .rch-entry-content,
.rch-blog-layout .rch-entry-content {
  color: #000000;
}

.rch-page-layout .rch-entry-content p,
.rch-page-layout .rch-entry-content div,
.rch-page-layout .rch-entry-content ul,
.rch-page-layout .rch-entry-content ol,
.rch-blog-layout .rch-entry-content p,
.rch-blog-layout .rch-entry-content div,
.rch-blog-layout .rch-entry-content ul,
.rch-blog-layout .rch-entry-content ol {
  margin-top: 0;
  margin-bottom: 14px;
}

.rch-page-layout .rch-entry-content a,
.rch-blog-layout .rch-entry-content a {
  color: var(--rch-pink);
}

.rch-page-layout .rch-entry-content a:hover,
.rch-page-layout .rch-entry-content a:focus,
.rch-blog-layout .rch-entry-content a:hover,
.rch-blog-layout .rch-entry-content a:focus {
  color: var(--rch-blue);
}

.rch-page-layout .rch-entry-content img,
.rch-blog-layout .rch-entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

.rch-contact-page {
  margin-top: 24px;
}

.rch-contact-page h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
}

.rch-contact-panel {
  border: 1px solid var(--rch-border);
  background: #ffffff;
  padding: 20px;
}

.rch-contact-map {
  margin-top: 30px;
  border: 1px solid var(--rch-border);
  background: #ffffff;
  padding: 10px;
}

.rch-contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.rch-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 30px;
}

.rch-contact-logo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.rch-contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #000000;
}

.rch-contact-item address {
  margin: 0;
  font-style: normal;
}

.rch-contact-item a {
  color: var(--rch-pink);
}

.rch-contact-item a:hover,
.rch-contact-item a:focus {
  color: var(--rch-blue);
}

.rch-entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: -14px 0 24px;
  color: var(--rch-muted);
  font-size: 12px;
  line-height: 18px;
}

.rch-entry-meta a,
.rch-entry-meta time {
  color: var(--rch-pink);
}

.rch-post-featured-image {
  width: min(770px, 100%);
  margin: 0 auto 28px;
}

.rch-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.rch-blog-entry .rch-entry-content h2,
.rch-blog-entry .rch-entry-content h3 {
  margin: 24px 0 14px;
  font-size: 18px;
  line-height: 1.3;
}

.rch-blog-entry .rch-entry-content p,
.rch-blog-entry .rch-entry-content li {
  line-height: 1.55;
}

.rch-home-intro {
  padding: 32px 0 0;
}

.rch-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin-bottom: 25px;
  background: #2f2f2f;
  touch-action: pan-y;
}

.rch-home-hero-slides {
  position: absolute;
  inset: 0;
}

.rch-home-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--rch-hero-image);
  background-position: var(--rch-hero-position, center top);
  background-size: cover;
  color: #000000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.rch-home-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.rch-home-hero-slide:hover,
.rch-home-hero-slide:focus {
  color: #000000;
}

.rch-home-hero-slide:focus-visible {
  outline: 3px solid var(--rch-pink);
  outline-offset: -6px;
}

.rch-home-hero-slide-inner {
  position: relative;
  display: block;
  min-height: 330px;
}

.rch-home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 330px;
  pointer-events: none;
}

.rch-home-hero-copy {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: block;
  min-width: 430px;
  max-width: 520px;
  padding: 22px 28px 19px;
  background: rgba(255, 255, 255, 0.72);
  color: #000000;
  pointer-events: none;
}

.rch-home-hero-copy h2 {
  margin: 0 0 2px;
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.rch-home-hero-subtitle {
  display: block;
  color: var(--rch-pink);
  font-size: 14px;
  line-height: 1.35;
}

.rch-home-hero-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 13px;
  padding: 8px 14px;
  background: var(--rch-pink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.rch-home-hero-slide:hover .rch-home-hero-cta,
.rch-home-hero-slide:focus .rch-home-hero-cta {
  background: var(--rch-green);
}

.rch-home-hero-thumbs {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 28px;
  pointer-events: auto;
}

.rch-home-hero-thumbs button {
  display: block;
  width: 150px;
  min-height: 0;
  padding: 0;
  background: #ffffff;
  border: 4px solid #ffffff;
  color: inherit;
  line-height: 0;
  text-transform: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rch-home-hero-thumbs button:hover,
.rch-home-hero-thumbs button:focus {
  background: #ffffff;
  border-color: var(--rch-pink);
  color: inherit;
}

.rch-home-hero-thumbs button.is-active {
  border-color: var(--rch-green);
}

.rch-home-hero-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rch-home-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: none;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}

.rch-home-hero-dots button {
  width: 12px;
  height: 12px;
  min-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
}

.rch-home-hero-dots button:hover,
.rch-home-hero-dots button:focus,
.rch-home-hero-dots button.is-active {
  background: var(--rch-green);
  border-color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {

  .rch-home-hero-slide,
  .rch-home-hero-cta,
  .rch-home-hero-thumbs button {
    transition: none;
  }
}

.rch-home-top {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 570px);
  gap: 30px;
  margin-bottom: 25px;
}

.rch-home-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 30px;
}

.rch-home-category {
  display: block;
  color: #000000;
  text-align: left;
}

.rch-home-category:hover,
.rch-home-category:focus {
  color: var(--rch-blue);
}

.rch-home-category img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  margin-bottom: 8px;
}

.rch-home-category span {
  display: block;
  min-height: 34px;
  font-size: 14px;
  line-height: 17px;
}

.rch-home-promos {
  display: grid;
  gap: 25px;
}

.rch-home-promo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  color: #000000;
}

.rch-home-promo:hover,
.rch-home-promo:focus {
  color: #000000;
}

.rch-home-promo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.rch-home-promo span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 17px;
  display: block;
  padding: 8px 18px 10px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 18px;
}

.rch-home-promo strong {
  display: block;
  color: var(--rch-green);
  font-size: 30px;
  line-height: 1.1;
}

.rch-home-promo-app strong {
  color: var(--rch-pink);
}

.rch-home-products {
  padding: 20px 0 40px;
}

.rch-home-products h2,
.rch-home-blog h2 {
  margin: 0 0 22px;
  color: #000000;
  font-size: 20px;
  line-height: 1.3;
}

.rch-home-products-featured {
  padding-top: 28px;
}

.rch-home-newsletter {
  margin: 6px 0 46px;
  padding: 38px 0;
  background: var(--rch-green);
  color: #ffffff;
}

.rch-home-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.rch-home-newsletter h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
}

.rch-home-newsletter .rch-social-list {
  justify-content: flex-end;
  margin: 0;
  gap: 14px;
}

.rch-home-newsletter .rch-social-item {
  width: 44px;
  height: 44px;
  background: var(--rch-pink-light);
}

.rch-home-newsletter .rch-social-item svg {
  width: 20px;
  height: 20px;
}

.rch-home-newsletter .rch-social-item:hover,
.rch-home-newsletter .rch-social-item:focus {
  background: #000000;
}

.rch-home-blog {
  padding: 0 0 35px;
}

.rch-home-blog h2 {
  margin-bottom: 56px;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rch-home-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.rch-home-blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rch-home-blog-card-image {
  display: block;
  aspect-ratio: 270 / 190;
  overflow: hidden;
  background: #f3f3f3;
}

.rch-home-blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rch-home-blog-card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  margin-top: 18px;
  padding: 18px 18px 20px;
  background: #f9f9f9;
  text-align: center;
}

.rch-home-blog-card h3 {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.35;
}

.rch-home-blog-card h3 a {
  color: #000000;
}

.rch-home-blog-card h3 a:hover,
.rch-home-blog-card h3 a:focus {
  color: var(--rch-blue);
}

.rch-home-about {
  padding: 0 0 50px;
}

.rch-home-about h1,
.rch-home-about h2 {
  margin: 0 0 14px;
  color: #000000;
  font-size: 20px;
  line-height: 1.35;
}

.rch-home-about h2 {
  margin-top: 24px;
  font-size: 18px;
}

.rch-home-about p {
  margin: 0 0 12px;
  color: #000000;
}

.rch-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.rch-entry-card {
  border: 1px solid var(--rch-border);
  padding: 20px;
}

.rch-entry-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 25px;
  color: #000000;
  font-size: 12px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--rch-pink);
}

.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce .woocommerce-breadcrumb a:focus {
  color: var(--rch-blue);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce-products-header {
  text-align: center;
}

.rch-shop-content .woocommerce-products-header {
  margin-bottom: 25px;
}

.rch-category-children {
  margin-bottom: 28px;
  text-align: center;
}

.rch-category-children h2 {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.rch-category-children-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rch-category-children-grid a {
  display: block;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
}

.rch-category-children-grid a:hover,
.rch-category-children-grid a:focus {
  color: var(--rch-blue);
}

.rch-category-children-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  margin-bottom: 9px;
}

.rch-category-description {
  margin-top: 34px;
  line-height: 1.55;
}

.rch-category-description h2 {
  margin: 24px 0 12px;
  font-size: 18px;
}

.rch-category-description p {
  margin: 0 0 12px;
}



.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  list-style: none;
  width: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--rch-border);
  border-radius: 0;
  background: #ffffff;
  text-align: left;
}

.woocommerce ul.products li.product::marker,
.woocommerce-page ul.products li.product::marker {
  content: "";
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  color: #000000;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link>img,
.woocommerce ul.products li.product .rch-loop-product-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  background: #ffffff;
  margin: 0 0 14px;
}

.woocommerce ul.products li.product .rch-loop-product-media {
  position: relative;
  overflow: hidden;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link>img,
.woocommerce ul.products li.product .rch-loop-product-image {
  object-fit: contain;
}

.woocommerce ul.products li.product .rch-loop-product-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #ffffff;
  transition: opacity 0.2s ease;
}

.woocommerce ul.products li.product .rch-loop-product-image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {

  .woocommerce ul.products li.product a.woocommerce-loop-product__link:hover .rch-loop-product-media--hover .rch-loop-product-image--primary,
  .woocommerce ul.products li.product a.woocommerce-loop-product__link:focus-visible .rch-loop-product-media--hover .rch-loop-product-image--primary {
    opacity: 0;
  }

  .woocommerce ul.products li.product a.woocommerce-loop-product__link:hover .rch-loop-product-media--hover .rch-loop-product-image--secondary,
  .woocommerce ul.products li.product a.woocommerce-loop-product__link:focus-visible .rch-loop-product-media--hover .rch-loop-product-image--secondary {
    opacity: 1;
  }
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  order: -1;
  min-height: 52px;
  margin: 0 0 10px;
  padding: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  color: var(--rch-red);
  font-size: 16px;
  font-weight: 700;
}

.woocommerce ul.products li.product .rch-loop-product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.woocommerce ul.products li.product .button {
  display: flex;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .rch-loop-product-actions .added_to_cart.wc-forward {
  display: none;
}

.rch-loop-cart-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  margin: 0;
  padding: 13px 28px 13px 88px;
  border: 0;
  background: #46ad4a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.rch-loop-cart-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 68px;
  background: rgba(0, 0, 0, 0.12);
}

.rch-loop-cart-notice::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  width: 14px;
  height: 28px;
  border: solid #ffffff;
  border-width: 0 4px 4px 0;
  transform: translateY(-58%) rotate(45deg);
}

body.admin-bar .rch-loop-cart-notice {
  top: 32px;
}

.rch-loop-cart-notice .button {
  flex: 0 0 auto;
  margin-left: auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.08);
  color: #ffffff;
  padding: 9px 16px;
  white-space: nowrap;
}

.rch-loop-cart-notice .button:hover,
.rch-loop-cart-notice .button:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.rch-loop-cart-notice-text {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 782px) {
  body.admin-bar .rch-loop-cart-notice {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .rch-loop-cart-notice {
    gap: 10px;
    min-height: 58px;
    padding: 10px 12px 10px 64px;
    font-size: 14px;
  }

  .rch-loop-cart-notice::before {
    width: 52px;
  }

  .rch-loop-cart-notice::after {
    left: 20px;
    width: 12px;
    height: 23px;
    border-width: 0 3px 3px 0;
  }

  .rch-loop-cart-notice .button {
    padding: 8px 10px;
    font-size: 11px;
  }
}

.woocommerce nav.woocommerce-pagination {
  clear: both;
  margin: 34px 0 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li::marker {
  content: "";
}

.woocommerce nav.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--rch-border);
  background: #ffffff;
  color: var(--rch-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.woocommerce nav.woocommerce-pagination a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination a.page-numbers:focus {
  border-color: var(--rch-pink);
  background: var(--rch-pink);
  color: #ffffff;
}

.woocommerce nav.woocommerce-pagination a.page-numbers:focus-visible {
  outline: 2px solid var(--rch-pink);
  outline-offset: 2px;
}

.woocommerce nav.woocommerce-pagination .page-numbers.current {
  border-color: var(--rch-green);
  background: var(--rch-green);
  color: #ffffff;
}

.woocommerce nav.woocommerce-pagination .page-numbers.prev,
.woocommerce nav.woocommerce-pagination .page-numbers.next {
  min-width: 42px;
}

.woocommerce span.onsale {
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: var(--rch-pink);
  color: #ffffff;
  font-size: 12px;
  line-height: 48px;
  text-align: center;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(0, 470px);
  gap: 0 30px;
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin-bottom: 40px;
}

.woocommerce div.product div.images {
  grid-column: 1;
  opacity: 1 !important;
}

.woocommerce div.product div.summary {
  grid-column: 2;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 100px);
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  float: none;
  width: 100px;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 1px solid var(--rch-border);
}

.woocommerce div.product .product_meta,
.woocommerce div.product .stock {
  color: #000000;
  font-size: 14px;
}

.woocommerce div.product .rch-product-meta span {
  display: block;
  margin-bottom: 4px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--rch-red);
  font-size: 24px;
  font-weight: 700;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
}

.woocommerce div.product form.cart div.quantity {
  display: flex;
  align-items: center;
}

.woocommerce .quantity .qty {
  width: 62px;
  min-height: 42px;
  border: 1px solid var(--rch-border);
  text-align: center;
}

.woocommerce div.product form.cart .button {
  min-height: 42px;
  background: var(--rch-green);
  text-transform: uppercase;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .button:focus {
  background: var(--rch-pink);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--rch-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  display: block;
  position: relative;
  z-index: 0;
  list-style: none;
  border: 1px solid var(--rch-border);
  border-bottom-color: var(--rch-border);
  border-top: 3px solid transparent;
  border-radius: 0;
  background: #f7f7f7;
  margin: 0 5px -1px 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 10px 18px;
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
  color: var(--rch-pink);
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus-visible {
  outline: 2px solid var(--rch-green);
  outline-offset: -4px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #ffffff;
  border-top-color: var(--rch-green);
  border-bottom-color: #ffffff;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--rch-pink);
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 35px;
  padding: 24px 0 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2:first-child {
  margin-top: 0;
}

.rch-content-layout--woocommerce-page {
  padding: 30px 0 55px;
}

.rch-content-layout--woocommerce-page .woocommerce-breadcrumb {
  margin-bottom: 25px;
}

.rch-content-layout--woocommerce-page .rch-content {
  max-width: 100%;
}

.rch-content-layout--woocommerce-page .rch-entry-title {
  margin: 0 0 25px;
  color: #000000;
  font-size: 20px;
  line-height: 1.35;
}

.woocommerce table.shop_table {
  border: 1px solid var(--rch-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  margin: 0 0 24px;
  color: #000000;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--rch-border);
  padding: 14px 16px;
  vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td {
  border-bottom: 0;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  text-transform: uppercase;
  background: #fcfcfc;
}

.woocommerce table.shop_table td.product-name a {
  color: var(--rch-blue);
  font-weight: 700;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.woocommerce .quantity .qty {
  width: 62px;
  min-height: 42px;
  border: 1px solid var(--rch-border);
  text-align: center;
}

.woocommerce a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rch-pink) !important;
}

.woocommerce a.remove:hover,
.woocommerce a.remove:focus {
  background: var(--rch-pink);
  color: #ffffff !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  border: 0;
  border-radius: 0;
  background: var(--rch-green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 13px 20px;
  text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus {
  background: var(--rch-pink);
  color: #ffffff;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  padding: 13px 20px;
  color: #ffffff;
}

body:not(.single-product) .woocommerce-message,
body:not(.single-product) .woocommerce-info,
body:not(.single-product) .woocommerce-error {
  position: relative;
  padding: 16px 24px 16px 56px;
  margin: 0 0 30px;
  border: 1px solid var(--rch-border);
  border-left: 4px solid var(--rch-blue);
  border-radius: 6px;
  background-color: #fcfcfc;
  color: #333333;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body:not(.single-product) .woocommerce-message,
body:not(.single-product) .woocommerce-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body:not(.single-product) .woocommerce-message {
  border-left-color: var(--rch-green);
  background-color: #f7fdf6;
  border-color: #d1ebd2;
}

body:not(.single-product) .woocommerce-info {
  border-left-color: var(--rch-blue);
  background-color: #f5fafd;
  border-color: #d2ebfa;
}

body:not(.single-product) .woocommerce-error {
  border-left-color: var(--rch-red);
  background-color: #fdf5f5;
  border-color: #ebd2d3;
  list-style: none;
  display: block;
}

body:not(.single-product) .woocommerce-error li {
  margin-bottom: 4px;
}

body:not(.single-product) .woocommerce-error li:last-child {
  margin-bottom: 0;
}

body:not(.single-product) .woocommerce-message::before,
body:not(.single-product) .woocommerce-info::before,
body:not(.single-product) .woocommerce-error::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

body:not(.single-product) .woocommerce-message::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349be0d'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

body:not(.single-product) .woocommerce-info::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230896e6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

body:not(.single-product) .woocommerce-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cc1314'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

body:not(.single-product) .woocommerce-message .button,
body:not(.single-product) .woocommerce-info .button {
  order: 2;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--rch-green);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: none;
}

body:not(.single-product) .woocommerce-message .button:hover,
body:not(.single-product) .woocommerce-info .button:hover {
  background-color: #3aa309;
  color: #ffffff !important;
}

body.single-product .woocommerce-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  margin: 0;
  padding: 13px 28px 13px 88px;
  border: 0;
  background: #46ad4a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

body.single-product .woocommerce-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 68px;
  background: rgba(0, 0, 0, 0.12);
}

body.single-product .woocommerce-message::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  width: 14px;
  height: 28px;
  border: solid #ffffff;
  border-width: 0 4px 4px 0;
  transform: translateY(-58%) rotate(45deg);
}

body.admin-bar.single-product .woocommerce-message {
  top: 32px;
}

body.single-product .woocommerce-message .button {
  order: 2;
  flex: 0 0 auto;
  margin-left: auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.08);
  color: #ffffff;
  padding: 9px 16px;
  white-space: nowrap;
}

body.single-product .woocommerce-message .button:hover,
body.single-product .woocommerce-message .button:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

@media (max-width: 782px) {
  body.admin-bar.single-product .woocommerce-message {
    top: 46px;
  }
}

@media (max-width: 640px) {
  body.single-product .woocommerce-message {
    gap: 10px;
    min-height: 58px;
    padding: 10px 12px 10px 64px;
    font-size: 14px;
  }

  body.single-product .woocommerce-message::before {
    width: 52px;
  }

  body.single-product .woocommerce-message::after {
    left: 20px;
    width: 12px;
    height: 23px;
    border-width: 0 3px 3px 0;
  }

  body.single-product .woocommerce-message .button {
    padding: 8px 10px;
    font-size: 11px;
  }
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 10px;
}

.woocommerce-cart .woocommerce-cart-form {
  float: none;
  width: 100%;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table {
  width: 100% !important;
}

.woocommerce-cart .cart-collaterals {
  float: none;
  width: 100%;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 220px;
  min-height: 42px;
  border: 1px solid var(--rch-border);
  padding: 0 12px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 33.333%;
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 20px;
  line-height: 1.35;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  margin: 0;
  padding: 15px 20px;
  font-size: 12px;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label {
  color: #000000;
  font-weight: 700;
  line-height: 1.35;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--rch-border);
  border-radius: 4px;
  padding: 9px 12px;
  color: #000000;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .select2-container.select2-container--open .select2-selection--single {
  border-color: var(--rch-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 190, 13, 0.15);
}

.woocommerce form .form-row textarea {
  min-height: 128px;
}

.woocommerce form .form-row.rch-hidden-checkout-field {
  display: none;
}

.woocommerce-checkout .woocommerce-billing-fields .form-row,
.woocommerce-checkout .woocommerce-additional-fields .form-row {
  float: none;
  width: 100%;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 22px;
  padding-left: 0;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(0, 470px);
  gap: 0 30px;
  align-items: start;
}

.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
}

.woocommerce-checkout #order_review_heading {
  margin-top: 0;
}

/* Order Review Table Styling */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 8px;
  border: 1px solid var(--rch-border) !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 24px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 16px 20px !important;
  line-height: 1.4;
  vertical-align: middle;
}

/* Header Alignment & Style */
.woocommerce-checkout-review-order-table thead th {
  background: #f8f9fa;
  border-bottom: 1px solid var(--rch-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--rch-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-checkout-review-order-table thead th.product-name {
  text-align: left;
  width: 65%;
}

.woocommerce-checkout-review-order-table thead th.product-total {
  text-align: right;
}

/* Body Alignment & Style */
.woocommerce-checkout-review-order-table tbody td {
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
}

.woocommerce-checkout-review-order-table tbody td.product-name {
  text-align: left;
  font-size: 14px;
  color: #333333;
}

.woocommerce-checkout-review-order-table tbody td.product-name strong.product-quantity {
  color: var(--rch-pink);
  font-weight: 600;
  margin-left: 4px;
}

.woocommerce-checkout-review-order-table tbody td.product-total {
  text-align: right;
  font-weight: 600;
  color: #111111;
  font-size: 14px;
}

/* Footer (Subtotals & Totals) Alignment & Style */
.woocommerce-checkout-review-order-table tfoot th {
  text-align: left;
  font-weight: 600;
  color: #555555;
  background: #fdfdfd;
  border-bottom: 1px solid #f2f2f2;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  font-weight: 600;
  color: #111111;
  background: #fdfdfd;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
}

/* Subtotal row */
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
  border-top: 1px solid var(--rch-border);
}

/* Order Total highlight */
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  background: #f6faf3;
  /* very soft green accent */
  color: #000000;
  border-bottom: 0;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  font-weight: 700;
  font-size: 14px;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 18px;
  font-weight: 700;
  color: var(--rch-green);
}

.woocommerce-checkout #payment {
  border-radius: 6px;
  background: #fdfdfd;
  border: 1px solid var(--rch-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--rch-border);
  padding: 20px;
  list-style: none !important;
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  list-style: none !important;
  margin: 0 0 10px 0;
  padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:last-child {
  margin-bottom: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--rch-green);
}

.woocommerce-checkout #payment div.payment_box {
  background: #ffffff;
  color: var(--rch-muted);
  border: 1px solid var(--rch-border);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  position: relative;
}

.woocommerce-checkout #payment div.payment_box p {
  margin: 0;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

.woocommerce-checkout #payment div.form-row {
  padding: 20px;
  background: #fcfcfc;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--rch-muted);
  margin-bottom: 16px;
  display: block;
}

.woocommerce-checkout #payment button.button.alt,
.woocommerce-checkout #payment #place_order {
  display: block;
  width: 100% !important;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  background: var(--rch-green);
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(73, 190, 13, 0.2);
}

.woocommerce-checkout #payment button.button.alt:hover,
.woocommerce-checkout #payment button.button.alt:focus,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment #place_order:focus {
  background: var(--rch-pink);
  box-shadow: 0 2px 4px rgba(219, 59, 113, 0.2);
}

.rch-sidebar-widget {
  margin-bottom: 30px;
  border: 1px solid var(--rch-border);
  padding: 18px;
}

.rch-sidebar-title {
  margin: 0 0 14px;
  font-size: 18px;
}

.rch-footer {
  background: var(--rch-pink);
  color: #ffffff;
}

.rch-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0;
}

.rch-footer a {
  color: #ffffff;
}

.rch-footer a:hover,
.rch-footer a:focus {
  color: #000000;
}

.rch-footer-brand img {
  max-width: 260px;
  margin-bottom: 18px;
}

.rch-footer-title {
  margin: 0 0 16px;
  font-size: 18px;
}

.rch-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 24px;
}

.rch-social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rch-pink-light);
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.rch-social-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rch-social-item:hover,
.rch-social-item:focus {
  background: var(--rch-green);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.rch-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rch-footer-menu li {
  margin-bottom: 8px;
}

.rch-copyright {
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rch-nav-grid {
    grid-template-columns: 170px minmax(0, 1fr) 150px;
    gap: 20px;
  }

  .rch-quick-links {
    gap: 20px;
  }

  .rch-site-slogan {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media (max-width: 991px) {
  .rch-home-top {
    grid-template-columns: 1fr;
  }

  .rch-home-hero-thumbs {
    grid-template-columns: repeat(3, 120px);
    gap: 14px;
  }

  .rch-home-hero-thumbs button {
    width: 120px;
  }

  .rch-home-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .rch-home-newsletter .rch-social-list {
    justify-content: flex-start;
  }

  .rch-shop-layout {
    grid-template-columns: 1fr;
  }



  .rch-category-children-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .rch-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .related,
  .woocommerce div.product .upsells {
    grid-column: 1;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout #order_review_heading {
    margin-top: 18px;
  }

  .woocommerce ul.products,
  .rch-post-grid,
  .rch-home-blog-grid,
  .rch-footer-grid {
    grid-template-columns: 1fr;
  }

  .rch-home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rch-container {
    width: min(var(--rch-container), calc(100% - 30px));
  }

  .rch-home-blog-grid {
    grid-template-columns: 1fr;
  }

  .rch-header-main {
    min-height: 184px;
  }

  .rch-top-line {
    display: block;
    min-height: 42px;
    padding-top: 8px;
    padding-left: 52px;
    padding-right: 52px;
    text-align: center;
    font-size: 10px;
    line-height: 15px;
  }

  .rch-quick-links {
    justify-content: center;
    gap: 8px;
  }

  .rch-quick-links a::before {
    margin-right: 3px;
  }

  .rch-top-phone {
    display: inline-flex;
    margin-top: 4px;
    color: var(--rch-pink);
    font-size: 12px;
  }

  .rch-brand-line {
    min-height: 139px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .rch-logo {
    flex-basis: auto;
    width: 300px;
    max-width: 100%;
  }

  .rch-logo img {
    margin-inline: auto;
  }

  .rch-site-slogan {
    margin: 8px 0 0;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 18px;
    white-space: normal;
  }

  .rch-nav-grid {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 65px;
  }

  .rch-search {
    height: 63px;
  }

  .rch-search input[type="search"] {
    height: 37px;
    margin: 13px 0;
    padding: 10px 40px 10px 18px;
    font-size: 14px;
  }

  .rch-search>button {
    top: 13px;
    height: 37px;
    min-height: 37px;
  }

  .rch-catalog-cell {
    position: fixed;
    top: 21px;
    left: 10px;
    z-index: 10001;
    width: 45px;
    height: 32px;
  }

  .rch-menu-toggle {
    position: relative;
    width: 45px;
    min-height: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    color: #000000;
    font-size: 0;
  }

  .rch-menu-toggle::before,
  .rch-menu-toggle::after {
    content: "";
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background: currentColor;
    border: 0;
  }

  .rch-menu-toggle::before {
    top: 10px;
    box-shadow: 0 6px 0 currentColor;
  }

  .rch-menu-toggle::after {
    top: 22px;
    margin: 0;
  }

  .rch-menu-toggle:hover,
  .rch-menu-toggle:focus {
    background: transparent;
    color: var(--rch-green);
  }

  .rch-primary-navigation {
    position: fixed;
    top: 53px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: 360px;
    min-height: 0;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    box-shadow: none;
  }

  .rch-primary-menu {
    width: 100%;
    min-height: 0;
  }

  .rch-primary-menu>li>a,
  .rch-menu-root-link {
    padding: 12px 34px 12px 15px;
    font-weight: 700;
  }

  .rch-menu-panel {
    position: static;
    display: block;
    min-height: 0;
    padding: 12px 14px 18px;
    border-left: 0;
    border-bottom: 1px solid var(--rch-border);
  }

  .rch-menu-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rch-menu-group {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
  }

  .rch-menu-group-media {
    grid-row: span 2;
    height: 62px;
    margin-bottom: 0;
  }

  .rch-menu-group-title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
  }

  .rch-menu-children {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .rch-menu-children li+li {
    margin-top: 0;
  }

  .rch-menu-children a {
    font-size: 13px;
    line-height: 16px;
  }

  .rch-cart-link {
    position: fixed;
    top: 21px;
    right: 10px;
    z-index: 10001;
    width: 45px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    background: transparent;
    color: var(--rch-pink);
  }

  .rch-cart-link:hover,
  .rch-cart-link:focus {
    background: transparent;
    color: var(--rch-green);
  }

  .rch-cart-icon {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .rch-cart-copy,
  .rch-cart-count {
    display: none;
  }

  .rch-home-hero {
    min-height: 260px;
    margin-bottom: 20px;
  }

  .rch-home-hero-slide {
    background-position: var(--rch-hero-position-mobile, var(--rch-hero-position, center top));
  }

  .rch-home-hero-slide-inner,
  .rch-home-hero-inner {
    min-height: 260px;
  }

  .rch-home-hero-copy {
    left: 15px;
    right: 15px;
    bottom: 44px;
    min-width: 0;
    max-width: none;
    padding: 14px 16px 13px;
    background: rgba(255, 255, 255, 0.82);
  }

  .rch-home-hero-copy h2 {
    font-size: 21px;
    line-height: 1.18;
  }

  .rch-home-hero-subtitle {
    font-size: 13px;
  }

  .rch-home-hero-cta {
    min-height: 30px;
    margin-top: 10px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .rch-home-hero-thumbs {
    display: none;
  }

  .rch-home-hero-dots {
    display: flex;
  }

  .rch-home-top {
    gap: 20px;
    margin-bottom: 20px;
  }

  .rch-home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 15px;
  }

  .rch-home-category span {
    font-size: 12px;
    line-height: 16px;
  }

  .rch-home-promos {
    gap: 20px;
  }

  .rch-home-promo,
  .rch-home-promo img {
    min-height: 210px;
  }

  .rch-home-promo span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 7px 12px 8px;
  }

  .rch-home-promo strong {
    font-size: 22px;
  }

  .rch-home-products {
    padding: 20px 0 30px;
  }

  .rch-home-newsletter {
    margin-bottom: 32px;
    padding: 28px 0;
  }

  .rch-home-newsletter .rch-social-list {
    gap: 10px;
  }

  .rch-home-newsletter .rch-social-item {
    width: 40px;
    height: 40px;
  }

  .rch-home-about {
    padding-bottom: 34px;
  }

  .rch-content-layout.rch-page-layout,
  .rch-content-layout.rch-blog-layout {
    padding: 30px 0 40px;
  }

  .rch-page-layout .rch-entry-title,
  .rch-blog-layout .rch-entry-title {
    font-size: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .rch-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rch-contact-panel {
    padding: 18px;
  }

  .rch-entry-meta {
    display: block;
    text-align: center;
  }

  .rch-entry-meta span {
    display: block;
    margin-top: 6px;
  }

  .rch-woo-shell {
    padding: 22px 0 40px;
  }

  .rch-content-layout--woocommerce-page {
    padding: 22px 0 40px;
  }

  .rch-content-layout--woocommerce-page .rch-entry-title {
    font-size: 18px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border-bottom: 0;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    border: 1px solid var(--rch-border);
    border-left: 3px solid transparent;
    border-top-width: 1px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-left-color: var(--rch-green);
    border-bottom-color: var(--rch-border);
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
  }

  .woocommerce div.product .woocommerce-tabs .panel {
    padding-top: 18px;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    border: 1px solid var(--rch-border);
    margin-bottom: 14px;
  }

  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart thead,
  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr,
  .woocommerce-cart table.cart td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  .woocommerce-cart table.cart tr.cart_item {
    position: relative;
    min-height: 130px;
    padding: 14px 12px 14px 96px;
  }

  .woocommerce-cart table.cart tr.cart_item td {
    border: 0;
    padding: 5px 0;
    text-align: left !important;
  }

  .woocommerce-cart table.cart tr.cart_item td::before {
    content: attr(data-title) ": ";
    display: inline-block;
    min-width: 82px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .woocommerce-cart table.cart td.product-remove,
  .woocommerce-cart table.cart td.product-thumbnail {
    position: absolute;
    left: 12px;
    width: auto !important;
  }

  .woocommerce-cart table.cart td.product-remove {
    top: 10px;
  }

  .woocommerce-cart table.cart td.product-thumbnail {
    top: 42px;
  }

  .woocommerce-cart table.cart tr.cart_item td.product-remove::before,
  .woocommerce-cart table.cart tr.cart_item td.product-thumbnail::before,
  .woocommerce-cart table.cart td.actions::before {
    content: none;
    display: none;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 64px;
    height: 64px;
  }

  .woocommerce-cart table.cart td.product-name a {
    font-weight: 700;
  }

  .woocommerce-cart table.cart td.actions {
    border: 1px solid var(--rch-border);
    padding: 12px !important;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    border: 0;
    border-bottom: 1px solid var(--rch-border);
    padding: 12px;
  }

  .woocommerce table.shop_table_responsive tr td:last-child,
  .woocommerce-page table.shop_table_responsive tr td:last-child {
    border-bottom: 0;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    display: block;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .button {
    width: 100%;
    margin: 0 0 10px;
  }

  .woocommerce-products-header {
    text-align: left;
  }

  .rch-category-children {
    text-align: left;
  }

  .rch-category-children-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 15px;
  }

  .woocommerce div.product form.cart {
    display: block;
  }

  .woocommerce div.product form.cart .button {
    width: 100%;
    margin-top: 12px;
  }

  .woocommerce div.product div.images .flex-control-thumbs {
    grid-template-columns: repeat(3, 100px);
  }
}

@media (min-width: 992px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }


}

/* --- Blog Card Image & Pagination Styles --- */

.rch-entry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rch-entry-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--rch-border);
  margin: -20px -20px 20px;
}

.rch-entry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rch-entry-card:hover .rch-entry-card-image img {
  transform: scale(1.05);
}

.rch-entry-card h2 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 12px;
}

.rch-entry-card h2 a {
  color: var(--rch-blue);
  text-decoration: none;
}

.rch-entry-card h2 a:hover,
.rch-entry-card h2 a:focus {
  color: var(--rch-pink);
}

.rch-entry-card p {
  flex-grow: 1;
  margin: 0 0 16px;
}

/* Pagination Styles - Circular matching the old site design */
.navigation.pagination {
  margin: 40px 0 0;
  text-align: center;
}

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

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--rch-border);
  background: var(--rch-pink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus {
  border-color: var(--rch-blue);
  background: var(--rch-blue);
  color: #ffffff;
}

.navigation.pagination a.page-numbers:focus-visible {
  outline: 2px solid var(--rch-pink);
  outline-offset: 2px;
}

.navigation.pagination .page-numbers.current {
  border-color: var(--rch-green);
  background: var(--rch-green);
  color: #ffffff;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  border-radius: 17px;
  min-width: 42px;
}

/* --- WooCommerce Star Rating Input Styles --- */

@font-face {
  font-family: 'star';
  src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff2') format('woff2'),
    url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff') format('woff'),
    url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'WooCommerce';
  src: url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff2') format('woff2'),
    url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff') format('woff'),
    url('../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

.woocommerce p.stars a,
p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  font-size: 24px;
  overflow: hidden;
}

.woocommerce p.stars a::before,
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: 'WooCommerce' !important;
  content: "\e021";
  /* Empty star icon */
  text-indent: 0;
  color: #d3ced2;
  transition: color 0.2s;
}

.woocommerce p.stars a:hover~a::before,
p.stars a:hover~a::before {
  content: "\e021" !important;
}

.woocommerce p.stars:hover a::before,
p.stars:hover a::before {
  content: "\e020" !important;
  /* Filled star icon */
  color: #ffb400;
}

.woocommerce p.stars.selected a.active::before,
p.stars.selected a.active::before {
  content: "\e020" !important;
  /* Filled star icon */
  color: #ffb400;
}

.woocommerce p.stars.selected a.active~a::before,
p.stars.selected a.active~a::before {
  content: "\e021" !important;
}

.woocommerce p.stars.selected a:not(.active)::before,
p.stars.selected a:not(.active)::before {
  content: "\e020" !important;
  /* Filled star icon */
  color: #ffb400;
}

/* Display Star Rating Styles */

.woocommerce .star-rating,
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 14px;
  width: 5.4em;
  font-family: 'WooCommerce' !important;
  display: inline-block;
}

.woocommerce .star-rating::before,
.star-rating::before {
  content: "sssss";
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.woocommerce .star-rating span,
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before,
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: #ffb400;
}

/* --- WooCommerce Review Form Layout & Spacing --- */

#reviews {
  padding-top: 20px;
}

#comments {
  margin-bottom: 40px;
}

#comments .woocommerce-Reviews-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #000000;
}

#comments .commentlist,
#comments .commentlist li {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

#comments .commentlist li {
  margin-bottom: 24px;
}

#comments .commentlist li .comment_container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fbfbfb;
  border: 1px solid var(--rch-border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

#comments .commentlist li img.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--rch-border);
  background: #ffffff;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0;
}

#comments .commentlist li .comment-text {
  flex-grow: 1;
  min-width: 0;
}

#comments .commentlist li .comment-text .star-rating {
  margin-bottom: 8px;
  font-size: 14px;
}

#comments .commentlist li .comment-text .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--rch-muted);
}

#comments .commentlist li .comment-text .meta strong {
  color: #000000;
  font-weight: 700;
}

#comments .commentlist li .comment-text .meta time {
  font-size: 12px;
}

#comments .commentlist li .comment-text .woocommerce-review__awaiting-moderation {
  display: inline-block;
  background: #fff8e1;
  color: #b78103;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 12px;
  border: 1px solid #ffe082;
}

#comments .commentlist li .comment-text .description {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

#comments .commentlist li .comment-text .description p {
  margin: 0;
}

#review_form_wrapper {
  background: #ffffff;
  border: 1px solid var(--rch-border);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-top: 40px;
  max-width: 640px;
}

#review_form .comment-reply-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #000000;
}

#review_form .comment-notes {
  margin: 0 0 24px;
  color: var(--rch-muted);
  font-size: 13px;
}

#review_form .comment-form-rating,
#review_form .comment-form-comment,
#review_form .comment-form-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 20px;
}

#review_form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

#review_form input[type="text"],
#review_form textarea {
  width: 100%;
  border: 1px solid var(--rch-border);
  background: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  color: #000000;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#review_form input[type="text"]:focus,
#review_form textarea:focus {
  border-color: var(--rch-blue);
  box-shadow: 0 0 0 3px rgba(8, 150, 230, 0.15);
  outline: none;
}

#review_form textarea {
  min-height: 120px;
  resize: vertical;
}

#review_form .form-submit {
  margin-top: 28px;
  margin-bottom: 0;
}

#review_form .form-submit input[type="submit"] {
  appearance: none;
  background: var(--rch-green);
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

#review_form .form-submit input[type="submit"]:hover,
#review_form .form-submit input[type="submit"]:focus {
  background: var(--rch-pink);
}

/* Auto-update cart custom styles */
.woocommerce-cart-form button[name="update_cart"] {
  display: none !important;
}
