/*
Theme Name: Hypogeen Custom
Theme URI: https://hypogeen.nl
Author: Dennis / Codex
Author URI: https://hypogeen.nl
Description: Custom theme for Hypogeen.
Version: 1.7.0
Text Domain: hypogeen-custom
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(100%, calc(100% - 88px));
  margin: 0 auto;
}

.site-main {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 75, 168, 0.08);
  box-shadow: 0 10px 24px rgba(22, 46, 95, 0.05);
}

.site-header__promo {
  background: linear-gradient(90deg, #0d2f77 0%, #194aa5 52%, #0d2f77 100%);
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.site-header__promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  text-align: center;
}

.site-header__usp {
  position: relative;
  width: min(100%, 760px);
  min-height: 20px;
}

.site-header__usp-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.site-header__usp-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.site-header__bar {
  background: rgba(255, 255, 255, 0.99);
}

.site-header__bar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 88px;
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
}

.site-header__left {
  justify-content: flex-start;
  gap: 16px;
}

.site-header__right {
  justify-content: flex-end;
  gap: 12px;
}

.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #123a8d;
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__brand .custom-logo-link,
.site-header__brand .custom-logo {
  display: block;
}

.site-header__brand .custom-logo {
  width: auto;
  max-width: 220px;
  max-height: 46px;
}

.site-header__logo-text {
  color: #123a8d;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-header__nav {
  min-width: 0;
}

.site-nav__list,
.site-mobile-nav__list,
.site-nav__list .sub-menu,
.site-mobile-nav__list .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav__list > li {
  position: static;
}

.site-nav__list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #163870;
  font-size: 0.96rem;
  font-weight: 700;
  transition: color 0.18s ease;
}

.site-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #2c67d1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav__list > li:hover > a,
.site-nav__list > li:focus-within > a {
  color: #0d2f77;
}

.site-nav__list > li:hover > a::after,
.site-nav__list > li:focus-within > a::after {
  transform: scaleX(1);
}

.site-nav__list > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: min(1080px, calc(100vw - 112px));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 24px;
  padding: 30px 32px;
  border: 1px solid #dfe8fb;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 24px 56px rgba(17, 58, 141, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px);
}

.site-nav__list > li > .sub-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #15356c;
  font-size: 0.96rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(44, 103, 209, 0.08);
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.site-nav__list > li > .sub-menu > li > a:hover {
  background: #ffffff;
  border-color: rgba(44, 103, 209, 0.24);
  transform: translateY(-1px);
}

.site-header__icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #123a8d;
  background: #f5f8ff;
  border: 1px solid #dbe5fb;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.site-header__icon-button:hover {
  background: #123a8d;
  border-color: #123a8d;
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__icon-button svg {
  width: 24px;
  height: 24px;
}

.site-header__cart-count {
  position: absolute;
  top: -2px;
  right: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: #0d2f77;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
}

.site-header__cart-count.is-empty {
  display: none;
}

.site-search {
  position: relative;
}

.site-search__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(92vw, 380px);
  padding: 14px;
  border: 1px solid #dbe5fb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 58, 141, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-search__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-search__form {
  display: flex;
  gap: 10px;
}

.site-search__input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #d8e2f8;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.95rem;
  font-family: inherit;
}

.site-search__submit {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #123a8d;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.site-mobile-panel {
  display: none;
  border-top: 1px solid rgba(18, 58, 141, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.site-mobile-nav__list {
  display: grid;
  gap: 0;
  padding: 10px 0 18px;
}

.site-mobile-nav__list > li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid #e8eefc;
}

.site-mobile-nav__list > li > a {
  display: flex;
  align-items: center;
  min-height: 56px;
  color: #15356c;
  font-size: 1rem;
  font-weight: 700;
}

.site-mobile-nav__expand {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #123a8d;
  cursor: pointer;
}

.site-mobile-nav__expand span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.site-mobile-nav__expand span:first-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.site-mobile-nav__expand[aria-expanded="true"] span:first-child {
  opacity: 0;
}

.site-mobile-nav__list .sub-menu {
  grid-column: 1 / -1;
  padding: 0 0 10px 16px;
}

.site-mobile-nav__list .sub-menu[hidden] {
  display: none !important;
}

.site-mobile-nav__list .sub-menu li a {
  display: flex;
  align-items: center;
  min-height: 46px;
  color: #355996;
  font-size: 0.94rem;
  border-top: 1px solid #edf2fd;
}

.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(11, 28, 63, 0.32);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.site-drawer-backdrop.is-visible {
  opacity: 1;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(100vw, 430px);
  height: 100vh;
  background: #ffffff;
  box-shadow: -18px 0 44px rgba(18, 40, 86, 0.14);
  transform: translateX(100%);
  transition: transform 0.26s ease;
}

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

.site-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px 16px;
  border-bottom: 1px solid #edf1f8;
}

.site-drawer__title {
  margin: 0;
  color: #111111;
  font-size: 1.4rem;
  font-weight: 800;
}

.site-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #14356d;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.site-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.site-drawer__body--cart {
  padding-top: 12px;
}

.site-drawer__intro {
  margin: 0 0 18px;
  color: #111111;
}

.site-drawer__links {
  display: grid;
  gap: 10px;
}

.site-drawer__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #d9e3f9;
  border-radius: 14px;
  color: #111111;
  font-weight: 700;
  background: #f7faff;
}

.site-drawer__shipping-note {
  margin: 0 0 12px;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-drawer__shipping-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e8ecf3;
  overflow: hidden;
}

.site-drawer__shipping-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #33a852 0%, #2f9e44 100%);
}

.site-drawer__cart-items {
  display: grid;
  gap: 14px;
}

.site-drawer__cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f8;
}

.site-drawer__cart-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e4ebf9;
  overflow: hidden;
}

.site-drawer__cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-drawer__cart-meta {
  min-width: 0;
}

.site-drawer__cart-name {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-weight: 800;
  line-height: 1.35;
}

.site-drawer__cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #111111;
  font-size: 0.92rem;
}

.site-drawer__remove {
  display: inline-flex;
  margin-top: 10px;
  color: #7c8696;
  font-size: 0.88rem;
  text-decoration: underline;
}

.site-drawer__empty {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #f7faff;
  border: 1px solid #e3ebfa;
}

.site-drawer__empty p {
  margin: 0;
  font-weight: 700;
}

.site-drawer__foot {
  padding: 18px;
  border-top: 1px solid #edf1f8;
  background: #ffffff;
}

.site-drawer__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
  color: #111111;
  font-size: 1.02rem;
}

.site-drawer__shipping-label {
  margin: 0 0 16px;
  color: #5c6678;
  font-size: 0.9rem;
}

.site-drawer__actions {
  display: grid;
  gap: 10px;
}

.site-drawer__primary,
.site-drawer__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.site-drawer__primary {
  background: #2f9e44;
  color: #ffffff;
}

.site-drawer__secondary {
  background: #ffffff;
  color: #111111;
  border: 1px solid #d6e1f8;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding: 30px 0 72px;
}

.product-detail__breadcrumbs {
  margin-bottom: 18px;
}

.product-detail__breadcrumb-nav,
.product-detail__breadcrumb-nav a,
.product-detail__breadcrumbs .woocommerce-breadcrumb {
  color: #7b8ca5;
  font-size: 0.92rem;
  font-weight: 500;
}

.product-detail__breadcrumb-nav a:hover {
  color: #04589f;
}

.product-detail__breadcrumb-sep {
  display: inline-block;
  margin: 0 8px;
  color: #a4b2c5;
}

.product-gallery {
  position: sticky;
  top: 124px;
}

.product-gallery__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  border: 1px solid #e4eaf2;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.product-gallery__slide {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-gallery__slide.is-active {
  display: flex;
}

.product-gallery__slide img {
  width: 100%;
  max-width: 760px;
  max-height: 660px;
  object-fit: contain;
}


.product-gallery__promo-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  max-width: min(76%, 360px);
  padding: 8px 14px;
  border: 2px solid #f00068;
  border-radius: 4px;
  background: #ffffff;
  color: #e40063;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(240, 0, 104, 0.08);
}
.product-gallery__promo-label-mobile {
  display: none;
}

.product-gallery__skin-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #b7d1ea;
  background: rgba(255, 255, 255, 0.96);
  color: #04589f;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-gallery__thumb {
  width: 88px;
  height: 88px;
  padding: 8px;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.product-gallery__thumb.is-active {
  border-color: #04589f;
  box-shadow: 0 0 0 2px rgba(4, 88, 159, 0.08);
}

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

.product-detail__summary-column {
  padding-top: 6px;
}

.product-detail__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-detail__stars .product-rating {
  position: static;
}

.product-detail__stars .product-rating__star {
  width: 17px;
  height: 17px;
  color: #e7d5a0;
}

.product-detail__stars .product-rating__star svg {
  width: 17px;
  height: 17px;
}

.product-detail__stars .product-rating__fill {
  color: #f2c84b;
}

.product-detail__reviews {
  color: #5f6f87;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-detail__title {
  margin: 0;
  color: #16253d;
  font-family: inherit;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.product-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-detail__badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #b7d1ea;
  background: #ffffff;
  color: #04589f;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-detail__short {
  max-width: 34rem;
  margin-top: 18px;
  color: #42536b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.product-detail__short p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-detail__usp-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-detail__usp-list li {
  position: relative;
  padding-left: 18px;
  color: #344763;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.52;
}

.product-detail__usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #04589f;
}

.product-detail__content-choices {
  margin-top: 28px;
}

.product-detail__label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #43546d;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__content-grid {
  display: grid;
  gap: 12px;
}

.product-detail__content-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #dce5f5;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-detail__content-card.is-active {
  border-color: #04589f;
  box-shadow: 0 0 0 2px rgba(4, 88, 159, 0.08);
}

.product-detail__content-card:hover {
  transform: translateY(-1px);
}

.product-detail__content-name {
  color: #172840;
  font-size: 1rem;
  font-weight: 700;
}

.product-detail__content-price {
  color: #172840;
  font-size: 1rem;
  font-weight: 700;
}

.product-detail__price-row {
  margin-top: 26px;
}

.product-detail__price-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail__price-old,
.product-detail__price-old .amount {
  color: #97a3b4;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: line-through;
}

.product-detail__price-current,
.product-detail__price-current .amount {
  color: #16253d;
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-detail__discount {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #c8dbf0;
  color: #04589f;
  font-size: 0.86rem;
  font-weight: 700;
}

.product-detail__cart-form-wrap {
  margin-top: 22px;
}

.product-detail__cart-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
}

.product-detail__cart-form-wrap .quantity .qty {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #16253d;
  font-family: inherit;
}

.product-detail__cart-form-wrap .single_add_to_cart_button,
.product-detail__cart-form-wrap .single_add_to_cart_button.button,
.product-detail__cart-form-wrap button.single_add_to_cart_button,
.product-detail__add-to-cart {
  width: 100%;
  min-height: 56px;
  border: 0 !important;
  border-radius: 12px;
  background: #04589f !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-detail__cart-form-wrap .single_add_to_cart_button:hover,
.product-detail__cart-form-wrap .single_add_to_cart_button.button:hover,
.product-detail__cart-form-wrap button.single_add_to_cart_button:hover,
.product-detail__add-to-cart:hover {
  background: #034980 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.product-detail__cart-form-wrap .single_add_to_cart_button:disabled,
.product-detail__add-to-cart:disabled {
  opacity: 0.8;
  cursor: wait;
}

.product-detail__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #263750;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.product-detail__trustpilot-text {
  white-space: nowrap;
}

.product-detail__trustpilot img {
  width: auto;
  height: 18px;
}

.product-detail__trust-block {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #f4f7fa;
}

.product-detail__trust-item {
  position: relative;
  padding-left: 40px;
  color: #354761;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-detail__trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  opacity: 0.85;
}

.product-detail__trust-item--box::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304589F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7.5 12 3l9 4.5M3 7.5V18l9 3 9-3V7.5M3 7.5 12 12l9-4.5M12 12v9'/%3E%3C/svg%3E");
}

.product-detail__trust-item--truck::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304589F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17H6V8h10v9h-2M16 11h3l2 2v4h-2M7.5 19.5a1.5 1.5 0 1 0 0-.01ZM17.5 19.5a1.5 1.5 0 1 0 0-.01Z'/%3E%3C/svg%3E");
}

.product-detail__trust-item--card::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304589F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}

.product-detail__trust-item--thumb::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304589F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11v8M11 19h6a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-4l1-4-3-1-3 5v9'/%3E%3C/svg%3E");
}

.product-detail__payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.product-detail__payment-icons img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.product-reviews-section {
  padding-bottom: 72px;
}

.product-reviews-section__inner {
  border-top: 1px solid #dbe4ef;
  padding-top: 38px;
}

.product-reviews-section .woocommerce-Reviews-title,
.product-reviews-section h2#scores-en-recensies,
.product-reviews-section .rr-title-section h2 {
  margin: 0;
  color: #16253d;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-reviews-section .rr-conatiner,
.product-reviews-section .rr-conatiner-outer,
.product-reviews-section #ratings,
.product-reviews-section .woocommerce-Reviews,
.product-reviews-section .woocommerce-Reviews #comments,
.product-reviews-section .woocommerce-Reviews #review_form_wrapper,
.product-reviews-section .rr-snapshot-outer,
.product-reviews-section .rr-most-fav-review,
.product-reviews-section .rfp-rr-header,
.product-reviews-section .form-container,
.product-reviews-section .rr-all-review-item,
.product-reviews-section .rr-rating-snapshot,
.product-reviews-section .rr-avg-customer-rating,
.product-reviews-section .rr-most-fav-review-left-inner,
.product-reviews-section .rr-most-fav-review-right-inner,
.product-reviews-section .woocommerce-Reviews ol.commentlist li {
  background: #ffffff;
  border: 1px solid #e3e9f2;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(22, 53, 109, 0.06);
}

.product-reviews-section .rr-title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.product-reviews-section .write-review-btn,
.product-reviews-section .rfp-rr-button,
.product-reviews-section #review_form #respond .form-submit input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #04589f;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-reviews-section .rr-snapshot-outer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  margin-bottom: 24px;
  overflow: hidden;
}

.product-reviews-section .rr-rating-snapshot {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.product-reviews-section .rr-rating-snapshot-inner {
  padding: 34px 36px;
}

.product-reviews-section .rr-avg-customer-rating {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: linear-gradient(135deg, #0b8ad3 0%, #04589f 100%);
}

.product-reviews-section .rr-avg-customer-rating-inner {
  padding: 34px 36px;
  color: #ffffff;
}

.product-reviews-section .rr-sub-title,
.product-reviews-section .rr-rating-snapshot h3,
.product-reviews-section .rr-avg-customer-rating h3,
.product-reviews-section .rr-most-fav-review h3,
.product-reviews-section .rr-all-review-item h3 {
  margin: 0 0 12px;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.product-reviews-section .rr-rating-snapshot p,
.product-reviews-section .rr-most-fav-review p,
.product-reviews-section .rr-all-review-item p,
.product-reviews-section .rr-label,
.product-reviews-section .rr-label-info,
.product-reviews-section .rr-review-date,
.product-reviews-section .rr-user-location,
.product-reviews-section .rr-user-age,
.product-reviews-section .rr-user-name,
.product-reviews-section .rr-user-review-comment,
.product-reviews-section .rfp-rr-ratings-filter-by-rating-label,
.product-reviews-section .rfp-header-menu,
.product-reviews-section .rfp-rr-most-ratings-list-063-or,
.product-reviews-section .rfp-rr-most-ratings-list-0520-or,
.product-reviews-section .rfp-ratings-clearAll_filter,
.product-reviews-section .rfp-rr-most-ratings-list-100-or,
.product-reviews-section .rfp-rr-most-ratings-list-102-or,
.product-reviews-section .rfp-rr-most-ratings-list-133-or,
.product-reviews-section .rfp-rr-most-ratings-list-108-or,
.product-reviews-section .rfp-rr-most-helpful-favorable-review-144-or {
  font-family: inherit;
  letter-spacing: normal;
}

.product-reviews-section .rr-rating-snapshot p,
.product-reviews-section .rr-most-fav-review p,
.product-reviews-section .rr-all-review-item p,
.product-reviews-section .rr-label,
.product-reviews-section .rr-label-info,
.product-reviews-section .rr-user-location,
.product-reviews-section .rr-user-age,
.product-reviews-section .rr-user-review-comment,
.product-reviews-section .rfp-rr-ratings-filter-by-rating-label,
.product-reviews-section .rfp-header-menu,
.product-reviews-section .rfp-rr-most-ratings-list-063-or,
.product-reviews-section .rfp-rr-most-ratings-list-0520-or,
.product-reviews-section .rfp-ratings-clearAll_filter,
.product-reviews-section .rfp-rr-most-ratings-list-100-or,
.product-reviews-section .rfp-rr-most-ratings-list-102-or,
.product-reviews-section .rfp-rr-most-ratings-list-133-or,
.product-reviews-section .rfp-rr-most-ratings-list-108-or,
.product-reviews-section .rfp-rr-most-helpful-favorable-review-144-or {
  color: #5e6d82;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
}

.product-reviews-section .rr-avg-customer-rating .rr-sub-title,
.product-reviews-section .rr-avg-customer-rating .rr-label,
.product-reviews-section .rr-avg-customer-rating .rr-label-info,
.product-reviews-section .rr-avg-customer-rating p,
.product-reviews-section .rr-avg-customer-rating span {
  color: #ffffff !important;
}

.product-reviews-section .rr-rating-bar-outer {
  display: inline-flex;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #edf2f8;
  overflow: hidden;
  vertical-align: middle;
}

.product-reviews-section .rr-rating-bar-inner {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0b8ad3 0%, #04589f 100%);
}

.product-reviews-section .rr-most-fav-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 24px;
  overflow: hidden;
}

.product-reviews-section .rr-most-fav-review-left-inner,
.product-reviews-section .rr-most-fav-review-right-inner {
  padding: 26px;
}

.product-reviews-section .rr-most-fav-review-right-inner {
  border-left: 1px solid #e8eef5;
}

.product-reviews-section .rfp-rr-header,
.product-reviews-section .form-container {
  padding: 18px 22px;
}

.product-reviews-section .rfp-rr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.product-reviews-section .rfp-rr-ratings-list #rfp-rr-ratings-reviews-results-list {
  display: grid;
  gap: 18px;
}

.product-reviews-section .rr-all-review-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.product-reviews-section .rr-all-review-item-left {
  padding: 24px;
  background: #fbfcfe;
  border-right: 1px solid #e8eef5;
}

.product-reviews-section .rr-all-review-item-right {
  padding: 24px;
}

.product-reviews-section .rr-user-name .bold,
.product-reviews-section .rr-sub-title.black,
.product-reviews-section .black.bold {
  color: #16253d;
  font-weight: 800;
}

.product-reviews-section .rr-review-date,
.product-reviews-section .rr-user-location,
.product-reviews-section .rr-user-age,
.product-reviews-section .rr-user-name,
.product-reviews-section .rfp-rr-most-helpful-favorable-review-144-or,
.product-reviews-section .rfp-rr-most-ratings-list-108-or,
.product-reviews-section .rfp-rr-most-ratings-list-100-or,
.product-reviews-section .rfp-rr-most-ratings-list-102-or,
.product-reviews-section .rfp-rr-most-ratings-list-133-or {
  color: #6f7e94;
}

.product-reviews-section .reviews-four-five,
.product-reviews-section .rr-show-full-review,
.product-reviews-section .aReported,
.product-reviews-section .rfp-ratings-clearAll_filter,
.product-reviews-section .rr-see-more-reviews {
  color: #04589f;
  font-weight: 700;
  text-decoration: underline;
}

.product-reviews-section .rr-like-review {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.product-reviews-section .rfp-ratings-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 24px;
  border: 1px solid #cfe0f2;
  border-radius: 12px;
  background: #ffffff;
  color: #04589f;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-hero {
  position: relative;
  min-height: clamp(460px, 70vh, 760px);
  display: flex;
  align-items: end;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #d9d3cc;
}

.home-hero__slides,
.home-hero__slide {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center center;
}

.home-hero__slide--lcp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.58) 0%, rgba(12, 12, 12, 0.22) 42%, rgba(12, 12, 12, 0.04) 72%);
  pointer-events: none;
}

.home-hero__lcp-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px;
}

.home-hero__inner {
  display: none;
  width: min(100%, 680px);
  color: #ffffff;
}

.home-hero__inner.is-active {
  display: block;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-hero__title {
  margin: 18px 0 0;
  font-family: inherit;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 9ch;
}

.home-hero__text {
  max-width: 52ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.home-hero__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.home-hero__dot.is-active {
  background: #ffffff;
}

.product-slider {
  padding: 56px 0 72px;
}

.product-slider__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-slider__title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-family: inherit;
}

.product-slider__controls {
  display: flex;
  gap: 10px;
}

.product-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e7e1da;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.product-slider__button:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

.product-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 298px;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}

.product-slider__track::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
}

.product-card__link {
  display: block;
}

.product-card__media {
  position: relative;
  aspect-ratio: 0.92 / 1;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(18, 12, 8, 0.04);
}

.product-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 18px 18px 24px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.26s ease-out;
}

.product-card:hover .product-card__image {
  transform: scale(1.05) translateY(-3px);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: #5dc0ba;
  color: #111111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 2px;
}

.product-rating__star {
  position: relative;
  width: 14px;
  height: 14px;
  color: #d4cdc7;
}

.product-rating__star svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-rating__fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #f3c61d;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}

.product-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.product-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f8f6f3;
  color: #111111;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-card__stock-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f9e44;
  box-shadow: 0 0 0 0 rgba(47, 158, 68, 0.45);
  animation: product-stock-pulse 1.9s ease-in-out infinite;
}

.product-card__stock--out {
  color: #111111;
}

.product-card__stock--out .product-card__stock-dot {
  background: #db3b2f;
  box-shadow: 0 0 0 0 rgba(219, 59, 47, 0.45);
  animation-name: product-stock-pulse-out;
}

@keyframes product-stock-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(47, 158, 68, 0.42); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(47, 158, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(47, 158, 68, 0); }
}

@keyframes product-stock-pulse-out {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(219, 59, 47, 0.42); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(219, 59, 47, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(219, 59, 47, 0); }
}

.product-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eaf8f7;
  color: #111111;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.product-card__title {
  margin: 0;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #111111;
}

.product-card__price,
.product-card__price .amount {
  font-size: 1.18rem;
  color: #111111;
}

.product-card__price {
  font-weight: 700;
}

.product-card__usps {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.product-card__usps li {
  position: relative;
  padding-left: 16px;
  color: #111111;
  font-size: 0.92rem;
  line-height: 1.42;
}

.product-card__usps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2f9e44;
}

.product-card__cart {
  margin-top: 16px;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #2f9e44;
  border-radius: 999px;
  background: #2f9e44;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-card__button:hover {
  background: #27863a;
  border-color: #27863a;
  color: #ffffff;
  transform: translateY(-1px);
}

.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 18px;
  background: rgba(15, 27, 55, 0.3);
  backdrop-filter: blur(8px);
}

.site-search-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 1280px);
  height: min(100%, 860px);
  margin: 0 auto;
  padding: 28px 28px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(16, 28, 56, 0.16);
  overflow: hidden;
}

.site-search-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-search-modal__top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding-right: 42px;
}

.site-search-modal__input-wrap {
  position: relative;
}

.site-search-modal__input {
  width: 100%;
  height: 62px;
  padding: 0 118px 0 26px;
  border: 1px solid #d7dde6;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  font-size: 1.02rem;
  font-family: inherit;
  outline: none;
}

.site-search-modal__input::placeholder {
  color: #7d8796;
}

.site-search-modal__input:focus {
  border-color: #04589f;
  box-shadow: 0 0 0 4px rgba(4, 88, 159, 0.08);
}

.site-search-modal__clear,
.site-search-modal__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.site-search-modal__clear {
  right: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111111;
  cursor: pointer;
}

.site-search-modal__clear svg,
.site-search-modal__icon svg {
  width: 22px;
  height: 22px;
}

.site-search-modal__icon {
  right: 22px;
  display: inline-flex;
  color: #111111;
}

.site-search-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-search-modal__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #dedfe2;
  color: #111111;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-search-modal__tab.is-active {
  background: #04589f;
  color: #ffffff;
}

.site-search-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 36px;
  min-height: 0;
  flex: 1;
  padding-top: 28px;
}

.site-search-modal__results,
.site-search-modal__sidebar {
  min-height: 0;
  overflow-y: auto;
  padding-right: 10px;
}

.site-search-modal__results::-webkit-scrollbar,
.site-search-modal__sidebar::-webkit-scrollbar {
  width: 8px;
}

.site-search-modal__results::-webkit-scrollbar-thumb,
.site-search-modal__sidebar::-webkit-scrollbar-thumb {
  background: #c9ced6;
  border-radius: 999px;
}

.site-search-modal__empty,
.site-search-modal__no-results {
  color: #667182;
  font-size: 1rem;
}

.site-search-modal__panel.is-active {
  display: block;
}

.site-search-modal__section-title,
.site-search-modal__sidebar-group h3 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-search-modal__sidebar-group + .site-search-modal__sidebar-group {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dfe3ea;
}

.site-search-modal__sidebar-link {
  display: block;
  color: #111111;
  font-size: 0.98rem;
  line-height: 1.4;
  text-decoration: underline;
}

.site-search-modal__sidebar-link + .site-search-modal__sidebar-link {
  margin-top: 12px;
}

.site-search-result {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.site-search-result + .site-search-result {
  margin-top: 12px;
  padding-top: 12px;
}

.site-search-result--product {
  grid-template-columns: 140px minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
}

.site-search-result__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #f7f7f7;
  overflow: hidden;
}

.site-search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-search-result__content {
  min-width: 0;
}

.site-search-result__title {
  display: inline-block;
  margin-bottom: 6px;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.site-search-result__excerpt {
  margin: 0;
  color: #111111;
  font-size: 0.98rem;
  line-height: 1.35;
}

.site-search-result--product .site-search-result__excerpt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-search-result__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-search-result__stock-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.site-search-result__stock--in-stock {
  color: #111111;
}

.site-search-result__stock--in-stock .site-search-result__stock-dot {
  background: #2f9e44;
  box-shadow: 0 0 0 0 rgba(47, 158, 68, 0.45);
  animation: product-stock-pulse 1.9s ease-in-out infinite;
}

.site-search-result__stock--out-of-stock {
  color: #111111;
}

.site-search-result__stock--out-of-stock .site-search-result__stock-dot {
  background: #db3b2f;
  box-shadow: 0 0 0 0 rgba(219, 59, 47, 0.45);
  animation: product-stock-pulse-out 1.9s ease-in-out infinite;
}

.site-search-result__price {
  display: block;
  margin-top: 2px;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
}

.site-search-result__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: #04589f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.site-search-result__readmore {
  display: inline-flex;
  margin-top: 8px;
  color: #04589f;
  font-size: 0.98rem;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .site-header__bar-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .site-header__toggle {
    display: inline-block;
  }

  .site-header__nav {
    display: none;
  }

  .site-mobile-panel:not([hidden]) {
    display: block;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-gallery {
    position: static;
  }

  .product-reviews-section .rr-snapshot-outer,
  .product-reviews-section .rr-most-fav-review,
  .product-reviews-section .rr-all-review-item {
    grid-template-columns: 1fr;
  }

  .product-reviews-section .rr-most-fav-review-right-inner,
  .product-reviews-section .rr-all-review-item-left {
    border-left: 0;
    border-top: 1px solid #e8eef5;
    border-right: 0;
  }

  .product-reviews-section .woocommerce-Reviews .comment-text {
    margin-left: 0;
    margin-top: 16px;
  }

  .site-search-modal__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-search-modal__sidebar {
    border-top: 1px solid #dfe3ea;
    padding-top: 22px;
  }
}

@media (max-width: 767px) {
  .site-shell {
    width: min(100%, calc(100% - 32px));
  }

  .site-header__promo-inner {
    min-height: 32px;
    font-size: 0.71rem;
  }

  .site-header__bar-inner {
    gap: 8px;
    min-height: 70px;
  }

  .site-header__left {
    gap: 6px;
  }

  .site-header__right {
    gap: 8px;
  }

  .site-header__brand .custom-logo {
    max-width: 96px;
    max-height: 24px;
  }

  .site-header__icon-button,
  .site-header__toggle {
    width: 46px;
    height: 46px;
  }

  .site-header__icon-button svg {
    width: 26px;
    height: 26px;
  }

  .site-search__panel {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .site-search__form {
    flex-direction: column;
  }

  .site-drawer {
    width: 100vw;
  }

  .product-gallery__stage {
    min-height: 500px;
    border-radius: 12px;
  }

  .product-gallery__slide {
    padding: 16px;
  }

  .product-gallery__slide img {
    max-width: 100%;
    max-height: 480px;
  }
  .product-gallery__promo-label {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }


  .product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  .product-detail {
    padding-top: 22px;
  }

  .product-detail__title {
    font-size: 2rem;
  }

  .product-detail__short {
    max-width: 100%;
  }

  .product-detail__cart-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .product-detail__trustpilot {
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-reviews-section {
    padding-bottom: 64px;
  }

  .product-reviews-section__inner {
    padding-top: 24px;
  }

  .product-reviews-section .rr-title-section {
    flex-direction: column;
    align-items: stretch;
  }

  .product-reviews-section .rr-rating-snapshot,
  .product-reviews-section .rr-avg-customer-rating,
  .product-reviews-section .rr-most-fav-review-left-inner,
  .product-reviews-section .rr-most-fav-review-right-inner,
  .product-reviews-section .rfp-rr-header,
  .product-reviews-section .form-container,
  .product-reviews-section .rr-all-review-item-left,
  .product-reviews-section .rr-all-review-item-right,
  .product-reviews-section .woocommerce-Reviews ol.commentlist li {
    padding: 18px;
  }

  .home-hero {
    min-height: 520px;
    margin-top: 0;
    border-radius: 0;
  }

  .home-hero__content-wrap {
    padding: 28px 22px;
  }

  .home-hero__title {
    max-width: 8ch;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .home-hero__text {
    font-size: 0.96rem;
  }

  .product-slider {
    padding-top: 28px;
  }

  .product-slider__title {
    font-size: 2rem;
  }

  .product-slider__controls {
    display: none;
  }

  .product-slider__track {
    grid-auto-columns: 84vw;
    gap: 18px;
  }

  .product-card__title {
    font-size: 1.18rem;
  }

  .site-search-modal {
    padding: 0;
    background: rgba(15, 27, 55, 0.2);
  }

  .site-search-modal__dialog {
    width: 100%;
    height: 100%;
    padding: 18px 16px 16px;
    border-radius: 0;
  }

  .site-search-modal__top {
    padding-right: 36px;
    gap: 12px;
  }

  .site-search-modal__close {
    top: 10px;
    right: 8px;
  }

  .site-search-modal__input {
    height: 56px;
    padding-left: 18px;
    padding-right: 96px;
    font-size: 1rem;
  }

  .site-search-modal__clear {
    right: 48px;
  }

  .site-search-modal__icon {
    right: 18px;
  }

  .site-search-modal__body {
    gap: 24px;
    padding-top: 18px;
  }

  .site-search-modal__results,
  .site-search-modal__sidebar {
    padding-right: 2px;
  }

  .site-search-result,
  .site-search-result--product {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

.site-search-result__cta {
    grid-column: 2;
    min-height: 44px;
    margin-top: 10px;
  }
}

body.woocommerce-cart .site-page__inner--commerce,
body.woocommerce-checkout .site-page__inner--commerce {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-checkout .cart-empty,
body.woocommerce-cart .woocommerce-info.cart-empty,
body.woocommerce-checkout .woocommerce-info.cart-empty,
body.woocommerce-cart .return-to-shop,
body.woocommerce-checkout .return-to-shop {
  display: none !important;
}

.hyp-empty-cart {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 84px auto 110px;
  padding: 44px;
  border: 1px solid #d9e7f6;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  color: #143250;
  text-align: center;
  box-shadow: 0 24px 70px rgba(6, 38, 84, 0.08);
}

.hyp-empty-cart__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: #eef6ff;
  color: #04589f;
}

.hyp-empty-cart__icon span {
  position: relative;
  display: block;
  width: 36px;
  height: 28px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 9px 9px;
}

.hyp-empty-cart__icon span::before,
.hyp-empty-cart__icon span::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 14px;
  height: 18px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.hyp-empty-cart__icon span::before {
  left: 2px;
}

.hyp-empty-cart__icon span::after {
  right: 2px;
}

.hyp-empty-cart__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef6ff;
  color: #04589f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hyp-empty-cart h1 {
  margin: 18px 0 12px;
  color: #062e63;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.hyp-empty-cart p {
  max-width: 560px;
  margin: 0;
  color: #51637f;
  font-size: 17px;
  line-height: 1.7;
}

.hyp-empty-cart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.hyp-empty-cart__button,
.hyp-empty-cart__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.hyp-empty-cart__button {
  background: #04589f;
  color: #fff;
}

.hyp-empty-cart__button:hover {
  background: #034b87;
  color: #fff;
}

.hyp-empty-cart__link {
  border: 1px solid #d9e7f6;
  background: #fff;
  color: #04589f;
}

.hyp-empty-cart__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.hyp-empty-cart__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d9e7f6;
  border-radius: 999px;
  background: #f8fbff;
  color: #143250;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 640px) {
  body.woocommerce-cart .site-page__inner--commerce,
  body.woocommerce-checkout .site-page__inner--commerce {
    width: min(100% - 24px, 100%);
  }

  .hyp-empty-cart {
    margin: 34px auto 70px;
    padding: 28px 18px;
    border-radius: 22px;
  }

  .hyp-empty-cart__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .hyp-empty-cart p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hyp-empty-cart__actions,
  .hyp-empty-cart__button,
  .hyp-empty-cart__link {
    width: 100%;
  }

  .hyp-empty-cart__trust {
    display: grid;
    width: 100%;
  }

  .hyp-empty-cart__trust span {
    justify-content: center;
  }
}

.product-related-section {
  margin: 8px 0 64px;
}

.product-related-section__head,
.skin-products__head.product-related-section__head {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
}

.product-related-section__head h2,
.skin-products__head.product-related-section__head h2 {
  margin: 0;
  text-align: left;
}

.product-related-section__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-related-section__grid .skin-products__card {
  background: #f8fbff;
}

.product-related-section__grid .skin-products__image-link {
  background: #ffffff;
}

.product-related-section__grid .skin-products__body--catalog {
  background: transparent;
}

@media (max-width: 1024px) {
  .product-related-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html,
  body.single-product,
  body.single-product .site-main,
  body.single-product .site-shell {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .product-related-section {
    width: 100%;
    max-width: 100%;
    margin: 0 0 48px;
    overflow: hidden;
  }

  .product-related-section__head {
    margin: 0 0 16px;
  }

  .product-related-section__grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-related-section__grid::-webkit-scrollbar {
    display: none;
  }

  .product-related-section__grid > .skin-products__card {
    flex: 0 0 82% !important;
    width: 82% !important;
    min-width: 82% !important;
    max-width: 82% !important;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  html.hypogeen-product-overflow-lock,
  html.hypogeen-product-overflow-lock body.single-product {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }

  html.hypogeen-product-overflow-lock body.single-product .site-main {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

@media (min-width: 1181px) {
  .site-nav__list > li.trp-language-switcher-container,
  .site-nav__list > li.trp-menu-ls-item,
  .site-nav__list > li.menu-item-object-language_switcher {
    position: relative;
    z-index: 140;
  }

  .site-nav__list > li.trp-language-switcher-container > a,
  .site-nav__list > li.trp-menu-ls-item > a,
  .site-nav__list > li.menu-item-object-language_switcher > a {
    min-height: 42px;
    padding: 0 8px;
  }

  .site-nav__list > li.trp-language-switcher-container > a::after,
  .site-nav__list > li.trp-menu-ls-item > a::after,
  .site-nav__list > li.menu-item-object-language_switcher > a::after {
    display: none;
  }

  .site-nav__list > li.trp-language-switcher-container > .sub-menu,
  .site-nav__list > li.trp-menu-ls-item > .sub-menu,
  .site-nav__list > li.menu-item-object-language_switcher > .sub-menu {
    top: calc(100% - 2px);
    right: 0;
    left: auto;
    width: auto;
    min-width: 52px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
    border-radius: 14px;
    transform: translateY(8px);
  }

  .site-nav__list > li.trp-language-switcher-container:hover > .sub-menu,
  .site-nav__list > li.trp-language-switcher-container:focus-within > .sub-menu,
  .site-nav__list > li.trp-menu-ls-item:hover > .sub-menu,
  .site-nav__list > li.trp-menu-ls-item:focus-within > .sub-menu,
  .site-nav__list > li.menu-item-object-language_switcher:hover > .sub-menu,
  .site-nav__list > li.menu-item-object-language_switcher:focus-within > .sub-menu {
    transform: translateY(2px);
  }

  .site-nav__list > li.trp-language-switcher-container > .sub-menu > li > a,
  .site-nav__list > li.trp-menu-ls-item > .sub-menu > li > a,
  .site-nav__list > li.menu-item-object-language_switcher > .sub-menu > li > a {
    justify-content: center;
    min-height: 34px;
    padding: 8px;
    border-radius: 10px;
  }
}


.site-header,
.site-header__bar,
.site-header__bar-inner {
  overflow: visible !important;
}
