@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=Mulish:wght@400;600;700;800&display=swap");

:root {
  --bg: oklch(0.97 0.018 95);
  --surface: #ffffff;
  --ink: oklch(0.26 0.02 150);
  --ink-soft: oklch(0.46 0.02 150);
  --line: oklch(0.9 0.02 130);
  --brand: oklch(0.52 0.12 150);
  --brand-dark: oklch(0.43 0.12 150);
  --brand-soft: oklch(0.94 0.045 150);
  --brand-ink: #ffffff;
  --accent: oklch(0.64 0.16 55);
  --accent-soft: oklch(0.93 0.07 70);
  --accent-ink: oklch(0.34 0.1 50);
  --radius: 16px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(20, 40, 20, 0.06);
  --shadow-lg:
    0 4px 12px rgba(20, 40, 20, 0.08), 0 24px 48px rgba(20, 40, 20, 0.12);
  --wrap: 1200px;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Mulish", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
}
.k-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 28px;
  width: 100%;
}
.k-app {
  min-height: 100vh;
}
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* BUTTONS */
.k-btn {
  appearance: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.08s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
.k-btn:active {
  transform: translateY(1px);
}
.k-btn--primary {
  background: var(--brand);
  color: var(--brand-ink);
}
.k-btn--primary:hover {
  background: var(--brand-dark);
}
.k-btn--ghost {
  background: var(--surface);
  color: var(--brand-dark);
  border-color: var(--brand);
}
.k-btn--ghost:hover {
  background: var(--brand-soft);
}
.k-btn--ghost.is-faved {
  background: var(--brand-soft);
}
.k-btn--lg {
  min-height: 58px;
  font-size: 19px;
}
.k-btn--xl {
  min-height: 64px;
  font-size: 21px;
  padding: 0 32px;
}
.k-btn--block {
  width: 100%;
}

/* HEADER */
.k-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}
.k-header__top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 16px;
}
.k-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.k-logo__mark {
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 9px;
  padding: 2px 8px;
  margin-right: 2px;
}
.k-logo--foot {
  font-size: 26px;
}
.k-search {
  flex: 1;
  max-width: 560px;
  position: relative;
  display: flex;
  align-items: center;
}
.k-search__icon {
  position: absolute;
  left: 16px;
  font-size: 24px;
  color: var(--ink-soft);
  pointer-events: none;
}
.k-search__input {
  width: 100%;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0 18px 0 46px;
  font-size: 18px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
}
.k-search__input:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
}
.k-faves {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  position: relative;
  padding: 8px;
  text-decoration: none;
}
.k-faves__heart {
  font-size: 22px;
  color: var(--accent);
}
.k-nav {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.k-nav__inner {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.k-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-soft);
  padding: 14px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  text-decoration: none;
  display: inline-block;
}
.k-nav__link:hover {
  color: var(--ink);
}
.k-nav__link.is-active {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}
.k-nav__link--plus {
  color: var(--accent-ink);
}
.k-nav__link--plus.is-active {
  border-bottom-color: var(--accent);
}

/* SECTIONS */
.k-section {
  padding-block: 48px;
}
.k-section__title {
  font-size: 34px;
  font-weight: 700;
}
.k-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.k-section__hint {
  color: var(--ink-soft);
  font-size: 17px;
}
.k-page__title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}
.k-page__blurb {
  color: var(--ink-soft);
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 24px;
}

/* HERO */
.k-hero {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
}
.k-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-block: 56px;
}
.k-hero__eyebrow {
  display: inline-block;
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.k-hero__title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.k-hero__sub {
  font-size: 21px;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 540px;
}
.k-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.k-hero__trust {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 34px 0 0;
  flex-wrap: wrap;
}
.k-hero__trust li {
  font-size: 16px;
  color: var(--ink-soft);
}
.k-hero__trust strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 800;
}
.k-dow {
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  border: 1px solid var(--line);
}
.k-dow__flag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.k-dow__media {
  position: relative;
  margin-bottom: 18px;
}
.k-dow__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CATEGORIES */
.k-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.k-cat {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.12s ease,
    box-shadow 0.15s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.k-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.k-cat__media {
  height: 130px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.k-cat__body {
  padding: 20px 22px 24px;
}
.k-cat__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--display);
}
.k-cat__blurb {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
}
.k-cat__count {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 16px;
}

/* DEAL GRID + CARD */
.k-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.k-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.12s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
  color: inherit;
}
.k-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.k-card__media {
  position: relative;
}
.k-card__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.k-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.k-card__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--display);
}
.k-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
}
.k-card__cta {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.k-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.k-fav:hover {
  background: #fff;
}

/* RATING */
.k-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}
.k-rating__stars {
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 1px;
}
.k-rating__empty {
  color: var(--line);
}
.k-rating__num {
  font-weight: 800;
  color: var(--ink);
}
.k-rating__count {
  color: var(--ink-soft);
}
.k-rating--big .k-rating__stars {
  font-size: 21px;
}

/* DISCOUNT BADGE */
.k-disc {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.k-disc--big {
  font-size: 24px;
  padding: 9px 16px;
  border-radius: 12px;
}

/* PARTNER */
.k-partner {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}
.k-partner--foot {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 14px;
  color: var(--ink);
}

/* PRICE */
.k-price__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.k-price__now {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}
.k-price__old {
  font-size: 17px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.k-price__save {
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
}
.k-price--big .k-price__now {
  font-size: 40px;
}
.k-price--big .k-price__old {
  font-size: 22px;
}
.k-price--big .k-price__save {
  font-size: 18px;
}

/* PREMIUM TEASER */
.k-ptease {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.k-ptease__flag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.k-ptease__title {
  font-size: 32px;
  font-weight: 700;
  max-width: 640px;
  color: #fff;
}
.k-ptease__sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin-top: 12px;
  max-width: 600px;
}
.k-ptease .k-btn--primary {
  background: var(--accent);
  color: #fff;
}
.k-ptease .k-btn--primary:hover {
  filter: brightness(1.08);
}

/* EMAIL SIGNUP */
.k-email {
  background: var(--brand-soft);
  border-block: 1px solid var(--line);
}
.k-email__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-block: 52px;
}
.k-email__title {
  font-size: 32px;
  font-weight: 700;
}
.k-email__sub {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 12px;
  max-width: 520px;
}
.k-email__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.k-email__input {
  flex: 1;
  min-width: 220px;
  height: 64px;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0 20px;
  font-size: 19px;
  font-family: inherit;
  background: var(--surface);
  color: var(--ink);
}
.k-email__input:focus {
  outline: none;
  border-color: var(--brand);
}

/* FOOTER */
.k-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.k-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-block: 52px;
}
.k-footer__tag {
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 14px;
  max-width: 280px;
}
.k-footer__h {
  font-family: var(--body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.k-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.k-footer__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  color: var(--ink);
  padding: 0;
  text-align: left;
  text-decoration: none;
  display: inline-block;
}
.k-footer__link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.k-footer__partners {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.k-footer__note {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.k-footer__bar {
  border-top: 1px solid var(--line);
}
.k-footer__barinner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* BREADCRUMBS */
.k-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.k-crumbs a {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}
.k-crumbs a:hover {
  text-decoration: underline;
}

/* TOOLBAR / CHIPS */
.k-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}
.k-toolbar__count {
  font-weight: 700;
  font-size: 17px;
}
.k-toolbar__sorts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.k-toolbar__label {
  color: var(--ink-soft);
  font-size: 16px;
  margin-right: 4px;
}
.k-chip {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-soft);
  padding: 9px 16px;
  text-decoration: none;
  display: inline-block;
}
.k-chip:hover {
  border-color: var(--brand);
  color: var(--ink);
}
.k-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-ink);
}

/* DETAIL PAGE */
.k-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.k-detail__media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 150px;
}
.k-detail__media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
}
.k-detail__title {
  font-size: 40px;
  font-weight: 800;
}
.k-detail__subtitle {
  font-size: 20px;
  color: var(--ink-soft);
  margin: 8px 0 16px;
}
.k-detail__pricebox {
  background: var(--brand-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.k-detail__ends {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-ink);
  white-space: nowrap;
}
.k-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.k-detail__partner {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 18px 0;
  line-height: 1.5;
}
.k-detail__desc {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.k-detail__h {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.k-detail__desc p {
  color: var(--ink-soft);
  font-size: 18px;
}
.k-detail__plus {
  margin-top: 22px;
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 17px;
  color: var(--accent-ink);
}
.k-detail__plusflag {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 5px 11px;
  border-radius: 999px;
}
.k-related {
  margin-top: 64px;
}

/* EMPTY STATE */
.k-empty {
  text-align: center;
  padding: 64px 20px;
}
.k-empty__heart {
  font-size: 64px;
  color: var(--line);
  display: block;
  margin-bottom: 12px;
}
.k-empty__title {
  font-size: 28px;
  font-weight: 700;
}
.k-empty__sub {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 10px auto 24px;
  max-width: 420px;
}

/* PREMIUM PAGE */
.k-phero {
  background: linear-gradient(
    180deg,
    var(--ink),
    color-mix(in oklab, var(--ink), var(--brand-dark) 30%)
  );
  color: #fff;
  text-align: center;
}
.k-phero__inner {
  padding-block: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.k-phero__flag {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.k-phero__title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  max-width: 760px;
}
.k-phero__sub {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.82);
  margin: 20px auto 32px;
  max-width: 600px;
}
.k-phero .k-btn--primary {
  background: var(--accent);
  color: #fff;
}
.k-phero__note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 16px;
}
.k-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.k-benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.k-benefit__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
}
.k-benefit__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.k-benefit__desc {
  color: var(--ink-soft);
  font-size: 17px;
}
.k-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  justify-content: center;
}
.k-plan {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  position: relative;
}
.k-plan--best {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.k-plan__ribbon {
  position: absolute;
  top: -15px;
  left: 32px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
}
.k-plan__name {
  font-size: 26px;
  font-weight: 700;
}
.k-plan__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  margin: 6px 0 18px;
}
.k-plan__price span {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-soft);
}
.k-plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.k-plan__list li {
  font-size: 18px;
  color: var(--ink);
}
.k-plan__list li.is-off {
  color: var(--ink-soft);
}

/* COOKIE BANNER */
.k-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.5;
}
.k-cookie p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.k-cookie a {
  color: #fff;
}
.k-cookie__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.k-cookie.is-hidden {
  display: none;
}

/* POLICY PAGES */
.k-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}
.k-policy h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}
.k-policy h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 36px 0 12px;
}
.k-policy p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.k-policy ul {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
}

/* CONTACT FORM */
.k-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.k-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.k-form__label {
  font-weight: 700;
  font-size: 17px;
}
.k-form__input,
.k-form__textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 18px;
  font-family: inherit;
  background: var(--surface);
  color: var(--ink);
}
.k-form__input:focus,
.k-form__textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.k-form__textarea {
  min-height: 160px;
  resize: vertical;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .k-hero__inner,
  .k-email__inner,
  .k-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .k-detail__media {
    position: static;
  }
  .k-hero__title {
    font-size: 48px;
  }
  .k-cats,
  .k-grid,
  .k-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .k-plans {
    grid-template-columns: 1fr;
  }
  .k-phero__title {
    font-size: 40px;
  }
  .k-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  body {
    font-size: 18px;
  }
  .k-wrap {
    padding-inline: 18px;
  }
  .k-header__top {
    flex-wrap: wrap;
  }
  .k-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }
  .k-cats,
  .k-grid,
  .k-benefits {
    grid-template-columns: 1fr;
  }
  .k-hero__title {
    font-size: 38px;
  }
  .k-page__title {
    font-size: 32px;
  }
  .k-ptease {
    padding: 28px 24px;
  }
  .k-detail__title {
    font-size: 30px;
  }
  .k-footer__grid {
    grid-template-columns: 1fr;
  }
}
