/* Kiiroo-format storefront chrome and homepage */

[hidden] { display: none !important; }

body.k-store { background: var(--bg); color: var(--text); }
body.k-store .secheal-main { background: var(--bg); }

/* ---------- Announcement ticker ---------- */

body.k-store .k-announce {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 16px;
  background: #fff;
  color: #1b1720;
  border-bottom: 1px solid #e7ddd7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.k-announce__center { display: flex; align-items: center; gap: 1.6rem; }
.k-announce__track { min-width: 15rem; display: flex; justify-content: center; }
body.k-store .k-announce p,
body.k-store .k-announce .k-announce__item,
body.k-store p.k-announce__item {
  margin: 0 !important;
  color: #1b1720;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.k-announce__item svg { width: 15px; height: 15px; opacity: 0.9; }
.k-announce__arrow {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.8;
}
.k-announce__arrow:hover { opacity: 1; }
.k-announce__region {
  position: absolute;
  right: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-size: 0.75rem;
  opacity: 0.95;
}
.k-announce__region svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */

.k-header {
  --nav-violet: #9368f5;
  --nav-lilac: #f3edfe;
  --nav-ink: #1b1720;
  --nav-muted: #746b77;
  --nav-line: #e7ddd7;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--nav-line);
  backdrop-filter: blur(14px);
}
.k-header__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 28px;
  box-sizing: border-box;
}
.k-header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  flex: 0 1 auto;
}
.k-header__slogan {
  margin: 0;
  max-width: min(397px, 52vw);
  color: var(--nav-muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.k-header__brand .k-logo {
  align-self: flex-start;
}
.k-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 0 1 auto;
  min-width: 0;
}
.k-header .k-logo {
  display: flex;
  align-items: center;
  align-self: center;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
  text-decoration: none;
}
.k-logo__img {
  display: block;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.k-header .k-logo {
  min-width: 0;
}
.k-header .k-logo__img {
  height: 26px;
  max-width: min(451px, 56vw);
}
.k-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  height: auto;
  flex: 0 0 auto;
  min-width: 0;
}
.k-nav__btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  height: auto;
  padding: 5px 18px 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--nav-ink);
  cursor: pointer;
  line-height: 1.25;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}
.k-nav__btn:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--nav-violet);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  pointer-events: none;
}
.k-nav__btn:hover:after,
.k-nav__item.is-open > .k-nav__btn:after,
.k-nav__item:hover > .k-nav__btn:after,
.k-nav__item:focus-within > .k-nav__btn:after {
  transform: scaleX(1);
}
.k-nav__item--support > .k-nav__btn:before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-bottom: 4.5px solid currentColor;
  opacity: 0;
  transform: translateY(1px);
  transition: opacity 0.16s ease;
}
.k-nav__item--support.is-open > .k-nav__btn:before,
.k-nav__item--support:hover > .k-nav__btn:before,
.k-nav__item--support:focus-within > .k-nav__btn:before {
  opacity: 1;
}
.k-nav__item {
  position: static;
  display: flex;
  align-items: center;
  height: auto;
}
.k-nav__item--mega {
  align-self: center;
  align-items: center;
  z-index: 46;
}

.k-mega {
  z-index: 45;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--nav-line);
  box-shadow: 0 20px 60px rgba(34, 18, 48, 0.12);
  padding: 28px 40px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.k-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 28px;
}
.k-nav__item.is-open > .k-mega,
.k-nav__item:hover > .k-mega,
.k-nav__item:focus-within > .k-mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.k-mega:has(.k-mega__inner--shop),
.k-mega:has(.k-mega__inner--support) {
  padding: 0;
  background: #fff;
}
.k-mega__nav {
  padding: 4px 28px 4px 0;
  border-right: 0;
}
.k-mega__nav h4 {
  margin-bottom: 14px;
}
.k-mega__nav a {
  display: block;
  padding: 8px 0;
  margin: 0 0 2px;
  border: 0;
  border-radius: 0;
  color: var(--nav-ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.k-mega__nav a:hover {
  color: var(--nav-violet);
}
.k-mega__nav a.is-active {
  color: var(--nav-violet);
  background: none;
  box-shadow: none;
  font-weight: 700;
}
.k-mega__panels {
  min-width: 0;
  padding: 4px 0 4px 36px;
}
.k-mega__panel[hidden] {
  display: none;
}
.k-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.k-mega-card {
  list-style: none;
  margin: 0;
  min-width: 0;
}
.k-mega-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.k-mega-card__media {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 14px;
  background: #f2ece6;
  overflow: hidden;
  transition: background 0.18s ease;
}
.k-mega-card__media::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.k-mega-card__link:hover .k-mega-card__media {
  background: #e8dfd8;
}
.k-mega-card__media img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}
.k-mega-card__copy {
  display: grid;
  gap: 4px;
  padding: 0 2px;
}
.k-mega-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nav-ink);
}
.k-mega-card__price {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--nav-muted);
}
.k-mega-card__price del {
  color: var(--nav-muted);
  font-weight: 500;
  font-size: 0.8rem;
  margin-right: 5px;
  opacity: 0.8;
}
.k-mega-card__price ins {
  text-decoration: none;
  color: var(--nav-ink);
}
.k-mega-card__price .amount {
  color: var(--nav-ink);
}
.k-mega__empty {
  margin: 0;
  padding: 24px 0;
  color: var(--nav-muted);
  font-size: 0.92rem;
}
.k-mega h4 {
  margin: 0 0 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-muted);
}
.k-mega__inner > div > a {
  display: block;
  padding: 8px 0;
  color: var(--nav-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.k-mega__inner > div > a:hover { color: var(--nav-violet); }
.k-mega__feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: var(--nav-lilac);
}
.k-mega__mini {
  width: 68px;
  height: 136px;
  border-radius: 34px 34px 20px 20px;
  background: linear-gradient(145deg, #272133, var(--nav-violet));
  box-shadow: 0 18px 35px rgba(80, 36, 24, 0.22);
  flex: 0 0 auto;
}
.k-mega__feature small {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nav-violet);
}
.k-mega__feature strong {
  display: block;
  margin: 6px 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--nav-ink);
}
.k-mega__feature p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nav-muted);
}
.k-mega__feature a {
  color: var(--nav-ink);
  font-size: 14px;
  font-weight: 650;
}
.k-mega__feature a:hover { color: var(--nav-violet); }
.k-mega__feature--copy { display: block; }

.k-mega__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 34px;
}
.k-mega__inner.k-mega__inner--shop {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 4rem));
  max-width: none;
  margin: 0 auto;
  min-height: 0;
  padding: 24px 2rem 28px;
}
.k-mega__inner.k-mega__inner--support {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 2.4rem 3.2rem;
  align-items: start;
  width: min(1180px, calc(100% - 4rem));
  max-width: none;
  margin: 0 auto;
  padding: 28px 2rem 32px;
}
.k-mega__inner--support .k-mega__support-links a {
  display: block;
  padding: 7px 0;
  margin: 0;
  color: var(--nav-ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s ease;
}
.k-mega__inner--support .k-mega__support-links a:hover,
.k-mega__inner--support .k-mega__support-links a.is-active {
  color: var(--nav-violet);
}
.k-mega__support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.k-mega__tile {
  display: block;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.k-mega__tile-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  aspect-ratio: 1 / 1;
  padding: 1.1rem 0.9rem;
  background: var(--violet);
  color: #fff;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.k-mega__tile:hover .k-mega__tile-face {
  background: var(--violet-deep);
  transform: translateY(-2px);
}
.k-mega__tile-face svg {
  display: block;
  width: 58px;
  height: 58px;
}
.k-mega__tile-face strong {
  display: block;
  max-width: 12em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.k-mega__tile-caption {
  display: block;
  margin-top: 12px;
  color: var(--nav-ink);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.k-header__tools {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}
.k-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-ink, var(--text));
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  padding: 0;
  line-height: 0;
}
.k-icon svg { width: 20px; height: 20px; }
.k-reviews { display: none; }
.k-icon--menu { display: none; }
@media (prefers-reduced-motion: reduce) {
  .k-mega { transition: none !important; }
}

.secheal-drawer a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.secheal-drawer a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.k-hero {
  width: calc(100% - 1.5rem);
  margin: 0.75rem auto 4.5rem;
  min-height: min(76vh, 700px);
  border-radius: var(--radius);
  background: #111 center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.k-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}
.k-hero__copy {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  max-width: 620px;
  color: #fff;
}
.k-hero__copy h1 {
  font-size: clamp(2rem, 2.9vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0.6rem 0 0.7rem;
}
.k-hero__copy p { color: rgba(255,255,255,.88); font-size: 1rem; max-width: 26rem; }
.k-tag {
  position: absolute;
  top: 1.6rem;
  left: clamp(1.5rem, 6vw, 6rem);
  z-index: 1;
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.k-hero--pdp .k-hero__copy { max-width: 780px; }
.k-hero--pdp .k-tag {
  position: static;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.k-hero--pdp .k-hero__copy > .k-tag + .k-pill { margin-bottom: 0.4rem; }

.k-hero--slider {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0 0 4.5rem;
  padding: 0;
  border-radius: 0;
  background: #111;
  aspect-ratio: var(--hero-ratio, 1920 / 800);
}
.k-hero--slider::after { display: none; }
.k-hero__sizer {
  display: block;
  width: 100%;
  height: auto;
  visibility: hidden;
  pointer-events: none;
}
.k-hero--slider[style*="--hero-ratio"] .k-hero__sizer { display: none; }
.k-hero__track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.k-hero__slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.9s ease;
}
.k-hero__slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.k-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #111;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.k-hero__media img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none;
  object-fit: contain;
  -webkit-object-fit: contain;
  object-position: center;
}
.k-hero__shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 48%, rgba(0,0,0,.08) 100%);
  z-index: 1;
}
.k-hero__slide--empty {
  background:
    radial-gradient(900px 420px at 72% 38%, rgba(53, 85, 123, 0.28) 0%, transparent 58%),
    linear-gradient(160deg, #171c24 0%, #0e1116 100%);
}
.k-hero__slide--empty .k-hero__shade {
  background: linear-gradient(90deg, rgba(0,0,0,.25), transparent 70%);
}
.k-hero__slide .k-tag,
.k-hero__slide .k-hero__copy { z-index: 2; }
.k-hero__copy > * {
  opacity: 0;
  transform: translateY(16px);
}
.k-hero__slide.is-on .k-hero__copy > * {
  animation: kHeroIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.k-hero__slide.is-on .k-hero__copy > *:nth-child(1) { animation-delay: 0.12s; }
.k-hero__slide.is-on .k-hero__copy > *:nth-child(2) { animation-delay: 0.22s; }
.k-hero__slide.is-on .k-hero__copy > *:nth-child(3) { animation-delay: 0.32s; }
.k-hero__slide.is-on .k-hero__copy > *:nth-child(4) { animation-delay: 0.42s; }
.k-hero__ui {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.4rem;
  pointer-events: none;
}
.k-hero__ui > * { pointer-events: auto; }
.k-hero__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 14, 18, 0.28);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.k-hero--slider:hover .k-hero__arrow,
.k-hero--slider:focus-within .k-hero__arrow {
  opacity: 1;
  transform: none;
}
.k-hero__arrow:hover { background: #fff; color: var(--text); border-color: #fff; }
.k-hero__progress {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto;
  list-style: none;
}
.k-hero__progress--dock {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
}
.k-hero__progress button {
  position: relative;
  width: 44px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  cursor: pointer;
}
.k-hero__fill {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transform-origin: left center;
}
.k-hero__progress button.is-on .k-hero__fill {
  animation: kHeroFill var(--hero-ms, 6500ms) linear forwards;
}
.k-hero--slider.is-paused .k-hero__fill {
  animation-play-state: paused;
}
@keyframes kHeroIn {
  to { opacity: 1; transform: none; }
}
@keyframes kHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes kHeroFill {
  from { width: 0; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .k-hero__slide { transition: none; }
  .k-hero__slide.is-on .k-hero__copy > *,
  .k-hero__progress button.is-on .k-hero__fill { animation: none; }
  .k-hero__copy > *,
  .k-hero__arrow { opacity: 1; transform: none; }
}
.k-pill {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: var(--pill);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.k-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  margin-top: 0.6rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid #fff;
  border-radius: var(--pill);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.k-cta:hover { background: transparent; color: #fff; }
.k-cta--dark {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.k-cta--dark:hover { background: #fff; color: var(--text); }

/* ---------- Section shell ---------- */

.k-section { width: min(1560px, calc(100% - 3rem)); margin: 0 auto 5.5rem; }
.k-section--flush { width: auto; margin-left: 1.5rem; margin-right: 0; }
.k-section h2,
.k-endless h2,
.k-section--faq h2 { font-size: clamp(1.85rem, 2.6vw, 2.6rem); }
.k-section__head { margin-bottom: 1.8rem; }
.k-section__head h2 { margin-bottom: 0; }
.k-section__head p { color: var(--text); max-width: 20rem; margin: 2.2rem 0 0; font-size: 0.92rem; }
.k-section__head--row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.k-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.k-ghost:hover { border-color: var(--text); }

.k-arrows { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 1.4rem; padding-right: clamp(1.5rem, 5vw, 5rem); }
.k-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.18s ease;
}
.k-arrows button:hover { border-color: var(--text); }

/* ---------- Collections ---------- */

.k-collections-block {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.k-collections-block > * { min-width: 0; }
.k-collections-block .k-section__head { margin-bottom: 0; padding-top: 0.4rem; }

.k-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(250px, 20vw, 310px);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.k-rail::-webkit-scrollbar { display: none; }
.k-rail > * { scroll-snap-align: start; }

.k-collection {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: #fff;
  display: block;
}
.k-collection img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.k-collection:hover img { transform: scale(1.04); }
.k-collection__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.k-collection h3 { color: #fff; font-size: 1.35rem; font-weight: 600; margin: 0 0 0.2rem; }
.k-collection p { color: rgba(255,255,255,.82); margin: 0; font-size: 0.82rem; }
.k-collection__arrow {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

/* ---------- Best sellers ---------- */

.k-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.k-tabs button {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--pill);
  padding: 0.6rem 1.35rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.k-tabs button:hover { border-color: var(--text); }
.k-tabs button.is-on { background: var(--text); border-color: var(--text); color: #fff; }

.k-products,
body.k-store .secheal-woo ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.k-store ul.products::before,
body.k-store ul.products::after,
body.woocommerce ul.products::before,
body.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}
body.k-store ul.products li.product,
body.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0;
}
.k-product {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(27, 23, 32, 0.06);
  border-radius: var(--radius);
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.k-product__media {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  flex: none;
  background: #f3eee9;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
}
.k-product__media::before {
  content: none;
}
.k-product__media img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.k-product:hover .k-product__media img { transform: scale(1.04); }
body.k-store ul.products li.product .k-product__media img,
body.woocommerce ul.products li.product .k-product__media img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  max-width: none !important;
}
.k-flags {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  z-index: 1;
}
.k-badge {
  border-radius: var(--pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  color: var(--text);
}
.k-badge--save { background: var(--lilac); color: var(--accent-deep); }
.k-badge--soft { background: rgba(255, 255, 255, 0.7); color: var(--muted); }
.k-badge--soon {
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.k-product__rating {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}
.k-product__rating i { color: var(--star); font-style: normal; }
.k-product__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: 6px;
  padding: 14px 16px 16px;
  margin-top: 0;
}
.k-product__body .c-eyebrow { margin: 0; }
.k-product__body h3 {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
  max-width: none;
}
.k-product__body h3 a { text-decoration: none; color: inherit; }
.k-product__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.k-product__price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 2.55em;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-top: auto;
}
.k-product__price ins { color: var(--accent-deep); text-decoration: none; display: block; }
.k-product__price del { color: var(--muted); opacity: 0.75; font-size: 0.76rem; display: block; }
.k-product__price .amount { white-space: nowrap; }
.k-product__price .woocommerce-Price-currencySymbol { margin-right: 1px; }
.k-product__price--soon,
.k-product__price .secheal-price-soon {
	color: var(--muted);
	font-weight: 600;
}

/* ---------- Endless possibilities ---------- */

.k-endless {
  width: min(1560px, calc(100% - 3rem));
  margin: 0 auto 5.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.5fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}
.k-endless__copy h2 { margin-bottom: 1.6rem; }
.k-endless__copy p { color: var(--text); font-size: 0.92rem; max-width: 26rem; }
.k-endless__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
.k-feature {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: #fff;
}
.k-endless__grid > :nth-child(2) { margin-top: 0; }
.k-endless__grid > :nth-child(3) { aspect-ratio: 4 / 5; }
.k-endless__grid > :nth-child(4) { aspect-ratio: 1; }
.k-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.k-feature:hover img { transform: scale(1.04); }
.k-feature__copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem;
  display: grid;
  gap: 0.15rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.k-feature__copy span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); }
.k-feature__copy strong { font-size: 1.25rem; font-weight: 600; }

/* ---------- Quote band ---------- */

.k-quote {
  width: calc(100% - 1.5rem);
  margin: 0 auto 5.5rem;
  border-radius: var(--radius);
  background: #111 center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 40vw, 460px);
  padding: 3rem 1.5rem;
}
.k-quote::after { content: ""; position: absolute; inset: 0; background: rgba(6, 12, 20, 0.55); }
.k-quote blockquote { position: relative; z-index: 1; margin: 0; max-width: 40rem; text-align: center; }
.k-quote__mark { display: block; font-size: 3rem; line-height: 0.6; color: #fff; margin-bottom: 1.4rem; }
.k-quote p { color: #fff; font-size: clamp(1.2rem, 2.2vw, 1.85rem); font-weight: 500; line-height: 1.35; margin: 0 0 1rem; }
.k-quote cite { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; font-style: italic; }

/* ---------- Blog ---------- */

.k-blog { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.k-blog__lead {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111 center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.k-blog__lead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.78)); }
.k-blog__lead > a { position: relative; z-index: 1; display: block; padding: 2rem; color: #fff; }
.k-blog__lead h3 { color: #fff; font-size: clamp(1.3rem, 2vw, 1.9rem); font-weight: 600; line-height: 1.25; margin: 0 0 0.9rem; max-width: 22rem; }
.k-blog__lead .k-blog__date { color: rgba(255, 255, 255, 0.8); }
.k-blog__lead .k-more { color: #fff; }
.k-blog__list { display: grid; gap: 1.6rem; }
.k-blog__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line-soft);
}
.k-blog__row:last-child { border-bottom: 0; padding-bottom: 0; }
.k-blog__thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
.k-blog__date { color: var(--muted); font-size: 0.78rem; margin: 0 0 0.5rem; }
.k-blog__row h3 { font-size: 1.05rem; font-weight: 500; line-height: 1.35; color: var(--text); margin: 0 0 0.7rem; }
.k-more { color: var(--text); font-weight: 500; font-size: 0.85rem; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- FAQ ---------- */

.k-section--faq { width: min(1000px, calc(100% - 3rem)); }
.k-section--faq h2 { margin-bottom: 1.6rem; }
.k-faq {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.4rem 1.8rem;
}
.k-faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  padding: 1.15rem 0;
}
.k-faq details:last-child { border-bottom: 0; }
.k-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.k-faq summary::-webkit-details-marker { display: none; }
.k-faq summary::after {
  content: "+";
  flex: 0 0 1.15rem;
  width: 1.15rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
}
.k-faq details[open] summary::after { content: "−"; }
.k-faq div p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Newsletter band ---------- */

.k-news {
  position: relative;
  background: #0f1720 center/cover no-repeat;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}
.k-news::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 12, 20, 0.82), rgba(6, 12, 20, 0.45)); }
.k-news__inner {
  position: relative;
  z-index: 1;
  width: min(1560px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.k-news h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 3rem); max-width: 18ch; margin-bottom: 0.7rem; }
.k-news p { color: rgba(255, 255, 255, 0.82); margin: 0; font-size: 0.92rem; }
.k-news__form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--pill);
  padding: 0.25rem 0.3rem 0.25rem 1.3rem;
}
.k-news__form input {
  flex: 1;
  border: 0;
  background: none;
  color: #fff;
  padding: 0.6rem 0;
  min-width: 0;
}
.k-news__form input:focus { outline: none; }
.k-news__form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.k-news__form button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.k-news__form button:hover { background: #fff; color: var(--text); }
.k-news__form svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */

.k-footer {
  background: #0b1219;
  color: #fff;
  padding: 3.5rem 0 1.4rem;
}
.k-footer__grid {
  width: min(1560px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 2rem;
}
.k-footer .k-logo {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  line-height: 1;
}
.k-footer .k-logo i {
  color: #9b7cff;
  font-style: normal;
  font-size: 0.55em;
  margin-left: 0.12em;
}
.k-footer__blurb { max-width: 20rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.k-footer h2 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.k-social { display: flex; gap: 0.9rem; list-style: none; margin: 1.6rem 0; padding: 0; }
.k-social a { color: rgba(255, 255, 255, 0.75); display: block; }
.k-social a:hover { color: #fff; }
.k-social svg { width: 18px; height: 18px; }
.k-footer__list { list-style: none; margin: 0; padding: 0; }
.k-footer__list a { display: block; padding: 0.32rem 0; color: rgba(255, 255, 255, 0.66); font-size: 0.85rem; }
.k-footer__list a:hover { color: #fff; }
.k-footer__base {
  width: min(1560px, calc(100% - 3rem));
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}
.k-footer__base p { margin: 0; color: inherit; }
.k-region {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--pill);
  color: rgba(255, 255, 255, 0.8);
}
.k-region svg { width: 16px; height: 16px; }
.k-pay { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.k-pay li {
  padding: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.k-pay__mark { display: block; width: 48px; height: 30px; object-fit: contain; }
.k-pay--cards {
  gap: 0.35rem;
  flex-wrap: wrap;
}
.k-pay--cards .k-pay__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}
.k-pay--cards .k-pay__mark {
  width: 52px;
  height: 32px;
}
.k-pay__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  padding: 0 0.55rem;
  border-radius: 6px;
  background: #eef0f3;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}
.k-pay-wrap { margin-top: 1rem; }
.k-pay-wrap p { margin: 0 0 0.45rem; font-size: 0.78rem; color: var(--muted); }
.k-pay-wrap:has(.k-pay--checkout) { margin: 0 0 0.85rem; }

/* ---------- Product page: gallery + buy box ---------- */

.pdp-buy {
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto 3.5rem;
}
.wrap.pdp-buy {
  width: auto;
  margin-bottom: 3.5rem;
  padding-top: 1.25rem;
  overflow: visible;
}
.pdp-buy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 3.2rem;
  align-items: start;
}
.pdp-buy__grid > * {
  min-width: 0;
}
.pdp-gallery {
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.pdp-gallery--has-thumbs {
  --pdp-thumb-gap: 0.65rem;
  --pdp-visible-thumbs: 4;
  --pdp-thumb-nav-size: 1.35rem;
  --pdp-thumb-col: 5.5rem;
  display: grid;
  grid-template-columns: var(--pdp-thumb-col) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  overflow: visible;
}
.pdp-gallery--has-thumbs .pdp-thumbs-rail {
  position: relative;
  top: auto;
  left: auto;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}
.pdp-gallery--has-thumbs .pdp-thumbs {
  position: relative;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}
.pdp-gallery--has-thumbs .pdp-thumbs::-webkit-scrollbar {
  width: 4px;
}
.pdp-gallery--has-thumbs .pdp-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
}
.pdp-thumbs-nav {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: var(--pdp-thumb-nav-size);
  height: var(--pdp-thumb-nav-size);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 0.52rem;
  line-height: 1;
  cursor: pointer;
  transform: translateX(-50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.pdp-thumbs-nav--up { top: 0.2rem; }
.pdp-thumbs-nav--down { bottom: 0.2rem; }
.pdp-thumbs-nav:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}
.pdp-thumbs-nav:active { transform: translateX(-50%) scale(0.96); }
.pdp-thumbs-nav[hidden] { display: none; }
.pdp-gallery--has-thumbs .pdp-thumbs.is-scrollable {
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 0.65rem,
    #000 calc(100% - 0.65rem),
    transparent 100%
  );
}
.pdp-gallery--has-thumbs .pdp-thumb {
  display: block;
  position: relative;
  flex: none;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  aspect-ratio: auto;
}
.pdp-buy .pdp-box { padding-left: 0; }
.pdp-buy .pdp-shot--hero,
.pdp-buy .pdp-shot--hero.pdp-shot {
  aspect-ratio: 1 / 1;
  background: #fff;
}
.pdp-buy .pdp-shot--product img {
  object-fit: contain;
  padding: 0;
  max-width: none !important;
}
.pdp-gallery.is-zooming {
  position: relative;
  z-index: 50;
}
.pdp-gallery__stage {
  position: relative;
  touch-action: pan-y pinch-zoom;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
.pdp-gallery__stage.is-zooming {
  cursor: crosshair;
}
.pdp-gallery__stage.is-zooming .pdp-gallery__arrow {
  opacity: 0.35;
}
.pdp-zoom-lens[hidden],
.pdp-zoom-panel[hidden] {
  display: none !important;
}
.pdp-zoom-lens {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 4;
  will-change: transform;
}
.pdp-zoom-panel {
  position: absolute;
  top: 0;
  left: 100%;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.pdp-gallery__stage.is-zooming .pdp-zoom-panel {
  opacity: 1;
  transform: translateX(0);
}
.pdp-zoom-panel img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: auto;
  height: auto;
  object-fit: cover;
  will-change: transform;
}
.pdp-gallery__stage .pdp-shot { margin: 0; width: 100%; }
.pdp-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.pdp-gallery__arrow:hover {
  background: #fff;
  border-color: #fff;
}
.pdp-gallery__arrow--prev { left: 0.85rem; }
.pdp-gallery__arrow--next { right: 0.85rem; }
.pdp-gallery__stage.is-dragging .pdp-shot img {
  transition: none;
  user-select: none;
}
.pdp-thumbs {
  display: block;
  margin: 0;
}
.pdp-thumbs > .pdp-thumb + .pdp-thumb {
  margin-top: var(--pdp-thumb-gap, 0.65rem);
}
.pdp-thumb {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  aspect-ratio: auto;
  flex: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.pdp-thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}
.pdp-thumb.is-on {
  border-color: var(--accent-deep);
  box-shadow: 0 4px 16px rgba(147, 104, 245, 0.18);
}
.pdp-crumbs {
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 1.1rem auto 0;
}
.wrap.pdp-crumbs {
  width: auto;
  margin-top: 1.1rem;
}
.pdp-crumbs .secheal-crumbs { margin-bottom: 0.5rem; font-size: 0.78rem; }
.pdp-copy { max-width: 820px; }
.pdp-gallery__main { position: sticky; top: 84px; min-width: 0; max-width: 100%; overflow: visible; }
.pdp-gallery__stack { display: grid; gap: 1.2rem; }
.pdp-shot {
  position: relative;
  margin: 0;
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  border: 0;
}
.pdp-shot img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: contain;
}
.pdp-shot--hero {
  aspect-ratio: 1 / 1;
}
@supports not (aspect-ratio: 1 / 1) {
  .pdp-shot,
  .pdp-shot--hero,
  .pdp-buy .pdp-shot--hero {
    height: 0;
    padding-bottom: 100%;
  }
}

.k-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1219;
  aspect-ratio: 1;
}
.k-video__el,
.k-video__poster,
.k-video iframe { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }
.k-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.k-video__play svg { width: 26px; height: 26px; margin-left: 3px; }
.k-video__play:hover { transform: scale(1.06); background: #fff; }
.k-video.is-playing .k-video__play { display: none; }
.k-video--wide { aspect-ratio: 16 / 9; }

.pdp-box {
  position: sticky;
  top: 84px;
  padding: 0.35rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.pdp-box > .c-eyebrow { margin: 0 0 10px; }
.pdp-box > .pdp-badge { display: inline-flex; margin: 0 0 14px; }
.pdp-badge {
  border-radius: var(--pill);
  padding: 0.28rem 0.75rem;
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid rgba(147, 104, 245, 0.28);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdp-badge--sale { background: var(--accent); color: #fff; border-color: var(--accent); }
.pdp-badge--soon {
  letter-spacing: 0.08em;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.22);
}
.pdp-box h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 0 0 10px;
  line-height: 1.08;
}
.pdp-price {
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 1.15rem;
}
.pdp-price del { display: inline; color: var(--muted); opacity: 1; font-size: 0.92rem; font-weight: 500; margin-right: 0.4rem; }
.pdp-price ins { text-decoration: none; color: var(--accent-deep); }

.pdp-setup { border: 0; padding: 0; margin: 0.4rem 0 0; }
.pdp-setup legend { padding: 0; color: var(--text); font-size: 0.8rem; font-weight: 650; letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.pdp-setup__options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pdp-chip { position: relative; cursor: pointer; }
.pdp-chip input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}
.pdp-chip:hover span { border-color: var(--text); }
.pdp-chip input:checked + span { background: var(--text); border-color: var(--text); color: #fff; }
.pdp-chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.pdp-tagline {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 38rem;
}
.pdp-summary {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36rem;
}
.pdp-bullets { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.7rem; }
.pdp-bullets li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pdp-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}
.pdp-bullets strong { color: var(--text); font-weight: 600; }

.pdp-upsell {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.pdp-upsell__head {
  margin: 0;
  padding: 0.8rem 1rem;
  background: var(--surface);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}
.pdp-upsell__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--line-soft);
  cursor: pointer;
}
.pdp-upsell__item input { flex: 0 0 auto; width: 16px; height: 16px; margin: 0; accent-color: var(--accent); }
.pdp-upsell__thumb {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.pdp-upsell__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-upsell__copy { flex: 1 1 auto; display: grid; gap: 0.1rem; }
.pdp-upsell__copy strong { color: var(--text); font-size: 0.85rem; font-weight: 600; }
.pdp-upsell__copy em { color: var(--muted); font-style: normal; font-size: 0.76rem; line-height: 1.35; }
.pdp-upsell__item b { flex: 0 0 auto; color: var(--text); font-size: 0.85rem; white-space: nowrap; }
.pdp-upsell__item:has(input:checked) { background: rgba(235, 146, 56, 0.07); }
.pdp-upsell__hint {
  margin: 0;
  padding: 0.7rem 1rem;
  background: #fdf1e2;
  color: var(--accent-deep);
  font-size: 0.78rem;
  text-align: center;
}

.pdp-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0 0 0.7rem;
}
.pdp-note svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; }
.pdp-note strong { color: var(--text); }
.pdp-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: #e8f6ec;
  color: #2f7a45;
  font-size: 0.78rem;
  font-weight: 500;
}
.pdp-stock::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: #38a169; }
.pdp-stock--out { background: #f4f1ee; color: var(--muted); }
.pdp-stock--out::before { background: var(--muted); }

.pdp-form.cart {
  display: grid;
  gap: 1rem;
  margin: 0.2rem 0 0;
}
.pdp-qty { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.pdp-qty__hint {
  flex: 1 0 100%;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-deep);
}
.pdp-qty__label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.pdp-qty .quantity { margin: 0; }
.pdp-qty label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.pdp-qty .qty {
  width: 72px;
  height: 46px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  text-align: center;
  color: var(--text);
  font-weight: 500;
  -moz-appearance: textfield;
}
.pdp-qty .qty::-webkit-outer-spin-button,
.pdp-qty .qty::-webkit-inner-spin-button { appearance: none; margin: 0; }
.pdp-form .stock { display: none; }

.pdp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--pill);
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pdp-cta:hover { background: var(--accent-deep); }
.pdp-cta__price { font-weight: 500; opacity: 0.85; }
.pdp-cta__price .amount { color: inherit; }
.pdp-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.pdp-cta--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.pdp-cta--ghost:hover { background: var(--text); color: #fff; }
.pdp-cta.disabled,
.pdp-cta:disabled {
  opacity: 0.45;
  pointer-events: none;
}
.pdp-box .variations_form.cart,
.pdp-box .woocommerce-variation-add-to-cart {
  display: grid;
  gap: 0.9rem;
}
.pdp-box table.variations {
  width: 100%;
  border-collapse: collapse;
}
.pdp-box table.variations th,
.pdp-box table.variations td {
  padding: 0.35rem 0;
  text-align: left;
  font-weight: 500;
}

.pdp-ship { margin: 1rem 0; color: var(--muted); font-size: 0.8rem; }
.pdp-assure {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.pdp-trust { display: none; }
.pdp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-top: 1.15rem; }
.pdp-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8rem;
}
.pdp-trust svg { width: 17px; height: 17px; }
.k-pay--light li { background: var(--surface); color: var(--muted); }

/* ---------- Sticky buy bar ---------- */

.pdp-bar {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  max-width: calc(100% - 3rem);
}
.pdp-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.7rem 0.7rem 0.8rem;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 18, 25, 0.28);
}
.pdp-bar__thumb { width: 52px; height: 52px; border-radius: 6px; object-fit: cover; background: #fff; }
.pdp-bar__copy { display: grid; gap: 0.1rem; }
.pdp-bar__copy strong { font-size: 0.85rem; font-weight: 600; }
.pdp-bar__copy span { font-size: 0.74rem; color: rgba(255, 255, 255, 0.65); }
.pdp-bar__price { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.pdp-bar__price del { color: rgba(255, 255, 255, 0.5); font-weight: 400; margin-right: 0.3rem; }
.pdp-bar__price ins { text-decoration: none; }
.pdp-bar__actions { display: flex; gap: 0.45rem; flex: 0 0 auto; }
.pdp-bar__cta {
  border: 0;
  border-radius: var(--pill);
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.pdp-bar__cta:hover { background: var(--accent-deep); }
.pdp-bar__cta--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.pdp-bar__cta--ghost:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

/* ---------- Feature band ---------- */

.pdp-band {
  position: relative;
  width: calc(100% - 1.5rem);
  margin: 0 auto 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(380px, 46vw, 560px);
  display: flex;
  align-items: center;
  background: #0b1219;
}
.pdp-band__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}
.pdp-band__bg.is-on { opacity: 1; }
.pdp-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 25, 0.55) 0%, rgba(11, 18, 25, 0.2) 40%, transparent 65%);
}
.pdp-band__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  width: min(430px, 100%);
}
.pdp-band__item {
  text-align: left;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 0.25rem;
  justify-self: start;
  transition: background 0.2s ease;
}
.pdp-band__item:hover { background: rgba(255, 255, 255, 0.2); }
.pdp-band__item strong { font-size: 0.95rem; font-weight: 600; }
.pdp-band__item span { display: none; font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); }
.pdp-band__item.is-on {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  justify-self: stretch;
}
.pdp-band__item.is-on span { display: block; }

/* ---------- Video showcase ---------- */

.pdp-showcase {
  width: min(1560px, calc(100% - 3rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.6fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.pdp-showcase h2 { font-size: clamp(1.85rem, 2.6vw, 2.6rem); }
.pdp-showcase p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Comparison ---------- */

.pdp-compare { width: min(1200px, calc(100% - 3rem)); margin: 0 auto 5rem; }
.pdp-compare h2 { font-size: clamp(1.85rem, 2.6vw, 2.6rem); text-align: center; margin-bottom: 2rem; }
.pdp-compare__heads {
  position: sticky;
  top: 66px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0.8rem 0;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.pdp-compare__head { display: flex; align-items: center; gap: 0.8rem; }
.pdp-compare__head img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; background: var(--surface); }
.pdp-compare__head strong { display: block; color: var(--text); font-size: 0.9rem; }
.pdp-compare__head span { color: var(--accent-deep); font-size: 0.82rem; }
.pdp-compare__head--muted strong,
.pdp-compare__head--muted span { color: var(--muted); }
.pdp-compare__row { padding: 1.3rem 0 0.9rem; }
.pdp-compare__label { margin: 0 0 0.5rem; padding-bottom: 0.5rem; color: var(--text); font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.pdp-compare__values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; font-size: 0.85rem; color: var(--text); }
.pdp-compare__values .is-muted { color: var(--muted); }

/* ---------- Inner pages on the light shell ---------- */

body.k-store .secheal-page,
body.k-store .secheal-woo { color: var(--muted); }
body.k-store .secheal-woo { width: min(1560px, calc(100% - 3rem)); margin: 2rem auto 4.5rem; }
body.k-store .secheal-woo .woocommerce-products-header__title { font-size: clamp(1.85rem, 2.6vw, 2.6rem); margin-bottom: 0; }
.k-archive-head { margin: 0 0 1.6rem; }
.k-archive-head p {
  margin: 0.55rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.k-archive-empty {
  padding: 3rem 0 4rem;
  text-align: center;
}
.k-archive-empty h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
}
.k-archive-empty p { margin: 0 0 1.4rem; }
.k-archive-empty .k-cta { display: inline-flex; }

.k-shopbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.k-shopbar .woocommerce-result-count,
.k-shopbar .woocommerce-ordering { margin: 0; float: none; }
.k-shopbar .woocommerce-result-count { color: var(--muted); font-size: 0.85rem; }
.k-shopbar select {
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  color: var(--text);
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
}
body.k-store .secheal-tile,
body.k-store .secheal-post-card {
  background: var(--surface);
  border-color: var(--line-soft);
  color: var(--text);
}

body.k-store .secheal-age,
body.k-store .secheal-cookie { z-index: 90; }
body.k-store .secheal-search,
body.k-store .secheal-drawer { z-index: 70; }

/* ---------- Cart (Kiiroo layout) ---------- */

.secheal-cart-page { width: min(1180px, calc(100% - 2.4rem)); margin: 1.2rem auto 4.5rem; padding-top: 0.6rem; }
.woocommerce-cart .woocommerce-notices-wrapper:empty { display: none; }
body.woocommerce-cart.k-store .woocommerce-notices-wrapper:not(:empty) { margin: 0 0 1rem; }
body.woocommerce-cart.k-store .woocommerce-message,
body.woocommerce-cart.k-store .woocommerce-info {
  display: none;
}
.k-cart__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.k-cart__head h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.k-cart__continue {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.k-cart__continue:hover { color: var(--text); }
.k-cart__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
}
.k-cart table.shop_table.cart,
.k-cart table.shop_table.cart tbody {
  display: block;
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  position: relative;
}
.k-cart table.cart thead { display: none; }
.k-cart table.cart tbody tr.cart_item {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr) auto;
  column-gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.k-cart table.cart tbody tr.cart_item > td {
  display: block;
  width: auto;
  max-width: none;
  padding: 0;
  border: 0;
  vertical-align: top;
  text-align: left;
}
.k-cart table.cart tbody tr.cart_item > td::before {
  display: none !important;
  content: none !important;
}
.k-cart table.cart tbody tr.cart_item > td.product-select {
  grid-column: 1;
  grid-row: 1;
}
.k-cart table.cart tbody tr.cart_item > td.product-name {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
.k-cart table.cart tbody tr.cart_item > td.product-quantity {
  grid-column: 3;
  grid-row: 1;
  min-width: 7.5rem;
}
.k-cart table.cart .product-subtotal { display: none !important; }
.k-cart table.cart tbody tr.k-cart__actions-row {
  display: block;
}
.k-cart__product { display: flex; gap: 1rem; align-items: flex-start; min-width: 0; }
.k-cart__media,
.k-cart__media a,
.k-cart__media img {
  display: block;
  width: 88px;
  max-width: 88px;
  height: 88px;
}
.k-cart__media {
  flex: 0 0 88px;
  background: #f1ebe6;
  border-radius: 12px;
  overflow: hidden;
}
.k-cart__media img {
  object-fit: cover;
  background: #f1ebe6;
  contain-intrinsic-size: 88px 88px;
}
.k-cart__check { display: flex; align-items: center; }
.k-cart__check input { width: 18px; height: 18px; }
.k-cart__variant,
.k-cart__sku { margin: 0 0 0.25rem; color: var(--muted); font-size: 0.82rem; }
.k-order__item { display: flex; align-items: center; gap: 0.7rem; }
.k-order__thumb { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; background: #f4efe9; }
.k-order-status { margin: 1rem 0 1.4rem; }
.k-order-status__track { margin: 0 0 0.65rem; color: var(--text); font-size: 0.92rem; }
.k-order-status__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff4e8;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}
.k-order-status__pay p { margin: 0; flex: 1 1 16rem; }
.k-order-status__pay-btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.45rem 1.05rem;
  white-space: nowrap;
}
body.woocommerce-checkout.k-store .woocommerce-order-details__title,
body.woocommerce-checkout.k-store .woocommerce-column__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.k-cart__info { min-width: 0; padding-top: 0.05rem; }
.k-cart__title {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.k-cart__excerpt {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.k-cart table.cart .variation,
.k-cart table.cart dl.variation {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.k-cart table.cart .variation dt,
.k-cart table.cart .variation dd { display: inline; margin: 0; padding: 0; font-weight: 400; }
.k-cart table.cart .variation dt { position: static; width: auto; height: auto; overflow: visible; clip: auto; font-weight: 600; }
.k-cart table.cart .variation dd { margin-right: 0.5rem; }
.k-cart__unit { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
.k-cart__unit .amount { color: var(--text); font-weight: 700; }
.k-cart ins { text-decoration: none; }
.k-cart ins .amount { color: var(--text); }
.k-cart del { color: var(--muted); margin-right: 0.2rem; }
.k-cart del .amount { color: var(--muted); font-weight: 500; }
.k-cart__save {
  display: inline-flex;
  padding: 0.16rem 0.5rem;
  border-radius: var(--pill);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.k-cart__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.k-cart__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease;
}
.k-cart__remove svg { width: 22px; height: 22px; }
.k-cart__remove:hover {
  color: var(--accent);
  background: rgba(147, 104, 245, 0.08);
}
.k-cart__qty,
.k-cart select.k-cart__qty {
  width: 72px !important;
  max-width: 72px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}
.k-cart__qty-one {
  display: grid;
  place-items: center;
  width: 72px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
}
.k-cart table.cart td.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 1.15rem 0 0;
  border-bottom: 0;
}
.k-cart .coupon { display: flex; flex-wrap: wrap; gap: 0.5rem; flex: 1 1 auto; }
.k-cart .coupon .input-text {
  width: 200px;
  max-width: 100%;
  flex: 1 1 160px;
  height: 44px;
  border-radius: 8px;
}
.k-cart .coupon .button,
body.k-store .k-cart .coupon .button {
  border-radius: 8px;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  background: var(--text) !important;
  border-color: var(--text);
  color: #fff !important;
}
.k-cart__update {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.k-cart .cart-collaterals { min-width: 0; position: sticky; top: 88px; }
.k-cart .cart_totals {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.4rem;
}
.k-cart .cart_totals h2 { display: none; }
.k-cart__ship { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.k-cart__ship p { margin: 0 0 0.5rem; color: var(--text); font-size: 0.88rem; font-weight: 600; }
.k-cart__ship-bar {
  height: 5px;
  border-radius: 99px;
  background: rgba(27, 23, 32, 0.1);
  overflow: hidden;
}
.k-cart__ship-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}
.k-cart .cart_totals table { width: 100%; border-collapse: collapse; }
.k-cart .cart_totals th,
.k-cart .cart_totals td {
  padding: 0.42rem 0;
  border-bottom: 0;
  vertical-align: top;
  font-size: 0.9rem;
}
.k-cart .cart_totals th { color: var(--muted); font-weight: 500; }
.k-cart .cart_totals td { color: var(--text); text-align: right; font-weight: 600; }
.k-cart .cart_totals .cart-discount td,
.k-cart .cart_totals .cart-saving td {
  color: var(--accent);
}
.k-cart .cart_totals .order-total th,
.k-cart .cart_totals .order-total td {
  padding-top: 0.95rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.k-cart .cart_totals .order-total td {
  font-size: 1.35rem;
}
.k-cart .cart_totals .order-total small { display: none; }
.k-cart__tax-note { margin: 0.2rem 0 0; font-size: 0.76rem; color: var(--muted); }
.k-cart .wc-proceed-to-checkout { margin-top: 1.1rem; }
.k-cart .wc-proceed-to-checkout .checkout-button {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 52px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
}
.k-cart .wc-proceed-to-checkout .checkout-button svg { width: 16px; height: 16px; }
.k-cart__pay { margin-top: 1rem; }
.k-cart__pay p { margin: 0 0 0.45rem; color: var(--muted); font-size: 0.78rem; }
.k-cart__pay .k-pay { justify-content: flex-start; }
.k-cart__pay .k-pay--light li,
.k-cart__pay .k-pay--cards .k-pay__item {
  background: #fff;
  border-color: #e4e7ec;
}
.k-cart--empty .k-cart__empty { text-align: center; padding: 3rem 1rem 4.5rem; }
.k-cart__face {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  color: var(--text);
}
.k-cart__face svg { width: 72px; height: 72px; }
.k-cart--empty h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
}
.k-cart--empty .return-to-shop { margin: 0; }
.k-cart--empty .return-to-shop .button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.7rem 1.8rem;
  border-radius: var(--pill);
}
.woocommerce-cart .cross-sells {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.woocommerce-cart .cross-sells h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}
.woocommerce-cart .cross-sells ul.products,
body.k-store .woocommerce-cart .secheal-woo ul.products.cross-sells,
.woocommerce-cart .cross-sells .products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.woocommerce-cart .cross-sells .k-product,
body.k-store .woocommerce-cart .secheal-woo ul.products .k-product,
body.k-store .cross-sells .k-product {
  min-height: 0;
  padding: 12px;
}
.woocommerce-cart .cross-sells .k-product p,
.woocommerce-cart .cross-sells .c-eyebrow { display: none; }
.woocommerce-cart .cross-sells .k-product__body {
  padding-top: 0.65rem;
}
.woocommerce-cart .cross-sells .k-product__body h3 { font-size: 0.86rem; }

/* Checkout */
.secheal-woo--checkout { margin-top: 1.2rem; }
body.k-store .secheal-woo.secheal-woo--checkout,
.k-checkout,
.k-checkout .woocommerce-checkout { color: var(--text); }
.k-checkout__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.k-checkout__kicker {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.k-checkout__head h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
}
.k-checkout__back {
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.k-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 2.4rem;
  align-items: start;
}
.k-checkout__main { min-width: 0; }
.k-checkout__aside {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.45rem 1.45rem 1.55rem;
  position: sticky;
  top: 88px;
}
.k-checkout__aside h2,
.k-checkout #order_review_heading {
  margin: 0 0 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.k-checkout .col2-set { display: grid; gap: 0; }
.k-checkout .col-1,
.k-checkout .col-2 { width: 100%; float: none; max-width: none; }
.k-checkout h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.k-checkout__section { margin: 0 0 1.8rem; }
.k-checkout__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.k-checkout__section-head h3 { margin: 0; }
.k-checkout__signin {
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.k-checkout__optin { margin: 0.35rem 0 0; }
.k-checkout__optin label { color: var(--text); font-size: 0.9rem; }
.k-checkout .woocommerce-additional-fields { margin-top: 1.4rem; }
.k-checkout .woocommerce-additional-fields h3 { margin-top: 0; }
.k-checkout__coupon-toggle { margin: 0 0 1.1rem; }
.k-checkout__coupon-toggle .showcoupon {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.secheal-woo--checkout form.checkout_coupon,
.k-checkout form.checkout_coupon {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
}
.secheal-woo--checkout form.checkout_coupon .form-row,
.k-checkout form.checkout_coupon .form-row { margin: 0; flex: 1; }
.secheal-woo--checkout form.checkout_coupon .input-text {
  min-height: 48px;
  border-radius: 12px;
}
.secheal-woo--checkout form.checkout_coupon .button,
.k-checkout form.checkout_coupon .button {
  min-height: 48px;
  padding: 0 1.2rem;
}
.k-checkout .woocommerce-billing-fields__field-wrapper,
.k-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.9rem;
}
.k-checkout .form-row {
  margin: 0;
  float: none;
  width: auto;
  min-width: 0;
}
.k-checkout .form-row-wide { grid-column: 1 / -1; }
.k-checkout .form-row-first,
.k-checkout .form-row-last { float: none; width: auto; }
.k-checkout .form-row label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
}
.k-checkout .form-row .required { color: #be123c; text-decoration: none; }
.k-checkout .input-text,
.k-checkout textarea.input-text,
.k-checkout select,
.k-checkout .select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: none;
}
.k-checkout .select2-container {
  width: 100% !important;
  display: block;
}
.k-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  height: 50px;
}
.k-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.3;
  color: var(--text);
}
.k-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 8px;
}
.select2-container--open { z-index: 80; }
.k-checkout .form-row.woocommerce-invalid .input-text,
.k-checkout .form-row.woocommerce-invalid select,
.k-checkout .form-row.woocommerce-invalid .select2-selection--single {
  border-color: #be123c;
}
.k-checkout .input-text:focus,
.k-checkout select:focus,
.k-checkout textarea.input-text:focus {
  outline: none;
  border-color: var(--text);
}
.k-checkout textarea.input-text { min-height: 96px; resize: vertical; }
.k-checkout #ship-to-different-address {
  margin: 1.5rem 0 0.8rem;
  font-size: 0.95rem;
}
.k-checkout #ship-to-different-address label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.k-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.2rem;
}
.k-checkout .woocommerce-checkout-review-order-table th,
.k-checkout .woocommerce-checkout-review-order-table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  vertical-align: middle;
}
.k-checkout .woocommerce-checkout-review-order-table thead { display: none; }
.k-checkout .woocommerce-checkout-review-order-table tfoot th { color: var(--muted); font-weight: 500; }
.k-checkout .woocommerce-checkout-review-order-table tfoot td,
.k-checkout .woocommerce-checkout-review-order-table .product-total { text-align: right; font-weight: 600; color: var(--text); }
.k-checkout .k-checkout__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding-right: 0.6rem;
}
.k-checkout .k-checkout__thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.k-checkout .k-checkout__item-copy {
  min-width: 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
}
.k-checkout .woocommerce-checkout-review-order-table .product-quantity { color: var(--muted); font-weight: 500; }
.k-checkout .woocommerce-checkout-review-order-table .order-total th,
.k-checkout .woocommerce-checkout-review-order-table .order-total td {
  border-bottom: 0;
  padding-top: 0.95rem;
  font-size: 1.15rem;
  color: var(--text);
}
.k-checkout .k-checkout__pay-head {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}
.k-checkout .k-pay-wrap {
  margin: 0 0 0.9rem;
}
.k-checkout .k-pay--checkout {
  gap: 0.3rem;
}
.k-checkout .k-pay--checkout .k-pay__mark {
  width: 48px;
  height: 30px;
}
.k-checkout .k-pay--checkout .k-pay__more {
  height: 30px;
  min-width: 36px;
  font-size: 0.72rem;
}
.k-checkout .wc_payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.k-checkout .wc_payment_method {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.k-checkout .wc_payment_method:has(.input-radio:checked) {
  border-color: var(--text);
  box-shadow: 0 0 0 1px var(--text);
}
.k-checkout .wc_payment_method.is-paypal:has(.input-radio:checked) {
  background: #fff8e8;
  border-color: #ffc439;
  box-shadow: 0 0 0 1px #ffc439;
}
.k-checkout .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.k-checkout .wc_payment_method .input-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.k-checkout .k-checkout__check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}
.k-checkout .wc_payment_method:has(.input-radio:checked) .k-checkout__check {
  border-color: var(--text);
  background: var(--text);
}
.k-checkout .wc_payment_method.is-paypal:has(.input-radio:checked) .k-checkout__check {
  border-color: #003087;
  background: #003087;
}
.k-checkout .k-checkout__paypal,
.k-checkout .k-checkout__stripe-wordmark,
.k-checkout .k-checkout__pay-name {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  line-height: 1;
}
.k-checkout .k-checkout__paypal svg {
  display: block;
  height: 20px;
  width: auto;
}
.k-checkout .k-checkout__pay-label {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  min-height: 20px;
}
.k-checkout .k-checkout__pay-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}
.k-checkout .k-checkout__pay-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}
.k-checkout .k-checkout__stripe-wordmark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #635bff;
}
.k-checkout .k-checkout__pay-name {
  font-size: 1rem;
  font-weight: 600;
}
.k-checkout .wc_payment_method.is-stripe:has(.input-radio:checked) .k-checkout__check {
  border-color: #635bff;
  background: #635bff;
}
.k-checkout .k-checkout__brand {
  flex: 0 0 36px;
  width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}
.k-checkout .k-checkout__brand svg { display: block; }
.k-checkout .k-checkout__pay-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.28rem;
}
.k-checkout .k-checkout__pay-pills span {
  padding: 0.16rem 0.38rem;
  border-radius: 4px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.k-checkout .is-paypal:has(.input-radio:checked) .k-checkout__pay-pills span {
  background: #fff;
  color: #35557b;
}
.k-checkout .payment_box {
  padding: 0 1rem 1rem 2.85rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.k-checkout .payment_box p { margin: 0; }
.k-checkout .payment_box .testmode-info { display: none !important; }
.k-checkout .woocommerce-SavedPaymentMethods { list-style: none; margin: 0.5rem 0 0.8rem; padding: 0; }
.k-checkout .payment_box img { display: none !important; }
.k-checkout .payment_box fieldset:has(.woocommerce-SavedPaymentMethods-saveNew) {
  display: block !important;
  border: 0;
  margin: 0;
  padding: 0;
}
.k-checkout .payment_box fieldset.wc-upe-form {
  border: 0;
  margin: 0;
  padding: 0;
}
.k-checkout .payment_box:not(.is-stripe-saved-card) .wc-upe-form,
.k-checkout .payment_box:not(.is-stripe-saved-card) .wc-stripe-upe-element {
  display: block;
  min-height: 44px;
}
.k-checkout .payment_box .wc-stripe-upe-element iframe {
  display: block;
  width: 100%;
  min-height: 44px;
}
.k-checkout .place-order { margin: 0; }
body.k-store .k-checkout #place_order,
body.k-store .k-checkout #place_order:hover {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-top: 0.35rem;
  border: 0;
  border-radius: var(--pill);
  background: var(--text);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
body.k-store .k-checkout #place_order:hover { background: var(--accent-deep); }
body.k-store .k-checkout:has(#payment_method_paypal:checked) #place_order,
body.k-store .k-checkout:has(#payment_method_ppcp-gateway:checked) #place_order,
body.k-store .k-checkout:has(#payment_method_paypal:checked) #place_order:hover,
body.k-store .k-checkout:has(#payment_method_ppcp-gateway:checked) #place_order:hover {
  background: #ffc439;
  color: #003087;
}
body.k-store .k-checkout:has(#payment_method_paypal:checked) #place_order:hover,
body.k-store .k-checkout:has(#payment_method_ppcp-gateway:checked) #place_order:hover {
  background: #f5b82e;
}
.k-checkout .woocommerce-privacy-policy-text { font-size: 0.8rem; color: var(--muted); margin: 0 0 0.8rem; }
.k-checkout .woocommerce-terms-and-conditions-wrapper { margin-bottom: 0.55rem; }
.k-checkout ul.secheal-checkout-trust {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line-soft);
}
.k-checkout ul.secheal-checkout-trust li {
  position: relative;
  padding: 0.18rem 0 0.18rem 1.1rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.k-checkout ul.secheal-checkout-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.k-checkout ul.secheal-checkout-trust li.is-sandbox { color: #9a6b12; }
.k-checkout ul.secheal-checkout-trust li.is-sandbox::before { background: #ffc439; }

body.k-store .woocommerce-form-coupon-toggle .woocommerce-info { display: none; }
.secheal-woo--checkout .woocommerce-form-login-toggle .woocommerce-info {
  background: none;
  padding: 0;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.secheal-woo--checkout form.checkout_coupon[style*="block"],
.k-checkout form.checkout_coupon[style*="block"] { display: flex !important; }

@media (max-width: 960px) {
  .k-cart__layout { grid-template-columns: 1fr; }
  .k-cart .cart-collaterals { position: static; }
  .k-checkout__layout { grid-template-columns: 1fr; }
  .k-checkout__aside { position: static; }
  .k-checkout .woocommerce-billing-fields__field-wrapper,
  .k-checkout .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
  .k-cart table.shop_table_responsive.cart thead { display: none; }
  .k-cart table.shop_table_responsive.cart tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
  }
  .k-cart table.shop_table_responsive.cart td.product-select { grid-column: 1; grid-row: 1; }
  .k-cart table.shop_table_responsive.cart td.product-name { grid-column: 2; grid-row: 1; }
  .k-cart table.shop_table_responsive.cart td.product-quantity { grid-column: 3; grid-row: 1; }
  .k-cart table.shop_table_responsive.cart td.product-subtotal { display: none !important; }
  .k-cart table.shop_table_responsive.cart td.actions { display: flex; }
  .woocommerce-cart .cross-sells .products { grid-template-columns: 1fr 1fr; }
}

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

@media (max-width: 1240px) {
  .k-collections-block,
  .k-endless,
  .pdp-showcase { grid-template-columns: 1fr; }
  .pdp-buy__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .pdp-gallery__main { position: static; grid-column: 1 / -1; }
  .pdp-buy .pdp-gallery__main { grid-column: auto; }
  .pdp-shot--hero { aspect-ratio: 1 / 1; }
  .pdp-buy .pdp-shot--hero { aspect-ratio: 1 / 1; }
  .pdp-box { position: static; }
  .k-reviews__meta { display: none; }
  .k-announce__region { display: none; }
}
@media (max-width: 1180px) {
  .k-header__right { margin-left: auto; }
  .k-nav { display: none; }
  .k-icon--menu { display: grid; }
  .k-header__inner { gap: 12px; }
}
@media (max-width: 960px) {
  .k-reviews { display: none; }
  .k-hero:not(.k-hero--slider) { min-height: 62vh; margin-bottom: 3rem; }
  .k-hero--slider { margin-bottom: 3rem; }
  .k-section, .k-endless, .k-news__inner, .k-footer__grid, .k-footer__base,
  .pdp-buy:not(.wrap), .pdp-crumbs:not(.wrap) { width: calc(100% - 2rem); }
  .k-products,
  body.k-store .secheal-woo ul.products,
  body.k-store .k-catalog ul.products,
  .k-blog,
  .k-mega__grid,
  .k-footer__grid { grid-template-columns: 1fr 1fr; }
  .k-blog__lead { min-height: 300px; }
  .k-footer__grid > .k-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .k-header__inner { min-height: 62px; padding: 12px 28px; }
  .k-header .k-logo__img { height: 20px; max-width: min(280px, calc(100vw - 9rem)); }
  .k-header__slogan {
    max-width: min(240px, calc(100vw - 9rem));
    font-size: 0.56rem;
  }
  .pdp-gallery--has-thumbs {
    --pdp-thumb-gap: 0.5rem;
  }
  .pdp-gallery__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
  .pdp-gallery__arrow--prev { left: 0.55rem; }
  .pdp-gallery__arrow--next { right: 0.55rem; }
  .pdp-zoom-lens,
  .pdp-zoom-panel {
    display: none !important;
  }
  .pdp-thumbs > .pdp-thumb + .pdp-thumb {
    margin-top: var(--pdp-thumb-gap, 0.5rem);
  }
}
@media (max-width: 640px) {
  .k-products,
  body.k-store .secheal-woo ul.products,
  body.k-store .k-catalog ul.products,
  .k-blog,
  .k-endless__grid,
  .k-footer__grid { grid-template-columns: 1fr; }
  .k-endless__grid > * { aspect-ratio: 4 / 3 !important; }
  .pdp-buy__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pdp-box { padding: 0.15rem 0 0; }
  .pdp-box h1 { font-size: 1.85rem; }
  .pdp-cta__price { display: none; }
  .pdp-bar { right: 0.75rem; left: 0.75rem; bottom: 0.75rem; max-width: none; }
  .pdp-bar__copy, .pdp-bar__thumb, .pdp-bar__price { display: none; }
  .pdp-bar__actions { width: 100%; }
  .pdp-bar__cta { flex: 1; padding: 0.7rem 0.8rem; }
  .pdp-compare__values { font-size: 0.8rem; gap: 0.8rem; }
  .k-blog__row { grid-template-columns: 110px 1fr; gap: 1rem; }
  .k-footer__base { flex-direction: column; align-items: flex-start; }
  .k-hero__copy h1 { font-size: 2.2rem; }
  .k-hero__arrow { opacity: 1; transform: none; width: 40px; height: 40px; }
  .k-hero__ui { bottom: 1rem; padding: 0 1rem; }
  .k-news__inner { flex-direction: column; align-items: flex-start; }
}
