:root {
  --green: #99aa8d;
  --purple: #7780bd;
  --deep-purple: #6b42a0;
  --button: #7652aa;
  --red: #e30613;
  --black: #1f1f1f;
  --text: #151515;
  --muted: #666;
  --line: #e6e6e6;
  --wrap: 80vw;
  --surface-width: min(var(--wrap), calc(100vw - 32px));
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.home-main {
  display: flex;
  flex-direction: column;
}

.home-main > .section,
.home-main > .dash {
  order: 3;
}

.site-loader {
  align-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--deep-purple), #4f2d82 62%, #3f246d);
  color: #fff;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  text-align: center;
  transition: opacity 380ms ease, visibility 380ms ease;
  visibility: visible;
  z-index: 9999;
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-loader__inner {
  align-items: center;
  animation: loaderFloat 2200ms ease-in-out infinite;
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 24px;
}

.site-loader__logo {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px) clamp(28px, 5vw, 48px);
  position: relative;
}

.site-loader__logo::after {
  animation: loaderSheen 1900ms ease-in-out infinite;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.78) 50%, transparent 78%);
  content: "";
  inset: -35% -80%;
  position: absolute;
  transform: translateX(-65%) rotate(8deg);
}

.site-loader__logo img {
  display: block;
  max-width: min(330px, 68vw);
  position: relative;
  width: 330px;
  z-index: 1;
}

.site-loader p {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  opacity: 0.88;
  text-transform: uppercase;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@keyframes loaderSheen {
  0% {
    transform: translateX(-65%) rotate(8deg);
  }

  48%,
  100% {
    transform: translateX(65%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__inner,
  .site-loader__logo::after {
    animation: none;
  }
}

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

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

.wrap {
  margin: 0 auto;
  max-width: var(--wrap);
  padding-left: 16px;
  padding-right: 16px;
  width: var(--wrap);
}

.top {
  background: var(--green);
  color: #fff;
  font-size: 12px;
}

.top__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 36px;
}

.top__left,
.top__right {
  display: flex;
  gap: 18px;
}

.top__left span,
.top__right a,
.quick a,
.tabs button,
.product > a:not(.product-image-link) {
  align-items: center;
  gap: 7px;
}

.top__left span,
.top__right a,
.quick a {
  display: inline-flex;
}

.top__right a[aria-label] {
  font-size: 14px;
  justify-content: center;
  width: 18px;
}

.header__inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 310px minmax(360px, 1fr) auto;
  min-height: 132px;
}

.logo img {
  aspect-ratio: 300 / 111;
  height: auto;
  object-fit: contain;
  width: 265px;
}

.search {
  display: grid;
  grid-template-columns: 1fr 42px;
  position: relative;
}

.search input {
  background: #f1f1f1;
  border: 0;
  border-radius: 22px 0 0 22px;
  font-size: 14px;
  height: 56px;
  min-width: 0;
  padding: 0 18px;
}

.search > button {
  background: #f1f1f1;
  border: 0;
  border-radius: 0 22px 22px 0;
  color: #777;
  cursor: pointer;
  font-size: 21px;
}

.search-panel {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(760px, calc(100vw - 32px));
  z-index: 50;
}

.search-panel__status {
  color: #777;
  padding: 16px;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(330px, 1.1fr);
  min-height: 430px;
}

.search-results-list {
  border-right: 1px solid #e5e5e5;
  max-height: 500px;
  overflow-y: auto;
}

.search-result {
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
  color: #555;
  cursor: pointer;
  display: grid;
  font-family: inherit;
  gap: 10px;
  grid-template-columns: 38px 1fr auto;
  min-height: 58px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
}

.search-result::after {
  color: #aaa;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 120ms ease, transform 120ms ease;
}

.search-result:hover,
.search-result:focus-visible,
.search-result.is-active {
  background: #fff;
  box-shadow: inset 4px 0 0 var(--button);
  color: var(--deep-purple);
  outline: 0;
}

.search-result:hover::after,
.search-result:focus-visible::after,
.search-result.is-active::after {
  opacity: 1;
  transform: translateX(2px);
}

.search-result img {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.search-result strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.search-result__placeholder {
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #aaa;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.search-view-all {
  color: #777;
  display: block;
  font-size: 11px;
  padding: 12px 16px;
}

.search-view-all:hover {
  color: var(--deep-purple);
}

.search-product-detail {
  max-height: 500px;
  overflow-y: auto;
  padding: 24px 30px 22px;
}

.search-detail__image {
  align-items: center;
  border-bottom: 1px solid #eee;
  display: flex;
  height: 205px;
  justify-content: center;
  margin-bottom: 14px;
  padding-bottom: 16px;
}

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

.search-detail__placeholder {
  align-items: center;
  background: #f7f7f7;
  color: #bbb;
  display: flex;
  font-size: 42px;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.search-detail__content h3 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.22;
  margin: 0 0 12px;
}

.search-detail__content h3 a:hover {
  color: var(--deep-purple);
}

.search-detail__price {
  border-bottom: 1px solid #eee;
  color: #000;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 14px;
  padding-bottom: 14px;
}

.search-detail__sku,
.search-detail__description {
  color: #555;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.search-detail__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-detail__footer {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 16px;
}

.search-detail__action {
  align-items: center;
  background: var(--button);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  padding: 7px 11px;
}

.search-detail__action:hover,
.search-detail__action.is-added {
  background: var(--deep-purple);
}

.search-detail__action:disabled {
  cursor: wait;
  opacity: 0.8;
}

.search-detail__unavailable {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.quick {
  align-items: center;
  color: #555;
  display: flex;
  font-size: 14px;
  gap: 16px;
  white-space: nowrap;
}

.cart-widget {
  position: relative;
}

.cart-link {
  min-height: 34px;
}

.cart-preview {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  color: var(--text);
  min-width: 310px;
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: normal;
  z-index: 80;
}

.cart-widget:hover .cart-preview,
.cart-widget:focus-within .cart-preview,
.cart-widget.is-open .cart-preview {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cart-preview::before {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -14px;
}

.cart-preview__title {
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  padding-bottom: 9px;
}

.cart-preview__status {
  color: #666;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}

.cart-preview__item {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px 1fr auto;
  padding: 9px 0;
}

.cart-preview__item img,
.cart-preview__placeholder {
  background: #f7f7f7;
  border-radius: 5px;
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.cart-preview__item strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.cart-preview__item small {
  color: #777;
  display: block;
  margin-top: 4px;
}

.cart-preview__price {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.cart-preview__more {
  color: #666;
  font-size: 12px;
  margin: 10px 0 0;
  text-align: center;
}

.cart-preview__total {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  padding: 13px 0 11px;
}

.cart-preview__actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.cart-preview__actions--single {
  grid-template-columns: 1fr;
}

.cart-preview__actions a {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
}

.cart-preview__cart {
  background: #f0f0f0;
  color: #333;
}

.cart-preview__checkout {
  background: var(--red);
  color: #fff;
}

.menu {
  background: var(--purple);
  color: #fff;
}

.mobile-menu-toggle {
  align-items: center;
  background: var(--deep-purple);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: none;
  font: inherit;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 11px 16px;
  width: 100%;
}

.mobile-menu-toggle i {
  font-size: 20px;
}

.mobile-menu-toggle strong {
  margin-left: 4px;
}

.menu__inner {
  display: flex;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.menu a {
  font-size: 14px;
  font-weight: 700;
  padding: 15px 22px;
}

.menu__active {
  background: var(--deep-purple);
}

.mega-wrap {
  display: flex;
  position: static;
}

.mega-trigger {
  align-items: center;
  display: flex;
  gap: 8px;
}

.mega-menu {
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--text);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  left: 16px;
  min-width: 0;
  opacity: 0;
  padding: 26px 28px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 100%;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 45;
}

.mega-wrap:hover .mega-menu,
.mega-wrap:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu h3 {
  border-bottom: 2px solid var(--purple);
  color: var(--deep-purple);
  font-size: 15px;
  margin: 0 0 12px;
  padding-bottom: 9px;
}

.mega-menu a {
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  padding: 6px 0;
}

.mega-menu a:hover {
  color: var(--red);
}

.hero {
  margin-top: 18px;
  order: 2;
}

.hero__viewport {
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(28, 18, 45, 0.14);
  height: clamp(380px, 30vw, 470px);
  overflow: hidden;
  width: 100%;
}

.hero__track {
  display: flex;
  height: 100%;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slide {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #f8f5fc 0%, #eee8f8 48%, #fff 100%);
  display: grid;
  flex: 0 0 100%;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(300px, 0.92fr) minmax(430px, 1.08fr);
  height: 100%;
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px);
  position: relative;
}

.hero__slide::before,
.hero__slide::after {
  border-radius: 999px;
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__slide::before {
  background: rgba(118, 82, 170, 0.2);
  height: 230px;
  left: -72px;
  top: -86px;
  width: 230px;
}

.hero__slide::after {
  background: rgba(227, 6, 19, 0.08);
  bottom: -120px;
  height: 300px;
  right: -90px;
  width: 300px;
}

.hero__slide--green {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.74), transparent 26%),
    linear-gradient(135deg, #f4f8ee 0%, #e9f2df 48%, #fff 100%);
}

.hero__slide--red {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, #fff4f4 0%, #fde9eb 48%, #fff 100%);
}

.hero__copy {
  align-content: center;
  color: var(--text);
  display: grid;
  justify-items: start;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  background: var(--deep-purple);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 9px 13px;
}

.hero__slide--green .hero__eyebrow {
  background: #7f9f45;
}

.hero__slide--red .hero__eyebrow {
  background: var(--red);
}

.hero__copy h1 {
  font-size: clamp(38px, 4.3vw, 66px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0 0 18px;
}

.hero__copy p {
  color: #4c4c4c;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 24px;
}

.hero__cta {
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  padding: 13px 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero__cta:hover {
  box-shadow: 0 16px 36px rgba(227, 6, 19, 0.28);
  transform: translateY(-2px);
}

.hero__items {
  align-content: center;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.hero__items a,
.hero-placeholder {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(28, 18, 45, 0.12);
  display: flex;
  justify-content: center;
  min-height: 168px;
  overflow: hidden;
  padding: 18px;
}

.hero__items a:nth-child(2),
.hero__items a:nth-child(3) {
  transform: translateY(18px);
}

.hero__items a {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__items a:hover {
  box-shadow: 0 22px 44px rgba(28, 18, 45, 0.18);
  transform: translateY(-3px);
}

.hero__items a:nth-child(2):hover,
.hero__items a:nth-child(3):hover {
  transform: translateY(14px);
}

.hero__items img {
  height: 150px;
  margin: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.hero__items a:hover img {
  transform: scale(1.045);
}

.hero-placeholder,
.tip-placeholder {
  background: linear-gradient(90deg, #f3f3f3, #fafafa, #f3f3f3);
  display: block;
}

.hero-placeholder {
  height: auto;
  margin: 0;
  width: auto;
}

.tip-placeholder {
  aspect-ratio: 1.76 / 1;
  width: 100%;
}

.benefits {
  background: linear-gradient(135deg, var(--deep-purple), #8361b8);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(61, 36, 96, 0.16);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  order: 1;
  overflow: hidden;
}

.benefits article {
  align-items: center;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 64px;
  padding: 12px 18px;
}

.benefits article:last-child {
  border-right: 0;
}

.benefits b {
  align-items: center;
  display: contents;
  font-size: 14px;
  gap: 10px;
  margin: 0;
}

.benefits b i {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--deep-purple);
  display: inline-flex;
  font-size: 15px;
  grid-row: span 2;
  height: 34px;
  justify-content: center;
  margin-right: 12px;
  width: 34px;
}

.benefits span,
.benefits b {
  min-width: 0;
}

.benefits span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
  padding-top: 68px;
  text-align: center;
}

.section h2 {
  font-size: 44px;
  margin: 0 0 40px;
}

.dash {
  border: 0;
  border-top: 2px dashed #222;
  margin-top: 58px;
}

.grid {
  display: grid;
  gap: 42px 34px;
  text-align: left;
}

.grid--sale,
.grid--popular,
.grid--new {
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 980px;
  width: 68%;
}

.product {
  min-width: 0;
  position: relative;
}

.badge {
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.product img {
  aspect-ratio: 1 / 1.16;
  height: auto;
  object-fit: contain;
  padding: 18px 10px 6px;
  width: 100%;
}

.loading-products {
  color: #777;
  font-size: 15px;
  grid-column: 1 / -1;
  margin: 0;
  min-height: 120px;
  padding: 42px 0;
  text-align: center;
}

.image-fallback {
  align-items: center;
  aspect-ratio: 1 / 1.16;
  color: #777;
  display: flex;
  justify-content: center;
  width: 100%;
}

.product h3 {
  font-size: 14px;
  line-height: 1.25;
  margin: 6px 0;
  min-height: 32px;
}

.product p {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px;
}

.product del {
  color: #777;
  margin-right: 4px;
}

.product > a:not(.product-image-link) {
  background: var(--button);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 11px;
}

.product h3 a {
  color: inherit;
}

.product-image-link {
  display: block;
}

.product.is-loading {
  opacity: 0.45;
}

[data-dynamic-grid].loaded .product {
  animation: productIn 180ms ease both;
}

@keyframes productIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.red-pill {
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-top: 30px;
  padding: 12px 24px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin: -10px 0 28px;
}

.tabs button {
  align-items: center;
  background: #eee;
  border: 0;
  border-radius: 999px;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  padding: 8px 18px;
}

.tabs button:hover,
.tabs .active {
  background: var(--red);
  color: #fff;
}

.tips__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.tips article {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.tips img {
  aspect-ratio: 1.76 / 1;
  object-fit: cover;
  width: 100%;
}

.tips span {
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  float: right;
  font-size: 10px;
  font-weight: 800;
  margin: -36px 14px 0 0;
  padding: 7px 12px;
  position: relative;
}

.tips h3 {
  clear: both;
  font-size: 16px;
  line-height: 1.35;
  margin: 22px 18px 18px;
  min-height: 64px;
}

.tips article > a:last-child {
  color: var(--red);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  margin: 0 18px 24px;
}

.tip-image-link {
  display: block;
}

.tips h3 a {
  color: inherit;
}

.tips h3 a:hover {
  color: var(--deep-purple);
}

.blog-listing {
  padding-bottom: 30px;
}

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

.blog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-card__image {
  background: #f6f6f6;
  display: block;
  overflow: hidden;
}

.blog-card__image img,
.blog-card__image .tip-placeholder {
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.025);
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card__meta {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 11px;
  gap: 12px;
  justify-content: space-between;
  margin: 0 0 13px;
}

.blog-card__meta span {
  color: var(--red);
  font-weight: 800;
}

.blog-card h2 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 13px;
}

.blog-card h2 a:hover {
  color: var(--deep-purple);
}

.blog-card__excerpt {
  color: var(--muted);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 22px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card__link {
  align-items: center;
  color: var(--deep-purple);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 46px;
}

.blog-pagination button,
.blog-pagination a {
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  height: 38px;
  justify-content: center;
  min-width: 38px;
}

.blog-pagination button:hover,
.blog-pagination button.is-active,
.blog-pagination a:hover,
.blog-pagination a.is-active {
  background: var(--button);
  border-color: var(--button);
  color: #fff;
}

.article-page {
  min-height: 55vh;
}

.article-page__status {
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}

.article-page__status i {
  color: var(--deep-purple);
  margin-right: 8px;
}

.article-single {
  max-width: 1040px;
  padding-top: 34px;
}

.article-breadcrumb {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 12px;
  gap: 9px;
  margin-bottom: 42px;
}

.article-breadcrumb a:hover {
  color: var(--deep-purple);
}

.article-breadcrumb i {
  font-size: 9px;
}

.article-header {
  margin: 0 auto 34px;
  max-width: 850px;
  text-align: center;
}

.article-header__category {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}

.article-header h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 18px;
}

.article-header__meta {
  color: #777;
  display: flex;
  font-size: 12px;
  gap: 20px;
  justify-content: center;
  margin: 0;
}

.article-header__meta i {
  margin-right: 5px;
}

.article-featured {
  margin: 0 auto 44px;
  max-width: 980px;
}

.article-featured img {
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.article-content {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 820px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--text);
  line-height: 1.25;
  margin: 1.8em 0 0.65em;
}

.article-content h2 {
  font-size: 30px;
}

.article-content h3 {
  font-size: 24px;
}

.article-content a {
  color: var(--deep-purple);
  text-decoration: underline;
}

.article-content img {
  height: auto;
  margin: 28px auto;
}

.article-content figure {
  margin: 30px 0;
}

.article-content .wp-block-columns {
  display: flex;
  gap: 24px;
}

.article-content .wp-block-column {
  flex: 1;
  min-width: 0;
}

.article-content .alignwide {
  margin-left: 50%;
  max-width: 980px;
  transform: translateX(-50%);
  width: calc(100vw - 48px);
}

.article-content blockquote {
  border-left: 4px solid var(--button);
  color: #555;
  margin: 30px 0;
  padding: 4px 0 4px 24px;
}

.article-content table {
  border-collapse: collapse;
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-content td,
.article-content th {
  border: 1px solid #ddd;
  padding: 10px;
}

.article-footer {
  border-top: 1px solid #e5e5e5;
  margin: 48px auto 0;
  max-width: 820px;
  padding-top: 26px;
}

.article-footer a {
  align-items: center;
  color: var(--deep-purple);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.page-main {
  min-height: 44vh;
}

.page-hero {
  padding-bottom: 42px;
  padding-top: 64px;
  text-align: center;
}

.page-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 0 0 16px;
}

.page-hero > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 36px 30px;
  text-align: center;
}

.contact-card > i {
  color: var(--deep-purple);
  font-size: 32px;
}

.contact-card h2 {
  font-size: 20px;
  margin: 18px 0 12px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.contact-card a {
  color: var(--deep-purple);
  display: block;
  font-weight: 800;
  line-height: 1.8;
}

.about-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
}

.about-content {
  color: #444;
  font-size: 16px;
  line-height: 1.85;
}

.about-content p {
  margin: 0 0 18px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-media {
  margin: 0;
}

.about-media img {
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  display: block;
  height: auto;
  width: 100%;
}

.terms-layout {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 250px minmax(0, 1fr);
}

.terms-nav {
  border: 1px solid #e5e5e5;
  position: sticky;
  top: 24px;
}

.terms-nav strong {
  background: var(--deep-purple);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 16px 18px;
  text-transform: uppercase;
}

.terms-nav a {
  border-bottom: 1px solid #eee;
  color: #555;
  display: block;
  font-size: 13px;
  padding: 12px 18px;
}

.terms-nav a:last-child {
  border-bottom: 0;
}

.terms-nav a:hover {
  color: var(--deep-purple);
}

.terms-content {
  color: #444;
  font-size: 15px;
  line-height: 1.75;
  min-width: 0;
}

.terms-content > section {
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 38px;
  scroll-margin-top: 24px;
}

.terms-content > section + section {
  padding-top: 38px;
}

.terms-content > section:last-child {
  border-bottom: 0;
}

.terms-content h2 {
  color: var(--text);
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 20px;
}

.terms-content h3 {
  color: var(--text);
  font-size: 18px;
  margin: 26px 0 10px;
}

.terms-content p {
  margin: 0 0 16px;
}

.terms-content a {
  color: var(--deep-purple);
  text-decoration: underline;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-bank {
  background: #f7f7f7;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0;
  padding: 20px;
}

.terms-bank p {
  margin: 0;
  overflow-wrap: anywhere;
}

.cookie-banner {
  bottom: 16px;
  left: 16px;
  opacity: 0;
  position: fixed;
  right: 16px;
  transform: translateY(24px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 200;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  align-items: center;
  background: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1040px;
  padding: 18px 20px;
}

.cookie-banner__icon {
  align-items: center;
  background: #f2edf8;
  color: var(--deep-purple);
  display: flex;
  font-size: 24px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.cookie-banner__content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.cookie-banner__content p {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__content a {
  color: var(--deep-purple);
  font-weight: 800;
}

.cookie-banner__accept {
  background: var(--button);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
}

.cookie-banner__accept:hover {
  background: var(--deep-purple);
}

.product-page {
  min-height: 55vh;
}

.product-page__status {
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}

.product-page__status i {
  color: var(--deep-purple);
  margin-right: 8px;
}

.product-single {
  padding-top: 34px;
}

.product-breadcrumb {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 12px;
  gap: 9px;
  margin-bottom: 34px;
}

.product-breadcrumb a:hover {
  color: var(--deep-purple);
}

.product-breadcrumb i {
  font-size: 9px;
}

.product-single__grid {
  display: grid;
  gap: clamp(42px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.product-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 74px minmax(0, 1fr);
}

.product-gallery__main {
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  grid-column: 2;
  grid-row: 1;
  height: min(560px, 55vw);
  justify-content: center;
  min-height: 430px;
  padding: 28px;
}

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

.product-gallery__placeholder {
  align-items: center;
  background: #f7f7f7;
  color: #bbb;
  display: flex;
  font-size: 54px;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
}

.product-gallery__thumbs:empty {
  display: none;
}

.product-gallery__thumbs button {
  background: #fff;
  border: 1px solid #e4e4e4;
  cursor: pointer;
  height: 74px;
  padding: 5px;
  width: 74px;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button.is-active {
  border-color: var(--button);
}

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

.product-summary {
  padding-top: 8px;
}

.product-summary__category {
  color: var(--deep-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.product-summary h1 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 22px;
}

.product-summary__price {
  border-bottom: 1px solid #e8e8e8;
  color: var(--red);
  font-size: 25px;
  font-weight: 800;
  margin: 0 0 18px;
  padding-bottom: 18px;
}

.product-summary__availability {
  color: #56804d;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 18px;
}

.product-summary__availability i {
  margin-right: 6px;
}

.product-summary__short {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

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

.product-summary__meta {
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
  margin: 24px 0;
  padding: 15px 0;
}

.product-summary__meta div {
  display: flex;
  gap: 8px;
}

.product-summary__meta dt {
  color: #777;
}

.product-summary__meta dd {
  font-weight: 800;
  margin: 0;
}

.product-summary__purchase {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-quantity {
  display: grid;
  gap: 6px;
}

.product-quantity span {
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.product-quantity input {
  border: 1px solid #d8d8d8;
  font: inherit;
  height: 42px;
  padding: 0 10px;
  text-align: center;
  width: 74px;
}

.product-add-button {
  align-items: center;
  background: var(--button);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
}

.product-add-button:hover,
.product-add-button.is-added {
  background: var(--deep-purple);
}

.product-add-button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.product-purchase-note {
  color: #777;
  flex-basis: 100%;
  font-size: 12px;
  line-height: 1.5;
  margin: 2px 0 0;
}

.product-description {
  border-top: 1px solid #e5e5e5;
  margin-top: 72px;
  padding-top: 42px;
}

.product-description h2 {
  font-size: 28px;
  margin: 0 0 24px;
}

.product-description > div {
  color: #4d4d4d;
  line-height: 1.75;
  max-width: 900px;
}

.footer {
  background: var(--black);
  content-visibility: auto;
  contain-intrinsic-size: 420px;
  color: #fff;
  margin-top: 78px;
}

.footer__grid {
  display: grid;
  gap: 58px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.7fr;
  padding-bottom: 52px;
  padding-top: 52px;
}

.footer h3 {
  font-size: 14px;
  margin: 0 0 22px;
}

.footer p,
.footer a {
  color: #e6e6e6;
  display: block;
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.footer__grid p {
  align-items: center;
  display: flex;
  gap: 7px;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social a {
  align-items: center;
  background: #436dc5;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.social a:last-child {
  background: #e73c80;
}

.cards {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.cards i {
  font-size: 22px;
}

.sg {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.sg__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 180px;
}

.sg__inner a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.sg img {
  margin: 0 auto 8px;
  width: 180px;
  transition: transform 160ms ease;
}

.sg p {
  display: block;
  justify-content: center;
  line-height: 1.35;
  margin: 0;
  text-align: center;
  width: 100%;
}

.sg__inner a:hover img {
  transform: translateY(-2px);
}

.footer__bottom {
  background: #050505;
  color: #e6e6e6;
  font-size: 12px;
  padding: 18px 16px;
  text-align: center;
}

.footer__bottom p {
  margin: 6px 0;
}

@media (max-width: 1450px) {
  .header__inner {
    gap: 18px 24px;
    grid-template-columns: 220px minmax(260px, 1fr);
    min-height: 0;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .logo img {
    width: 205px;
  }

  .search {
    grid-column: 2;
  }

  .quick {
    background: #f7f7f7;
    border-radius: 999px;
    grid-column: 1 / -1;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 14px;
  }

  .quick a,
  .cart-widget {
    flex: 0 0 auto;
  }
}

@media (max-width: 1180px) {
  .wrap {
    max-width: 100%;
    width: 100%;
  }

  .header__inner {
    gap: 18px 24px;
    grid-template-columns: 220px minmax(260px, 1fr);
    min-height: 0;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .logo img {
    width: 205px;
  }

  .search {
    grid-column: 2;
  }

  .search input {
    height: 48px;
  }

  .quick {
    background: #f7f7f7;
    border-radius: 999px;
    grid-column: 1 / -1;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 14px;
  }

  .quick a {
    flex: 0 0 auto;
  }

  .cart-widget {
    flex: 0 0 auto;
  }

  .menu__inner {
    overflow-x: auto;
  }

  .menu a {
    flex: 0 0 auto;
  }

  .mega-wrap {
    flex: 0 0 auto;
  }

  .mega-menu {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    left: 16px;
    min-width: 0;
    right: 16px;
  }

  .hero {
    order: 1;
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 24px);
  }

  .hero__viewport {
    height: auto;
  }

  .hero__slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__copy {
    max-width: none;
  }

  .benefits,
  .grid--sale,
  .grid--popular,
  .grid--new,
  .tips__grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .benefits {
    border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    order: 2;
    width: calc(100vw - 24px);
  }

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

  .terms-layout {
    gap: 34px;
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding-bottom: 30px;
    padding-top: 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .about-content {
    font-size: 15px;
  }

  .about-media {
    order: -1;
  }

  .terms-layout {
    display: block;
  }

  .terms-nav {
    margin-bottom: 38px;
    position: static;
  }

  .terms-content h2 {
    font-size: 24px;
  }

  .terms-bank {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
  }

  .cookie-banner__inner {
    gap: 12px;
    grid-template-columns: auto 1fr;
    padding: 14px;
  }

  .cookie-banner__accept {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .blog-card__content {
    padding: 20px;
  }

  .article-single {
    padding-top: 22px;
  }

  .article-breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-header__meta {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }

  .article-featured {
    margin-bottom: 30px;
  }

  .article-content {
    font-size: 15px;
  }

  .article-content .wp-block-columns {
    display: block;
  }

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

  .product-breadcrumb {
    margin-bottom: 22px;
  }

  .product-single__grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

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

  .product-gallery__main {
    grid-column: 1;
    height: 390px;
    min-height: 0;
    padding: 18px;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    grid-column: 1;
    grid-row: 2;
    overflow-x: auto;
  }

  .product-gallery__thumbs button {
    flex: 0 0 64px;
    height: 64px;
    width: 64px;
  }

  .product-summary h1 {
    font-size: 30px;
  }

  .product-description {
    margin-top: 48px;
    padding-top: 30px;
  }
}

@media (max-width: 620px) {
  .top {
    font-size: 11px;
  }

  .top__inner,
  .top__left,
  .top__right {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .top__inner {
    gap: 7px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .top__left,
  .top__right {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .header__inner {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    padding-bottom: 14px;
    padding-top: 14px;
    text-align: center;
  }

  .logo {
    justify-self: center;
  }

  .logo img {
    width: min(200px, 64vw);
  }

  .search {
    grid-column: auto;
    grid-template-columns: 1fr 48px;
    width: 100%;
  }

  .search input {
    border-radius: 22px 0 0 22px;
    font-size: 14px;
    height: 46px;
  }

  .search > button {
    border-radius: 0 22px 22px 0;
  }

  .quick {
    background: transparent;
    border-radius: 0;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    overflow: visible !important;
    padding: 0;
    white-space: normal;
    width: 100%;
  }

  .quick a {
    align-items: center;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    font-size: 12px;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    overflow: hidden;
    padding: 7px 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-widget {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .cart-link {
    min-width: 0;
    overflow: hidden;
    width: 100%;
  }

  .cart-link strong,
  .quick #account-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-preview {
    left: 50%;
    max-height: min(62vh, 500px);
    min-width: 0;
    overflow-y: auto;
    padding: 14px;
    position: fixed;
    right: auto;
    top: clamp(214px, 48vh, 300px);
    transform: translate(-50%, 8px);
    width: min(calc(100vw - 18px), 380px);
  }

  .cart-widget:hover .cart-preview,
  .cart-widget:focus-within .cart-preview,
  .cart-widget.is-open .cart-preview {
    transform: translate(-50%, 0);
  }

  .cart-preview::before {
    display: none;
  }

  .cart-preview__item {
    gap: 8px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    padding: 8px 0;
  }

  .cart-preview__item img,
  .cart-preview__placeholder {
    height: 40px;
    width: 40px;
  }

  .cart-preview__item strong {
    font-size: 11.5px;
    overflow-wrap: anywhere;
  }

  .cart-preview__item small {
    font-size: 11px;
  }

  .cart-preview__price {
    font-size: 11.5px;
    white-space: nowrap;
  }

  .cart-preview__actions a {
    min-height: 38px;
  }

  .menu__inner {
    gap: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .menu__inner {
    background: var(--purple);
    display: none;
    flex-direction: column;
    overflow-x: visible;
    padding: 0;
    width: 100%;
  }

  .menu.is-open .menu__inner {
    display: flex;
  }

  .menu a,
  .mega-wrap,
  .mega-trigger {
    display: flex;
    width: 100%;
  }

  .menu a {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    justify-content: center;
    padding: 14px 16px;
    text-align: center;
  }

  .hero__slide {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero__copy h1 {
    font-size: 34px;
  }

  .hero__copy p {
    font-size: 15px;
  }

  .hero__eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .mega-menu {
    display: none;
  }

  .hero__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__items a,
  .hero-placeholder {
    min-height: 126px;
    padding: 12px;
  }

  .hero__items a:nth-child(2),
  .hero__items a:nth-child(3),
  .hero__items a:nth-child(2):hover,
  .hero__items a:nth-child(3):hover {
    transform: none;
  }

  .hero__items img {
    height: 104px;
  }

  .search-panel {
    max-height: 76vh;
    overflow-y: auto;
  }

  .search-layout {
    display: block;
    min-height: 0;
  }

  .search-results-list {
    border-bottom: 1px solid #e5e5e5;
    border-right: 0;
    max-height: 260px;
  }

  .search-product-detail {
    max-height: none;
    padding: 20px;
  }

  .search-detail__image {
    height: 180px;
  }

  .benefits,
  .grid--sale,
  .grid--popular,
  .grid--new,
  .tips__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .benefits article {
    min-height: 68px;
  }
}

/* Headless category catalogue and detailed product view. */
.sr-only,
.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  white-space: normal;
  width: auto;
}

.product > button:not(.product-card-wishlist) {
  align-items: center;
  background: var(--button);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  padding: 7px 11px;
}

.product > button:not(.product-card-wishlist):hover,
.product > button:not(.product-card-wishlist).is-added {
  background: var(--deep-purple);
}

.product > button:not(.product-card-wishlist):disabled {
  cursor: wait;
  opacity: 0.8;
}

.product > .product-card-wishlist {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #111;
  cursor: pointer;
  display: block;
  font-size: 22px;
  left: 0;
  padding: 6px;
  position: absolute;
  top: 7px;
  z-index: 2;
}

.product > .product-card-wishlist:hover,
.product > .product-card-wishlist.is-added {
  background: transparent;
  color: var(--red);
}

.product ins {
  color: var(--deep-purple);
  text-decoration: none;
}

.category-page {
  min-height: 55vh;
}

.category-page__status {
  color: var(--muted);
  padding: 100px 16px;
  text-align: center;
}

.category-page__status i {
  color: var(--deep-purple);
  margin-right: 8px;
}

.category-content {
  padding-top: 34px;
}

.category-hero {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 15px 0 38px;
}

.category-hero__eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

.category-hero h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.category-hero p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.category-hero__image {
  flex: 0 0 170px;
  height: 135px;
}

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

.sale-page__hero {
  background: linear-gradient(110deg, rgba(118, 82, 170, 0.08), rgba(220, 0, 0, 0.04));
  padding-left: clamp(20px, 4vw, 52px);
  padding-right: clamp(20px, 4vw, 52px);
}

.sale-page__icon {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 110px;
  font-size: 46px;
  height: 110px;
  justify-content: center;
}

.search-page__hero {
  background: linear-gradient(110deg, rgba(118, 82, 170, 0.09), rgba(85, 128, 77, 0.05));
  padding-left: clamp(20px, 4vw, 52px);
  padding-right: clamp(20px, 4vw, 52px);
}

.search-page__icon {
  align-items: center;
  background: var(--button);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 110px;
  font-size: 42px;
  height: 110px;
  justify-content: center;
}

.category-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
}

.category-toolbar p {
  color: var(--muted);
  margin: 0;
}

.category-toolbar label {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 10px;
}

.category-toolbar select {
  background: #fff;
  border: 1px solid #d8d8d8;
  font: inherit;
  min-width: 230px;
  padding: 10px 34px 10px 12px;
}

.category-grid,
.product-related__grid {
  display: grid;
  gap: 38px 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid .product,
.product-related__grid .product {
  display: flex;
  flex-direction: column;
}

.category-grid .product-image-link,
.product-related__grid .product-image-link {
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}

.category-grid .product img,
.product-related__grid .product img {
  aspect-ratio: 1 / 1;
  padding: 8px;
}

.category-grid .product h3,
.product-related__grid .product h3 {
  min-height: 36px;
}

.category-grid .product > button:not(.product-card-wishlist),
.category-grid .product > a:not(.product-image-link),
.product-related__grid .product > button:not(.product-card-wishlist),
.product-related__grid .product > a:not(.product-image-link) {
  align-self: flex-start;
  margin-top: auto;
}

.category-empty {
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
}

.category-pagination {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 52px;
}

.category-pagination a,
.category-pagination span {
  align-items: center;
  border: 1px solid #ddd;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 10px;
}

.category-pagination a:hover,
.category-pagination a.is-current {
  background: var(--button);
  border-color: var(--button);
  color: #fff;
}

.category-directory {
  padding-top: 42px;
}

.category-directory h2 {
  font-size: 30px;
  margin: 0 0 28px;
}

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

.category-directory__card {
  align-items: center;
  border: 1px solid #e5e5e5;
  display: flex;
  gap: 18px;
  min-height: 125px;
  padding: 14px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.category-directory__card:hover {
  border-color: var(--button);
  transform: translateY(-2px);
}

.category-directory__card img,
.category-directory__placeholder {
  flex: 0 0 95px;
  height: 95px;
  object-fit: contain;
  width: 95px;
}

.category-directory__placeholder {
  align-items: center;
  background: #f5f5f5;
  color: #aaa;
  display: flex;
  font-size: 26px;
  justify-content: center;
}

.category-directory__card strong,
.category-directory__card small {
  display: block;
}

.category-directory__card strong {
  font-size: 16px;
  margin-bottom: 8px;
}

.category-directory__card small {
  color: var(--muted);
}

.product-single__grid {
  gap: clamp(45px, 7vw, 105px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
}

.product-gallery {
  grid-template-columns: 64px minmax(0, 1fr);
  max-width: 100%;
  min-width: 0;
}

.product-gallery__main {
  border: 0;
  height: min(590px, 52vw);
  max-width: 100%;
  min-height: 470px;
  min-width: 0;
  overflow: hidden;
  padding: 20px 35px;
  position: relative;
}

.product-gallery__main img {
  min-width: 0;
  max-width: 100%;
}

.product-gallery__badge {
  align-items: center;
  background: #aaa000;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  left: 4px;
  position: absolute;
  top: 10px;
  width: 48px;
}

.product-gallery__zoom {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  padding: 10px;
  position: absolute;
  right: 4px;
  top: 10px;
  z-index: 2;
}

.product-summary {
  padding-top: 5px;
}

.product-summary h1 {
  color: #292929;
  font-size: clamp(29px, 2.6vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-summary__meta-line {
  color: #333;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-summary__meta-line span {
  margin-right: 8px;
}

.product-summary__meta-line a {
  color: inherit;
}

.product-summary__meta-line a:hover {
  color: var(--deep-purple);
}

.product-summary__price {
  border: 0;
  color: var(--deep-purple);
  font-size: 28px;
  margin: 0 0 8px;
  padding: 0;
}

.product-summary__price del {
  color: #9a78bd;
  margin-right: 8px;
}

.product-summary__price ins {
  color: var(--deep-purple);
  text-decoration: underline;
}

.product-summary__vat {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 38px;
}

.product-summary__availability {
  border-top: 1px dashed #ddd;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 14px 0 22px;
}

.product-summary__availability strong {
  color: #f29b00;
}

.product-summary__availability strong.is-pickup {
  color: #f29b00;
  font-weight: 900;
}

.product-summary__availability strong.is-in-stock {
  color: green;
  font-weight: 900;
}

.product-summary__availability strong.is-unavailable {
  color: var(--red);
  font-weight: 900;
}

.availability-loading {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.availability-loading i {
  color: var(--deep-purple);
  margin-right: 7px;
}

.product-summary__purchase {
  align-items: center;
  margin-bottom: 25px;
}

.product-variations,
.product-variations-loading {
  width: 100%;
}

.product-variations-loading {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0 20px;
}

.product-variations-loading i {
  color: var(--deep-purple);
  margin-right: 7px;
}

.product-variations__fields {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.product-variation-field {
  display: grid;
  gap: 7px;
}

.product-variation-field > span {
  font-size: 13px;
  font-weight: 800;
}

.product-variation-field select {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  color: #333;
  font: inherit;
  font-size: 13px;
  min-height: 42px;
  padding: 8px 34px 8px 11px;
  width: 100%;
}

.product-variation-field select:focus {
  border-color: var(--button);
  outline: 2px solid rgba(118, 82, 170, 0.14);
}

.product-variation-field option:disabled {
  color: #aaa;
}

.product-variations__reset {
  background: transparent;
  border: 0;
  color: var(--deep-purple);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 0;
  text-decoration: underline;
}

.product-variation-message {
  color: #56804d;
  font-size: 12px;
  margin: 9px 0 16px;
}

.product-variation-message.is-error {
  color: var(--red);
}

.product-variations__buy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-variations .product-add-button:disabled {
  background: #aaa;
  cursor: not-allowed;
  opacity: 0.75;
}

.product-quantity input {
  border: 1px solid #888;
  border-radius: 22px;
  height: 39px;
  width: 80px;
}

.product-add-button {
  border-radius: 22px;
  font-size: 12px;
  min-height: 39px;
  padding: 9px 18px;
}

.product-summary__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 42px;
  width: 100%;
}

.product-summary__actions button,
.product-summary__actions a {
  align-items: center;
  background: var(--button);
  border: 0;
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 39px;
  min-width: 0;
  padding: 9px 18px;
  white-space: nowrap;
}

.product-summary__actions .product-wishlist-action {
  background: var(--button);
  border: 0;
}

.product-summary__actions button.is-added {
  background: var(--deep-purple);
}

.product-summary__actions .product-wishlist-action.is-added {
  background: var(--deep-purple);
}

.product-summary__short {
  border-top: 1px dashed #ddd;
  font-size: 14px;
  padding-top: 25px;
}

.product-share {
  align-items: center;
  border-bottom: 1px dashed #ddd;
  display: flex;
  gap: 26px;
  justify-content: flex-end;
  margin-top: 45px;
  padding: 0 12px 15px;
}

.product-share a,
.product-share button {
  background: transparent;
  border: 0;
  color: #888;
  cursor: pointer;
  font-size: 19px;
  padding: 0;
}

.product-share a:hover,
.product-share button:hover,
.product-share button.is-copied {
  color: var(--deep-purple);
}

.product-details-grid {
  display: grid;
  gap: clamp(45px, 6vw, 80px);
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  margin-top: 70px;
}

.product-description {
  border: 0;
  margin: 0;
  padding: 0;
}

.product-description > div {
  color: #222;
  font-size: 15px;
  line-height: 1.65;
  max-width: none;
}

.product-description h1,
.product-description h2,
.product-description h3 {
  line-height: 1.2;
}

.product-additional h2,
.product-related h2 {
  font-size: 31px;
  margin: 0 0 18px;
}

.product-additional table {
  border-collapse: collapse;
  font-size: 13px;
  width: 100%;
}

.product-additional th,
.product-additional td {
  border: 1px dotted #d5d5d5;
  padding: 11px 14px;
}

.product-additional th {
  background: #f7f7f7;
  text-align: center;
  width: 30%;
}

.product-additional td {
  font-style: italic;
}

.product-related {
  margin-top: 80px;
}

.product-related h2 {
  margin-bottom: 30px;
}

.product-lightbox {
  border: 0;
  max-height: 90vh;
  max-width: 90vw;
  padding: 42px;
}

.product-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.product-lightbox img {
  display: block;
  max-height: 78vh;
  max-width: 80vw;
  object-fit: contain;
}

.product-lightbox button {
  background: #fff;
  border: 0;
  cursor: pointer;
  font-size: 25px;
  padding: 8px;
  position: absolute;
  right: 4px;
  top: 4px;
}

@media (max-width: 1050px) {
  .category-grid,
  .product-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-single__grid,
  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery__main {
    height: 560px;
  }
}

@media (max-width: 720px) {
  .product-page,
  .product-single,
  .product-single__grid {
    max-width: 100%;
    min-width: 0;
  }

  .product-page {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .category-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .sale-page__icon {
    flex-basis: 82px;
    font-size: 34px;
    height: 82px;
    width: 82px;
  }

  .search-page__icon {
    flex-basis: 82px;
    font-size: 32px;
    height: 82px;
    width: 82px;
  }

  .category-hero__image {
    height: 110px;
    width: 140px;
  }

  .category-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .category-toolbar label,
  .category-toolbar select {
    width: 100%;
  }

  .category-grid,
  .product-related__grid,
  .category-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: calc(50% - 50vw);
    max-width: 100vw;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    width: 100vw;
  }

  .product-gallery__main {
    aspect-ratio: auto;
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
    height: min(calc(100vw - 32px), 520px) !important;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    padding: 12px;
    width: 100%;
  }

  .product-gallery__main img {
    display: block;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    min-width: 0;
    object-fit: contain;
    object-position: center;
    width: 100%;
  }

  .product-gallery__thumbs {
    flex: 0 0 auto;
    flex-direction: row;
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    padding: 0 12px 4px;
    width: 100%;
  }

  .product-gallery__thumbs button {
    flex: 0 0 64px;
    max-width: 64px;
    width: 64px;
  }

  .product-description img,
  .product-summary__short img {
    height: auto !important;
    max-width: 100% !important;
    width: auto !important;
  }

  .product-summary__actions {
    gap: 8px;
  }

  .product-summary__actions button,
  .product-summary__actions a {
    font-size: 12px;
    min-height: 44px;
    padding: 9px 10px;
  }

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

  .product-breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .product-related__grid,
  .category-directory__grid {
    grid-template-columns: 1fr;
  }

  .category-grid .product img,
  .product-related__grid .product img {
    max-height: 310px;
  }

  .product-gallery__main {
    height: calc(100vw - 20px) !important;
    min-height: 0;
    padding: 10px;
  }

  .product-gallery__main img {
    height: 100%;
    max-height: none;
    max-width: 100%;
    object-fit: contain;
    position: static;
    width: 100%;
  }

  .product-summary__actions button,
  .product-summary__actions a {
    font-size: 12px;
    gap: 7px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .product-details-grid {
    margin-top: 50px;
  }
}

/* Headless cart and checkout. */
.commerce-page {
  min-height: 60vh;
}

.not-found-page {
  align-items: center;
  display: flex;
  min-height: 62vh;
  padding: 70px 0 90px;
}

.not-found-card {
  text-align: center;
}

.not-found-card__code {
  color: rgba(118, 82, 170, 0.12);
  font-size: clamp(110px, 18vw, 230px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.7;
  margin-bottom: -8px;
}

.not-found-card__eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
}

.not-found-card h1 {
  color: #222;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 20px;
}

.not-found-card__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto 32px;
  max-width: 680px;
}

.not-found-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.not-found-card__actions .commerce-primary-button,
.not-found-card__secondary {
  align-items: center;
  border-radius: 24px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
}

.not-found-card__secondary {
  border: 1px solid var(--button);
  color: var(--deep-purple);
}

.not-found-card__secondary:hover {
  background: var(--button);
  color: #fff;
}

.commerce-hero {
  padding-top: 34px;
}

.commerce-eyebrow {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 8px;
}

.commerce-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 42px;
}

.commerce-status {
  color: var(--muted);
  padding: 70px 16px 110px;
  text-align: center;
}

.commerce-status i {
  color: var(--deep-purple);
  margin-right: 8px;
}

.cart-page-layout,
.checkout-layout {
  align-items: start;
  display: grid;
  gap: clamp(35px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
}

.cart-page-items {
  border-top: 1px solid #e5e5e5;
}

.cart-line {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  display: grid;
  gap: 18px;
  grid-template-columns: 110px minmax(170px, 1fr) 86px 108px 108px;
  padding: 22px 0;
}

.cart-line__image {
  align-items: center;
  display: flex;
  height: 110px;
  justify-content: center;
}

.cart-line__image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.cart-line__image span {
  align-items: center;
  background: #f5f5f5;
  color: #aaa;
  display: flex;
  font-size: 26px;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.cart-line__content h2 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.cart-line__content p {
  color: #777;
  font-size: 12px;
  margin: 4px 0;
}

.cart-line__remove {
  background: transparent;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  margin-top: 12px;
  padding: 0;
}

.cart-line__product-link {
  color: var(--deep-purple);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  margin-top: 10px;
}

.cart-line__product-link:hover {
  text-decoration: underline;
}

.cart-line__quantity {
  display: grid;
  gap: 6px;
}

.cart-line__quantity label {
  color: #777;
  font-size: 11px;
  font-weight: 700;
}

.cart-line__quantity input {
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  font: inherit;
  height: 40px;
  text-align: center;
  width: 78px;
}

.cart-line__money {
  display: grid;
  gap: 3px;
  text-align: right;
}

.cart-line__money span,
.cart-line__money small {
  color: #777;
  font-size: 10px;
}

.cart-line__money strong {
  color: var(--deep-purple);
  font-size: 15px;
  white-space: nowrap;
}

.cart-line__money small {
  color: #56804d;
  font-weight: 800;
}

.coupon-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 520px;
}

.coupon-form input {
  border: 1px solid #d7d7d7;
  flex: 1;
  font: inherit;
  min-width: 0;
  padding: 11px 13px;
}

.coupon-form button {
  background: var(--button);
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 18px;
}

.order-card {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 27px;
  position: sticky;
  top: 20px;
}

.order-card h2 {
  border-bottom: 1px solid #dedede;
  font-size: 23px;
  margin: 0 0 18px;
  padding-bottom: 17px;
}

.commerce-totals {
  margin: 0 0 23px;
}

.cart-tax-note {
  align-items: center;
  background: #edf6ea;
  color: #3f6338;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 7px;
  margin: -5px 0 16px;
  padding: 9px 11px;
}

.commerce-totals > div {
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 0;
}

.commerce-totals dt {
  color: #555;
  font-size: 13px;
}

.commerce-totals > div:not(.commerce-totals__grand):has(dt:first-child:nth-last-child(1)) {
  min-width: 0;
}

.commerce-totals dd {
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.commerce-totals .commerce-totals__grand {
  border-bottom: 0;
  padding-top: 18px;
}

.commerce-totals__grand dt,
.commerce-totals__grand dd {
  color: var(--deep-purple);
  font-size: 19px;
}

.commerce-primary-button {
  align-items: center;
  background: var(--button);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  width: 100%;
}

.commerce-primary-button:hover {
  background: var(--deep-purple);
}

.commerce-primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.commerce-secondary-link {
  color: var(--deep-purple);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 15px;
  text-align: center;
}

.applied-coupon {
  align-items: center;
  background: #f0ebf6;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 9px 11px;
}

.applied-coupon button {
  background: transparent;
  border: 0;
  color: var(--red);
  cursor: pointer;
}

.commerce-message {
  background: #edf6ea;
  border-left: 4px solid #56804d;
  color: #3f6338;
  font-size: 13px;
  margin-top: 18px;
  padding: 12px 14px;
}

.commerce-message.is-error {
  background: #fff0f0;
  border-left-color: var(--red);
  color: #a4000b;
}

.cart-empty {
  padding: 35px 16px 110px;
  text-align: center;
}

.cart-empty > i {
  color: #ccc;
  font-size: 68px;
}

.cart-empty h2 {
  font-size: 28px;
  margin: 24px 0 10px;
}

.cart-empty p {
  color: var(--muted);
  margin: 0 auto 25px;
  max-width: 520px;
}

.cart-empty .commerce-primary-button {
  width: auto;
}

.checkout-fields {
  display: grid;
  gap: 28px;
}

.checkout-section {
  border: 1px solid #e5e5e5;
  padding: 26px;
}

.checkout-section h2 {
  font-size: 23px;
  margin: 0 0 23px;
}

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

.checkout-field-grid label,
.checkout-section > label {
  display: grid;
  gap: 7px;
}

.checkout-field-grid .is-wide {
  grid-column: 1 / -1;
}

.checkout-field-grid label > span,
.checkout-section > label > span {
  color: #444;
  font-size: 12px;
  font-weight: 800;
}

.checkout-field-grid input,
.checkout-field-grid select,
.checkout-section textarea {
  background: #fff;
  border: 1px solid #d5d5d5;
  font: inherit;
  font-size: 14px;
  min-height: 43px;
  padding: 9px 11px;
  width: 100%;
}

.checkout-section textarea {
  min-height: 110px;
  resize: vertical;
}

.checkout-field-grid input:focus,
.checkout-field-grid select:focus,
.checkout-section textarea:focus {
  border-color: var(--button);
  outline: 2px solid rgba(118, 82, 170, 0.12);
}

.checkout-toggle {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.checkout-toggle input {
  accent-color: var(--button);
  height: 18px;
  width: 18px;
}

.checkout-order-card {
  padding: 24px;
}

.checkout-order-items {
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}

.checkout-order-line {
  align-items: start;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 9px 0;
}

.checkout-order-line strong,
.checkout-order-line small {
  display: block;
}

.checkout-order-line strong {
  font-size: 13px;
  line-height: 1.35;
}

.checkout-order-line small {
  color: #777;
  font-size: 11px;
  margin-top: 4px;
}

.checkout-order-line b {
  color: var(--deep-purple);
  font-size: 13px;
  white-space: nowrap;
}

.checkout-shipping h3,
.checkout-payments h3 {
  font-size: 15px;
  margin: 20px 0 11px;
}

.shipping-option,
.payment-option {
  align-items: start;
  background: #fff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  margin-bottom: 8px;
  padding: 12px;
}

.payment-option {
  grid-template-columns: 18px minmax(0, 1fr);
}

.shipping-option input,
.payment-option input,
.checkout-terms input {
  accent-color: var(--button);
  margin-top: 2px;
}

.shipping-option strong,
.shipping-option small,
.payment-option strong,
.payment-option small {
  display: block;
}

.shipping-option strong,
.payment-option strong {
  font-size: 13px;
}

.payment-option__title--piraeus {
  align-items: center;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-option__title--piraeus img {
  height: auto;
  max-width: 118px;
  width: min(118px, 38vw);
}

.payment-option__title--iris {
  align-items: center;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-option__title--iris img {
  height: auto;
  max-width: 132px;
  width: min(132px, 42vw);
}

.shipping-option small,
.payment-option small {
  color: #777;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 4px;
}

.shipping-option b {
  font-size: 12px;
  white-space: nowrap;
}

.checkout-help {
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.checkout-help.is-error {
  color: var(--red);
}

.checkout-help a {
  color: var(--deep-purple);
  font-weight: 800;
  text-decoration: underline;
}

.checkout-terms {
  align-items: start;
  display: flex;
  font-size: 11px;
  gap: 9px;
  line-height: 1.45;
  margin: 20px 0 14px;
}

.checkout-terms a {
  color: var(--deep-purple);
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .cart-line {
    align-items: start;
    gap: 12px;
    grid-template-columns: 82px minmax(0, 1fr) minmax(95px, auto);
  }

  .cart-line__image {
    grid-column: 1;
    grid-row: 1;
    height: 82px;
  }

  .cart-line__content {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .cart-line__quantity {
    grid-column: 2;
    grid-row: 2;
  }

  .cart-line__unit {
    grid-column: 3;
    grid-row: 2;
  }

  .cart-line__price {
    border-top: 1px dashed #ddd;
    grid-column: 2 / -1;
    grid-row: 3;
    padding-top: 10px;
  }

  .cart-line__money {
    text-align: left;
  }

  .coupon-form {
    align-items: stretch;
    flex-direction: column;
  }

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

  .checkout-field-grid .is-wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .not-found-page {
    min-height: 55vh;
    padding: 55px 0 70px;
  }

  .not-found-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .not-found-card__actions .commerce-primary-button,
  .not-found-card__secondary {
    width: 100%;
  }

  .commerce-hero h1 {
    font-size: 40px;
  }

  .cart-line {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-line__image {
    height: 70px;
  }

  .cart-line__price {
    grid-column: 2;
    grid-row: 4;
    text-align: left;
  }

  .cart-line__unit {
    grid-column: 2;
    grid-row: 3;
  }

  .cart-line__quantity {
    grid-column: 2;
    grid-row: 2;
  }

  .checkout-section,
  .order-card {
    padding: 19px;
  }
}

/* Customer account, wishlist and product comparison */
.account-page,
.saved-products-page,
.compare-page {
  padding-bottom: 110px;
}

.account-auth {
  display: grid;
  gap: clamp(35px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  padding-bottom: 100px;
}

.account-auth__intro {
  align-self: center;
}

.account-auth__intro h2,
.account-content h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  margin: 0 0 20px;
}

.account-auth__intro > p:not(.commerce-eyebrow),
.account-content > .account-panel > p {
  color: var(--muted);
  line-height: 1.7;
}

.account-auth__intro ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.account-auth__intro li {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 12px;
}

.account-auth__intro li i {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.account-auth__forms {
  border: 1px solid #e3e3e3;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
  padding: clamp(24px, 4vw, 45px);
}

.account-tabs {
  border-bottom: 1px solid #ddd;
  display: flex;
  margin: -10px 0 30px;
}

.account-tabs button {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #777;
  cursor: pointer;
  flex: 1;
  font: inherit;
  font-weight: 800;
  padding: 16px 10px 13px;
}

.account-tabs button.is-active {
  border-color: var(--button);
  color: var(--deep-purple);
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-form h2,
.account-form h3 {
  margin: 0 0 4px;
}

.account-form label {
  display: grid;
  gap: 7px;
}

.account-form label > span,
.account-form legend {
  font-size: 12px;
  font-weight: 800;
}

.account-form input,
.account-form select {
  background: #fff;
  border: 1px solid #d5d5d5;
  font: inherit;
  min-height: 45px;
  padding: 10px 12px;
  width: 100%;
}

.account-form input:focus,
.account-form select:focus {
  border-color: var(--button);
  outline: 2px solid rgba(118, 82, 170, 0.12);
}

.account-form small {
  color: #777;
}

.account-form__grid,
.account-address-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-check {
  align-items: center;
  display: flex !important;
  font-size: 13px;
  grid-template-columns: auto 1fr;
}

.account-check input {
  accent-color: var(--button);
  min-height: auto;
  width: auto;
}

.account-form .commerce-primary-button {
  border: 0;
  cursor: pointer;
  justify-self: start;
  width: auto;
}

.account-dashboard {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 255px minmax(0, 1fr);
}

.account-nav {
  border: 1px solid #e2e2e2;
  display: grid;
  position: sticky;
  top: 20px;
}

.account-nav__welcome {
  background: var(--deep-purple);
  color: #fff;
  display: grid;
  padding: 23px 20px;
}

.account-nav__welcome span {
  font-size: 12px;
  opacity: 0.78;
}

.account-nav__welcome strong {
  font-size: 18px;
  margin-top: 3px;
}

.account-nav button,
.account-nav a {
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
  color: #333;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  gap: 11px;
  padding: 15px 18px;
  text-align: left;
}

.account-nav button:hover,
.account-nav a:hover,
.account-nav button.is-active {
  background: #f6f2fa;
  color: var(--deep-purple);
}

.account-nav i {
  text-align: center;
  width: 18px;
}

.account-nav .account-logout {
  color: var(--red);
}

.account-content {
  min-height: 520px;
}

.account-panel {
  animation: account-panel-in 180ms ease-out;
}

@keyframes account-panel-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.account-shortcuts button,
.account-shortcuts a {
  background: #fff;
  border: 1px solid #e1e1e1;
  color: var(--text);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 8px;
  min-height: 175px;
  padding: 25px;
  text-align: left;
}

.account-shortcuts button:hover,
.account-shortcuts a:hover {
  border-color: var(--button);
  box-shadow: 0 12px 30px rgba(107, 66, 160, 0.09);
}

.account-shortcuts i {
  color: var(--deep-purple);
  font-size: 27px;
}

.account-shortcuts strong {
  font-size: 17px;
  margin-top: 8px;
}

.account-shortcuts span {
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.account-settings-form,
.account-password-form,
.account-address-form {
  border: 1px solid #e2e2e2;
  margin-top: 25px;
  max-width: 820px;
  padding: 28px;
}

.account-password-form {
  margin-top: 28px;
}

.account-address-form fieldset {
  border: 0;
  border-bottom: 1px solid #e4e4e4;
  margin: 0;
  padding: 0 0 28px;
}

.account-address-form legend {
  font-size: 19px;
  margin-bottom: 20px;
}

.account-address-grid .is-wide {
  grid-column: 1 / -1;
}

.account-loading {
  color: var(--muted);
  padding: 40px 0;
}

.account-order {
  border: 1px solid #e0e0e0;
  margin-top: 14px;
}

.account-order > header {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(90px, 1fr)) auto;
  padding: 18px 20px;
}

.account-order header div {
  display: grid;
  gap: 4px;
}

.account-order header small {
  color: #888;
  font-size: 10px;
  text-transform: uppercase;
}

.account-order header strong {
  font-size: 13px;
}

.account-order header button {
  background: transparent;
  border: 0;
  color: var(--deep-purple);
  cursor: pointer;
  height: 34px;
  width: 34px;
}

.order-status {
  color: #b36a00;
}

.order-status--completed {
  color: #3f7b37;
}

.order-status--cancelled,
.order-status--failed,
.order-status--refunded {
  color: var(--red);
}

.account-order__details {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  padding: 16px 20px;
}

.account-order__details > div {
  align-items: flex-start;
  display: flex;
  font-size: 13px;
  gap: 20px;
  justify-content: space-between;
  padding: 7px 0;
}

.account-order__details > div > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.account-order__details > div > strong {
  flex: 0 0 auto;
}

.account-order__product-link {
  color: var(--deep-purple);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(84, 36, 121, 0.28);
  text-underline-offset: 3px;
}

.account-order__product-link:hover {
  color: var(--button);
  text-decoration-color: currentColor;
}

.account-order__details p {
  border-top: 1px solid #e5e5e5;
  font-size: 12px;
  margin: 12px 0 0;
  padding-top: 13px;
}

.account-empty-state {
  border: 1px solid #e3e3e3;
  padding: 55px 25px;
  text-align: center;
}

.account-empty-state > i {
  color: #ccc;
  font-size: 48px;
}

.account-empty-state .commerce-primary-button {
  width: auto;
}

.saved-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 35px;
}

.saved-products-empty {
  padding-top: 25px;
}

.compare-scroll {
  border: 1px solid #e1e1e1;
  overflow-x: auto;
}

.compare-table {
  border-collapse: collapse;
  min-width: 820px;
  table-layout: fixed;
  width: 100%;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  font-size: 13px;
  padding: 17px;
  text-align: center;
  vertical-align: middle;
}

.compare-table th {
  background: #fafafa;
  font-weight: 800;
  text-align: left;
  width: 145px;
}

.compare-products-row td {
  padding-top: 40px;
  position: relative;
}

.compare-products-row a {
  color: var(--text);
  display: grid;
  gap: 18px;
}

.compare-products-row img {
  height: 220px;
  object-fit: contain;
  width: 100%;
}

.compare-products-row strong {
  line-height: 1.35;
}

.compare-remove {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #777;
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
}

.compare-remove:hover {
  border-color: var(--red);
  color: var(--red);
}

.compare-price {
  color: var(--deep-purple);
  font-size: 17px;
  font-weight: 800;
}

.compare-price del {
  color: #999;
  font-size: 13px;
}

.compare-price ins {
  text-decoration: none;
}

.compare-in {
  color: #3f7b37;
  font-weight: 800;
}

.compare-out {
  color: var(--red);
  font-weight: 800;
}

.compare-actions-row .commerce-primary-button {
  border: 0;
  cursor: pointer;
  font-size: 12px;
  width: auto;
}

@media (max-width: 1100px) {
  .account-auth {
    grid-template-columns: 1fr 1fr;
  }

  .account-dashboard {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .account-shortcuts,
  .saved-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .account-auth,
  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .account-nav__welcome {
    grid-column: 1 / -1;
  }

  .account-order > header {
    grid-template-columns: repeat(2, minmax(100px, 1fr)) auto;
  }
}

@media (max-width: 560px) {
  .account-auth__forms,
  .account-settings-form,
  .account-password-form,
  .account-address-form {
    padding: 20px;
  }

  .account-form__grid,
  .account-address-grid,
  .account-shortcuts,
  .saved-products-grid {
    grid-template-columns: 1fr;
  }

  .account-address-grid .is-wide {
    grid-column: auto;
  }

  .account-nav {
    grid-template-columns: 1fr;
  }

  .account-nav__welcome {
    grid-column: auto;
  }

  .account-order > header {
    grid-template-columns: 1fr 1fr;
  }

  .account-order > header button {
    grid-column: 2;
    justify-self: end;
  }
}

.checkout-confirmation {
  margin-top: 30px;
  padding: 48px 24px;
  text-align: center;
  border: 1px solid #e7e2eb;
  background: #fff;
}

.checkout-confirmation > i {
  display: block;
  margin-bottom: 18px;
  color: #72a52b;
  font-size: 48px;
}

.checkout-confirmation h2 {
  margin: 0 0 12px;
}

.checkout-confirmation p {
  margin: 0;
}

.checkout-confirmation__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.checkout-confirmation__actions .commerce-primary-button,
.commerce-secondary-button {
  width: auto;
}

.commerce-secondary-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--button);
  border-radius: 4px;
  color: var(--button);
  font-size: 14px;
  font-weight: 800;
}

.commerce-secondary-button:hover {
  background: #f4eef9;
}

@media (max-width: 520px) {
  .checkout-confirmation__actions {
    flex-direction: column;
  }

  .checkout-confirmation__actions .commerce-primary-button,
  .commerce-secondary-button {
    width: 100%;
  }
}

/* Keep the visible homepage bands aligned without changing the full-width menu background. */
.header__inner,
.home-main > .hero,
.home-main > .benefits {
  max-width: var(--surface-width);
  width: var(--surface-width);
}

.header__inner,
.home-main > .hero,
.home-main > .benefits {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1181px) {
  .menu__inner {
    max-width: var(--surface-width);
    padding-left: 0;
    padding-right: 0;
    width: var(--surface-width);
  }

  .mega-menu {
    left: 0;
    right: 0;
  }

  .home-main > .benefits {
    border-radius: 16px;
    margin-top: 22px;
  }
}

@media (max-width: 1180px) {
  :root {
    --surface-width: calc(100vw - 24px);
  }

  .header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu-toggle {
    max-width: none;
    width: 100%;
  }
}

/* Product listing cards and category/search view modes. */
.grid--sale,
.grid--popular,
.grid--new {
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--surface-width);
  width: 100%;
}

.category-grid,
.product-related__grid {
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.04);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  padding: 22px 26px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product.sale {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #8fd8ec 0%, #8fd8ec 63%, #f2da00 63%, #f2da00 79%, var(--deep-purple) 79%, var(--deep-purple) 100%) border-box;
  border: 7px solid transparent;
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(107, 66, 160, 0.14);
  padding: 18px 22px;
}

.product.sale::before {
  color: var(--text);
  content: "Σου προτείνουμε:";
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  margin: -4px 90px 8px 0;
}

.product:hover {
  border-color: rgba(107, 66, 160, 0.32);
  box-shadow: 0 18px 36px rgba(61, 36, 96, 0.12);
  transform: translateY(-2px);
}

.product.sale:hover {
  border-color: transparent;
  box-shadow: 0 18px 46px rgba(107, 66, 160, 0.2);
}

.product-card-actions {
  display: inline-flex;
  gap: 10px;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 3;
}

.product-card-actions button,
.product-card-compare {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: static;
  width: 34px;
}

.product > .product-card-wishlist {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 34px;
  z-index: 3;
}

.product-card-actions button:hover,
.product-card-actions button.is-added {
  color: var(--deep-purple);
}

.product-card-actions .product-card-wishlist:hover,
.product-card-actions .product-card-wishlist.is-added {
  color: var(--red);
}

.badge {
  border-radius: 999px;
  left: 24px;
  right: auto;
  top: 18px;
}

.product.sale .badge {
  align-self: flex-start;
  display: inline-flex;
  justify-self: start;
  left: auto;
  margin-bottom: 12px;
  position: static;
  right: auto;
  top: auto;
}

.product-image-link {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 230px;
  padding-top: 14px;
}

.product img,
.category-grid .product img,
.product-related__grid .product img {
  aspect-ratio: 1 / 1;
  max-height: 230px;
  object-fit: contain;
  padding: 0;
  width: 100%;
}

.product-card-body {
  min-width: 0;
}

.product h3,
.category-grid .product h3,
.product-related__grid .product h3 {
  font-size: 15px;
  line-height: 1.18;
  margin: 14px 0 8px;
  min-height: 38px;
}

.product-card-sku {
  color: #777;
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-availability {
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  min-height: 14px;
}

.product-card-availability.is-in-stock {
  color: #2f8a1f;
}

.product-card-availability.is-pending {
  color: transparent;
}

.product-card-availability.is-pickup {
  color: #f08a00;
}

.product-card-availability.is-unavailable {
  color: var(--red);
}

.product-card-summary {
  color: #4b4b4b;
  display: none;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.product-card-buy {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
  margin-top: 16px;
}

.product-card-price,
.product p.product-card-price,
.product > p:not(.product-card-summary) {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.product-card-price del {
  color: #777;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-right: 6px;
}

.product-card-price ins {
  color: var(--deep-purple);
}

.product-card-buy > button,
.product-card-buy > a,
.product > button:not(.product-card-wishlist),
.product > a:not(.product-image-link) {
  align-items: center;
  align-self: end;
  background: var(--button);
  border: 0;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  min-width: 82px;
  padding: 10px 16px;
}

.product-card-buy > button:hover,
.product-card-buy > a:hover,
.product-card-buy > button.is-added {
  background: var(--deep-purple);
}

.product-card-buy > button span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.product-view-toggle {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.product-view-toggle span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.product-view-toggle button {
  align-items: center;
  background: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.product-view-toggle button.is-active {
  background: #fff;
  border-color: var(--text);
  color: var(--text);
}

.category-grid.is-list-view {
  grid-template-columns: 1fr;
}

.category-grid.is-list-view .product {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 190px minmax(0, 1fr) 220px;
  min-height: 230px;
}

.category-grid.is-list-view .product.sale {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #8fd8ec 0%, #8fd8ec 58%, #f2da00 58%, #f2da00 73%, var(--deep-purple) 73%, var(--deep-purple) 100%) border-box;
  padding: 20px 24px;
}

.category-grid.is-list-view .product.sale::before {
  grid-column: 1 / -1;
  margin: 0 0 -8px;
}

.category-grid.is-list-view .product.sale .badge {
  grid-column: 1 / -1;
  margin: 0 0 -8px;
}

.category-grid.is-list-view .product-image-link {
  min-height: 170px;
  padding-top: 0;
}

.category-grid.is-list-view .product img {
  max-height: 170px;
}

.category-grid.is-list-view .product h3 {
  font-size: 17px;
  margin-top: 0;
  min-height: 0;
}

.category-grid.is-list-view .product-card-summary {
  border-top: 1px solid #e5e5e5;
  color: #315cb5;
  display: block;
  margin-top: 18px;
  padding-top: 14px;
}

.category-grid.is-list-view .product-card-buy {
  align-self: stretch;
  grid-template-columns: 1fr;
  justify-items: stretch;
  margin-top: 0;
}

.category-grid.is-list-view .product-card-price,
.category-grid.is-list-view .product p.product-card-price {
  font-size: 22px;
  text-align: right;
}

.category-grid.is-list-view .product-card-buy > button,
.category-grid.is-list-view .product-card-buy > a {
  width: 100%;
}

@media (max-width: 1180px) {
  .grid--sale,
  .grid--popular,
  .grid--new,
  .category-grid,
  .product-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .category-toolbar {
    align-items: stretch;
    gap: 14px;
  }

  .product-view-toggle {
    justify-content: space-between;
  }

  .grid--sale,
  .grid--popular,
  .grid--new,
  .category-grid,
  .product-related__grid,
  .category-grid.is-list-view {
    grid-template-columns: 1fr;
  }

  .category-grid.is-list-view .product {
    grid-template-columns: 1fr;
  }

  .product.sale {
    border-width: 6px;
    padding: 16px 18px;
  }

  .product.sale::before {
    font-size: 13px;
    margin-right: 88px;
    padding-top: 0;
  }

  .product.sale .badge {
    left: auto;
    right: auto;
    top: auto;
  }

  .category-grid.is-list-view .product-card-price,
  .category-grid.is-list-view .product p.product-card-price {
    text-align: left;
  }
}

/* Compact related-products block on product pages. */
.product-related {
  background: #f1f1f1;
  border-radius: 8px;
  margin-top: 48px;
  overflow: hidden;
  padding: 28px 30px 30px;
}

.product-related h2 {
  color: #000;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 22px;
}

.product-related__carousel {
  position: relative;
}

.product-related__grid {
  display: grid;
  gap: 20px;
  grid-auto-columns: 205px;
  grid-auto-flow: column;
  grid-template-columns: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 4px 8px;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

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

.product-related__grid .product {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  min-width: 205px;
  overflow: visible;
  padding: 0;
  scroll-snap-align: start;
}

.product-related__grid .product:hover {
  box-shadow: none;
  transform: none;
}

.product-related__grid .product-card-actions,
.product-related__grid .product-card-sku,
.product-related__grid .product-card-availability,
.product-related__grid .product-card-summary {
  display: none;
}

.product-related__grid .product-image-link {
  background: #fff;
  border: 0;
  border-radius: 6px;
  margin: 0 0 14px;
  min-height: 230px;
  padding: 16px;
}

.product-related__grid .product img {
  max-height: 198px;
  padding: 0;
}

.product-related__grid .product h3 {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  min-height: 48px;
}

.product-related__grid .product-card-buy {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.product-related__grid .product-card-price,
.product-related__grid .product p.product-card-price,
.product-related__grid .product > p:not(.product-card-summary) {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.product-related__grid .product-card-price del {
  display: inline-block;
  font-size: 13px;
}

.product-related__grid .product-card-buy > button,
.product-related__grid .product-card-buy > a,
.product-related__grid .product > button:not(.product-card-wishlist),
.product-related__grid .product > a:not(.product-image-link) {
  align-self: start;
  background: transparent;
  border: 1px solid #111;
  border-radius: 4px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  min-height: 30px;
  min-width: 0;
  padding: 5px 10px;
}

.product-related__grid .product-card-buy > button:hover,
.product-related__grid .product-card-buy > a:hover {
  background: var(--deep-purple);
  border-color: var(--deep-purple);
  color: #fff;
}

.product-related__arrow {
  align-items: center;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
  width: 38px;
  z-index: 5;
}

.product-related__arrow:hover {
  background: var(--deep-purple);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.product-related__arrow--prev {
  left: -18px;
}

.product-related__arrow--next {
  right: -18px;
}

@media (max-width: 720px) {
  .product-related {
    border-radius: 10px;
    margin-left: -4px;
    margin-right: -4px;
    padding: 22px 16px 24px;
  }

  .product-related__grid {
    gap: 18px;
    grid-auto-columns: minmax(176px, 72vw);
    padding-left: 2px;
    padding-right: 2px;
  }

  .product-related__grid .product {
    min-width: 176px;
  }

  .product-related__arrow {
    height: 46px;
    top: 38%;
    width: 34px;
  }

  .product-related__arrow--prev {
    left: -10px;
  }

  .product-related__arrow--next {
    right: -10px;
  }
}
