/* RDN commerce system ----------------------------------------------------- */

body.rdn-shop-overlay-open,
body.rdn-filter-open {
  overflow: hidden;
}

.woocommerce .rdn-site-main,
.woocommerce-page .rdn-site-main {
  background: #f5f8fc;
}

.rdn-shop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #057bb7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rdn-shop-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rdn-blue);
  box-shadow: 0 0 0 5px rgba(3, 169, 244, 0.12);
}

/* Contextual store header ------------------------------------------------ */

.rdn-shop-header {
  position: relative;
  z-index: 1010;
  color: #172033;
  background: rgba(255, 255, 255, 0.97);
}

.rdn-shop-header__main {
  border-bottom: 1px solid #e3e9ef;
}

.rdn-shop-header__main-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(230px, 330px) minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.rdn-shop-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rdn-shop-header__brand img {
  width: min(290px, 22vw);
  height: auto;
}

.rdn-shop-header__brand span {
  padding: 4px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--rdn-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rdn-shop-search-trigger,
.rdn-shop-hero__search {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid #d4dee8;
  border-radius: 14px;
  color: #617087;
  background: #f8fafc;
  box-shadow: inset 0 1px #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.rdn-shop-search-trigger:hover,
.rdn-shop-search-trigger:focus-visible {
  border-color: var(--rdn-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.1);
}

.rdn-shop-search-trigger svg,
.rdn-shop-hero__search svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: #172033;
  stroke-linecap: round;
  stroke-width: 1.9;
}

.rdn-shop-search-trigger span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdn-shop-search-trigger kbd {
  padding: 2px 7px;
  border: 1px solid #d8e1e9;
  border-radius: 6px;
  color: #758397;
  background: #fff;
  font-family: inherit;
  font-size: 9px;
  font-weight: 750;
}

.rdn-shop-header__actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.rdn-shop-header__action {
  position: relative;
  display: flex;
  min-width: 82px;
  min-height: 52px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 10px;
  border: 0;
  border-radius: 11px;
  color: #273246;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.rdn-shop-header__action:hover,
.rdn-shop-header__action:focus-visible {
  color: #057bb7;
  background: #edf8fd;
}

.rdn-shop-header__action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.rdn-cart-count {
  display: inline-flex;
  min-width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--rdn-red);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.rdn-shop-header__cart .rdn-cart-count {
  position: absolute;
  top: 2px;
  right: 9px;
}

.rdn-shop-header__nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e3e9ef;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.045);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.admin-bar .rdn-shop-header__nav {
  top: 32px;
}

.rdn-shop-header__nav-inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 25px;
}

.rdn-shop-header__home,
.rdn-shop-categories a,
.rdn-shop-header__site-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 9px;
  color: #273246;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.rdn-shop-header__home {
  padding: 0 15px;
  color: #fff;
  background: #172033;
}

.rdn-shop-header__home.is-active {
  background: var(--rdn-blue);
}

.rdn-shop-categories {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: clamp(16px, 2.3vw, 33px);
  overflow: hidden;
}

.rdn-shop-categories a:hover,
.rdn-shop-categories a:focus-visible,
.rdn-shop-categories a.is-active {
  color: #008fcf;
}

.rdn-shop-header__empty-nav {
  flex: 1;
  color: #7a8798;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.rdn-shop-header__site-link {
  gap: 7px;
  margin-left: auto;
  color: #657389;
}

.rdn-shop-header__site-link:hover {
  color: #172033;
}

.rdn-shop-mobile-bar,
.rdn-shop-mobile-dock {
  display: none;
}

/* Store home ------------------------------------------------------------- */

.rdn-shop-home,
.rdn-store-archive,
.rdn-single-product {
  color: #172033;
  background: #f7f9fc;
}

.rdn-shop-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #dae6ef;
  background:
    radial-gradient(circle at 86% 18%, rgba(3, 169, 244, 0.2), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(76, 175, 80, 0.1), transparent 24%),
    linear-gradient(135deg, #f8fbfd 0%, #edf7fb 58%, #f6f4ff 100%);
}

.rdn-shop-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(3, 169, 244, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(3, 169, 244, 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, #000 62%, #000);
  content: "";
}

.rdn-shop-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(650px, calc(100vh - 138px));
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
  padding-block: clamp(64px, 8vw, 112px);
}

.rdn-shop-hero__copy h1 {
  max-width: 840px;
  margin: 18px 0 22px;
  color: #131c31;
  font-size: clamp(46px, 5.1vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.rdn-shop-hero__copy > p {
  max-width: 720px;
  margin: 0;
  color: #526176;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.72;
}

.rdn-shop-hero__search {
  max-width: 670px;
  min-height: 62px;
  margin-top: 31px;
  padding-inline: 19px 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.rdn-shop-hero__search span {
  min-width: 0;
  flex: 1;
}

.rdn-shop-hero__search b {
  display: grid;
  min-width: 96px;
  min-height: 46px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--rdn-blue);
}

.rdn-shop-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 25px;
  color: #5d6b7f;
  font-size: 11px;
  font-weight: 650;
}

.rdn-shop-hero__proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rdn-shop-hero__proof b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #087f45;
  background: #d7f8e4;
  font-size: 10px;
}

.rdn-shop-hero__visual {
  min-width: 0;
}

.rdn-shop-hero-product {
  position: relative;
  display: block;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  color: #172033;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 35px 80px rgba(30, 64, 89, 0.18), inset 0 1px #fff;
  text-decoration: none;
  transform: rotate(1deg);
}

.rdn-shop-hero-product__label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #057bb7;
  background: #e1f5fd;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rdn-shop-hero-product__image {
  display: grid;
  aspect-ratio: 1.25;
  place-items: center;
  margin-block: 10px;
}

.rdn-shop-hero-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rdn-shop-hero-product__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.rdn-shop-hero-product__info strong {
  max-width: 68%;
  font-family: var(--rdn-heading-font);
  font-size: 18px;
  line-height: 1.25;
}

.rdn-shop-hero-product__info span {
  color: #057bb7;
  font-size: 17px;
  font-weight: 850;
}

.rdn-shop-hero-art {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(225,245,253,.72));
  box-shadow: 0 35px 80px rgba(30, 64, 89, 0.17);
}

.rdn-shop-hero-art__grid {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  background-image: linear-gradient(rgba(3,169,244,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(3,169,244,.14) 1px, transparent 1px);
  background-size: 24px 24px;
}

.rdn-shop-hero-art__box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border-radius: 42px;
  color: #fff;
  background: linear-gradient(145deg, #03a9f4, #087fba);
  box-shadow: 24px 30px 0 rgba(237,91,85,.14), -30px -24px 0 rgba(251,192,45,.16), 0 35px 55px rgba(3,169,244,.25);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.rdn-shop-hero-art__box svg {
  width: 96px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.rdn-shop-hero-art__chip {
  position: absolute;
  right: 28px;
  bottom: 32px;
  padding: 13px 16px;
  border-radius: 12px;
  color: #172033;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15,23,42,.13);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
}

.rdn-shop-hero-art__chip small {
  color: #03a9f4;
  font-size: 7px;
  letter-spacing: .14em;
}

.rdn-shop-section {
  padding-block: clamp(65px, 8vw, 112px);
}

.rdn-shop-section--categories {
  background: #fff;
}

.rdn-shop-section--products {
  background: #f6f9fc;
}

.rdn-shop-section--digital {
  background: linear-gradient(135deg, #f0f4ff, #fbf7ff);
}

.rdn-shop-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.rdn-shop-section__header h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #172033;
  font-size: clamp(31px, 3.5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.rdn-shop-section__header > a {
  padding-bottom: 5px;
  color: #087fba;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rdn-shop-category-card {
  position: relative;
  display: grid;
  min-height: 260px;
  grid-template-columns: 1fr auto;
  align-content: end;
  padding: 19px;
  overflow: hidden;
  border: 1px solid #dde5ed;
  border-radius: 22px;
  color: #172033;
  background: #f7f9fc;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rdn-shop-category-card:hover {
  border-color: rgba(3,169,244,.5);
  box-shadow: 0 20px 40px rgba(15,23,42,.1);
  transform: translateY(-4px);
}

.rdn-shop-category-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #9aa6b5;
  font-size: 10px;
  font-weight: 850;
}

.rdn-shop-category-card__media {
  position: absolute;
  inset: 14px 14px 70px;
  display: grid;
  place-items: center;
}

.rdn-shop-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rdn-shop-category-card__media svg {
  width: 88px;
  fill: none;
  stroke: #9adcf9;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.rdn-shop-category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: 1;
  font-family: var(--rdn-heading-font);
  font-size: 16px;
  line-height: 1.2;
}

.rdn-shop-category-card small {
  grid-column: 1;
  color: #748196;
  font-size: 10px;
}

.rdn-shop-category-card > b {
  display: grid;
  width: 32px;
  height: 32px;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  place-items: center;
  border-radius: 50%;
  color: #087fba;
  background: #e3f5fd;
}

/* Product cards ---------------------------------------------------------- */

.rdn-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.rdn-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde5ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.rdn-product-card:hover {
  border-color: #b9dff0;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.rdn-product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 1.08;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f9fb, #edf2f7);
}

.rdn-product-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.rdn-product-card:hover .rdn-product-card__media > img {
  transform: scale(1.035);
}

.rdn-product-card__placeholder {
  display: grid;
  gap: 8px;
  place-items: center;
  color: #a6b7c6;
}

.rdn-product-card__placeholder svg {
  width: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.rdn-product-card__placeholder small {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}

.rdn-product-card__badges {
  position: absolute;
  top: 13px;
  left: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rdn-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #057bb7;
  background: #e1f5fd;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rdn-product-badge--muted {
  color: #64748b;
  background: #eef2f6;
}

.rdn-product-card__body {
  display: flex;
  min-height: 245px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.rdn-product-card__category,
.rdn-product-card__category a {
  color: #778499;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.rdn-product-card__title {
  margin: 7px 0 8px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.rdn-product-card__title a {
  text-decoration: none;
}

.rdn-product-card__compatibility {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #657389;
  font-size: 11px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rdn-product-card__commerce {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.rdn-product-card__price {
  color: #172033;
  font-family: var(--rdn-heading-font);
  font-size: 17px;
  font-weight: 800;
}

.rdn-product-card__price del {
  margin-right: 5px;
  color: #98a3b2;
  font-size: 11px;
}

.rdn-product-card__price ins {
  text-decoration: none;
}

.rdn-product-card__commerce small {
  color: #8a96a8;
  font-size: 8px;
}

.rdn-product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.woocommerce .rdn-product-card__add,
.rdn-product-card__add {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #087fba;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.woocommerce .rdn-product-card__add:hover,
.rdn-product-card__add:hover {
  color: #fff;
  background: #066d9f;
}

.rdn-product-card__quick {
  min-height: 42px;
  padding: 0;
  border: 0;
  color: #68768a;
  background: transparent;
  font-family: inherit;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}

.rdn-product-card__quick span {
  color: #03a9f4;
}

.rdn-shop-guidance {
  padding-block: clamp(60px, 7vw, 94px);
  color: #fff;
  background: #172033;
}

.rdn-shop-guidance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.rdn-shop-guidance h2 {
  max-width: 650px;
  margin: 10px 0 17px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.rdn-shop-guidance p {
  max-width: 640px;
  margin: 0;
  color: #b7c5d6;
  line-height: 1.75;
}

.rdn-shop-guidance__steps {
  display: grid;
  gap: 12px;
}

.rdn-shop-guidance__steps > span {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.rdn-shop-guidance__steps b {
  grid-row: 1 / 3;
  color: #36c3ff;
  font-family: var(--rdn-heading-font);
  font-size: 18px;
}

.rdn-shop-guidance__steps strong {
  font-size: 13px;
}

.rdn-shop-guidance__steps small {
  color: #93a4b9;
  font-size: 10px;
}

.rdn-shop-guidance__steps > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 11px;
  color: #172033;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.rdn-shop-support-strip {
  padding-block: 34px;
  color: #fff;
  background: var(--rdn-blue);
}

.rdn-shop-support-strip .rdn-container,
.rdn-shop-support-strip .rdn-container > div {
  display: flex;
  align-items: center;
}

.rdn-shop-support-strip .rdn-container {
  justify-content: space-between;
  gap: 30px;
}

.rdn-shop-support-strip .rdn-container > div {
  gap: 15px;
}

.rdn-shop-support-strip svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.rdn-shop-support-strip span {
  display: grid;
}

.rdn-shop-support-strip strong {
  font-family: var(--rdn-heading-font);
  font-size: 16px;
}

.rdn-shop-support-strip small {
  opacity: .84;
  font-size: 10px;
}

.rdn-shop-support-strip a {
  padding: 12px 18px;
  border-radius: 9px;
  color: #172033;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

/* Catalog --------------------------------------------------------------- */

.rdn-store-archive__hero {
  border-bottom: 1px solid #dce6ee;
  background: linear-gradient(135deg, #f8fbfd, #eef6fb 65%, #f3f0ff);
}

.rdn-store-archive__hero .rdn-container {
  padding-block: 46px 54px;
}

.rdn-shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  overflow: hidden;
  color: #8390a2;
  font-size: 10px;
  white-space: nowrap;
}

.rdn-shop-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.rdn-shop-breadcrumb strong {
  overflow: hidden;
  color: #172033;
  text-overflow: ellipsis;
}

.rdn-store-archive__hero h1 {
  margin: 8px 0 13px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
}

.rdn-store-archive__hero p {
  max-width: 760px;
  margin: 0;
  color: #607086;
  font-size: 15px;
  line-height: 1.7;
}

.rdn-store-catalog {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  padding-block: 48px 90px;
}

.rdn-store-filters {
  position: sticky;
  top: 76px;
  align-self: start;
  overflow: hidden;
  border: 1px solid #dde5ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

body.admin-bar .rdn-store-filters {
  top: 108px;
}

.rdn-store-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5eaf0;
}

.rdn-store-filters__header span {
  display: block;
  color: #8793a5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rdn-store-filters__header h2 {
  margin: 2px 0 0;
  font-size: 20px;
}

.rdn-store-filters__header button {
  display: none;
}

.rdn-store-filter-search {
  display: block;
  padding: 18px 18px 4px;
}

.rdn-store-filter-search > span,
.rdn-store-filter-price label > span {
  display: block;
  margin-bottom: 6px;
  color: #69778b;
  font-size: 9px;
  font-weight: 700;
}

.rdn-store-filter-search > div {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #dbe3ea;
  border-radius: 9px;
  background: #f8fafc;
}

.rdn-store-filter-search svg {
  width: 17px;
  fill: none;
  stroke: #64748b;
  stroke-width: 1.8;
}

.rdn-store-filter-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
}

.rdn-store-filters fieldset {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid #e8edf2;
}

.rdn-store-filters legend {
  margin-bottom: 7px;
  color: #172033;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rdn-store-filters fieldset > label {
  display: flex;
  min-height: 33px;
  align-items: center;
  gap: 9px;
  color: #536176;
  font-size: 10px;
  cursor: pointer;
}

.rdn-store-filters fieldset > label span {
  display: flex;
  min-width: 0;
  flex: 1;
  justify-content: space-between;
}

.rdn-store-filters fieldset > label small {
  color: #9aa5b4;
}

.rdn-store-filters input[type="radio"],
.rdn-store-filters input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #03a9f4;
}

.rdn-store-filter-price > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rdn-store-filter-price input {
  width: 100%;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  font-family: inherit;
  font-size: 10px;
}

.rdn-store-filters__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 18px;
}

.rdn-store-filters__actions button {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #087fba;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.rdn-store-filters__actions a {
  color: #69778b;
  font-size: 9px;
  font-weight: 750;
}

.rdn-store-filter-toggle {
  display: none;
}

.rdn-store-results {
  min-width: 0;
}

.rdn-store-toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 8px 10px 8px 16px;
  border: 1px solid #dde5ed;
  border-radius: 14px;
  background: #fff;
}

.rdn-store-toolbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rdn-store-toolbar span {
  color: #7a8798;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.rdn-store-toolbar select {
  min-height: 36px;
  padding: 0 30px 0 10px;
  border: 1px solid #dce4eb;
  border-radius: 8px;
  color: #172033;
  background: #f8fafc;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
}

.rdn-store-toolbar > button {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: #087fba;
  background: none;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.rdn-store-toolbar svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

[data-rdn-store-results] {
  position: relative;
  transition: opacity .18s ease;
}

[data-rdn-store-results].is-loading {
  min-height: 360px;
  opacity: .35;
  pointer-events: none;
}

[data-rdn-store-results].is-loading::after {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 3px solid #dceaf1;
  border-top-color: #03a9f4;
  border-radius: 50%;
  content: "";
  animation: rdn-shop-spin .7s linear infinite;
}

.rdn-store-results__status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
  color: #7b8799;
  font-size: 9px;
}

.rdn-store-results__status strong {
  color: #172033;
  font-size: 11px;
}

.rdn-store-results .rdn-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rdn-store-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 35px;
}

.rdn-store-pagination a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d9e2ea;
  border-radius: 9px;
  color: #546276;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-store-pagination a.is-current,
.rdn-store-pagination a:hover {
  border-color: #03a9f4;
  color: #fff;
  background: #03a9f4;
}

.rdn-store-diagnostic {
  padding-block: 46px;
  color: #fff;
  background: #172033;
}

.rdn-store-diagnostic .rdn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.rdn-store-diagnostic span {
  color: #40c4ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rdn-store-diagnostic h2 {
  margin: 5px 0;
  font-size: 30px;
  letter-spacing: -.035em;
}

.rdn-store-diagnostic p {
  margin: 0;
  color: #aebdce;
  font-size: 11px;
}

.rdn-store-diagnostic a {
  flex: 0 0 auto;
  padding: 13px 19px;
  border-radius: 10px;
  color: #172033;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

/* Empty state ------------------------------------------------------------ */

.rdn-store-empty {
  display: grid;
  max-width: 830px;
  justify-items: center;
  margin-inline: auto;
  padding: clamp(36px, 7vw, 66px);
  border: 1px solid #dce7ef;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--rdn-shadow);
  text-align: center;
}

.rdn-store-empty__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 20px;
  color: #087fba;
  background: #e2f5fd;
}

.rdn-store-empty__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.rdn-store-empty__eyebrow {
  color: #087fba;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rdn-store-empty h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.rdn-store-empty p {
  max-width: 620px;
  margin: 0;
  color: #64748b;
  line-height: 1.75;
}

.rdn-store-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 25px;
}

.rdn-store-empty .rdn-button--ghost {
  border: 1px solid #cbd5e1;
}

/* Single product --------------------------------------------------------- */

.rdn-single-product {
  padding-block: 34px 90px;
}

.rdn-single-product__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.rdn-product-gallery__stage {
  position: relative;
  display: grid;
  aspect-ratio: 1.08;
  place-items: center;
  padding: clamp(24px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid #dfe6ed;
  border-radius: 26px;
  background: linear-gradient(145deg, #f7f9fb, #edf2f7);
}

.rdn-product-gallery__stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rdn-product-gallery__stage .rdn-product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
}

.rdn-product-gallery__stage > button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid #d7e1e9;
  border-radius: 50%;
  color: #172033;
  background: rgba(255,255,255,.9);
  cursor: pointer;
}

.rdn-product-gallery__stage > button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.rdn-product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.rdn-product-gallery__thumbs button {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  padding: 6px;
  border: 1px solid #dce4eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.rdn-product-gallery__thumbs button.is-active {
  border: 2px solid #03a9f4;
}

.rdn-product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rdn-single-product__summary {
  padding-top: 12px;
}

.rdn-single-product__category,
.rdn-single-product__category a {
  color: #087fba;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.rdn-single-product__summary h1 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.rdn-single-product__lead {
  color: #607087;
  font-size: 14px;
  line-height: 1.7;
}

.rdn-single-product__lead p {
  margin: 0;
}

.rdn-single-product__price {
  margin-block: 22px;
  color: #172033;
  font-family: var(--rdn-heading-font);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 850;
}

.rdn-single-product__price del {
  margin-right: 8px;
  color: #9ba6b5;
  font-size: .55em;
}

.rdn-single-product__price ins {
  text-decoration: none;
}

.rdn-single-product__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid #dfe6ed;
  border-left: 1px solid #dfe6ed;
}

.rdn-single-product__facts > div {
  min-width: 0;
  padding: 13px 15px;
  border-right: 1px solid #dfe6ed;
  border-bottom: 1px solid #dfe6ed;
  background: #fff;
}

.rdn-single-product__facts dt {
  color: #8a96a7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rdn-single-product__facts dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  color: #354258;
  font-size: 10px;
  font-weight: 700;
}

.rdn-single-product__facts .stock {
  margin: 0;
  color: #14834c;
}

.rdn-single-product__compatibility {
  margin-top: 18px;
  padding: 17px 18px;
  border: 1px solid #bfe7f8;
  border-radius: 14px;
  background: #effaff;
}

.rdn-single-product__compatibility span {
  color: #087fba;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rdn-single-product__compatibility p {
  margin: 5px 0 8px;
  color: #405069;
  font-size: 11px;
  line-height: 1.55;
}

.rdn-single-product__compatibility a {
  color: #057bb7;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-single-product__purchase {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dce4eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(15,23,42,.07);
}

.rdn-single-product__purchase form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.rdn-single-product__purchase .quantity .qty {
  width: 72px;
  min-height: 50px;
  border: 1px solid #cfdae4;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 750;
  text-align: center;
}

.woocommerce .rdn-single-product__purchase .single_add_to_cart_button {
  min-height: 50px;
  flex: 1;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #087fba;
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
}

.rdn-single-product__purchase .variations {
  width: 100%;
  margin-bottom: 12px;
}

.rdn-single-product__purchase .variations th,
.rdn-single-product__purchase .variations td {
  padding: 5px;
  text-align: left;
}

.rdn-single-product__purchase select {
  width: 100%;
  min-height: 43px;
  padding: 0 10px;
  border: 1px solid #d6e0e8;
  border-radius: 9px;
  font-family: inherit;
}

.rdn-single-product__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 16px;
  color: #617086;
  font-size: 9px;
  font-weight: 650;
}

.rdn-single-product__assurance b {
  color: #18a561;
}

.rdn-product-information {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  gap: clamp(55px, 8vw, 110px);
  margin-top: clamp(70px, 9vw, 120px);
  padding-top: clamp(55px, 7vw, 90px);
  border-top: 1px solid #dbe3ea;
}

.rdn-product-information h2 {
  margin: 8px 0 20px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
}

.rdn-product-information__content {
  color: #526176;
  font-size: 13px;
  line-height: 1.8;
}

.rdn-product-information__content > :first-child {
  margin-top: 0;
}

.rdn-product-information__specs {
  align-self: start;
  padding: 25px;
  border: 1px solid #dce4eb;
  border-radius: 18px;
  background: #fff;
}

.rdn-product-information__specs h2 {
  margin-top: 0;
  font-size: 20px;
}

.rdn-product-information__specs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.rdn-product-information__specs th,
.rdn-product-information__specs td {
  padding: 11px 0;
  border-bottom: 1px solid #e5eaf0;
  text-align: left;
}

.rdn-product-information__specs th {
  color: #68768a;
}

.rdn-product-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 75px;
  padding: clamp(28px, 5vw, 50px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(125deg, #172033, #203c52);
}

.rdn-product-help span {
  color: #45c8ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rdn-product-help h2 {
  margin: 5px 0;
  font-size: 30px;
}

.rdn-product-help p {
  margin: 0;
  color: #afbdce;
  font-size: 11px;
}

.rdn-product-help > a {
  flex: 0 0 auto;
  padding: 14px 19px;
  border-radius: 10px;
  color: #172033;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.rdn-related-products {
  margin-top: 80px;
}

/* Overlay system --------------------------------------------------------- */

.rdn-shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  visibility: hidden;
  opacity: 0;
  transition: visibility 260ms ease, opacity 220ms ease;
}

.rdn-shop-overlay[hidden] {
  display: none;
}

.rdn-shop-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.rdn-shop-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .56);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.rdn-shop-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8ef;
}

.rdn-shop-overlay__header span {
  display: block;
  color: #087fba;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rdn-shop-overlay__header h2 {
  margin: 2px 0 0;
  color: #172033;
  font-size: 23px;
  line-height: 1.1;
}

.rdn-shop-overlay__header > button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #dbe3ea;
  border-radius: 50%;
  color: #172033;
  background: #f8fafc;
  font: 300 26px/1 Arial, sans-serif;
  cursor: pointer;
}

.rdn-shop-search__panel {
  position: relative;
  width: min(920px, calc(100% - 30px));
  max-height: min(780px, calc(100vh - 50px));
  margin: 24px auto;
  overflow: hidden auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(15,23,42,.35);
  transform: translateY(-20px) scale(.985);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}

.rdn-shop-search.is-open .rdn-shop-search__panel {
  transform: none;
}

.rdn-shop-search__form {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin: 23px 24px 0;
  padding: 0 8px 0 18px;
  border: 2px solid #9bdcf8;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(3,169,244,.08);
}

.rdn-shop-search__form svg {
  width: 23px;
  fill: none;
  stroke: #172033;
  stroke-width: 1.8;
}

.rdn-shop-search__form input {
  min-width: 0;
  min-height: 58px;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
}

.rdn-shop-search__form button {
  min-width: 100px;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #087fba;
  font-family: inherit;
  font-size: 11px;
  font-weight: 850;
}

.rdn-shop-search__suggestions {
  min-height: 270px;
  padding: 25px 24px;
}

.rdn-shop-search__initial,
.rdn-shop-search__empty,
.rdn-shop-search__loading,
.rdn-quick-view__loading {
  display: grid;
  min-height: 200px;
  place-content: center;
  justify-items: center;
  color: #64748b;
  text-align: center;
}

.rdn-shop-search__initial strong {
  color: #172033;
  font-family: var(--rdn-heading-font);
  font-size: 20px;
}

.rdn-shop-search__initial p {
  margin: 6px 0 18px;
  font-size: 11px;
}

.rdn-shop-search__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.rdn-shop-search__chips a {
  padding: 7px 11px;
  border: 1px solid #dbe4eb;
  border-radius: 999px;
  color: #526176;
  background: #fff;
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
}

.rdn-shop-search__loading span,
.rdn-quick-view__loading span {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border: 3px solid #dbeaf1;
  border-top-color: #03a9f4;
  border-radius: 50%;
  animation: rdn-shop-spin .7s linear infinite;
}

@keyframes rdn-shop-spin { to { transform: rotate(360deg); } }

.rdn-shop-search__category-results h3,
.rdn-shop-search__product-results h3 {
  margin: 0 0 10px;
  color: #8390a2;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rdn-shop-search__category-results > div {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
}

.rdn-shop-search__category-results a {
  display: grid;
  min-width: 145px;
  padding: 11px 13px;
  border: 1px solid #dce4eb;
  border-radius: 10px;
  color: #172033;
  background: #f8fafc;
  text-decoration: none;
}

.rdn-shop-search__category-results strong { font-size: 10px; }
.rdn-shop-search__category-results span { color: #8490a2; font-size: 8px; }

.rdn-shop-search__product-results > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rdn-shop-search-result {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #e1e7ed;
  border-radius: 12px;
  color: #172033;
  text-decoration: none;
}

.rdn-shop-search-result:hover {
  border-color: #9bdcf8;
  background: #f5fbfe;
}

.rdn-shop-search-result img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #f0f3f6;
  object-fit: contain;
}

.rdn-shop-search-result > span {
  display: grid;
  min-width: 0;
}

.rdn-shop-search-result strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdn-shop-search-result small {
  overflow: hidden;
  color: #758297;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdn-shop-search-result > b {
  font-family: var(--rdn-heading-font);
  font-size: 10px;
}

.rdn-shop-search-result > i {
  grid-column: 2 / 4;
  margin-top: -10px;
  color: #9a6670;
  font-size: 7px;
  font-style: normal;
}

.rdn-shop-search-result > i.is-stock { color: #16834c; }

.rdn-shop-search__all {
  display: inline-flex;
  margin-top: 14px;
  color: #087fba;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}

.rdn-shop-search__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 24px;
  border-top: 1px solid #e2e8ef;
  background: #f8fafc;
  font-size: 10px;
}

.rdn-shop-search__help a {
  color: #087fba;
  font-weight: 850;
  text-decoration: none;
}

.rdn-shop-side-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100%;
  flex-direction: column;
  background: #fff;
  box-shadow: -25px 0 60px rgba(15,23,42,.28);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.22,1,.36,1);
}

.rdn-shop-side-overlay.is-open .rdn-shop-side-overlay__panel {
  transform: none;
}

.rdn-category-drawer__links {
  display: grid;
  padding: 15px;
  overflow-y: auto;
}

.rdn-category-drawer__links a {
  position: relative;
  display: grid;
  min-height: 65px;
  align-content: center;
  padding: 10px 45px 10px 13px;
  border-bottom: 1px solid #e4e9ef;
  color: #172033;
  text-decoration: none;
}

.rdn-category-drawer__links span { font-size: 12px; font-weight: 800; }
.rdn-category-drawer__links small { color: #7d899b; font-size: 9px; }
.rdn-category-drawer__links b { position: absolute; right: 14px; top: 22px; color: #03a9f4; }

.rdn-category-drawer__back {
  margin: auto 20px 20px;
  padding: 13px;
  border-radius: 10px;
  color: #516075;
  background: #f1f5f8;
  font-size: 10px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.rdn-cart-drawer__body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.rdn-cart-drawer .woocommerce-mini-cart {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rdn-cart-drawer .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  min-height: 90px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 9px 30px 9px 9px;
  border: 1px solid #e0e7ed;
  border-radius: 13px;
}

.rdn-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  display: contents;
  color: #172033;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.rdn-cart-drawer .woocommerce-mini-cart-item img {
  width: 72px;
  height: 72px;
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 8px;
  background: #f2f5f7;
  object-fit: contain;
}

.rdn-cart-drawer .woocommerce-mini-cart-item .quantity {
  grid-column: 2;
  color: #6b788b;
  font-size: 9px;
}

.rdn-cart-drawer .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #8b98a9 !important;
  background: #f2f5f7;
  font-size: 16px;
  text-decoration: none;
}

.rdn-cart-drawer .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 12px;
  padding-top: 17px;
  border-top: 1px solid #dfe6ed;
  font-size: 12px;
}

.rdn-cart-drawer .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}

.woocommerce .rdn-cart-drawer .woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #087fba;
  border-radius: 9px;
  color: #087fba;
  background: #fff;
  font-size: 10px;
  font-weight: 850;
}

.woocommerce .rdn-cart-drawer .woocommerce-mini-cart__buttons .checkout {
  color: #fff;
  background: #087fba;
}

.rdn-cart-drawer .woocommerce-mini-cart__empty-message {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: #7a8798;
  text-align: center;
}

.rdn-cart-drawer__help {
  display: grid;
  padding: 15px 20px calc(15px + env(safe-area-inset-bottom));
  border-top: 1px solid #e2e8ef;
  background: #f8fafc;
}

.rdn-cart-drawer__help strong { color: #172033; font-size: 10px; }
.rdn-cart-drawer__help span { color: #748196; font-size: 8px; }

.rdn-quick-view__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  overflow: hidden auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(15,23,42,.35);
  transform: translate(-50%, -47%) scale(.98);
  transition: transform 260ms ease;
}

.rdn-quick-view.is-open .rdn-quick-view__panel { transform: translate(-50%, -50%); }

.rdn-quick-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 24px;
}

.rdn-quick-product__media {
  display: grid;
  aspect-ratio: 1.08;
  place-items: center;
  padding: 25px;
  border-radius: 18px;
  background: #f1f4f7;
}

.rdn-quick-product__media img { width: 100%; height: 100%; object-fit: contain; }
.rdn-quick-product__copy { align-self: center; }
.rdn-quick-product__copy h2 { margin: 10px 0; font-size: clamp(27px,3vw,42px); line-height: 1.05; letter-spacing: -.045em; }
.rdn-quick-product__price { color: #087fba; font-family: var(--rdn-heading-font); font-size: 24px; font-weight: 850; }
.rdn-quick-product__description { color: #607087; font-size: 11px; line-height: 1.7; }
.rdn-quick-product__compatibility { padding: 12px; border-radius: 10px; color: #405069; background: #effaff; font-size: 10px; }
.rdn-quick-product__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.rdn-quick-product__actions .rdn-button--ghost { border: 1px solid #d6e0e8; }

.rdn-gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  background: rgba(15,23,42,.88);
  transition: opacity 200ms ease;
}

.rdn-gallery-viewer.is-open { opacity: 1; }
.rdn-gallery-viewer img { max-width: min(1100px, 94vw); max-height: 90vh; border-radius: 18px; background: #fff; object-fit: contain; }
.rdn-gallery-viewer button { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #172033; background: #fff; font-size: 28px; cursor: pointer; }

/* Woo flows: cart, checkout, account ------------------------------------ */

.rdn-woo-flow__hero {
  border-bottom: 1px solid #dce7ef;
  background: radial-gradient(circle at 82% 8%, rgba(3,169,244,.2), transparent 30%), linear-gradient(135deg,#f8fbfd,#eaf6fb);
}

.rdn-woo-flow__hero .rdn-container { padding-block: 44px; }
.rdn-woo-flow__back { display: inline-flex; margin-bottom: 18px; color: #087fba; font-size: 11px; font-weight: 750; text-decoration: none; }
.rdn-woo-flow__hero .rdn-container > span { display:block; margin-bottom:7px; color:#087fba; font-size:10px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.rdn-woo-flow__hero h1 { margin:0; color:#172033; font-size:clamp(36px,5vw,56px); line-height:1; letter-spacing:-.05em; }
.rdn-woo-flow__hero p { max-width:680px; margin:15px 0 0; color:#526176; line-height:1.7; }
.rdn-woo-flow__content { padding-block:40px 90px; }
.rdn-woo-flow__content > .woocommerce { padding:clamp(22px,4vw,40px); border:1px solid #dce7ef; border-radius:24px; background:#fff; box-shadow:var(--rdn-shadow); }

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error { margin:0 0 22px; padding:16px 18px 16px 52px; border:1px solid #bae6fd; border-radius:13px; color:#334155; background:#f0f9ff; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit { min-height:44px; padding:11px 18px; border-radius:10px; color:#fff; background:#087fba; font-family:var(--rdn-font); font-size:12px; font-weight:800; }
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { color:#fff; background:#066d9f; }
.woocommerce table.shop_table { overflow:hidden; border:1px solid #dce3ea; border-radius:15px; }
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding:14px 16px; border-color:#e5eaf0; }
.woocommerce form .form-row label { color:#334155; font-size:11px; font-weight:700; }
.woocommerce form .input-text,
.woocommerce form select,
.woocommerce form textarea { min-height:46px; padding:10px 12px; border:1px solid #cbd5e1; border-radius:10px; background:#fff; font-family:var(--rdn-font); }
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review { margin-bottom:28px; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1180px) {
  .rdn-shop-header__main-inner { grid-template-columns: 240px 1fr auto; gap: 18px; }
  .rdn-shop-header__brand img { width: 220px; }
  .rdn-shop-header__brand span { display: none; }
  .rdn-shop-header__action { min-width: 64px; }
  .rdn-shop-categories { gap: 18px; }
  .rdn-shop-hero__grid { gap: 55px; }
  .rdn-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 1023px) {
  .rdn-shop-header__main,
  .rdn-shop-header__nav { display: none; }

  .rdn-shop-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 1100;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 16px;
    border-bottom: 1px solid #dce4eb;
    background: rgba(255,255,255,.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  body.admin-bar .rdn-shop-mobile-bar { top: 32px; }

  .rdn-shop-mobile-bar__brand { display:flex; min-width:0; align-items:center; gap:8px; text-decoration:none; }
  .rdn-shop-mobile-bar__brand img { width:min(235px,58vw); height:auto; }
  .rdn-shop-mobile-bar__brand span { padding:3px 7px; border-radius:5px; color:#fff; background:#03a9f4; font-size:8px; font-weight:850; text-transform:uppercase; }
  .rdn-shop-mobile-bar__actions { display:flex; gap:7px; }
  .rdn-shop-mobile-bar__actions button { position:relative; display:grid; width:42px; height:42px; place-items:center; padding:0; border:1px solid #dbe4eb; border-radius:11px; color:#172033; background:#fff; }
  .rdn-shop-mobile-bar__actions svg { width:21px; fill:none; stroke:currentColor; stroke-width:1.7; }
  .rdn-shop-mobile-bar__actions .rdn-cart-count { position:absolute; top:-4px; right:-4px; }

  .rdn-shop-mobile-dock {
    position: fixed;
    right: 9px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 9px;
    z-index: 1150;
    display: grid;
    height: 62px;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(100,116,139,.35);
    border-radius: 20px;
    background: rgba(248,250,252,.94);
    box-shadow: 0 16px 38px rgba(15,23,42,.23), inset 0 1px #fff;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .rdn-shop-mobile-dock > a,
  .rdn-shop-mobile-dock > button { display:flex; min-width:0; height:52px; flex-direction:column; align-items:center; justify-content:center; gap:2px; padding:0; border:0; border-radius:14px; color:#64748b; background:transparent; font-family:inherit; font-size:8px; font-weight:750; text-decoration:none; }
  .rdn-shop-mobile-dock svg { width:21px; height:21px; fill:none; stroke:#172033; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.6; }
  .rdn-shop-mobile-dock .is-active { color:#087fba; background:#e7f7fd; }
  .rdn-shop-mobile-dock .is-active svg { stroke:#087fba; }
  .rdn-shop-mobile-dock__search { color:#fff !important; background:#03a9f4 !important; box-shadow:0 8px 18px rgba(3,169,244,.28); }
  .rdn-shop-mobile-dock__search svg { stroke:#fff; }
  .rdn-shop-mobile-dock__icon { position:relative; display:grid; place-items:center; }
  .rdn-shop-mobile-dock__icon .rdn-cart-count { position:absolute; top:-8px; right:-12px; }

  .rdn-shop-home,
  .rdn-store-archive,
  .rdn-single-product,
  .rdn-woo-flow { padding-bottom: 80px; }

  .rdn-shop-hero__grid { min-height:0; grid-template-columns:1fr; gap:45px; padding-block:60px; }
  .rdn-shop-hero__copy { text-align:center; }
  .rdn-shop-hero__copy h1,
  .rdn-shop-hero__copy > p,
  .rdn-shop-hero__search { margin-inline:auto; }
  .rdn-shop-hero__proof { justify-content:center; }
  .rdn-shop-hero__visual { width:min(620px,100%); margin-inline:auto; }
  .rdn-shop-category-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .rdn-shop-guidance__grid { grid-template-columns:1fr; gap:45px; }
  .rdn-store-catalog { grid-template-columns:220px minmax(0,1fr); gap:20px; }
  .rdn-store-results .rdn-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .rdn-single-product__hero { grid-template-columns:1fr; }
  .rdn-product-gallery { width:min(680px,100%); margin-inline:auto; }
  .rdn-product-information { grid-template-columns:1fr; gap:40px; }
}

@media (max-width: 760px) {
  .rdn-container { width:min(100% - 28px,var(--rdn-container)); }
  .rdn-shop-hero__grid { padding-block:44px 52px; }
  .rdn-shop-hero__copy h1 { margin-top:14px; font-size:clamp(38px,11vw,54px); }
  .rdn-shop-hero__copy > p { font-size:14px; line-height:1.65; }
  .rdn-shop-hero__search { min-height:58px; margin-top:24px; }
  .rdn-shop-hero__search span { font-size:10px; }
  .rdn-shop-hero__search b { display:none; }
  .rdn-shop-hero__proof { display:grid; grid-template-columns:1fr 1fr; gap:9px 12px; text-align:left; }
  .rdn-shop-hero-product { border-radius:24px; }
  .rdn-shop-hero-art { min-height:310px; border-radius:25px; }
  .rdn-shop-hero-art__box { width:135px; height:135px; border-radius:30px; }
  .rdn-shop-hero-art__box svg { width:70px; }
  .rdn-shop-section { padding-block:58px; }
  .rdn-shop-section__header { align-items:flex-start; flex-direction:column; gap:14px; margin-bottom:25px; }
  .rdn-shop-section__header h2 { font-size:34px; }
  .rdn-shop-category-grid { gap:10px; }
  .rdn-shop-category-card { min-height:210px; padding:14px; border-radius:17px; }
  .rdn-shop-category-card__media { inset:12px 12px 62px; }
  .rdn-shop-category-card strong { font-size:13px; }
  .rdn-product-grid,
  .rdn-store-results .rdn-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .rdn-product-card { border-radius:16px; }
  .rdn-product-card__media { padding:10px; }
  .rdn-product-card__body { min-height:222px; padding:13px; }
  .rdn-product-card__title { font-size:13px; }
  .rdn-product-card__compatibility { font-size:9px; }
  .rdn-product-card__price { font-size:14px; }
  .rdn-product-card__commerce small { display:none; }
  .rdn-product-card__actions { grid-template-columns:1fr; gap:2px; }
  .rdn-product-card__quick { min-height:30px; }
  .rdn-product-card__badges { top:8px; left:8px; }
  .rdn-product-badge { min-height:20px; padding:3px 7px; font-size:7px; }
  .rdn-shop-guidance__grid { text-align:center; }
  .rdn-shop-guidance h2 { font-size:36px; }
  .rdn-shop-guidance__steps { text-align:left; }
  .rdn-shop-support-strip .rdn-container { align-items:flex-start; flex-direction:column; }

  .rdn-store-archive__hero .rdn-container { padding-block:30px 38px; }
  .rdn-store-archive__hero h1 { font-size:42px; }
  .rdn-store-catalog { display:block; padding-block:20px 60px; }
  .rdn-store-filter-toggle { display:flex; width:100%; min-height:50px; align-items:center; justify-content:center; gap:9px; margin-bottom:12px; border:1px solid #cfe0e9; border-radius:12px; color:#087fba; background:#fff; font-family:inherit; font-size:11px; font-weight:850; }
  .rdn-store-filter-toggle svg { width:20px; fill:none; stroke:currentColor; stroke-width:1.8; }
  .rdn-store-filters { position:fixed; inset:66px 0 0; z-index:1250; display:flex; border:0; border-radius:0; flex-direction:column; visibility:hidden; opacity:0; transform:translateY(30px); transition:visibility 260ms ease,opacity 220ms ease,transform 280ms ease; }
  body.admin-bar .rdn-store-filters { top:98px; }
  .rdn-store-filters.is-mobile-open { visibility:visible; opacity:1; transform:none; }
  .rdn-store-filters__header { flex:0 0 auto; }
  .rdn-store-filters__header button { display:grid; width:40px; height:40px; place-items:center; border:1px solid #dbe3ea; border-radius:50%; background:#f8fafc; font:300 26px Arial; }
  .rdn-store-filters > :not(.rdn-store-filters__header):not(.rdn-store-filters__actions) { flex:0 0 auto; }
  .rdn-store-filters { overflow-y:auto; padding-bottom:80px; }
  .rdn-store-filters__actions { position:sticky; bottom:0; margin-top:auto; background:#fff; box-shadow:0 -8px 25px rgba(15,23,42,.08); }
  .rdn-store-toolbar { margin-bottom:12px; }
  .rdn-store-toolbar > button { font-size:0; }
  .rdn-store-toolbar > button svg { width:22px; }
  .rdn-store-results__status span { display:none; }
  .rdn-store-diagnostic .rdn-container { align-items:flex-start; flex-direction:column; gap:22px; }
  .rdn-store-diagnostic h2 { font-size:26px; }

  .rdn-single-product { padding-block:20px 70px; }
  .rdn-single-product__hero { gap:30px; }
  .rdn-product-gallery__stage { border-radius:20px; }
  .rdn-single-product__summary h1 { font-size:39px; }
  .rdn-single-product__facts { grid-template-columns:1fr; }
  .rdn-single-product__purchase form.cart { display:grid; grid-template-columns:72px 1fr; }
  .rdn-single-product__purchase .variations { grid-column:1 / 3; }
  .rdn-product-information { margin-top:65px; padding-top:50px; }
  .rdn-product-help { align-items:flex-start; flex-direction:column; gap:20px; }
  .rdn-product-help h2 { font-size:27px; }
  .rdn-related-products { margin-top:60px; }

  .rdn-shop-search__panel { width:100%; max-height:none; height:100%; margin:0; border-radius:0; }
  .rdn-shop-overlay__header { padding:17px 16px; }
  .rdn-shop-search__form { min-height:58px; margin:15px 14px 0; padding-left:13px; }
  .rdn-shop-search__form input { min-height:54px; font-size:12px; }
  .rdn-shop-search__form button { min-width:75px; min-height:44px; }
  .rdn-shop-search__suggestions { padding:18px 14px 100px; }
  .rdn-shop-search__product-results > div { grid-template-columns:1fr; }
  .rdn-shop-search__help { position:fixed; right:0; bottom:0; left:0; flex-direction:column; gap:3px; padding:12px 15px calc(12px + env(safe-area-inset-bottom)); text-align:center; }
  .rdn-quick-view__panel { top:auto; right:0; bottom:0; left:0; width:100%; max-height:88vh; border-radius:22px 22px 0 0; transform:translateY(100%); }
  .rdn-quick-view.is-open .rdn-quick-view__panel { transform:none; }
  .rdn-quick-product { grid-template-columns:1fr; gap:18px; padding:15px; }
  .rdn-quick-product__media { max-height:300px; }
  .rdn-quick-product__copy h2 { font-size:28px; }
  .rdn-quick-product__actions .rdn-button { width:100%; }

  .rdn-woo-flow__content { padding-block:24px 70px; }
  .rdn-woo-flow__content > .woocommerce { padding:16px; border-radius:18px; }
  .woocommerce table.shop_table_responsive tr { margin-bottom:14px; padding:10px; border:1px solid #dde5ed; border-radius:12px; }
}

@media (max-width: 420px) {
  .rdn-shop-mobile-bar__brand img { width:190px; }
  .rdn-shop-mobile-bar__brand span { display:none; }
  .rdn-product-card__body { min-height:235px; }
  .rdn-product-card__title { font-size:12px; }
  .rdn-product-card__add { min-height:39px; font-size:10px; }
}

@media (prefers-reduced-motion: reduce) {
  .rdn-product-card,
  .rdn-shop-overlay,
  .rdn-shop-side-overlay__panel,
  .rdn-shop-search__panel,
  .rdn-quick-view__panel { transition:none !important; }
}
