:root {
  --primary-color: #1B4965;
  --secondary-color: #f39c12;
  --accent-color: #e67e22;
  --text-color: #333333;
  --light-gray: #f8f9fa;
  --border-color: #e1e1e1;
  --rn-navy: var(--primary-color);
  --rn-blue: var(--primary-color);
  --rn-sky: var(--secondary-color);
  --rn-teal: var(--secondary-color);
  --rn-green: var(--primary-color);
  --rn-orange: var(--accent-color);
  --rn-orange-dark: var(--secondary-color);
  --rn-ink: var(--primary-color);
  --rn-text: var(--text-color);
  --rn-muted: var(--text-color);
  --rn-line: var(--border-color);
  --rn-soft: var(--light-gray);
  --rn-shell: 1360px;
  --rn-shadow: 0 16px 38px rgba(27, 73, 101, 0.12);
}

html {
  background: var(--rn-soft);
}

body {
  margin: 0;
  background: var(--rn-soft);
  color: var(--rn-text);
  font-family: "Inter", "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

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

a {
  color: var(--rn-blue);
}

a:hover,
a:focus {
  color: var(--rn-orange);
  text-decoration: none;
}

.rn-shell {
  width: min(var(--rn-shell), calc(100% - 40px));
  margin: 0 auto;
}

.rn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rn-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none !important;
  white-space: nowrap;
}

.rn-btn .material-icons {
  font-size: 19px;
}

.rn-btn--primary {
  background: var(--rn-orange);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.22);
}

.rn-btn--primary:hover,
.rn-btn--primary:focus {
  background: var(--rn-orange-dark);
  color: #fff !important;
}

.rn-btn--ghost {
  background: #fff;
  border-color: var(--rn-line);
  color: var(--rn-ink) !important;
}

.rn-btn--ghost:hover,
.rn-btn--ghost:focus {
  border-color: var(--rn-sky);
  color: var(--rn-blue) !important;
}

#header {
  position: relative;
  z-index: 20;
  background: #fff;
  color: var(--rn-ink);
  box-shadow: 0 6px 28px rgba(27, 73, 101, 0.08);
}

#wrapper {
  padding-top: 0;
  background: var(--rn-soft);
  box-shadow: none;
}

#content-wrapper {
  min-width: 0;
}

.container {
  width: min(var(--rn-shell), calc(100% - 40px));
  max-width: var(--rn-shell);
}

.rn-header-banner {
  display: none;
}

.rn-header {
  background: #fff;
}

.rn-header__inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 245px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.rn-logo,
.rn-logo__title {
  margin: 0;
}

.rn-logo img {
  max-height: 68px;
  width: auto;
}

.rn-logo__text {
  color: var(--rn-ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.rn-header__search {
  min-width: 0;
  width: 100%;
  justify-self: stretch;
}

.rn-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rn-header-help,
.rn-language-selector__button,
.rn-user-info a,
.rn-cart .header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--rn-line);
  border-radius: 6px;
  background: #fff;
  color: var(--rn-ink) !important;
  font-weight: 900;
  white-space: nowrap;
}

.rn-header-help .material-icons,
.rn-language-selector .material-icons,
.rn-user-info .material-icons,
.rn-cart .material-icons {
  color: var(--rn-blue);
  font-size: 20px;
}

.rn-language-selector {
  position: relative;
}

.rn-language-selector__button {
  min-width: 64px;
  cursor: pointer;
}

.rn-language-selector__current {
  color: var(--rn-ink);
  font-weight: 900;
}

.rn-language-selector__menu {
  right: 0;
  left: auto;
  min-width: 180px;
  padding: 6px;
  border: 1px solid var(--rn-line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.14);
}

.rn-language-selector__menu .dropdown-item {
  display: block;
  padding: 9px 10px;
  border-radius: 4px;
  color: var(--rn-ink);
  font-weight: 800;
}

.rn-language-selector__menu .dropdown-item:hover,
.rn-language-selector__menu .dropdown-item:focus,
.rn-language-selector__menu .current .dropdown-item {
  background: rgba(33, 174, 199, 0.12);
  color: var(--rn-blue);
  text-decoration: none;
}

.rn-language-selector__select {
  display: none;
}

.rn-cart .header a {
  background: var(--rn-blue);
  border-color: var(--rn-blue);
  color: #fff !important;
}

.rn-cart .material-icons {
  color: #fff;
}

.rn-cart__label {
  display: inline;
}

.cart-products-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rn-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.rn-search-widget__form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid var(--rn-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(27, 73, 101, 0.05);
}

.rn-header__search .rn-search-widget {
  width: 100%;
  max-width: none;
}

.rn-search-widget input[type="text"] {
  width: 100%;
  height: 100%;
  padding: 0 56px 0 18px;
  border: 0;
  color: var(--rn-ink);
  font-size: 0.95rem;
  outline: 0;
}

.rn-search-widget button {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--rn-ink);
  cursor: pointer;
}

.rn-search-widget button .material-icons {
  font-size: 24px;
}

.rn-nav {
  border-top: 1px solid var(--rn-line);
  border-bottom: 1px solid var(--rn-line);
  background: #fff;
}

.rn-nav__inner {
  min-height: 58px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.rn-nav__menu {
  min-width: 0;
}

.rn-nav .menu,
.rn-nav .top-menu[data-depth="0"] {
  height: 100%;
  margin: 0;
  padding: 0;
}

.rn-nav .top-menu[data-depth="0"] {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.rn-nav .top-menu[data-depth="0"] > li {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0 !important;
  padding: 0 !important;
}

.rn-nav .top-menu[data-depth="0"] > li > a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--rn-ink);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: none;
}

.rn-nav .top-menu[data-depth="0"] > li.current > a,
.rn-nav .top-menu[data-depth="0"] > li > a:hover {
  background: var(--rn-blue);
  color: #fff;
}

.rn-nav .popover.sub-menu,
.rn-nav .sub-menu {
  box-sizing: border-box;
  top: 58px !important;
  left: 0 !important;
  width: 320px !important;
  min-width: 320px !important;
  max-width: calc(100vw - 32px);
  margin: 0 !important;
  padding: 8px 0;
  border: 1px solid var(--rn-line);
  border-radius: 0 0 6px 6px;
  background: #fff;
  box-shadow: var(--rn-shadow);
  z-index: 30;
}

.rn-nav .sub-menu .top-menu,
.rn-nav .top-menu[data-depth="1"],
.rn-nav .top-menu[data-depth="2"] {
  box-sizing: border-box;
  width: 100% !important;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
}

.rn-nav .sub-menu li,
.rn-nav .popover.sub-menu ul[data-depth="1"] > li,
.rn-nav .popover.sub-menu ul[data-depth="2"] > li {
  box-sizing: border-box;
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rn-nav .sub-menu .dropdown-item,
.rn-nav .sub-menu a {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100%;
  display: block !important;
  margin: 0 !important;
  padding: 10px 18px !important;
  color: var(--rn-ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.rn-nav .sub-menu .dropdown-item:hover,
.rn-nav .sub-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-color);
}

.rn-nav__cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  background: rgba(55, 182, 174, 0.12);
  color: var(--rn-green);
  font-weight: 900;
  white-space: nowrap;
}

.rn-menu-toggle,
.rn-mobile-overlay,
.rn-mobile-drawer {
  display: none;
}

.rn-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--rn-navy);
}

.rn-hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(27, 73, 101, 0.9) 0%, rgba(27, 73, 101, 0.72) 34%, rgba(27, 73, 101, 0.12) 67%, rgba(27, 73, 101, 0.02) 100%),
    url("../img/renovboat-nautic/hero-inflatable-boat.png");
  background-size: cover;
  background-position: center;
}

.rn-hero__inner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.rn-hero__content {
  max-width: 620px;
  padding: 54px 0;
  color: #fff;
}

.rn-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-hero h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 900;
}

.rn-hero p {
  max-width: 550px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
  line-height: 1.6;
}

.rn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rn-infoboxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.rn-infobox {
  min-width: 0;
  border: 1px solid var(--rn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.07);
}

.rn-infobox__link,
.rn-infobox__content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: var(--rn-text);
  height: 100%;
}

.rn-infobox__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--rn-soft);
  flex: 0 0 auto;
}

.rn-infobox__icon .material-icons {
  font-size: 28px;
}

.rn-infobox__body strong,
.rn-infobox__body span {
  display: block;
}

.rn-infobox__body strong {
  color: var(--rn-ink);
  font-size: 1rem;
  font-weight: 900;
}

.rn-infobox__body span {
  margin-top: 4px;
  color: var(--rn-muted);
  line-height: 1.4;
}

.rn-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.rn-category-card {
  position: relative;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rn-card-start, var(--rn-blue)), var(--rn-card-end, var(--rn-navy)));
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(27, 73, 101, 0.12);
}

.rn-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.rn-category-card .material-icons,
.rn-category-card span {
  position: relative;
  z-index: 1;
}

.rn-category-card .material-icons {
  font-size: 32px;
}

.rn-category-card--repair {
  background: linear-gradient(135deg, var(--rn-blue), var(--rn-navy));
}

.rn-category-card--pump {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.rn-category-card--anchor {
  background: linear-gradient(135deg, #333333, var(--rn-navy));
}

.rn-category-card--care {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.rn-products-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.rn-sidebar {
  min-width: 0;
}

.rn-panel {
  border: 1px solid var(--rn-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.07);
}

.rn-panel + .rn-panel {
  margin-top: 20px;
}

.rn-panel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin: 0;
  padding: 0 18px;
  background: var(--rn-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.rn-category-tree {
  padding: 0;
}

.rn-category-tree__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-category-tree__list li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--rn-line);
  background: #fff;
}

.rn-category-tree__list li:last-child {
  border-bottom: 0;
}

.rn-category-tree__list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 18px;
  color: var(--rn-ink);
  font-weight: 800;
}

.rn-category-tree > .rn-category-tree__list > li[data-depth="0"] > a {
  min-height: 54px;
  font-weight: 900;
}

.rn-category-tree > .rn-category-tree__list > li[data-depth="0"].is-open > a {
  background: linear-gradient(90deg, rgba(243, 156, 18, 0.12), rgba(27, 73, 101, 0.04));
  box-shadow: inset 4px 0 0 var(--secondary-color);
}

.rn-category-tree__list a:hover {
  background: var(--rn-soft);
  color: var(--rn-orange);
}

.rn-category-tree > .rn-category-tree__list > li[data-depth="0"] > .collapse.show,
.rn-category-tree > .rn-category-tree__list > li[data-depth="0"] > .collapse.in {
  padding: 7px 0;
  border-top: 1px solid rgba(27, 73, 101, 0.12);
  background: linear-gradient(90deg, rgba(243, 156, 18, 0.18) 0, rgba(243, 156, 18, 0.18) 4px, var(--light-gray) 4px, #fff 100%);
}

.rn-category-tree__list li[data-depth="1"] {
  margin: 5px 10px 5px 16px;
  border: 1px solid rgba(27, 73, 101, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(27, 73, 101, 0.04);
}

.rn-category-tree__list li[data-depth="1"] > a {
  min-height: 42px;
  padding: 0 14px;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 800;
}

.rn-category-tree__list li[data-depth="1"] > a:hover {
  background: rgba(243, 156, 18, 0.1);
  color: var(--primary-color);
}

.rn-category-tree__list li[data-depth="2"] {
  margin-left: 18px;
  border-color: rgba(27, 73, 101, 0.06);
}

.rn-category-tree__list li[data-depth="2"] > a {
  padding-left: 18px;
  font-size: 0.86rem;
  font-weight: 700;
}

.rn-category-tree .navbar-toggler {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rn-muted);
  border-radius: 6px;
}

.rn-category-tree .navbar-toggler:hover,
.rn-category-tree .navbar-toggler:focus {
  background: rgba(243, 156, 18, 0.12);
  color: var(--primary-color);
  outline: 0;
}

.rn-category-tree .navbar-toggler .remove,
.rn-category-tree .navbar-toggler[aria-expanded="true"] .add {
  display: none;
}

.rn-category-tree .navbar-toggler[aria-expanded="true"] .remove {
  display: inline-block;
}

.rn-category-tree .collapse.show,
.rn-category-tree .collapse.in {
  display: block;
}

.rn-category-tree .collapse:not(.show):not(.in) .rn-category-tree__list {
  display: none;
}

.quickview .arrows {
  right: 1rem !important;
  width: 4.938rem;
  text-align: center;
}

.quickview .arrows .arrow-up,
.quickview .arrows .arrow-down {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  opacity: 1 !important;
  transform: translateX(-50%);
}

.quickview .arrows .arrow-up {
  top: -2rem;
}

.quickview .arrows .arrow-down {
  bottom: -1.875rem;
}

#product-modal .modal-content .modal-body .arrows .arrow-up,
#product-modal .modal-content .modal-body .arrows .arrow-down {
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  color: var(--primary-color);
  opacity: 1 !important;
  transform: translateX(-50%);
}

.rn-panel--advice {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84)),
    var(--rn-guide-bg, url("../img/renovboat-nautic/hero-inflatable-boat.png"));
  background-size: cover;
  background-position: 70% center;
}

.rn-panel--advice .rn-kicker {
  color: var(--rn-guide-accent, var(--rn-blue));
}

.rn-panel--advice h2 {
  display: block;
  min-height: auto;
  margin: 8px 0 10px;
  padding: 0;
  background: transparent;
  color: var(--rn-ink);
  font-size: 1.35rem;
  line-height: 1.18;
}

.rn-panel--advice p {
  color: var(--rn-text);
  line-height: 1.5;
}

.rn-panel--advice a {
  color: var(--rn-guide-accent, var(--rn-blue));
  font-weight: 900;
}

.rn-products-main {
  min-width: 0;
}

.rn-section-heading {
  margin-bottom: 20px;
}

.rn-section-heading h2 {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--rn-ink);
  font-size: 1.9rem;
  line-height: 1.18;
  font-weight: 900;
}

.rn-products-section {
  margin: 0 0 34px;
}

.rn-products-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.rn-products-section .products-section-title {
  margin: 0;
  color: var(--rn-ink);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: left;
  text-transform: none !important;
}

.rn-products-section .all-product-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  color: var(--rn-blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.rn-product-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.rn-product-grid > .product,
.rn-product-grid > [class*="col-"] {
  display: flex;
  padding: 0 10px;
  margin-bottom: 20px;
}

.rn-product-card {
  width: 100%;
  height: 100%;
}

.rn-product-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rn-product-card:hover .rn-product-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(27, 73, 101, 0.13);
}

.rn-product-card__media {
  position: relative;
  min-height: 218px;
  background: #f8f9fa;
  overflow: hidden;
}

.rn-product-card__media .product-thumbnail {
  display: block;
  height: 218px;
}

.rn-product-card__media img {
  width: 100%;
  height: 218px;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  transition: transform 0.25s ease;
}

.rn-product-card:hover .rn-product-card__media img {
  transform: scale(1.04);
}

.rn-product-card__quick {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(27, 73, 101, 0.84);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 900;
}

.rn-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.rn-product-card__title {
  min-height: 48px;
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.rn-product-card__title a {
  color: var(--rn-ink);
  font-weight: 900;
}

.rn-product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 14px;
}

.rn-product-card__price .price,
.product-price-and-shipping .price {
  color: var(--rn-orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.rn-product-card__price .regular-price {
  color: var(--rn-muted);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.rn-product-card__actions {
  display: block;
}

.rn-add-cart-btn,
.rn-details-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  font-weight: 900;
}

.rn-add-cart-btn {
  width: 100%;
  padding: 0 14px;
  border: 0;
  background: var(--rn-orange);
  color: #fff;
  cursor: pointer;
  font-size: 0.94rem;
}

.rn-add-cart-btn:hover,
.rn-add-cart-btn:focus {
  background: var(--rn-orange-dark);
}

.rn-add-cart-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.rn-details-btn {
  min-height: 30px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--rn-blue);
  font-size: 0.86rem;
  background: transparent;
}

.rn-details-btn:hover,
.rn-details-btn:focus {
  color: var(--rn-orange);
}

.product-flags {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.product-flag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--rn-green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-flag.discount,
.product-flag.on-sale {
  background: var(--rn-orange);
}

.product-flag.out_of_stock {
  max-width: min(150px, calc(100% - 8px));
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.08;
}

.rn-listing-page {
  padding-bottom: 52px;
}

.breadcrumb {
  margin: 18px 0 16px;
  padding: 0;
  background: transparent;
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: rgba(51, 51, 51, 0.66);
  font-weight: 700;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(51, 51, 51, 0.36);
}

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

.rn-category-hero {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 28px;
  align-items: center;
  margin: 0 0 24px;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 156, 18, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(27, 73, 101, 0.98), rgba(27, 73, 101, 0.86));
  box-shadow: var(--rn-shadow);
}

.rn-category-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-category-hero h1 {
  margin: 8px 0 0;
  color: #fff !important;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.02;
  font-weight: 900;
}

.rn-category-hero__description {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.rn-category-hero__description p {
  margin-bottom: 12px;
  color: inherit;
}

.rn-category-hero__description p:last-child {
  margin-bottom: 0;
}

.rn-category-hero__description a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
}

.rn-category-hero__image {
  justify-self: end;
  width: 100%;
  max-width: 220px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.rn-category-hero__image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.rn-brand-hero {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  gap: 28px;
  align-items: center;
  margin: 0 0 24px;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(27, 73, 101, 0.97), rgba(27, 73, 101, 0.86)),
    radial-gradient(circle at 88% 18%, rgba(243, 156, 18, 0.28), transparent 34%),
    var(--primary-color);
  box-shadow: 0 18px 40px rgba(27, 73, 101, 0.18);
}

.rn-brand-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-brand-hero h1 {
  margin: 8px 0 0;
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
}

.rn-brand-hero__description {
  max-width: 850px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.rn-brand-hero__description p {
  margin-bottom: 12px;
  color: inherit;
}

.rn-brand-hero__description p:last-child {
  margin-bottom: 0;
}

.rn-brand-hero__meta {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.rn-brand-hero__meta span {
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rn-brand-hero__meta strong {
  margin-top: 8px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.12;
  font-weight: 900;
}

.rn-brand-hero__meta em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 800;
}

body#cms #wrapper {
  background: var(--light-gray);
}

body#cms #main {
  padding-bottom: 56px;
}

.rn-cms-hero {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 24px;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(27, 73, 101, 0.97), rgba(27, 73, 101, 0.86)),
    radial-gradient(circle at 92% 16%, rgba(243, 156, 18, 0.28), transparent 34%),
    var(--primary-color);
  box-shadow: 0 18px 40px rgba(27, 73, 101, 0.18);
}

.rn-cms-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-cms-hero h1 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
}

.rn-cms-content {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rn-cms-content__inner {
  padding: 34px 38px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  color: rgba(51, 51, 51, 0.78);
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-cms-content__inner > *:first-child {
  margin-top: 0;
}

.rn-cms-content__inner > *:last-child {
  margin-bottom: 0;
}

.rn-cms-content__inner h2,
.rn-cms-content__inner h3,
.rn-cms-content__inner h4 {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-cms-content__inner h2 {
  margin: 30px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.45rem;
}

.rn-cms-content__inner h2:first-child {
  margin-top: 0;
}

.rn-cms-content__inner h3 {
  margin: 24px 0 10px;
  font-size: 1.18rem;
}

.rn-cms-content__inner p {
  margin: 0 0 14px;
}

.rn-cms-content__inner ul {
  margin: 0 0 18px;
  padding-left: 0;
}

.rn-cms-content__inner ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.rn-cms-content__inner ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  list-style: none;
}

.rn-cms-content__inner ol li {
  margin-bottom: 8px;
}

.rn-cms-content__inner ul li::before,
.rn-cms-content__inner .rn-cms-bullet-paragraph::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--secondary-color);
}

.rn-cms-content__inner .rn-cms-bullet-paragraph {
  position: relative;
  padding-left: 22px;
}

.rn-cms-content__inner .rn-cms-orphan-bullet {
  display: none;
}

.rn-cms-content__inner a {
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(243, 156, 18, 0.55);
  text-underline-offset: 3px;
}

.rn-cms-content__inner strong,
.rn-cms-content__inner b {
  color: var(--text-color);
  font-weight: 900;
}

.rn-cms-content__inner table {
  width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
}

.rn-cms-content__inner th,
.rn-cms-content__inner td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
}

.rn-cms-content__inner th {
  background: var(--primary-color);
  color: #fff;
}

body#contact #wrapper {
  background: var(--light-gray);
}

body#contact #main {
  padding-bottom: 56px;
}

body#contact #content {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rn-contact-hero {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 28px;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(27, 73, 101, 0.97), rgba(27, 73, 101, 0.86)),
    radial-gradient(circle at 90% 18%, rgba(243, 156, 18, 0.28), transparent 34%),
    var(--primary-color);
  box-shadow: 0 18px 40px rgba(27, 73, 101, 0.18);
}

.rn-contact-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-contact-hero h1 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 1.03;
  font-weight: 900;
}

.rn-contact-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.65;
}

.rn-contact-sidebar,
body#contact #content-wrapper {
  float: none;
}

body#contact .contact-rich,
.rn-contact-main {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

body#contact .contact-rich {
  padding: 24px;
}

body#contact .contact-rich .rn-kicker {
  color: var(--secondary-color);
}

body#contact .contact-rich h4 {
  margin: 8px 0 20px;
  color: var(--primary-color);
  font-size: 1.45rem;
  font-weight: 900;
}

body#contact .contact-rich .block {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0;
}

body#contact .contact-rich .block + .block {
  margin-top: 18px;
}

body#contact .contact-rich hr {
  margin: 18px 0;
  border-color: var(--border-color);
}

body#contact .contact-rich .icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(243, 156, 18, 0.12);
  color: var(--accent-color);
}

body#contact .contact-rich .icon .material-icons {
  font-size: 24px;
}

body#contact .contact-rich .data {
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.55;
}

body#contact .contact-rich a {
  color: var(--primary-color);
  font-weight: 800;
}

.rn-contact-main {
  padding: 30px;
}

.rn-contact-form {
  margin: 0;
}

.rn-contact-form form {
  margin: 0;
}

.rn-contact-form__intro {
  margin-bottom: 24px;
}

.rn-contact-form__intro .rn-kicker {
  color: var(--secondary-color);
}

.rn-contact-form__intro h2 {
  margin: 8px 0 8px;
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 1.12;
  font-weight: 900;
}

.rn-contact-form__intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  line-height: 1.6;
}

body#contact .contact-form .form-group {
  align-items: center;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 18px;
}

body#contact .contact-form .form-control-label {
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 900;
}

body#contact .contact-form .form-control,
body#contact .contact-form .form-control-select,
body#contact .contact-form textarea {
  min-height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #fff;
  color: var(--text-color);
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body#contact .contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

body#contact .contact-form .form-control:focus,
body#contact .contact-form .form-control-select:focus,
body#contact .contact-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.16);
}

body#contact .contact-form .form-control-comment {
  color: rgba(51, 51, 51, 0.58);
  font-weight: 700;
}

body#contact .contact-form .bootstrap-filestyle .btn,
body#contact .contact-form input[type="file"]::file-selector-button {
  min-height: 48px;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  font-weight: 900;
}

body#contact .contact-form .form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

body#contact .contact-form .form-footer .btn,
body#contact .contact-form input[name="submitMessage"] {
  min-height: 52px;
  min-width: 160px;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.2);
}

body#contact .contact-form .form-footer .btn:hover,
body#contact .contact-form .form-footer .btn:focus,
body#contact .contact-form input[name="submitMessage"]:hover,
body#contact .contact-form input[name="submitMessage"]:focus {
  background: var(--secondary-color);
  color: #fff;
}

body#my-account #wrapper {
  background: var(--light-gray);
}

body#my-account #main {
  padding-bottom: 56px;
}

body#my-account #content {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rn-account-hero {
  max-width: 1180px;
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 0 auto 22px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-account-hero__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
}

.rn-account-hero__icon .material-icons {
  font-size: 30px;
}

.rn-account-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-account-hero h1 {
  margin: 6px 0 0;
  color: var(--primary-color);
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  line-height: 1.06;
  font-weight: 900;
}

.rn-account-hero p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.rn-account-page {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-account-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  box-shadow: none;
}

.rn-account-intro::after {
  display: none;
}

.rn-account-intro .rn-kicker {
  color: var(--secondary-color);
}

.rn-account-intro h2 {
  margin: 5px 0 0;
  color: var(--primary-color);
  font-size: 1.28rem;
  line-height: 1.18;
  font-weight: 900;
}

.rn-account-logout {
  flex: 0 0 auto;
  min-width: 154px;
  background: var(--primary-color);
  color: #fff !important;
}

.rn-account-logout:hover,
.rn-account-logout:focus {
  background: var(--accent-color);
  color: #fff !important;
}

body#my-account.page-my-account #content .links.rn-account-grid,
body#my-account #content .links.rn-account-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: minmax(126px, auto);
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: stretch !important;
}

body#my-account.page-my-account #content .links.rn-account-grid::before,
body#my-account.page-my-account #content .links.rn-account-grid::after,
body#my-account #content .links.rn-account-grid::before,
body#my-account #content .links.rn-account-grid::after {
  display: none !important;
  content: none !important;
}

body#my-account.page-my-account #content .links.rn-account-grid > a,
body#my-account #content .links.rn-account-grid > a {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  display: flex !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--primary-color) !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
}

body#my-account.page-my-account #content .rn-account-card,
body#my-account.page-my-account #content .links.rn-account-grid > a .link-item,
body#my-account #content .rn-account-card,
body#my-account #content .links.rn-account-grid > a .link-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 126px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

body#my-account.page-my-account #content .rn-account-card::before,
body#my-account.page-my-account #content .links.rn-account-grid > a .link-item::before,
body#my-account #content .rn-account-card::before,
body#my-account #content .links.rn-account-grid > a .link-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.18s ease;
}

body#my-account.page-my-account #content .rn-account-card:hover,
body#my-account.page-my-account #content .rn-account-card:focus,
body#my-account.page-my-account #content .links.rn-account-grid > a:hover .link-item,
body#my-account.page-my-account #content .links.rn-account-grid > a:focus .link-item,
body#my-account #content .rn-account-card:hover,
body#my-account #content .rn-account-card:focus,
body#my-account #content .links.rn-account-grid > a:hover .link-item,
body#my-account #content .links.rn-account-grid > a:focus .link-item {
  transform: translateY(-2px);
  border-color: rgba(243, 156, 18, 0.42);
  box-shadow: 0 12px 26px rgba(27, 73, 101, 0.12);
}

body#my-account.page-my-account #content .rn-account-card:hover::before,
body#my-account.page-my-account #content .rn-account-card:focus::before,
body#my-account.page-my-account #content .links.rn-account-grid > a:hover .link-item::before,
body#my-account.page-my-account #content .links.rn-account-grid > a:focus .link-item::before,
body#my-account #content .rn-account-card:hover::before,
body#my-account #content .rn-account-card:focus::before,
body#my-account #content .links.rn-account-grid > a:hover .link-item::before,
body#my-account #content .links.rn-account-grid > a:focus .link-item::before {
  opacity: 1;
}

body#my-account.page-my-account #content .rn-account-card__icon,
body#my-account.page-my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow),
body#my-account #content .rn-account-card__icon,
body#my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow) {
  flex: 0 0 48px !important;
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(27, 73, 101, 0.08);
  color: var(--primary-color);
  padding: 0 !important;
  margin: 0 !important;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.rn-account-card__icon .material-icons,
body#my-account.page-my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow),
body#my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow) {
  width: auto !important;
  display: inline-flex !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: 25px !important;
  line-height: 1 !important;
}

body#my-account.page-my-account #content .rn-account-card:hover .rn-account-card__icon,
body#my-account.page-my-account #content .rn-account-card:focus .rn-account-card__icon,
body#my-account.page-my-account #content .links.rn-account-grid > a:hover .link-item > .material-icons:not(.rn-account-card__arrow),
body#my-account.page-my-account #content .links.rn-account-grid > a:focus .link-item > .material-icons:not(.rn-account-card__arrow),
body#my-account #content .rn-account-card:hover .rn-account-card__icon,
body#my-account #content .rn-account-card:focus .rn-account-card__icon,
body#my-account #content .links.rn-account-grid > a:hover .link-item > .material-icons:not(.rn-account-card__arrow),
body#my-account #content .links.rn-account-grid > a:focus .link-item > .material-icons:not(.rn-account-card__arrow) {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.03);
}

.rn-account-card__content {
  flex: 0 1 132px;
  min-width: 0;
  max-width: 132px;
  align-self: center;
  padding-right: 0;
  text-transform: none !important;
}

.rn-account-card__title,
body#my-account.page-my-account #content .links.rn-account-grid > a .link-item,
body#my-account #content .links.rn-account-grid > a .link-item {
  color: var(--primary-color) !important;
  font-size: 0.96rem !important;
  font-weight: 900;
  line-height: 1.24;
  text-align: left !important;
  text-transform: none !important;
}

.rn-account-card__title {
  display: block;
  color: var(--primary-color);
  font-size: 0.98rem;
  text-transform: none !important;
}

.rn-account-card__text {
  display: block;
  margin-top: 7px;
  color: rgba(51, 51, 51, 0.68);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.38;
  overflow-wrap: anywhere;
  text-transform: none !important;
}

.rn-account-card__arrow {
  position: static;
  flex: 0 0 26px;
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 19px !important;
  line-height: 1 !important;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body#my-account #content .rn-account-card:hover .rn-account-card__arrow,
body#my-account #content .rn-account-card:focus .rn-account-card__arrow,
body#my-account #content .links.rn-account-grid > a:hover .rn-account-card__arrow,
body#my-account #content .links.rn-account-grid > a:focus .rn-account-card__arrow {
  background: rgba(243, 156, 18, 0.16);
  color: var(--accent-color);
  transform: translateX(2px);
}

body#my-account.page-my-account #content .links.rn-account-grid > a .link-item br,
body#my-account #content .links.rn-account-grid > a .link-item br {
  display: none !important;
}

body#identity #wrapper,
body#addresses #wrapper,
body#address #wrapper,
body#history #wrapper,
body#order-slip #wrapper,
body#discount #wrapper,
body#order-detail #wrapper,
body#module-ps_emailalerts-account #wrapper,
body#module-blockwishlist-view #wrapper,
body#module-blockwishlist-lists #wrapper,
body#module-psgdpr-gdpr #wrapper {
  background: var(--light-gray);
}

body#identity #main,
body#addresses #main,
body#address #main,
body#history #main,
body#order-slip #main,
body#discount #main,
body#order-detail #main,
body#module-ps_emailalerts-account #main,
body#module-blockwishlist-view #main,
body#module-blockwishlist-lists #main,
body#module-psgdpr-gdpr #main {
  padding-bottom: 54px;
}

.rn-customer-hero,
body.rn-customer-module .page-header {
  max-width: 1180px;
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0 auto 22px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-customer-hero__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
}

.rn-customer-hero__icon .material-icons {
  font-size: 30px;
}

.rn-customer-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-customer-hero h1,
body.rn-customer-module .page-header h1 {
  margin: 6px 0 0;
  color: var(--primary-color);
  font-size: clamp(1.65rem, 2.25vw, 2.25rem);
  line-height: 1.08;
  font-weight: 900;
}

.rn-customer-hero p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

body:not(#my-account) .rn-customer-page,
body.rn-customer-module #content {
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:not(#my-account) .rn-customer-content,
body.rn-customer-module #content {
  padding: 28px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  color: rgba(51, 51, 51, 0.76);
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-customer-content::after {
  content: "";
  display: table;
  clear: both;
}

.rn-customer-content > h6,
body.rn-customer-module #content > h6,
body.rn-customer-module #content > p:first-child {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--secondary-color);
  border-radius: 6px;
  background: var(--light-gray);
  color: rgba(51, 51, 51, 0.72);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.55;
}

.rn-customer-content .alert,
body.rn-customer-module #content .alert {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: rgba(27, 73, 101, 0.06);
  color: var(--primary-color);
  font-weight: 800;
}

.rn-customer-content .alert a,
body.rn-customer-module #content .alert a {
  color: var(--accent-color);
  font-weight: 900;
}

.rn-customer-content form,
body.rn-customer-module #content form {
  margin: 0;
}

.rn-customer-content .form-group,
body.rn-customer-module #content .form-group {
  align-items: center;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 18px;
}

.rn-customer-content .form-control-label,
body.rn-customer-module #content .form-control-label,
.rn-customer-content label,
body.rn-customer-module #content label {
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 900;
}

.rn-customer-content .form-control,
.rn-customer-content .form-control-select,
.rn-customer-content select,
.rn-customer-content textarea,
body.rn-customer-module #content .form-control,
body.rn-customer-module #content .form-control-select,
body.rn-customer-module #content select,
body.rn-customer-module #content textarea {
  min-height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #fff;
  color: var(--text-color);
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.rn-customer-content textarea,
body.rn-customer-module #content textarea {
  min-height: 128px;
}

.rn-customer-content .form-control:focus,
.rn-customer-content .form-control-select:focus,
.rn-customer-content select:focus,
.rn-customer-content textarea:focus,
body.rn-customer-module #content .form-control:focus,
body.rn-customer-module #content .form-control-select:focus,
body.rn-customer-module #content select:focus,
body.rn-customer-module #content textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.16);
}

.rn-customer-content .custom-checkbox,
.rn-customer-content .custom-radio,
body.rn-customer-module #content .custom-checkbox,
body.rn-customer-module #content .custom-radio {
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
}

.rn-customer-content .form-footer,
body.rn-customer-module #content .form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.rn-customer-content .btn,
.rn-customer-content .button-primary,
.rn-customer-content .form-control-submit,
body.rn-customer-module #content .btn,
body.rn-customer-module #content .button-primary,
body.rn-customer-module #content .form-control-submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.18);
}

.rn-customer-content .btn:hover,
.rn-customer-content .btn:focus,
.rn-customer-content .button-primary:hover,
.rn-customer-content .button-primary:focus,
body.rn-customer-module #content .btn:hover,
body.rn-customer-module #content .btn:focus {
  background: var(--secondary-color);
  color: #fff !important;
}

.rn-customer-content .table,
body.rn-customer-module #content .table {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

.rn-customer-content .table thead th,
body.rn-customer-module #content .table thead th {
  padding: 14px;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rn-customer-content .table tbody th,
.rn-customer-content .table tbody td,
body.rn-customer-module #content .table tbody th,
body.rn-customer-module #content .table tbody td {
  padding: 14px;
  border-top: 1px solid var(--border-color);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  vertical-align: middle;
}

.rn-customer-content .table tbody th,
body.rn-customer-module #content .table tbody th {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-customer-content .table a,
body.rn-customer-module #content .table a {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-customer-content .label,
body.rn-customer-module #content .label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}

.rn-customer-content .order-actions {
  white-space: nowrap;
}

.rn-customer-content .order-actions a + a {
  margin-left: 10px;
}

body#addresses .rn-customer-content,
body.page-addresses .rn-customer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body#addresses .rn-customer-content > [class*="col-"],
body.page-addresses .rn-customer-content > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  float: none !important;
  padding: 0 !important;
}

body#addresses .rn-customer-content > .clearfix,
body.page-addresses .rn-customer-content > .clearfix {
  display: none;
}

body#addresses .rn-customer-content::after,
body.page-addresses .rn-customer-content::after {
  display: none;
  content: none;
}

body#addresses .address,
body.page-addresses .address {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

body#addresses .address .address-body,
body.page-addresses .address .address-body {
  min-height: 170px;
  padding: 22px;
}

body#addresses .address h4,
body.page-addresses .address h4 {
  margin: 0 0 14px;
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 900;
}

body#addresses .address address,
body.page-addresses .address address {
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

body#addresses .address .address-footer,
body.page-addresses .address .address-footer {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border-color);
  background: var(--light-gray);
}

body#addresses .address .address-footer a,
body.page-addresses .address .address-footer a,
body#addresses .addresses-footer a,
body.page-addresses .addresses-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 900;
}

body#addresses .address .address-footer a:hover,
body.page-addresses .address .address-footer a:hover,
body#addresses .addresses-footer a:hover,
body.page-addresses .addresses-footer a:hover {
  border-color: var(--secondary-color);
  color: var(--accent-color);
}

body#addresses .addresses-footer,
body.page-addresses .addresses-footer {
  grid-column: 1 / -1;
  margin: 6px 0 0;
}

.rn-customer-content .orders,
.rn-customer-content .credit-slips,
.rn-customer-content .cart-rules,
.rn-customer-content .shipping-lines,
.rn-customer-content .history-lines,
body.rn-customer-module #content .orders,
body.rn-customer-module #content .credit-slips,
body.rn-customer-module #content .cart-rules {
  display: grid;
  gap: 14px;
  margin: 0;
}

.rn-customer-content .order,
.rn-customer-content .credit-slip,
.rn-customer-content .cart-rule,
.rn-customer-content .shipping-line,
.rn-customer-content .history-line,
body.rn-customer-module #content .order,
body.rn-customer-module #content .credit-slip,
body.rn-customer-module #content .cart-rule {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

.rn-customer-content .credit-slip ul,
.rn-customer-content .cart-rule ul,
.rn-customer-content .shipping-line ul,
body.rn-customer-module #content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-customer-content .credit-slip li,
.rn-customer-content .cart-rule li,
.rn-customer-content .shipping-line li,
body.rn-customer-module #content li {
  margin: 0 0 10px;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
}

.rn-customer-content .credit-slip li:last-child,
.rn-customer-content .cart-rule li:last-child,
.rn-customer-content .shipping-line li:last-child,
body.rn-customer-module #content li:last-child {
  margin-bottom: 0;
}

.rn-customer-content .box,
body.rn-customer-module #content .box {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

.rn-customer-content .box h3,
.rn-customer-content .box h4,
body.rn-customer-module #content .box h3,
body.rn-customer-module #content .box h4 {
  margin: 0 0 14px;
  color: var(--primary-color);
  font-size: 1.12rem;
  font-weight: 900;
}

.rn-customer-footer {
  max-width: 1180px;
  margin: 0 auto 42px;
  padding: 0;
}

.rn-customer-footer .account-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 10px 0;
  padding: 0 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(27, 73, 101, 0.06);
}

.rn-customer-footer .account-link:hover,
.rn-customer-footer .account-link:focus {
  border-color: var(--secondary-color);
  color: var(--accent-color);
}

body.rn-customer-module .page-header {
  grid-template-columns: minmax(0, 1fr);
}

body.rn-customer-module .page-header::before {
  content: "Espace client";
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.rn-customer-module .page-header h1 {
  margin-top: -4px;
}

body.rn-customer-module #content h1,
body.rn-customer-module #content h2,
body.rn-customer-module #content h3 {
  color: var(--primary-color);
  font-weight: 900;
}

body#identity .rn-customer-content .form-group,
body#address .rn-customer-content .form-group {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) minmax(90px, auto);
  gap: 12px 18px;
}

body#identity .rn-customer-content .form-group > [class*="col-"],
body#address .rn-customer-content .form-group > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

body#identity .rn-customer-content .form-control-label,
body#address .rn-customer-content .form-control-label {
  padding-top: 14px;
  text-align: left;
}

.rn-customer-content .form-control-comment,
body.rn-customer-module #content .form-control-comment {
  align-self: center;
  color: rgba(51, 51, 51, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.rn-customer-content .forgot-password,
.rn-customer-content .custom-checkbox em,
body.rn-customer-module #content .forgot-password,
body.rn-customer-module #content em {
  color: rgba(51, 51, 51, 0.66);
}

.rn-customer-content .forgot-password a,
.rn-customer-content .custom-checkbox a,
body.rn-customer-module #content a {
  color: var(--primary-color);
  font-weight: 900;
}

body#history .rn-customer-content,
body#order-slip .rn-customer-content,
body#discount .rn-customer-content,
body#order-detail .rn-customer-content {
  overflow-x: auto;
}

body#history .rn-customer-content > h6::before,
body#order-slip .rn-customer-content > h6::before,
body#discount .rn-customer-content > h6::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--secondary-color);
}

body#order-detail .rn-customer-content #order-infos,
body#order-detail .rn-customer-content .addresses,
body#order-detail .rn-customer-content .order-items,
body#order-detail .rn-customer-content .order-message-form {
  margin-bottom: 18px;
}

body#order-detail .rn-customer-content .order-line {
  border-bottom: 1px solid var(--border-color);
}

body#module-psgdpr-gdpr .rn-gdpr-page,
body#module-psgdpr-gdpr #content .page_content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body#module-psgdpr-gdpr .psgdprinfo17 {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

body#module-psgdpr-gdpr .psgdprinfo17 h2 {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 900;
}

body#module-psgdpr-gdpr .psgdprinfo17 p {
  margin-bottom: 18px;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

body#module-psgdpr-gdpr .rn-gdpr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body#module-psgdpr-gdpr .psgdprgetdatabtn17 + .psgdprgetdatabtn17 {
  margin-left: 0;
  margin-top: 12px;
}

body[id^="module-blockwishlist"] #content .wishlist-list,
body[id^="module-blockwishlist"] #content .wishlist-products-container,
body[id^="module-blockwishlist"] #content .wishlist-products-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}

body[id^="module-blockwishlist"] #content .wishlist-list-item,
body[id^="module-blockwishlist"] #content .wishlist-product,
body[id^="module-blockwishlist"] #content .wishlist-product-item {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

body[id^="module-blockwishlist"] #content .wishlist-list-item a,
body[id^="module-blockwishlist"] #content .wishlist-product a {
  color: var(--primary-color);
  font-weight: 900;
}

body[id^="module-blockwishlist"] #content .wishlist-list-item-title,
body[id^="module-blockwishlist"] #content .wishlist-product-title,
body[id^="module-blockwishlist"] #content .product-title {
  color: var(--primary-color);
  font-weight: 900;
}

body[id^="module-blockwishlist"] #content .wishlist-list-item,
body[id^="module-blockwishlist"] #content .wishlist-product {
  padding: 18px;
}

body[id^="module-blockwishlist"] #content .wishlist-product img,
body[id^="module-blockwishlist"] #content .product-thumbnail img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

body#module-ps_emailalerts-account #content .mailalerts-account,
body#module-ps_emailalerts-account #content .emailalerts-account,
body#module-ps_emailalerts-account #content .js-mailalert {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

body#module-ps_emailalerts-account #content .product-miniature,
body#module-ps_emailalerts-account #content .product {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
}

.rn-subcategories {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(27, 73, 101, 0.06);
}

.rn-subcategories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.rn-subcategories__head .rn-kicker {
  margin-bottom: 2px;
}

.rn-subcategories .subcategory-heading {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.32rem;
  font-weight: 900;
}

.rn-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-subcategory-card {
  min-width: 0;
}

.rn-subcategory-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
  color: var(--primary-color);
  box-shadow: 0 8px 18px rgba(27, 73, 101, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rn-subcategory-card__link:hover,
.rn-subcategory-card__link:focus {
  border-color: rgba(243, 156, 18, 0.72);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(27, 73, 101, 0.12);
}

.rn-subcategory-card__image {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.rn-subcategory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rn-subcategory-card__name {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.rn-subcategory-card__name .material-icons {
  color: var(--secondary-color);
  font-size: 19px;
}

.rn-listing-toolbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.05);
}

.rn-listing-toolbar__count p,
.rn-listing-toolbar__showing {
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 800;
}

.rn-listing-toolbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}

.rn-sort-order {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rn-sort-order__label {
  color: rgba(51, 51, 51, 0.74);
  font-size: 0.88rem;
  font-weight: 900;
}

.rn-sort-order .select-title {
  min-width: 220px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--light-gray);
  color: var(--primary-color);
  font-weight: 900;
}

.rn-sort-order .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 220px;
  padding: 6px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--rn-shadow);
}

.rn-sort-order .select-list {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--text-color);
  font-weight: 800;
}

.rn-sort-order .select-list:hover,
.rn-sort-order .select-list.current {
  background: rgba(243, 156, 18, 0.12);
  color: var(--primary-color);
}

.rn-filter-button .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 900;
}

.rn-category-product-grid {
  margin-right: -10px;
  margin-left: -10px;
}

.rn-listing-page .rn-category-product-grid > .product,
.rn-listing-page .rn-category-product-grid > [class*="col-"],
#category .rn-category-product-grid > .product,
#category .rn-category-product-grid > [class*="col-"],
#manufacturer .rn-category-product-grid > .product,
#manufacturer .rn-category-product-grid > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 22px;
}

#manufacturer #left-column > * {
  margin-bottom: 22px;
}

#category #left-column > * {
  margin-bottom: 22px;
}

#manufacturer #left-column #search_filters_wrapper,
#manufacturer #left-column #search_filters,
#category #left-column #search_filters_wrapper,
#category #left-column #search_filters {
  margin: 0;
}

#search_filters {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(27, 73, 101, 0.06);
}

#search_filters > .h6,
#search_filters > p.h6 {
  display: block;
  margin: 0;
  padding: 16px 18px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

#search_filters .clear-all-wrapper {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
}

#search_filters .btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--accent-color);
  font-weight: 900;
}

#search_filters .facet {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
}

#search_filters .facet:last-child {
  border-bottom: 0;
}

#search_filters .facet-title {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

#search_filters .facet ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#search_filters .facet li {
  margin-bottom: 9px;
}

#search_filters .facet li:last-child {
  margin-bottom: 0;
}

#search_filters .facet-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.3;
}

#search_filters .facet-label a {
  color: var(--text-color);
  font-weight: 700;
}

#search_filters .facet-label.active a,
#search_filters .facet-label a:hover {
  color: var(--accent-color);
}

#search_filters .magnitude {
  color: rgba(51, 51, 51, 0.55);
  font-weight: 700;
}

#search_filters .facet-dropdown {
  padding: 0;
}

#search_filters .facet-dropdown .select-title {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--light-gray);
  color: var(--text-color);
}

.active_filters {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(243, 156, 18, 0.32);
  border-radius: 8px;
  background: rgba(243, 156, 18, 0.09);
}

.active_filters .active-filter-title {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.active_filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.active_filters .filter-block {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--text-color);
  font-weight: 800;
}

.pagination {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 28px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  color: rgba(51, 51, 51, 0.68);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.05);
}

.pagination > div {
  float: none;
  width: auto;
  padding: 0;
  margin: 0;
}

.pagination .page-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .page-list li {
  margin: 0;
}

.pagination .page-list a,
.pagination .page-list span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--primary-color);
  font-weight: 900;
}

.pagination .page-list .current a,
.pagination .page-list a:hover {
  background: var(--primary-color);
  color: #fff;
}

.pagination .previous,
.pagination .next {
  gap: 4px;
}

.rn-category-additional {
  margin-top: 8px;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(27, 73, 101, 0.06);
}

.rn-category-additional .category-additional-description {
  color: var(--text-color);
  line-height: 1.65;
}

.rn-care-banner {
  min-height: 285px;
  display: flex;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 46px;
  padding: 36px;
  border-radius: 8px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.14) 100%),
    var(--rn-care-bg, url("../img/renovboat-nautic/hero-inflatable-boat.png"));
  background-size: cover;
  background-position: center 62%;
  box-shadow: var(--rn-shadow);
}

.rn-care-banner .rn-kicker {
  color: var(--rn-care-accent, var(--rn-blue));
}

.rn-care-banner > div {
  max-width: 450px;
}

.rn-care-banner h2 {
  margin: 8px 0 12px;
  color: var(--rn-ink);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 900;
}

.rn-care-banner p {
  margin-bottom: 22px;
  color: var(--rn-text);
  line-height: 1.55;
}

.rn-care-banner .rn-btn--primary {
  background: var(--rn-care-accent, var(--rn-orange));
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.22);
}

.rn-care-banner .rn-btn--primary:hover,
.rn-care-banner .rn-btn--primary:focus {
  background: var(--rn-care-accent, var(--rn-orange-dark));
  filter: brightness(0.92);
}

.rn-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 156, 18, 0.16), transparent 32%),
    linear-gradient(180deg, #1B4965 0%, #143b52 100%);
  color: rgba(255, 255, 255, 0.82);
}

.rn-footer__newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
  gap: 20px;
  align-items: stretch;
  padding: 32px 0 28px;
}

.rn-newsletter,
.rn-social {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.rn-newsletter {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(360px, 1.14fr);
  gap: 30px;
  align-items: center;
  padding: 24px 28px;
}

.rn-newsletter__text span,
.rn-social__title {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rn-newsletter__text h2 {
  margin: 0;
  color: #fff !important;
  font-size: 1.32rem;
  line-height: 1.16;
  font-weight: 900;
}

.rn-newsletter__text p,
.rn-newsletter__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.5;
}

.rn-newsletter__form {
  margin: 0;
  min-width: 0;
}

.rn-newsletter__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 12px;
  align-items: stretch;
}

.rn-newsletter__field input[type="email"],
.rn-newsletter.block_newsletter input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--rn-text);
}

.rn-newsletter__field .btn,
.rn-newsletter__field button,
.rn-newsletter__submit {
  min-height: 48px;
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--accent-color) !important;
  border: 1px solid var(--accent-color) !important;
  color: #fff !important;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  float: none !important;
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  text-indent: 0 !important;
}

.rn-newsletter__submit:hover,
.rn-newsletter__submit:focus {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}

.rn-social {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.rn-social ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-social li,
.rn-footer .rn-social li,
.rn-social.block-social li {
  width: auto !important;
  height: auto !important;
  margin: 0;
  background: transparent !important;
  text-indent: 0 !important;
}

.rn-social a,
.rn-social.block-social li a {
  min-height: 38px;
  width: auto !important;
  height: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-size: 0.84rem !important;
  font-weight: 800;
  text-indent: 0 !important;
  overflow: visible !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.rn-social a::before,
.rn-social.block-social li a::before {
  display: none !important;
  content: none !important;
}

.rn-social li.facebook {
  --rn-social-color: #1877f2;
}

.rn-social li.linkedin {
  --rn-social-color: #0a66c2;
}

.rn-social li.tiktok {
  --rn-social-color: #000;
}

.rn-social li.twitter,
.rn-social li.x-twitter {
  --rn-social-color: #000;
}

.rn-social li.instagram {
  --rn-social-color: #e4405f;
}

.rn-social li.youtube {
  --rn-social-color: #ff0000;
}

.rn-social li.pinterest {
  --rn-social-color: #bd081c;
}

.rn-social li.rss {
  --rn-social-color: var(--secondary-color);
}

.rn-social a:hover,
.rn-social a:focus,
.rn-social.block-social li a:hover,
.rn-social.block-social li a:focus {
  background: var(--rn-social-color, var(--secondary-color)) !important;
  border-color: var(--rn-social-color, var(--secondary-color)) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  transform: translateY(-1px);
}

.rn-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 2fr);
  gap: 46px;
  padding: 38px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rn-footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.rn-footer__brand p {
  margin: 12px 0 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.rn-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.rn-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #fff !important;
  font-weight: 900;
}

.rn-footer__contact .material-icons {
  color: var(--secondary-color);
  font-size: 19px;
}

.rn-footer__hooks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
}

.rn-footer .links,
.rn-footer .block-contact,
.rn-footer #block_myaccount_infos {
  width: auto;
  max-width: none;
  padding: 0;
  flex: none;
}

.rn-footer .links > .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

.rn-footer .links .wrapper {
  width: auto;
  max-width: none;
  padding: 0;
  flex: none;
}

.rn-footer h3,
.rn-footer h4,
.rn-footer .h3,
.rn-footer .h4,
.rn-footer .block-contact-title,
.rn-footer .myaccount-title,
.rn-footer .title {
  margin: 0 0 14px !important;
  color: #fff !important;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.rn-footer li {
  margin-bottom: 9px;
}

.rn-footer .rn-social li {
  margin: 0;
}

.rn-footer a {
  color: rgba(255, 255, 255, 0.78) !important;
  transition: color 0.18s ease, transform 0.18s ease;
}

.rn-footer a:hover {
  color: var(--secondary-color) !important;
}

.rn-footer .rn-social a {
  color: #fff !important;
}

.rn-footer .rn-social a:hover,
.rn-footer .rn-social a:focus {
  color: #fff !important;
}

.rn-footer__bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.rn-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rn-blog-card {
  border: 1px solid var(--rn-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.07);
}

.rn-blog-card__link,
.rn-blog-card__body {
  display: block;
}

.rn-blog-card__media {
  display: block;
  height: 210px;
  background: #f8f9fa;
}

.rn-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rn-blog-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rn-blog-card__media--placeholder .material-icons {
  color: var(--rn-blue);
  font-size: 46px;
}

.rn-blog-card__body {
  padding: 18px;
}

.rn-blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rn-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.rn-blog-card__body strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--rn-ink);
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
}

.rn-blog-card__body span {
  color: var(--rn-text);
  line-height: 1.5;
}

.rn-blog-card__body em {
  display: block;
  margin-top: 14px;
  color: var(--rn-orange);
  font-style: normal;
  font-weight: 900;
}

.rn-blog-article {
  max-width: 880px;
  margin: 0 auto;
}

.rn-blog-article__header {
  margin-bottom: 28px;
}

.rn-blog-article__header h1 {
  margin: 12px 0 0;
  color: var(--rn-ink);
  font-size: 2.3rem;
  line-height: 1.15;
  font-weight: 900;
}

.rn-blog-article__content {
  overflow-x: auto;
  border: 1px solid var(--rn-line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  line-height: 1.7;
}

.rb-cookies-banner,
#rb-cookies-banner {
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -8px 28px rgba(27, 73, 101, 0.18);
}

@media (min-width: 768px) {
  body#category #wrapper > .container > .row {
    display: flex;
    align-items: flex-start;
  }
}

@media (max-width: 1199px) {
  .rn-header__inner {
    grid-template-columns: 210px minmax(240px, 1fr) auto;
    gap: 16px;
  }

  .rn-header-help span,
  .rn-cart__label,
  .rn-language-selector__current,
  .rn-user-info span {
    display: none;
  }

  .rn-products-layout {
    grid-template-columns: 245px minmax(0, 1fr);
  }

  .rn-category-hero {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 180px);
    padding: 26px;
  }

  .rn-brand-hero {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .rn-shell,
  .container {
    width: min(100% - 28px, var(--rn-shell));
  }

  .rn-header__inner {
    min-height: 78px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .rn-logo {
    justify-self: center;
  }

  .rn-logo img {
    max-height: 56px;
  }

  .rn-header__search,
  .rn-header-help,
  .rn-nav {
    display: none;
  }

  .rn-menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--rn-line);
    border-radius: 6px;
    background: #fff;
  }

  .rn-menu-toggle__line {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--rn-ink);
  }

  .rn-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(27, 73, 101, 0.48);
  }

  .rn-mobile-overlay.is-open {
    display: block;
  }

  .rn-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: min(360px, 88vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    background: #fff;
    box-shadow: 8px 0 30px rgba(27, 73, 101, 0.2);
    transition: transform 0.2s ease;
  }

  .rn-mobile-drawer.is-open {
    transform: translateX(0);
  }

  .rn-mobile-drawer__head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: var(--rn-navy);
    color: #fff;
    font-weight: 900;
  }

  .rn-mobile-drawer__close {
    border: 0;
    background: transparent;
    color: #fff;
  }

  .rn-mobile-drawer__search {
    padding: 16px;
    border-bottom: 1px solid var(--rn-line);
  }

  .rn-mobile-drawer__menu {
    flex: 1;
    overflow-y: auto;
  }

  .rn-mobile-drawer__menu ul,
  .rn-mobile-drawer__menu .rn-mobile-menu-list {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .rn-mobile-drawer__menu li,
  .rn-mobile-drawer__menu .rn-mobile-menu-list > li {
    position: relative !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0;
    border-bottom: 1px solid var(--rn-line);
  }

  .rn-mobile-drawer__menu a,
  .rn-mobile-drawer__menu .rn-mobile-menu-link {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    display: block !important;
    padding: 14px 18px;
    color: var(--rn-ink);
    font-weight: 900;
    line-height: 1.25;
    white-space: normal !important;
    text-align: left !important;
  }

  .rn-mobile-menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: stretch;
  }

  .rn-mobile-menu-item > a {
    min-width: 0;
    border-bottom: 0;
  }

  .rn-mobile-submenu-toggle {
    width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid var(--rn-line);
    background: #fff;
    color: var(--rn-ink);
  }

  .rn-mobile-submenu-toggle:focus {
    outline: 2px solid rgba(243, 156, 18, 0.45);
    outline-offset: -4px;
  }

  .rn-mobile-submenu-toggle[aria-expanded="true"] {
    background: rgba(243, 156, 18, 0.12);
    color: var(--primary-color);
  }

  .rn-mobile-submenu-toggle .material-icons {
    font-size: 24px;
    line-height: 1;
  }

  .rn-mobile-submenu[hidden] {
    display: none !important;
  }

  .rn-mobile-drawer__menu .rn-mobile-submenu:not(.is-open) {
    display: none !important;
  }

  .rn-mobile-submenu.is-open {
    display: block !important;
  }

  .rn-mobile-drawer__menu .rn-mobile-submenu {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid rgba(27, 73, 101, 0.08);
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    background: var(--light-gray);
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .rn-mobile-drawer__menu .rn-mobile-submenu li {
    border-color: rgba(27, 73, 101, 0.08);
  }

  .rn-mobile-drawer__menu .rn-mobile-submenu a {
    padding: 12px 18px 12px 30px;
    color: var(--rn-text);
    font-weight: 700;
    font-size: 0.94rem;
  }

  .rn-mobile-drawer__menu .rn-mobile-submenu .rn-mobile-submenu a {
    padding-left: 42px;
    font-size: 0.88rem;
  }

  .rn-mobile-drawer__foot {
    border-top: 1px solid var(--rn-line);
    padding: 14px;
  }

  .rn-mobile-drawer__foot a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    color: var(--rn-ink);
    font-weight: 900;
  }

  .rn-hero,
  .rn-hero__inner {
    min-height: 500px;
  }

  .rn-hero__media {
    background-image:
      linear-gradient(90deg, rgba(27, 73, 101, 0.92) 0%, rgba(27, 73, 101, 0.8) 48%, rgba(27, 73, 101, 0.2) 100%),
      url("../img/renovboat-nautic/hero-inflatable-boat.png");
    background-position: 58% center;
  }

  .rn-hero h1 {
    font-size: 2.45rem;
  }

  .rn-infoboxes,
  .rn-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rn-products-layout {
    grid-template-columns: 1fr;
  }

  .rn-listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .rn-listing-toolbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .rn-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .rn-panel + .rn-panel {
    margin-top: 0;
  }

  .rn-footer__top {
    grid-template-columns: 1fr;
  }

  .rn-footer__newsletter,
  .rn-newsletter {
    grid-template-columns: 1fr;
  }

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

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

  body#my-account.page-my-account #content .links.rn-account-grid,
  body#my-account #content .links.rn-account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body#addresses .rn-customer-content,
  body.page-addresses .rn-customer-content,
  body[id^="module-blockwishlist"] #content .wishlist-list,
  body[id^="module-blockwishlist"] #content .wishlist-products-container,
  body[id^="module-blockwishlist"] #content .wishlist-products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #manufacturer #left-column,
  #category #left-column,
  #contact #left-column,
  #contact #right-column {
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {
  .rn-shell,
  .container {
    width: calc(100% - 22px);
  }

  .rn-header__actions {
    gap: 6px;
  }

  .rn-user-info a,
  .rn-cart .header a {
    min-width: 42px;
    padding: 0 9px;
  }

  .rn-hero,
  .rn-hero__inner {
    min-height: 470px;
  }

  .rn-hero__content {
    padding: 38px 0;
  }

  .rn-hero h1 {
    font-size: 2rem;
  }

  .rn-hero p {
    font-size: 1rem;
  }

  .rn-hero__actions,
  .rn-btn {
    width: 100%;
  }

  .rn-infoboxes,
  .rn-category-grid,
  .rn-sidebar,
  .rn-footer__hooks,
  .rn-blog-grid {
    grid-template-columns: 1fr;
  }

  .rn-category-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rn-brand-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rn-cms-hero {
    min-height: 150px;
    padding: 24px;
  }

  .rn-contact-hero {
    min-height: 170px;
    padding: 24px;
  }

  .rn-account-hero {
    min-height: 170px;
    padding: 24px;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .rn-account-page {
    padding: 18px;
  }

  .rn-category-hero h1,
  .rn-brand-hero h1,
  .rn-cms-hero h1,
  .rn-contact-hero h1,
  .rn-account-hero h1 {
    font-size: 1.95rem;
  }

  .rn-cms-content__inner {
    padding: 24px 20px;
  }

  .rn-contact-main,
  body#contact .contact-rich {
    padding: 22px;
  }

  body#contact .contact-form .form-footer {
    justify-content: stretch;
  }

  body#contact .contact-form .form-footer .btn,
  body#contact .contact-form input[name="submitMessage"] {
    width: 100%;
  }

  .rn-account-intro {
    align-items: stretch;
    flex-direction: column;
    padding: 0 0 16px;
  }

  .rn-account-intro::after {
    display: none;
  }

  body#my-account.page-my-account #content .links.rn-account-grid,
  body#my-account #content .links.rn-account-grid {
    grid-template-columns: 1fr !important;
  }

  body#my-account.page-my-account #content .rn-account-card,
  body#my-account.page-my-account #content .links.rn-account-grid > a .link-item,
  body#my-account #content .rn-account-card,
  body#my-account #content .links.rn-account-grid > a .link-item {
    min-height: 124px;
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 14px;
    padding: 18px;
  }

  body#my-account.page-my-account #content .rn-account-card__icon,
  body#my-account.page-my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow),
  body#my-account #content .rn-account-card__icon,
  body#my-account #content .links.rn-account-grid > a .link-item > .material-icons:not(.rn-account-card__arrow) {
    flex-basis: 46px !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
  }

  .rn-customer-hero,
  body.rn-customer-module .page-header {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .rn-customer-hero__icon {
    width: 52px;
    height: 52px;
  }

  body:not(#my-account) .rn-customer-content,
  body.rn-customer-module #content {
    padding: 20px;
  }

  body#identity .rn-customer-content .form-group,
  body#address .rn-customer-content .form-group,
  body#module-psgdpr-gdpr .rn-gdpr-page,
  body#module-psgdpr-gdpr #content .page_content,
  body#addresses .rn-customer-content,
  body.page-addresses .rn-customer-content,
  body[id^="module-blockwishlist"] #content .wishlist-list,
  body[id^="module-blockwishlist"] #content .wishlist-products-container,
  body[id^="module-blockwishlist"] #content .wishlist-products-list {
    grid-template-columns: 1fr;
  }

  body#identity .rn-customer-content .form-control-label,
  body#address .rn-customer-content .form-control-label {
    padding-top: 0;
  }

  .rn-customer-content .form-footer,
  body.rn-customer-module #content .form-footer {
    justify-content: stretch;
  }

  .rn-customer-content .form-footer .btn,
  .rn-customer-content .form-control-submit,
  body.rn-customer-module #content .form-footer .btn,
  body.rn-customer-module #content .form-control-submit {
    width: 100%;
  }

  .rn-customer-footer .account-link {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .rn-cms-content__inner h2 {
    font-size: 1.25rem;
  }

  .rn-brand-hero__meta {
    min-height: auto;
  }

  .rn-category-hero__image {
    justify-self: start;
    max-width: 170px;
  }

  .rn-category-hero__image img {
    height: 130px;
  }

  .rn-subcategories {
    padding: 16px;
  }

  .rn-subcategories__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .rn-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rn-subcategory-card__name {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .rn-listing-toolbar__actions,
  .rn-sort-order,
  .rn-sort-order .select-title,
  .rn-filter-button,
  .rn-filter-button .btn {
    width: 100%;
  }

  .rn-sort-order {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pagination .page-list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .rn-footer__newsletter {
    padding: 24px 0;
  }

  .rn-newsletter,
  .rn-social {
    padding: 18px;
  }

  .rn-newsletter__field,
  .rn-footer .links > .row {
    grid-template-columns: 1fr;
  }

  .rn-products-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rn-section-heading h2,
  .rn-care-banner h2 {
    font-size: 1.55rem;
  }

  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: 165px;
    min-height: 165px;
  }

  .rn-product-card__body {
    padding: 12px;
  }

  .rn-product-card__title {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .rn-product-card__price .price,
  .product-price-and-shipping .price {
    font-size: 1.1rem;
  }

  .rn-product-card__actions {
    display: block;
  }

  .rn-add-cart-btn {
    font-size: 0.82rem;
  }

  .rn-care-banner {
    min-height: 250px;
    padding: 24px;
    background-image:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.28) 100%),
      var(--rn-care-bg, url("../img/renovboat-nautic/hero-inflatable-boat.png"));
  }

  .rn-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 0;
  }
}

@media (max-width: 420px) {
  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .rn-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rn-subcategories {
    padding: 12px;
  }

  .rn-subcategory-card__image {
    aspect-ratio: 1 / 0.82;
  }

  .rn-subcategory-card__name {
    min-height: 44px;
    padding: 9px;
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .rn-subcategory-card__name .material-icons {
    font-size: 17px;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: 210px;
    min-height: 210px;
  }
}

/* Desktop refinement after first real-store preview */
@media (min-width: 1200px) {
  .rn-shell,
  .container,
  #wrapper > .container,
  #header .container,
  #footer .container {
    width: min(1360px, calc(100% - 64px)) !important;
    max-width: 1360px !important;
  }

  body#index #wrapper > .container {
    width: min(1360px, calc(100% - 64px)) !important;
    max-width: 1360px !important;
  }

  .rn-header__inner {
    grid-template-columns: 270px minmax(420px, 1fr) auto;
    gap: 28px;
  }

  .rn-logo img {
    max-height: 78px;
  }

  .rn-nav .top-menu[data-depth="0"] > li > a {
    padding: 0 22px;
  }

  .rn-hero,
  .rn-hero__inner {
    min-height: 585px;
  }

  .rn-hero {
    border-radius: 0 0 8px 8px;
  }

  .rn-hero__content {
    max-width: 700px;
  }

  .rn-hero h1 {
    font-size: 3.65rem;
  }

  .rn-hero p {
    font-size: 1.22rem;
  }

  .rn-infoboxes {
    margin-top: 26px;
  }

  .rn-category-grid {
    margin-top: 34px;
    gap: 22px;
  }

  .rn-category-card {
    min-height: 165px;
    padding: 24px;
    font-size: 1.18rem;
  }

  .rn-products-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    margin-top: 42px;
  }

  .rn-section-heading h2 {
    max-width: 860px;
    font-size: 2.15rem;
  }

  .rn-product-grid {
    margin-left: -12px;
    margin-right: -12px;
  }

  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: 255px;
    min-height: 255px;
  }

  .rn-product-card__body {
    padding: 18px;
  }

  .rn-product-card__title {
    min-height: 54px;
    font-size: 1.02rem;
  }

  .rn-products-section {
    margin-bottom: 44px;
  }

  .rn-care-banner {
    min-height: 330px;
    padding: 46px;
    margin-top: 28px;
  }

  .rn-footer__top {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 2fr);
  }
}

body#index .rn-products-main > .rn-products-section:nth-of-type(n+3) {
  display: none;
}

body#index .rn-products-section .rn-product-grid > .product:nth-child(n+9),
body#index .rn-products-section .rn-product-grid > [class*="col-"]:nth-child(n+9) {
  display: none;
}

/* Product page */
body#product #wrapper {
  background: var(--light-gray);
}

body#product .breadcrumb {
  margin-bottom: 18px;
}

.rn-product-page {
  padding-bottom: 56px;
}

.rn-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.rn-product-gallery,
.rn-product-summary,
.rn-product-tabs .tabs,
.tabs.rn-product-tabs {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.09);
}

.rn-product-shell > .rn-product-gallery,
.rn-product-shell > .rn-product-summary {
  float: none;
  width: auto;
  max-width: none;
}

.rn-product-gallery {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff 0%, rgba(248, 249, 250, 0.82) 100%);
}

body#product .rn-product-gallery .page-content {
  position: relative;
  margin: 0;
}

body#product .rn-product-gallery .product-flags {
  top: 14px;
  left: 14px;
}

body#product .images-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

body#product .product-cover {
  position: relative;
  height: 455px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(243, 156, 18, 0.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, rgba(248, 249, 250, 0.92) 100%),
    var(--light-gray);
  cursor: zoom-in;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

body#product .product-cover::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(27, 73, 101, 0.12), transparent 70%);
  pointer-events: none;
}

body#product .product-cover picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body#product .product-cover img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: 10px;
  transform: scale(1.24);
  transform-origin: center;
  transition: transform 0.22s ease, transform-origin 0.08s ease;
  will-change: transform;
}

body#product .product-cover.is-zooming img {
  transform: scale(1.75);
  transform-origin: var(--rn-zoom-x, 50%) var(--rn-zoom-y, 50%);
}

body#product .product-cover .layer {
  position: absolute;
  right: 14px;
  top: 14px;
  bottom: auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(27, 73, 101, 0.16);
}

body#product .product-cover .zoom-in {
  font-size: 22px;
}

body#product .js-qv-mask.mask {
  width: 100%;
  max-height: none;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body#product .js-qv-mask.mask::-webkit-scrollbar {
  display: none;
}

body#product .product-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  min-width: 100%;
}

body#product .product-images > li.thumb-container {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
}

body#product .product-images > li.thumb-container > .thumb {
  width: 84px;
  height: 84px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(27, 73, 101, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

body#product .product-images > li.thumb-container > .thumb:hover,
body#product .product-images > li.thumb-container > .thumb.selected {
  border: 2px solid var(--secondary-color);
  background: rgba(243, 156, 18, 0.05);
  box-shadow: 0 12px 22px rgba(243, 156, 18, 0.16);
  transform: translateY(-2px);
}

body#product .scroll-box-arrows {
  position: absolute;
  top: 246px;
  right: 30px;
  bottom: auto;
  left: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

body#product .scroll-box-arrows .material-icons {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 24px;
  pointer-events: auto;
  box-shadow: 0 12px 24px rgba(27, 73, 101, 0.12);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body#product .scroll-box-arrows .material-icons:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-1px);
}

.rn-product-summary {
  padding: 30px;
}

.rn-product-summary__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rn-product-ref {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(27, 73, 101, 0.08);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.rn-product-title {
  margin: 0 0 18px;
  color: var(--primary-color);
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 900;
}

body#product .product-prices {
  margin: 0 0 18px;
  padding: 18px 0 10px;
  border-top: 1px solid var(--border-color);
}

body#product .product-prices .product-discount {
  margin-bottom: 7px;
}

body#product .product-prices .regular-price {
  color: rgba(51, 51, 51, 0.55);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: line-through;
}

body#product .product-prices .current-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

body#product .product-prices .current-price-value {
  color: var(--accent-color);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

body#product .product-prices .discount {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

body#product .product-unit-price,
body#product .product-without-taxes,
body#product .product-pack-price,
body#product .price-ecotax,
body#product .tax-shipping-delivery-label {
  margin: 8px 0 0;
  color: rgba(51, 51, 51, 0.66);
  font-size: 0.9rem;
  font-weight: 700;
}

.rn-product-short-description {
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--secondary-color);
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.65;
}

.rn-product-short-description p:last-child {
  margin-bottom: 0;
}

.rn-product-gallery-description {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, #fff 100%);
  box-shadow: 0 12px 26px rgba(27, 73, 101, 0.07);
}

.rn-product-gallery-description .rn-product-short-description {
  margin: 0;
  padding-left: 18px;
  color: rgba(51, 51, 51, 0.82);
}

.rn-product-gallery-description .rn-product-short-description p {
  margin-bottom: 0.7rem;
}

.rn-product-gallery-description .rn-product-short-description p:last-child {
  margin-bottom: 0;
}

body#product .product-actions {
  margin-top: 0;
  padding-top: 0;
}

body#product .product-variants {
  margin-bottom: 20px;
}

body#product .product-variants-item {
  margin-bottom: 16px;
}

body#product .product-variants-item .control-label,
body#product .product-add-to-cart .control-label {
  display: block;
  margin: 0 0 9px;
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

body#product .product-variants select.form-control {
  min-height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--light-gray);
  color: var(--text-color);
  font-weight: 800;
}

body#product .product-variants ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#product .product-variants .input-container {
  margin: 0;
}

body#product .product-variants .radio-label {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 900;
}

body#product .product-variants input:checked + .radio-label {
  border-color: var(--secondary-color);
  background: rgba(243, 156, 18, 0.12);
}

body#product .product-quantity {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

body#product .product-quantity .qty {
  width: 112px;
  margin: 0;
}

body#product #quantity_wanted,
body#product .product-quantity .bootstrap-touchspin input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  color: var(--text-color);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

body#product .product-quantity .bootstrap-touchspin {
  width: 100%;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
}

body#product .product-quantity .bootstrap-touchspin .input-group-btn-vertical {
  display: flex;
  flex-direction: column;
  flex: 0 0 34px;
  border-left: 1px solid var(--border-color);
}

body#product .product-quantity .bootstrap-touchspin .btn {
  flex: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--light-gray);
  color: var(--primary-color);
  line-height: 1;
}

body#product .product-quantity .bootstrap-touchspin .bootstrap-touchspin-up {
  border-bottom: 1px solid var(--border-color);
}

body#product .product-quantity .bootstrap-touchspin .material-icons,
body#product .product-quantity .bootstrap-touchspin i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

body#product .product-quantity .add {
  flex: 1;
}

body#product .product-quantity .add-to-cart {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.2);
}

body#product .product-quantity .add-to-cart:hover,
body#product .product-quantity .add-to-cart:focus {
  background: var(--secondary-color);
  color: #fff;
}

body#product .product-quantity .add-to-cart .material-icons {
  font-size: 22px;
}

body#product #product-availability {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(27, 73, 101, 0.08);
  color: var(--primary-color);
  font-weight: 900;
}

body#product #product-availability .material-icons {
  font-size: 20px;
}

body#product .product-additional-info {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

body#product .product-additional-info:empty {
  display: none;
}

body#product .social-sharing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

body#product .social-sharing span {
  color: var(--text-color);
  font-weight: 700;
}

body#product .social-sharing ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

body#product .social-sharing li {
  margin: 0;
}

body#product .product-minimal-quantity {
  margin: 10px 0 0;
  color: rgba(51, 51, 51, 0.66);
  font-size: 0.88rem;
  font-weight: 700;
}

body#product .product-discounts {
  margin-bottom: 18px;
}

body#product .table-product-discounts {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
}

body#product .table-product-discounts th,
body#product .table-product-discounts td {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

body#product .table-product-discounts th {
  background: var(--light-gray);
  color: var(--primary-color);
}

body#product #block-reassurance,
body#product .blockreassurance_product {
  margin-top: 18px;
}

body#product #block-reassurance ul,
body#product .custom-reassurance ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#product #block-reassurance li,
body#product .custom-reassurance li {
  margin: 0;
  padding: 0;
  border: 0;
}

body#product #block-reassurance .block-reassurance-item,
body#product .custom-reassurance .block-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
  color: var(--text-color);
}

body#product #block-reassurance .block-reassurance-item > img,
body#product .custom-reassurance .block-reassurance-item > img,
body#product #block-reassurance .block-reassurance-item > svg,
body#product .custom-reassurance .block-reassurance-item > svg,
body#product #block-reassurance .block-reassurance-item > .material-icons,
body#product .custom-reassurance .block-reassurance-item > .material-icons {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: var(--secondary-color);
  font-size: 21px;
  object-fit: contain;
}

body#product #block-reassurance .reassurance-content,
body#product .custom-reassurance .reassurance-content {
  min-width: 0;
}

body#product #block-reassurance .h6,
body#product .custom-reassurance .h6 {
  display: block;
  margin: 0 0 2px;
  color: var(--primary-color);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: none;
}

body#product #block-reassurance p,
body#product #block-reassurance span,
body#product .custom-reassurance p,
body#product .custom-reassurance .reassurance-link {
  margin: 0;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

body#product #block-reassurance a,
body#product .custom-reassurance a {
  color: rgba(51, 51, 51, 0.7);
}

body#product #block-reassurance br,
body#product .custom-reassurance br {
  display: none;
}

.rn-product-tabs {
  margin-bottom: 34px;
}

body#product .tabs {
  margin: 0;
  padding: 0;
}

body#product .tabs .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  background: #fff;
}

body#product .tabs .nav-tabs .nav-item {
  margin: 0;
}

body#product .tabs .nav-tabs .nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--light-gray);
  color: var(--primary-color);
  font-weight: 900;
}

body#product .tabs .nav-tabs .nav-link.active,
body#product .tabs .nav-tabs .nav-link:hover,
body#product .tabs .nav-tabs .nav-link:focus {
  background: var(--primary-color);
  color: #fff;
}

body#product .tabs .tab-content {
  padding: 28px;
  color: var(--text-color);
  line-height: 1.7;
}

body#product .tabs .tab-content p:last-child {
  margin-bottom: 0;
}

body#product .product-features .h6,
body#product .product-attachments .h5 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 900;
}

body#product .product-features .data-sheet {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

body#product .product-features .data-sheet dt,
body#product .product-features .data-sheet dd {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
}

body#product .product-features .data-sheet dt {
  background: var(--light-gray);
  color: var(--primary-color);
  font-weight: 900;
}

body#product .product-features .data-sheet dd {
  color: var(--text-color);
  font-weight: 700;
}

body#product .product-features .data-sheet dt:nth-last-child(2),
body#product .product-features .data-sheet dd:last-child {
  border-bottom: 0;
}

.rn-product-accessories {
  margin-top: 28px;
}

body#product .rn-product-accessories .rn-products-section__head {
  margin-bottom: 18px;
}

@media (max-width: 1199px) {
  .rn-product-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: 22px;
  }

  .rn-product-gallery,
  .rn-product-summary {
    padding: 22px;
  }

  body#product .product-cover {
    height: 395px;
  }

  body#product .product-cover img {
    max-height: 365px;
    transform: scale(1.18);
  }

  body#product .scroll-box-arrows {
    top: 216px;
  }
}

@media (max-width: 991px) {
  .rn-product-shell {
    grid-template-columns: 1fr;
  }

  body#product .product-cover {
    height: 420px;
  }

  body#product .product-cover img {
    max-height: 390px;
  }

  body#product .scroll-box-arrows {
    top: 226px;
  }

  .rn-product-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 767px) {
  .rn-product-page {
    padding-bottom: 36px;
  }

  .rn-product-gallery,
  .rn-product-summary {
    padding: 16px;
  }

  body#product .images-container {
    grid-template-columns: 1fr;
  }

  body#product .product-cover {
    height: 330px;
  }

  body#product .product-cover img {
    max-height: 300px;
    padding: 18px;
    transform: scale(1.08);
  }

  body#product .scroll-box-arrows {
    top: 181px;
    right: 20px;
    left: 20px;
  }

  body#product .js-qv-mask.mask {
    width: 100%;
    max-height: none;
    overflow-x: auto;
  }

  body#product .product-images {
    flex-direction: row;
  }

  body#product .product-images > li.thumb-container {
    width: auto;
    flex: 0 0 auto;
  }

  body#product .product-images > li.thumb-container > .thumb {
    width: 68px;
    height: 68px;
  }

  .rn-product-summary__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .rn-product-title {
    font-size: 1.58rem;
  }

  body#product .product-prices .current-price-value {
    font-size: 1.8rem;
  }

  body#product .product-quantity {
    flex-direction: column;
  }

  body#product .product-quantity .qty,
  body#product .product-quantity .add {
    width: 100%;
  }

  body#product .tabs .nav-tabs,
  body#product .tabs .tab-content {
    padding: 16px;
  }

  body#product .tabs .nav-tabs .nav-link {
    width: 100%;
    justify-content: center;
  }

  body#product .product-features .data-sheet {
    grid-template-columns: 1fr;
  }

  body#product .product-features .data-sheet dt {
    border-bottom: 0;
  }
}

/* Responsive product grids: keep two product columns on tablet and phone */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.rn-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1199px) {
  .rn-product-grid,
  .rn-category-product-grid {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"],
  .rn-category-product-grid > .product,
  .rn-category-product-grid > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
    margin-bottom: 16px !important;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: clamp(155px, 25vw, 240px) !important;
    min-height: clamp(155px, 25vw, 240px) !important;
  }

  .rn-product-card__body {
    padding: clamp(10px, 1.7vw, 16px) !important;
  }

  .rn-product-card__title {
    min-height: 2.65em !important;
    margin-bottom: 8px !important;
    font-size: clamp(0.86rem, 1.75vw, 1rem) !important;
    line-height: 1.22 !important;
  }

  .rn-product-card__price {
    margin-bottom: 8px !important;
    gap: 4px !important;
  }

  .rn-product-card__price .price,
  .product-price-and-shipping .price {
    font-size: clamp(1.02rem, 2.1vw, 1.28rem) !important;
    line-height: 1.1 !important;
  }

  .rn-add-cart-btn,
  .rn-details-btn {
    min-height: 38px !important;
    padding: 0 10px !important;
    font-size: clamp(0.78rem, 1.55vw, 0.9rem) !important;
    line-height: 1.05 !important;
  }

  .rn-add-cart-btn .material-icons,
  .rn-details-btn .material-icons {
    font-size: 17px !important;
  }

  .rn-product-card__quick {
    right: 9px !important;
    bottom: 9px !important;
    min-height: 30px !important;
    padding: 0 9px !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 767px) {
  .rn-shell,
  .container,
  #wrapper > .container,
  #header .container,
  #footer .container {
    width: calc(100% - 12px) !important;
  }

  .rn-product-grid,
  .rn-category-product-grid {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"],
  .rn-category-product-grid > .product,
  .rn-category-product-grid > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 12px !important;
  }

  .rn-product-card__inner {
    border-radius: 6px !important;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: clamp(130px, 42vw, 190px) !important;
    min-height: clamp(130px, 42vw, 190px) !important;
  }

  .rn-product-card__media img {
    padding: 5px !important;
  }

  .rn-product-card__body {
    padding: 9px !important;
  }

  .rn-product-card__title {
    min-height: 2.6em !important;
    margin-bottom: 7px !important;
    font-size: clamp(0.74rem, 3.4vw, 0.9rem) !important;
    line-height: 1.22 !important;
  }

  .rn-product-card__price {
    margin-bottom: 5px !important;
  }

  .rn-product-card__price .price,
  .product-price-and-shipping .price {
    font-size: clamp(0.96rem, 4.2vw, 1.12rem) !important;
  }

  .rn-product-card__price .regular-price {
    display: none !important;
  }

  .rn-product-card__quick {
    right: 4px !important;
    bottom: 4px !important;
    min-height: 22px !important;
    padding: 0 6px !important;
    border-radius: 5px !important;
  }

  .rn-product-card__quick span {
    display: none !important;
  }

  .rn-product-card__quick .material-icons {
    font-size: 15px !important;
  }

  .product-flags {
    top: 7px !important;
    left: 7px !important;
    max-width: calc(100% - 14px) !important;
  }

  .product-flag {
    min-height: 22px !important;
    padding: 4px 7px !important;
    border-radius: 7px !important;
    font-size: clamp(0.58rem, 2.7vw, 0.7rem) !important;
    line-height: 1.05 !important;
  }

  .product-flag.out_of_stock {
    max-width: 82px !important;
    min-height: 0 !important;
    padding: 5px 7px !important;
    border-radius: 14px !important;
    font-size: clamp(0.56rem, 2.65vw, 0.68rem) !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }

  .rn-add-cart-btn,
  .rn-details-btn {
    min-height: 32px !important;
    padding: 0 7px !important;
    border-radius: 5px !important;
    font-size: 0 !important;
  }

  .rn-add-cart-btn span,
  .rn-details-btn span {
    font-size: 0 !important;
  }

  .rn-add-cart-btn span::after {
    content: "Ajouter";
    font-size: clamp(0.68rem, 3vw, 0.82rem);
    line-height: 1;
  }

  .rn-details-btn span::after {
    content: "Voir";
    font-size: clamp(0.68rem, 3vw, 0.82rem);
    line-height: 1;
  }

  .rn-add-cart-btn .material-icons,
  .rn-details-btn .material-icons {
    font-size: 14px !important;
  }

  .rn-products-section__head,
  .rn-listing-toolbar {
    gap: 10px;
  }

  .rn-sidebar {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .rn-product-grid > .product,
  .rn-product-grid > [class*="col-"],
  .rn-category-product-grid > .product,
  .rn-category-product-grid > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .rn-product-card__media,
  .rn-product-card__media .product-thumbnail,
  .rn-product-card__media img {
    height: clamp(112px, 40vw, 150px) !important;
    min-height: clamp(112px, 40vw, 150px) !important;
  }

  .rn-product-card__body {
    padding: 8px !important;
  }

  .rn-product-card__title {
    font-size: clamp(0.68rem, 3vw, 0.8rem) !important;
  }
}

/* Product page mobile fixes */
.rn-product-shell {
  min-width: 0;
  margin-right: 0;
  margin-left: 0;
}

.rn-product-gallery,
.rn-product-summary,
body#product .images-container,
body#product .product-cover,
body#product .js-qv-mask.mask,
.rn-product-gallery-description {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.rn-product-gallery-description,
.rn-product-gallery-description * {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 767px) {
  body#product #wrapper {
    overflow-x: hidden;
  }

  body#product #wrapper > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  body#product .breadcrumb {
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .rn-product-page {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
  }

  .rn-product-shell.row,
  .rn-product-shell {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    margin: 0 !important;
  }

  .rn-product-shell > .rn-product-gallery,
  .rn-product-shell > .rn-product-summary {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 14px !important;
    margin: 0 !important;
  }

  body#product .images-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
  }

  body#product .product-cover {
    width: 100%;
    height: clamp(270px, 78vw, 340px) !important;
    border-radius: 8px;
  }

  body#product .product-cover::before {
    right: 14px;
    bottom: 12px;
    left: 14px;
    height: 28px;
  }

  body#product .product-cover img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    padding: 10px !important;
    transform: none !important;
  }

  body#product .product-cover.is-zooming img {
    transform: none !important;
    transform-origin: center !important;
  }

  body#product .scroll-box-arrows {
    top: clamp(149px, calc(14px + 39vw), 184px) !important;
    right: 10px !important;
    left: 10px !important;
    z-index: 3;
  }

  body#product .scroll-box-arrows .material-icons {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  body#product .js-qv-mask.mask {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }

  body#product .product-images {
    width: max-content;
    min-width: 0;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 4px;
  }

  body#product .product-images > li.thumb-container > .thumb {
    width: 64px !important;
    height: 64px !important;
    padding: 5px !important;
  }

  .rn-product-gallery-description {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    overflow: hidden;
  }

  .rn-product-gallery-description .rn-product-short-description {
    padding-left: 12px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .rn-product-gallery-description .rn-product-short-description p {
    overflow-wrap: break-word;
  }

  .rn-product-summary {
    padding: 18px !important;
  }

  .rn-product-title {
    margin-bottom: 12px;
    font-size: 1.42rem !important;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  body#product .product-prices {
    margin-bottom: 14px;
    padding-top: 14px;
  }

  body#product .product-prices .current-price-value {
    font-size: 1.72rem !important;
  }

  body#product .product-quantity {
    gap: 10px;
  }

  body#product .product-quantity .qty,
  body#product .product-quantity .add {
    width: 100%;
  }

  body#product .product-additional-info,
  body#product .social-sharing {
    max-width: 100%;
  }

  body#product .social-sharing {
    flex-wrap: wrap;
  }

  body#product .tabs.rn-product-tabs,
  body#product .rn-product-tabs {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  body#product #wrapper > .container {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .rn-product-shell > .rn-product-gallery,
  .rn-product-shell > .rn-product-summary {
    padding: 12px !important;
  }

  body#product .product-cover {
    height: clamp(245px, 74vw, 310px) !important;
  }

  body#product .scroll-box-arrows {
    top: clamp(134px, calc(12px + 37vw), 167px) !important;
    right: 8px !important;
    left: 8px !important;
  }

  body#product .scroll-box-arrows .material-icons {
    width: 36px;
    height: 36px;
  }

  body#product .product-images > li.thumb-container > .thumb {
    width: 58px !important;
    height: 58px !important;
  }

  .rn-product-title {
    font-size: 1.3rem !important;
  }
}

/* Product-page recommendation modules keep the same two-column mobile rhythm */
@media (max-width: 1199px) {
  body#product .featured-products > .products {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  body#product .featured-products > .products > .product,
  body#product .featured-products > .products > [class*="col-"] {
    display: flex !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
    margin-bottom: 16px !important;
  }

  body#product .featured-products > .products > .product .rn-product-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body#product .featured-products {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  body#product .featured-products > .products {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  body#product .featured-products > .products > .product,
  body#product .featured-products > .products > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 12px !important;
  }
}

/* Category pages: force subcategories into two compact columns on mobile */
@media (max-width: 767px) {
  body#category #subcategories,
  body#category .rn-subcategories {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px !important;
    overflow: hidden !important;
  }

  body#category #subcategories ul.subcategories-list.rn-subcategory-grid,
  body#category #subcategories .rn-subcategory-grid,
  body#category .rn-subcategories ul.rn-subcategory-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    justify-content: stretch !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body#category #subcategories ul.subcategories-list.rn-subcategory-grid > li,
  body#category #subcategories .rn-subcategory-grid > li,
  body#category .rn-subcategories ul.rn-subcategory-grid > li {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    float: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body#category #subcategories .rn-subcategory-card__link {
    width: 100% !important;
    max-width: 100% !important;
  }

  body#category #subcategories .rn-subcategory-card__image {
    aspect-ratio: 1 / 0.82 !important;
  }

  body#category #subcategories .rn-subcategory-card__name {
    min-height: 44px !important;
    padding: 9px !important;
    font-size: 0.68rem !important;
    line-height: 1.18 !important;
  }
}

/* Order confirmation */
body#order-confirmation #wrapper {
  background: var(--light-gray);
}

body#order-confirmation #wrapper > .container {
  width: min(100% - 40px, 1360px) !important;
  max-width: 1360px !important;
}

body#order-confirmation .card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 73, 101, 0.08);
}

body#order-confirmation .rn-order-confirmation-hero {
  overflow: hidden;
  margin-bottom: 18px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(27, 73, 101, 0.98), rgba(27, 73, 101, 0.88)),
    var(--light-gray);
  color: #fff;
}

body#order-confirmation .rn-order-confirmation-hero__inner {
  padding: 30px;
}

body#order-confirmation .rn-order-confirmation-hero__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

body#order-confirmation .rn-order-confirmation-hero__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: #2eaf58;
  line-height: 1;
  text-align: center;
}

body#order-confirmation .rn-order-confirmation-hero__icon .material-icons {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit;
  font-size: 32px;
  line-height: 1 !important;
  text-align: center;
  transform: none !important;
}

body#order-confirmation .rn-order-confirmation-hero__message {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

body#order-confirmation .rn-order-confirmation-hero__message a {
  color: var(--secondary-color);
  font-weight: 900;
}

body#order-confirmation .rn-order-confirmation-main {
  margin-bottom: 30px;
}

body#order-confirmation .rn-order-confirmation-main__inner {
  padding: 28px;
}

body#order-confirmation .rn-order-confirmation-grid,
body#order-confirmation .rn-order-items__head,
body#order-confirmation .rn-order-line,
body#order-confirmation .rn-order-line__pricing-grid {
  margin-right: 0;
  margin-left: 0;
}

body#order-confirmation .rn-order-confirmation-grid::after,
body#order-confirmation .rn-order-items__head::after,
body#order-confirmation .rn-order-line::after,
body#order-confirmation .rn-order-line__pricing-grid::after {
  display: none !important;
  content: none !important;
}

body#order-confirmation #order-items.rn-order-items {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100%;
  padding: 0;
}

body#order-confirmation .rn-order-items__head {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(110px, 0.7fr) minmax(90px, 0.55fr) minmax(120px, 0.75fr);
  align-items: end;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 73, 101, 0.14);
}

body#order-confirmation .rn-order-items__head > .card-title {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0;
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

body#order-confirmation .rn-order-confirmation-table {
  padding-top: 4px;
}

body#order-confirmation .rn-order-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.7fr) minmax(280px, 1.25fr);
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
}

body#order-confirmation .rn-order-line > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  min-height: 0;
  padding: 0 !important;
  float: none !important;
}

body#order-confirmation .rn-order-line__image {
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
}

body#order-confirmation .rn-order-line__image img {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 92%;
  object-fit: contain;
}

body#order-confirmation .rn-order-line__details {
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.35;
}

body#order-confirmation .rn-order-line__details a {
  color: var(--primary-color);
}

body#order-confirmation .rn-order-line__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body#order-confirmation .rn-order-line__price-cell {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  color: var(--primary-color);
  font-weight: 900;
}

body#order-confirmation .rn-order-line__label {
  display: none;
}

body#order-confirmation .rn-order-line__value {
  display: block;
}

body#order-confirmation .rn-order-confirmation-table > hr {
  margin: 16px 0 18px;
  border-top: 1px solid rgba(27, 73, 101, 0.18);
}

body#order-confirmation .rn-order-totals-table {
  width: min(100%, 460px);
  margin-left: auto;
  border-collapse: separate;
  border-spacing: 0;
}

body#order-confirmation .rn-order-totals-table td {
  padding: 11px 14px;
  border-top: 1px solid rgba(27, 73, 101, 0.08);
  color: var(--text-color);
}

body#order-confirmation .rn-order-totals-table td:last-child {
  color: var(--primary-color);
  font-weight: 900;
  text-align: right;
}

body#order-confirmation .rn-order-totals-table .total-value td {
  background: rgba(243, 156, 18, 0.12);
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 900;
}

body#order-confirmation #order-details.rn-order-details {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100%;
  margin-top: 24px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(27, 73, 101, 0.12);
}

body#order-confirmation .rn-order-details__title {
  margin: 0 0 14px;
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 900;
}

body#order-confirmation .rn-order-details__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#order-confirmation .rn-order-details__list li {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
  color: var(--text-color);
  line-height: 1.45;
}

body#order-confirmation .rn-order-details__list li::before {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--secondary-color);
  content: "";
  vertical-align: 0.12em;
}

body#order-confirmation #content-hook_payment_return,
body#order-confirmation #content-hook-order-confirmation-footer,
body#order-confirmation .account-transformation-form,
body#order-confirmation #registration-form {
  margin-bottom: 22px;
}

body#order-confirmation #content-hook-order-confirmation-footer .featured-products {
  margin-top: 28px;
}

@media (max-width: 991px) {
  body#order-confirmation #wrapper > .container {
    width: calc(100% - 28px) !important;
  }

  body#order-confirmation .rn-order-line {
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: start;
  }

  body#order-confirmation .rn-order-line__pricing {
    grid-column: 1 / -1;
  }

  body#order-confirmation .rn-order-details__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body#order-confirmation #wrapper > .container {
    width: calc(100% - 18px) !important;
  }

  body#order-confirmation .rn-order-confirmation-hero__inner,
  body#order-confirmation .rn-order-confirmation-main__inner {
    padding: 18px;
  }

  body#order-confirmation .rn-order-confirmation-hero__title {
    align-items: flex-start;
    gap: 12px;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  body#order-confirmation .rn-order-confirmation-hero__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  body#order-confirmation .rn-order-items__head {
    display: block;
    padding-bottom: 10px;
  }

  body#order-confirmation .rn-order-items__head > .card-title:not(:first-child) {
    display: none;
  }

  body#order-confirmation .rn-order-items__head > .card-title:first-child {
    font-size: 1rem;
  }

  body#order-confirmation .rn-order-line {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid rgba(27, 73, 101, 0.1);
    border-radius: 8px;
    background: #fff;
  }

  body#order-confirmation .rn-order-line__image {
    width: 76px;
    height: 76px;
  }

  body#order-confirmation .rn-order-line__details {
    font-size: 0.9rem;
  }

  body#order-confirmation .rn-order-line__pricing-grid {
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(27, 73, 101, 0.08);
  }

  body#order-confirmation .rn-order-line__price-cell {
    padding: 8px !important;
    border-radius: 6px;
    background: var(--light-gray);
    text-align: left !important;
  }

  body#order-confirmation .rn-order-line__label {
    display: block;
    margin-bottom: 4px;
    color: var(--rn-muted);
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
  }

  body#order-confirmation .rn-order-line__value {
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 900;
  }

  body#order-confirmation .rn-order-totals-table {
    width: 100%;
  }

  body#order-confirmation .rn-order-totals-table td {
    padding: 10px 8px;
  }

  body#order-confirmation .rn-order-details__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body#order-confirmation .rn-order-confirmation-hero__inner,
  body#order-confirmation .rn-order-confirmation-main__inner {
    padding: 14px;
  }

  body#order-confirmation .rn-order-line__pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Cart page */
.rn-cart-page {
  padding: 18px 0 58px;
}

.rn-cart-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), #2f6078);
  box-shadow: 0 18px 40px rgba(27, 73, 101, 0.16);
  color: #fff;
}

.rn-cart-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-cart-hero h1 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.rn-cart-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.rn-cart-hero__link {
  flex: 0 0 auto;
}

.rn-cart-layout.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 26px;
  align-items: start;
  margin-right: 0;
  margin-left: 0;
}

.rn-cart-layout > .rn-cart-body,
.rn-cart-layout > .rn-cart-side {
  width: auto;
  max-width: none;
  flex: none;
  padding-right: 0;
  padding-left: 0;
}

.rn-cart-card,
.rn-cart-summary {
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-cart-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-color);
}

.rn-cart-card__header h2 {
  margin: 4px 0 0;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 900;
}

.rn-cart-card__count {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(27, 73, 101, 0.08);
  color: var(--primary-color);
  font-weight: 900;
  white-space: nowrap;
}

.rn-cart-overview {
  padding: 0 24px 10px;
}

.rn-cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-cart-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
}

.rn-cart-item:last-child {
  border-bottom: 0;
}

.rn-cart-line {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) minmax(260px, auto);
  gap: 22px;
  align-items: center;
  padding: 22px 0;
}

.rn-cart-line__image {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
}

.rn-cart-line__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.rn-cart-line__name {
  margin-bottom: 8px;
}

.rn-cart-line__name .label {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.rn-cart-line__unit-price {
  margin: 0;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 900;
}

.rn-cart-line__unit-price .price {
  color: var(--accent-color);
}

.rn-cart-line__attributes,
.rn-cart-line__customizations {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.86rem;
  font-weight: 700;
}

.rn-cart-line__actions {
  display: grid;
  grid-template-columns: 88px 104px 42px;
  gap: 14px;
  align-items: center;
  justify-content: end;
}

.rn-cart-line__meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.rn-cart-line__qty .bootstrap-touchspin {
  width: 88px;
  display: flex;
}

.rn-cart-line__qty input,
.rn-cart-line__qty .bootstrap-touchspin input.form-control {
  width: 58px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: 6px 0 0 6px;
  color: var(--primary-color);
  font-weight: 900;
  text-align: center;
}

.rn-cart-line__qty .bootstrap-touchspin .input-group-btn-vertical {
  width: 30px;
}

.rn-cart-line__qty .bootstrap-touchspin .btn {
  width: 30px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-color: var(--border-color);
  background: #fff;
  color: var(--primary-color);
}

.rn-cart-line__total {
  text-align: right;
}

.rn-cart-line__total strong,
.rn-cart-line__total .product-price {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 900;
}

.rn-cart-line__remove {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: var(--light-gray);
  color: var(--primary-color);
}

.rn-cart-line__remove:hover,
.rn-cart-line__remove:focus {
  border-color: rgba(230, 126, 34, 0.28);
  background: rgba(230, 126, 34, 0.1);
  color: var(--accent-color);
}

.rn-cart-continue {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 900;
}

.rn-cart-continue .material-icons {
  font-size: 20px;
}

.rn-cart-side {
  position: sticky;
  top: 18px;
}

.rn-cart-summary__head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
}

.rn-cart-summary__head strong {
  display: block;
  margin-top: 4px;
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 900;
}

.rn-cart-summary .cart-detailed-subtotals,
.rn-cart-summary .cart-summary-totals {
  padding: 16px 24px;
}

.rn-cart-summary .cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 9px 0;
  color: var(--text-color);
  font-weight: 700;
}

.rn-cart-summary .cart-summary-line .value {
  color: var(--primary-color);
  font-weight: 900;
  white-space: nowrap;
}

.rn-cart-summary .cart-total {
  margin-top: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 900;
}

.rn-cart-summary .block-promo {
  padding: 0 24px 18px;
}

.rn-cart-summary .promo-code-button {
  margin: 4px 0 12px;
  text-align: center;
}

.rn-cart-summary .promo-code-button a,
.rn-cart-summary .cancel-promo {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-cart-summary .promo-code form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.rn-cart-summary .promo-input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.rn-cart-summary .promo-code .btn {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 900;
}

.rn-cart-actions {
  padding: 0 24px 24px;
}

.rn-cart-checkout {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.2);
}

.rn-cart-checkout:hover,
.rn-cart-checkout:focus {
  background: var(--secondary-color);
  color: #fff !important;
}

.rn-cart-reassurance {
  margin-top: 18px;
}

.rn-cart-reassurance #block-reassurance ul,
.rn-cart-reassurance .custom-reassurance ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-cart-reassurance #block-reassurance li,
.rn-cart-reassurance .custom-reassurance li {
  margin: 0;
  padding: 0;
  border: 0;
}

.rn-cart-reassurance .block-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.06);
}

.rn-cart-reassurance .block-reassurance-item > img,
.rn-cart-reassurance .block-reassurance-item > svg,
.rn-cart-reassurance .block-reassurance-item > .material-icons {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(230, 126, 34, 0.12);
  color: var(--accent-color);
  object-fit: contain;
}

.rn-cart-reassurance .h6 {
  display: block;
  margin: 0 0 2px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
}

.rn-cart-reassurance p,
.rn-cart-reassurance span,
.rn-cart-reassurance a {
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.rn-cart-reassurance br {
  display: none;
}

.rn-cart-crossselling {
  margin-top: 32px;
}

.rn-cart-page .no-items {
  display: block;
  padding: 28px 24px;
  color: var(--text-color);
  font-weight: 800;
}

@media (max-width: 1199px) {
  .rn-cart-layout.cart-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .rn-cart-line {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .rn-cart-line__actions {
    grid-column: 2;
    justify-content: start;
  }

  .rn-cart-line__image {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 991px) {
  .rn-cart-layout.cart-grid {
    grid-template-columns: 1fr;
  }

  .rn-cart-side {
    position: static;
  }

  .rn-cart-hero {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .rn-cart-page {
    padding-top: 12px;
  }

  .rn-cart-hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rn-cart-hero h1 {
    font-size: 2rem;
  }

  .rn-cart-card__header {
    align-items: flex-start;
    padding: 18px;
  }

  .rn-cart-overview {
    padding: 0 14px 8px;
  }

  .rn-cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .rn-cart-line__image {
    width: 82px;
    height: 82px;
  }

  .rn-cart-line__name .label {
    font-size: 0.92rem;
  }

  .rn-cart-line__actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 42px;
    width: 100%;
    justify-content: stretch;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(27, 73, 101, 0.16);
  }

  .rn-cart-line__total {
    text-align: left;
  }

  .rn-cart-summary__head,
  .rn-cart-summary .cart-detailed-subtotals,
  .rn-cart-summary .cart-summary-totals,
  .rn-cart-summary .block-promo,
  .rn-cart-actions {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 420px) {
  .rn-cart-hero,
  .rn-cart-card__header {
    padding: 16px;
  }

  .rn-cart-line {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .rn-cart-line__image {
    width: 74px;
    height: 74px;
  }

  .rn-cart-line__actions {
    grid-template-columns: 86px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .rn-cart-line__remove {
    width: 38px;
    height: 38px;
  }

  .rn-cart-line__qty .bootstrap-touchspin {
    width: 82px;
  }
}

/* Checkout page */
.rn-checkout-header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 28px rgba(27, 73, 101, 0.08);
}

.rn-checkout-header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rn-checkout-header__logo img {
  max-height: 70px;
  width: auto;
}

.rn-checkout-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rn-checkout-header__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 900;
  white-space: nowrap;
}

.rn-checkout-header__link:hover,
.rn-checkout-header__link:focus {
  border-color: var(--secondary-color);
  color: var(--accent-color);
}

.rn-checkout-header__link .material-icons {
  color: inherit;
  font-size: 20px;
}

.rn-checkout-page {
  padding: 20px 0 60px;
}

.rn-checkout-page > .alert {
  margin-bottom: 16px;
  border-radius: 8px;
  font-weight: 800;
}

.rn-checkout-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: 28px 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), #2f6078);
  color: #fff;
  box-shadow: 0 18px 40px rgba(27, 73, 101, 0.16);
}

.rn-checkout-hero .rn-kicker {
  color: var(--secondary-color);
}

.rn-checkout-hero h1 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 900;
  line-height: 1.05;
}

.rn-checkout-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.rn-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 26px;
  align-items: start;
  margin-right: 0;
  margin-left: 0;
}

.rn-checkout-layout > .rn-checkout-main,
.rn-checkout-layout > .rn-checkout-side {
  width: auto;
  max-width: none;
  flex: none;
  padding-right: 0;
  padding-left: 0;
}

.rn-checkout-side {
  position: sticky;
  top: 18px;
}

.rn-checkout-step {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-checkout-step__title {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.rn-checkout-step .step-number,
.rn-checkout-step .done {
  box-sizing: border-box;
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(27, 73, 101, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.rn-checkout-step .done {
  display: none;
  position: relative;
  overflow: hidden;
  border-color: rgba(46, 175, 88, 0.18);
  background: rgba(46, 175, 88, 0.1);
  color: #2eaf58;
  font-size: 0;
  line-height: 0;
}

.rn-checkout-step .done::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 7px;
  display: block;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translate(-50%, -62%) rotate(-45deg);
  transform-origin: center;
}

.rn-checkout-step.-complete .done {
  display: inline-flex;
}

.rn-checkout-step.-complete .step-number {
  display: none;
}

.rn-checkout-step.-current .step-number {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: #fff;
}

.rn-checkout-step:not(.-current) .rn-checkout-step__title {
  color: rgba(27, 73, 101, 0.55);
}

.rn-checkout-step.-current .rn-checkout-step__title {
  background: linear-gradient(90deg, rgba(27, 73, 101, 0.06), #fff);
}

.rn-checkout-step .step-edit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color) !important;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: none;
}

.rn-checkout-step .step-edit .material-icons {
  color: var(--accent-color);
  font-size: 18px;
}

.rn-checkout-step__content {
  padding: 22px 34px 26px;
}

.rn-checkout-step:not(.-current) .rn-checkout-step__content {
  padding-top: 0;
  padding-bottom: 0;
}

.rn-checkout-step .identity,
.rn-checkout-step .form-informations,
.rn-checkout-step .js-address-form > form > p {
  margin: 0 0 16px;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  line-height: 1.55;
}

.rn-checkout-step .nav-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px !important;
  padding: 4px;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: var(--light-gray);
}

.rn-checkout-step .nav-inline .nav-item {
  margin: 0;
}

.rn-checkout-step .nav-separator {
  display: none;
}

.rn-checkout-step .nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--primary-color);
  font-weight: 900;
}

.rn-checkout-step .nav-link.active {
  background: var(--primary-color);
  color: #fff;
}

.rn-checkout-step .form-group,
.rn-checkout-step .form-group.row {
  margin-bottom: 14px;
}

.rn-checkout-step .form-control,
.rn-checkout-step input[type="text"],
.rn-checkout-step input[type="email"],
.rn-checkout-step input[type="password"],
.rn-checkout-step input[type="tel"],
.rn-checkout-step select,
.rn-checkout-step textarea {
  min-height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--text-color);
  box-shadow: none;
}

.rn-checkout-step textarea {
  min-height: 92px;
  padding: 12px;
}

.rn-checkout-step label,
.rn-checkout-step .form-control-label {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-checkout-step .continue,
.rn-checkout-step .form-control-submit,
.rn-checkout-page #payment-confirmation .btn-primary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.2);
}

.rn-checkout-step .continue:hover,
.rn-checkout-step .continue:focus,
.rn-checkout-step .form-control-submit:hover,
.rn-checkout-step .form-control-submit:focus,
.rn-checkout-page #payment-confirmation .btn-primary:hover,
.rn-checkout-page #payment-confirmation .btn-primary:focus {
  background: var(--secondary-color);
  color: #fff !important;
}

.rn-checkout-step .address-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.rn-checkout-step .address-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

.rn-checkout-step .address-item.selected {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 28px rgba(243, 156, 18, 0.16);
}

.rn-checkout-step .address-item header {
  min-height: 150px;
  margin: 0;
  padding: 18px;
}

.rn-checkout-step .radio-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.rn-checkout-step .address-alias {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 900;
}

.rn-checkout-step .address {
  grid-column: 2;
  color: var(--text-color);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.rn-checkout-step .address-item hr {
  margin: 0;
  border-color: rgba(27, 73, 101, 0.08);
}

.rn-checkout-step .address-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 14px;
  background: var(--light-gray);
}

.rn-checkout-step .address-footer a,
.rn-checkout-step .add-address a,
.rn-checkout-step [data-link-action="different-invoice-address"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color) !important;
  font-weight: 900;
}

.rn-checkout-step .add-address {
  margin: 10px 0;
}

.rn-checkout-step .delivery-options {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.rn-checkout-step .delivery-option,
.rn-checkout-step .payment-option {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
  box-shadow: 0 8px 22px rgba(27, 73, 101, 0.06);
}

.rn-checkout-step .delivery-option:has(input:checked),
.rn-checkout-step .payment-option:has(input:checked) {
  border-color: rgba(243, 156, 18, 0.62);
  background: #fff;
  box-shadow: 0 14px 28px rgba(243, 156, 18, 0.1);
}

.rn-checkout-step .delivery-option > .col-sm-1,
.rn-checkout-step .payment-option .custom-radio {
  width: auto;
  max-width: none;
  padding: 0;
}

.rn-checkout-step .delivery-option > .col-sm-1 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rn-checkout-step .delivery-option label,
.rn-checkout-step .payment-option label {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.rn-checkout-step .delivery-option label > .row {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(220px, 1fr) minmax(72px, auto);
  gap: 14px;
  align-items: center;
  margin: 0;
}

.rn-checkout-step .carrier {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.rn-checkout-step .delivery-option label [class*="col-"],
.rn-checkout-step .carrier [class*="col-"] {
  width: auto;
  max-width: none;
  padding: 0;
}

.rn-checkout-step .carrier-name,
.rn-checkout-step .carrier-price,
.rn-checkout-step .payment-option label span {
  color: var(--primary-color);
  font-weight: 900;
  line-height: 1.25;
}

.rn-checkout-step .carrier-delay {
  color: rgba(51, 51, 51, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.rn-checkout-step .carrier-price {
  justify-self: end;
  color: var(--primary-color);
  text-align: right;
  white-space: nowrap;
}

.rn-checkout-step .carrier-logo img,
.rn-checkout-step .payment-option img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.rn-checkout-step .payment-option label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.rn-checkout-step .payment-option label span {
  min-width: 0;
}

.rn-checkout-step .payment-option img {
  margin-left: auto;
}

.rn-checkout-step .carrier-extra-content,
.rn-checkout-step .additional-information {
  width: auto;
  max-width: none;
  margin: -2px 0 16px 38px;
  padding: 12px 14px;
  border: 1px solid rgba(243, 156, 18, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 24px rgba(27, 73, 101, 0.06);
}

.rn-checkout-step .carrier-extra-content:empty,
.rn-checkout-step .additional-information:empty {
  display: none !important;
}

.rn-checkout-step .carrier-extra-content.is-empty,
#extra_carrier:empty {
  display: none !important;
}

.rn-checkout-step .js-payment-option-form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rn-checkout-step .carrier-extra-content > * {
  margin: 0;
}

.rn-checkout-step .carrier-extra-content .btn,
.rn-checkout-step .carrier-extra-content button,
.rn-checkout-step .carrier-extra-content a.btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff !important;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: none;
}

.rn-checkout-step .carrier-extra-content .btn:hover,
.rn-checkout-step .carrier-extra-content button:hover,
.rn-checkout-step .carrier-extra-content a.btn:hover {
  background: var(--accent-color);
}

.rn-checkout-step .order-options {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.rn-checkout-step .custom-checkbox,
.rn-checkout-step .custom-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rn-checkout-step .custom-checkbox > span,
.rn-checkout-step .custom-radio > span {
  border-color: var(--border-color);
}

.rn-checkout-step .custom-radio input {
  width: 20px;
  height: 20px;
  margin: 0;
}

body#checkout .rn-checkout-step .custom-radio {
  position: relative !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
}

body#checkout .rn-checkout-step .custom-radio input[type="radio"] {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 0 !important;
  opacity: 0 !important;
  cursor: pointer;
}

body#checkout .rn-checkout-step .custom-radio > span {
  box-sizing: border-box;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  display: block !important;
  margin: 0 !important;
  border: 2px solid #b9c9d4 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: none !important;
}

body#checkout .rn-checkout-step .custom-radio input[type="radio"]:checked + span {
  border-color: #27b9cf !important;
  background: radial-gradient(circle at center, #27b9cf 0 41%, #fff 43% 100%) !important;
}

body#checkout .rn-checkout-step .step-number,
body#checkout .rn-checkout-step .done {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
}

body#checkout .rn-checkout-step .done {
  position: relative !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

body#checkout .rn-checkout-step .done::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 7px;
  margin: 0;
  transform: translate(-50%, -62%) rotate(-45deg);
}

body#checkout .rn-checkout-step:not(.-complete) .done {
  display: none !important;
}

body#checkout .rn-checkout-step.-complete .done {
  display: inline-flex !important;
}

body#checkout .rn-checkout-step.-complete .step-number {
  display: none !important;
}

body#checkout .rn-checkout-step:not(.-complete) .step-number {
  display: inline-flex !important;
}

body#checkout .rn-checkout-step .delivery-option,
body#checkout .rn-checkout-step .payment-option {
  grid-template-columns: 26px minmax(0, 1fr);
  min-height: 68px;
  padding: 12px 16px;
  gap: 12px;
  border-radius: 8px;
}

body#checkout .rn-checkout-step .delivery-option > .col-sm-1,
body#checkout .rn-checkout-step .payment-option > .custom-radio {
  width: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

body#checkout .rn-checkout-step .delivery-option label > .row {
  grid-template-columns: minmax(220px, 1.15fr) minmax(220px, 1fr) minmax(72px, auto);
  gap: 14px;
}

body#checkout .rn-checkout-step .carrier-extra-content,
body#checkout .rn-checkout-step .additional-information {
  margin-left: 38px;
}

body#checkout .rn-checkout-step .delivery-options {
  gap: 12px;
}

body#checkout .rn-checkout-step .delivery-option {
  grid-template-columns: 24px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 74px !important;
  padding: 13px 18px !important;
  overflow: hidden;
}

body#checkout .rn-checkout-step .delivery-option > .rn-delivery-radio {
  width: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  display: flex !important;
  align-self: center !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

body#checkout .rn-checkout-step .rn-delivery-label {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#checkout .rn-checkout-step .rn-delivery-card-line {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(220px, 1fr) max-content;
  gap: 18px;
  align-items: center;
  width: 100%;
}

body#checkout .rn-checkout-step .rn-delivery-carrier {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body#checkout .rn-checkout-step .rn-delivery-logo {
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

body#checkout .rn-checkout-step .rn-delivery-logo img {
  max-width: 48px;
  max-height: 34px;
}

body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-name {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-delay {
  min-width: 0;
  font-size: 0.9rem;
}

body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-price {
  justify-self: end;
  min-width: 62px;
  font-size: 0.96rem;
  text-align: right;
}

body#checkout .rn-checkout-step .carrier-extra-content {
  margin: -4px 0 12px 36px;
  padding: 10px 12px;
}

.rn-checkout-step .payment-options {
  display: grid;
  gap: 12px;
}

.rn-checkout-page #conditions-to-approve ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.rn-checkout-page #conditions-to-approve li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--light-gray);
}

.rn-checkout-page #payment-confirmation {
  margin-top: 18px;
}

.rn-checkout-page #payment-confirmation .btn-primary {
  width: 100%;
}

.rn-checkout-summary {
  overflow: hidden;
  border: 1px solid rgba(27, 73, 101, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 73, 101, 0.08);
}

.rn-checkout-summary > .card-block:first-child {
  padding: 22px 24px 8px;
}

.rn-checkout-summary .cart-summary-products p:first-child {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-size: 1.12rem;
  font-weight: 900;
}

.rn-checkout-summary .js-show-details {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  font-weight: 900;
}

.rn-checkout-summary .media-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.rn-checkout-summary .media {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(27, 73, 101, 0.08);
  border-radius: 8px;
  background: var(--light-gray);
}

.rn-checkout-summary .media-left,
.rn-checkout-summary .media-body {
  display: block;
  width: auto;
  padding: 0;
}

.rn-checkout-summary .media-object,
.rn-checkout-summary .media-left img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.rn-checkout-summary .product-name a {
  color: var(--primary-color);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.rn-checkout-summary .product-quantity,
.rn-checkout-summary .product-price {
  color: var(--accent-color);
  font-weight: 900;
}

.rn-checkout-summary .cart-summary-subtotals-container,
.rn-checkout-summary .cart-summary-totals {
  padding: 14px 24px;
}

.rn-checkout-summary .cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 9px 0;
  color: var(--text-color);
  font-weight: 700;
}

.rn-checkout-summary .cart-summary-line .value {
  color: var(--primary-color);
  font-weight: 900;
  white-space: nowrap;
}

.rn-checkout-summary .cart-total {
  margin-top: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 900;
}

.rn-checkout-summary .block-promo {
  padding: 0 24px 20px;
}

.rn-checkout-summary .promo-code-button {
  margin: 6px 0 12px;
  text-align: center;
}

.rn-checkout-summary .promo-code-button a,
.rn-checkout-summary .cancel-promo {
  color: var(--primary-color);
  font-weight: 900;
}

.rn-checkout-summary .promo-code form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.rn-checkout-summary .promo-input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.rn-checkout-summary .promo-code .btn {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 900;
}

.rn-checkout-reassurance {
  margin-top: 18px;
}

.rn-checkout-reassurance #block-reassurance ul,
.rn-checkout-reassurance .custom-reassurance ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rn-checkout-reassurance #block-reassurance li,
.rn-checkout-reassurance .custom-reassurance li {
  margin: 0;
  padding: 0;
  border: 0;
}

.rn-checkout-reassurance .block-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(27, 73, 101, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.06);
}

.rn-checkout-reassurance .block-reassurance-item > img,
.rn-checkout-reassurance .block-reassurance-item > svg,
.rn-checkout-reassurance .block-reassurance-item > .material-icons {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(230, 126, 34, 0.12);
  color: var(--accent-color);
  object-fit: contain;
}

.rn-checkout-reassurance .h6 {
  display: block;
  margin: 0 0 2px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
}

.rn-checkout-reassurance p,
.rn-checkout-reassurance span,
.rn-checkout-reassurance a {
  margin: 0;
  color: rgba(51, 51, 51, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.rn-checkout-reassurance br {
  display: none;
}

.rn-checkout-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(27, 73, 101, 0.1);
  background: #fff;
}

.rn-checkout-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(51, 51, 51, 0.72);
  font-weight: 700;
  text-align: center;
}

.rn-checkout-footer a {
  color: var(--primary-color);
  font-weight: 900;
}

@media (max-width: 1199px) {
  .rn-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (max-width: 991px) {
  .rn-checkout-layout {
    grid-template-columns: 1fr;
  }

  .rn-checkout-side {
    position: static;
  }

  .rn-checkout-hero {
    align-items: flex-start;
  }

  .rn-checkout-step .address-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rn-checkout-header__inner {
    min-height: 78px;
    gap: 12px;
  }

  .rn-checkout-header__logo img {
    max-height: 54px;
  }

  .rn-checkout-header__actions {
    gap: 6px;
  }

  .rn-checkout-header__link {
    min-width: 42px;
    padding: 0 10px;
  }

  .rn-checkout-header__link span {
    display: none;
  }

  .rn-checkout-page {
    padding-top: 12px;
  }

  .rn-checkout-hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .rn-checkout-hero h1 {
    font-size: 2rem;
  }

  .rn-checkout-step__title {
    min-height: 64px;
    gap: 10px;
    padding: 16px;
    font-size: 1.05rem;
  }

  .rn-checkout-step .step-number,
  .rn-checkout-step .done {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    flex: 0 0 30px;
    padding: 0;
    border-radius: 50%;
  }

  body#checkout .rn-checkout-step .step-number,
  body#checkout .rn-checkout-step .done {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    flex: 0 0 30px !important;
  }

  body#checkout .rn-checkout-step .done::before {
    width: 10px;
    height: 6px;
    border-bottom-width: 2px;
    border-left-width: 2px;
  }

  .rn-checkout-step .step-edit {
    font-size: 0;
  }

  .rn-checkout-step .step-edit .material-icons {
    font-size: 20px;
  }

  .rn-checkout-step__content {
    padding: 18px;
  }

  .rn-checkout-step .delivery-option,
  .rn-checkout-step .payment-option {
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 12px;
  }

  body#checkout .rn-checkout-step .delivery-option,
  body#checkout .rn-checkout-step .payment-option {
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 12px;
  }

  .rn-checkout-step .delivery-option label > .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body#checkout .rn-checkout-step .delivery-option {
    grid-template-columns: 24px minmax(0, 1fr) !important;
    min-height: 84px !important;
    padding: 12px !important;
  }

  body#checkout .rn-checkout-step .rn-delivery-card-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body#checkout .rn-checkout-step .rn-delivery-carrier {
    gap: 10px;
  }

  body#checkout .rn-checkout-step .rn-delivery-logo {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
  }

  body#checkout .rn-checkout-step .rn-delivery-logo img {
    max-width: 42px;
    max-height: 30px;
  }

  body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-name,
  body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-delay,
  body#checkout .rn-checkout-step .rn-delivery-card-line .carrier-price {
    justify-self: start;
    text-align: left;
  }

  .rn-checkout-step .carrier {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rn-checkout-step .carrier-price {
    justify-self: start;
    text-align: left;
  }

  .rn-checkout-step .carrier-extra-content,
  .rn-checkout-step .additional-information {
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  body#checkout .rn-checkout-step .carrier-extra-content,
  body#checkout .rn-checkout-step .additional-information {
    margin-left: 0;
  }

  .rn-checkout-summary > .card-block:first-child,
  .rn-checkout-summary .cart-summary-subtotals-container,
  .rn-checkout-summary .cart-summary-totals,
  .rn-checkout-summary .block-promo {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rn-checkout-footer__inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .rn-checkout-hero,
  .rn-checkout-step__content {
    padding: 16px;
  }

  .rn-checkout-step .nav-inline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rn-checkout-step .nav-link {
    width: 100%;
  }

  .rn-checkout-step .payment-option label {
    flex-wrap: wrap;
  }

  .rn-checkout-step .carrier-extra-content .btn,
  .rn-checkout-step .carrier-extra-content button,
  .rn-checkout-step .carrier-extra-content a.btn {
    width: 100%;
    padding: 0 14px;
    white-space: normal;
    text-align: center;
  }
}
