/* Kitfoods homepage — Figma 01 - Главная + */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&family=Philosopher:wght@400;700&display=swap');

:root {
  --kf-bg: #122336;
  --kf-cream: #ffefd4;
  --kf-gold: #d3ad72;
  --kf-red: #af2348;
  --kf-ink: #122336;
  --kf-white: #ffffff;
  --kf-muted: #c9d2dc;
  --kf-card: #ffffff;
  --kf-max: 1350px;
  --kf-serif: 'Philosopher', 'Times New Roman', serif;
  --kf-sans: 'Onest', 'Open Sans', sans-serif;
}

body.kf-theme {
  font-family: var(--kf-sans);
  color: var(--kf-cream);
}
body.kf-home,
body.kf-category {
  background: var(--kf-bg);
}
body.kf-theme:not(.kf-home):not(.kf-category) {
  background: #f6f3ee;
}
body.kf-theme:not(.kf-home):not(.kf-category) #common-home,
body.kf-theme:not(.kf-home):not(.kf-category) #content,
body.kf-theme:not(.kf-home):not(.kf-category) .container {
  color: #222;
}

body.kf-theme #top { display: none !important; }
body.kf-theme header:not(.kf-header) { display: none !important; }
body.kf-theme .hamburger.hidden { display: none !important; }

.kf-wrap {
  width: min(var(--kf-max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.kf-header {
  background: var(--kf-bg);
  padding: 18px 0 22px;
  position: sticky;
  top: 0;
  z-index: 80;
}
.kf-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--kf-cream);
}
.kf-header__addr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kf-header__addr img {
  width: 15px;
  height: 19px;
  object-fit: contain;
}
.kf-header__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.kf-header__links a {
  color: var(--kf-cream);
  text-decoration: none;
}
.kf-header__links span { opacity: .55; }

.kf-header__main {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 18px;
}
.kf-logo img {
  width: 299px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
}
.kf-header__mid {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.kf-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 144px;
  height: 42px;
  border: 0;
  border-radius: 86px;
  background: var(--kf-red);
  color: #fff;
  font-family: var(--kf-serif);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.kf-catalog img {
  width: 23px;
  height: 15px;
}
.kf-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kf-cream);
  text-decoration: none;
  white-space: nowrap;
}
.kf-phone img {
  width: 44px;
  height: 43px;
}
.kf-phone__num {
  font-size: 16px;
  font-weight: 500;
}
.kf-phone__num b {
  font-size: 24px;
  font-weight: 600;
}
.kf-soc {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.kf-soc img { width: 100%; height: 100%; object-fit: contain; }

.kf-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kf-search-toggle.kf-icon { display: none !important; }
.kf-search {
  position: relative;
  width: 329px;
  max-width: 32vw;
}
.kf-search #search {
  margin: 0;
  position: relative;
}
.kf-search #search .form-control {
  height: 43px;
  border: 0;
  border-radius: 40px;
  background: #1c334c;
  color: var(--kf-cream);
  padding: 0 48px 0 22px;
  font-size: 16px;
  box-shadow: none;
}
.kf-search #search .form-control::placeholder { color: #9eb0c2; }
.kf-search #search .btn {
  position: absolute;
  right: 6px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--kf-cream);
  padding: 0;
}
.kf-search #search .input-group-btn { font-size: 0; }
.kf-search #search .fa-search { display: none; }
.kf-search::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 11px;
  width: 22px;
  height: 21px;
  background: url('/catalog/view/theme/default/image/kitfoods/icons/search.svg') center/contain no-repeat;
  pointer-events: none;
}

.kf-icon {
  position: relative;
  width: 44px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kf-icon img { width: 44px; height: 43px; object-fit: contain; }
.kf-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--kf-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  z-index: 2;
}
.kf-toast {
  position: fixed;
  z-index: 400;
  max-width: min(420px, calc(100vw - 24px));
  background: #fff;
  color: #122336;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-size: 14px;
  line-height: 1.4;
}
.kf-toast a { color: var(--kf-red); }
body.kf-theme .alert-success { display: none !important; }
.kf-cart-slot,
body.kf-theme #cart {
  display: none !important;
}
.kf-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.kf-theme .full-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background: var(--kf-bg);
  color: var(--kf-cream);
  transform: translateX(-100%);
  transition: transform .28s ease, visibility .28s ease;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  padding: 28px 0 64px;
  display: block;
}
body.kf-theme .full-menu.active {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
body.kf-theme .close-btn { display: none !important; }
.kf-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.kf-menu__head h2 {
  font-family: var(--kf-serif);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(3.5deg, #d3ad72 0%, #ffefd4 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kf-menu__close {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--kf-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--kf-cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.kf-menu__close:hover {
  background: rgba(211, 173, 114, 0.16);
}
.kf-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 28px;
}

/* Inner catalog pages keep light content under the dark header */
body.kf-theme:not(.kf-home):not(.kf-category) {
  color: #222;
}

/* Category listing */
body.kf-category #product-category {
  color: var(--kf-cream);
  padding-bottom: 48px;
}
body.kf-category .breadcrumb {
  background: transparent;
  padding: 16px 0 8px;
  margin: 0 0 8px;
}
body.kf-category .breadcrumb > li {
  color: var(--kf-muted);
  font-size: 14px;
}
body.kf-category .breadcrumb a {
  color: var(--kf-cream);
  background: none;
  padding: 0;
  border-radius: 0;
  text-transform: none;
  font-size: 14px;
}
body.kf-category .breadcrumb > li + li:before {
  color: rgba(255, 239, 212, 0.45);
}
body.kf-category #content h1 {
  font-family: var(--kf-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin: 8px 0 24px;
  text-align: left;
  text-transform: uppercase;
  background: linear-gradient(3.5deg, #d3ad72 0%, #ffefd4 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.kf-category .kf-cat-desc {
  color: var(--kf-muted);
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
}
body.kf-category #column-left .list-group {
  background: transparent;
  border: 1px solid rgba(211, 173, 114, 0.35);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
body.kf-category #column-left .list-group-item {
  background: transparent;
  color: var(--kf-cream);
  border-color: rgba(211, 173, 114, 0.18);
  padding: 12px 16px;
}
body.kf-category #column-left .list-group-item:hover {
  background: rgba(211, 173, 114, 0.1);
  color: var(--kf-cream);
}
body.kf-category #column-left .list-group-item.active {
  background: rgba(211, 173, 114, 0.18);
  color: var(--kf-gold);
  border-color: rgba(211, 173, 114, 0.35);
  font-weight: 600;
}
body.kf-category .ots1 {
  background: transparent;
  margin: 0 0 12px;
  color: var(--kf-cream);
}
body.kf-category .ots1 .col-sm-2 { display: none; }
body.kf-category .ots1 .input-group-addon,
body.kf-category .ots1 .form-control {
  background: #1c334c;
  color: var(--kf-cream);
  border: 0;
  box-shadow: none;
}
body.kf-category .ots1 select.form-control option {
  background: #122336;
  color: var(--kf-cream);
}
body.kf-category .kf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 28px;
  padding: 0;
}
body.kf-category .kf-grid .kf-card {
  width: auto;
  max-width: none;
  flex: none;
  height: auto;
}
body.kf-category .kf-grid .kf-card__img {
  flex-basis: 170px;
  height: 170px;
}
body.kf-category .kf-grid .kf-card__name {
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  margin: 12px 0 8px;
}
body.kf-category .kf-grid .kf-card__price-row span { font-size: 14px; }
body.kf-category .kf-grid .kf-card__price-row strong { font-size: 22px; }
body.kf-category .kf-grid .kf-card__buy {
  flex-direction: column;
  align-items: stretch;
}
body.kf-category .kf-grid .kf-add { width: 100%; }
body.kf-category .pagination > li > a,
body.kf-category .pagination > li > span {
  background: #1c334c;
  border-color: rgba(211, 173, 114, 0.25);
  color: var(--kf-cream);
}
body.kf-category .pagination > .active > span,
body.kf-category .pagination > .active > a {
  background: var(--kf-gold);
  border-color: var(--kf-gold);
  color: var(--kf-ink);
}
body.kf-category #content > p {
  color: var(--kf-muted);
}

/* Hero */
.kf-hero {
  background: linear-gradient(8deg, #d3ad72 0%, #ffefd4 94%);
  overflow: hidden;
  line-height: 0;
}
.kf-hero__banner {
  width: 100%;
  height: auto;
  display: block;
  max-height: 494px;
  object-fit: cover;
  object-position: center right;
}

/* Product rails */
.kf-rail {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
  overflow: hidden;
}
.kf-rail__plaque {
  position: absolute;
  left: 0;
  top: 0;
  width: 911px;
  max-width: 72%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(-50deg, #d3ad72 11.8%, #ffefd4 69%);
  pointer-events: none;
  z-index: 0;
}
.kf-rail__texture {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  max-width: none;
}
.kf-rail--novelties .kf-rail__texture {
  left: 51px;
  top: 215px;
  width: 1280px;
  height: 405px;
}
.kf-rail--hits .kf-rail__texture {
  left: 80px;
  top: 215px;
  width: 1210px;
  height: 383px;
  transform: rotate(180deg) scaleY(-1);
}
.kf-rail__head,
.kf-track,
.kf-rail__nav {
  position: relative;
  z-index: 2;
}
.kf-rail__head {
  width: min(var(--kf-max), calc(100% - 80px));
  margin: 0 auto;
}
.kf-rail__title {
  font-family: var(--kf-serif);
  font-size: 72px;
  line-height: 1.1;
  color: var(--kf-ink);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.kf-rail--hits .kf-rail__title { color: var(--kf-ink); }
.kf-track {
  --kf-cols: 4;
  --kf-gap: 24px;
  box-sizing: border-box;
  display: flex;
  gap: var(--kf-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  scrollbar-width: none;
  padding: 28px 0 36px;
  width: min(var(--kf-max), calc(100% - 80px));
  margin: 0 auto;
}
.kf-track::-webkit-scrollbar { display: none; }
.kf-track .kf-card {
  flex: 0 0 calc((100% - (var(--kf-cols) - 1) * var(--kf-gap)) / var(--kf-cols));
  width: calc((100% - (var(--kf-cols) - 1) * var(--kf-gap)) / var(--kf-cols));
  height: 490px;
}
.kf-track .kf-card__img {
  flex-basis: 230px;
  height: 230px;
}
.kf-card {
  scroll-snap-align: start;
  box-sizing: border-box;
  flex: 0 0 357px;
  width: 357px;
  height: 510px;
  background:
    linear-gradient(to top, rgba(211, 173, 114, 0.17) 0%, rgba(255, 255, 255, 0) 38%),
    #ffffff;
  border-radius: 22px;
  box-shadow: 0 8px 20px rgba(33, 56, 80, 0.14);
  padding: 18px;
  color: var(--kf-ink);
  position: relative;
  display: flex;
  flex-direction: column;
}
.kf-card__img {
  display: block;
  flex: 0 0 286px;
  height: 286px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(33, 56, 80, 0.12);
}
.kf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kf-wish {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(18, 35, 54, 0.12);
}
.kf-wish svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}
.kf-wish.is-active {
  color: #af2348;
}
.kf-card__name {
  margin: 16px 0 10px;
  font-family: var(--kf-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--kf-ink);
  text-decoration: none;
  text-transform: uppercase;
}
.kf-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  margin-bottom: 12px;
}
.kf-card__price-row span { font-size: 18px; font-family: var(--kf-sans); }
.kf-card__price-row strong {
  font-family: var(--kf-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.kf-card__buy {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}
.kf-qty {
  display: flex;
  align-items: center;
  gap: 0;
}
.kf-qty button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d3ad72;
  background: #fff;
  color: var(--kf-ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background .2s ease, border-color .2s ease;
}
.kf-qty button:hover,
.kf-qty button:focus-visible {
  background: linear-gradient(45deg, #d3ad72, #ffefd4);
  border-color: #d3ad72;
  outline: none;
}
.kf-qty input {
  width: 32px;
  height: 40px;
  border: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  color: var(--kf-ink);
  box-shadow: none;
  outline: none;
}
.kf-add {
  box-sizing: border-box;
  position: relative;
  width: 150px;
  height: 40px;
  flex: 0 0 150px;
  margin-left: auto;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(45deg, #d3ad72, #ffefd4);
  color: var(--kf-ink);
  display: inline-flex;
  align-items: center;
  font-family: var(--kf-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  padding: 0 33px 0 0;
}
.kf-add__text {
  flex: 1;
  text-align: center;
}
.kf-add__icon {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #213850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kf-add__icon img {
  width: 14px;
  height: 12px;
  filter: brightness(0) invert(1);
}
.kf-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 28px;
  padding: 16px 8px 24px;
}
body.kf-theme #list-view,
body.kf-theme #grid-view {
  display: none !important;
}
.kf-rail__nav {
  width: min(var(--kf-max), calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kf-pager {
  font-size: 16px;
  color: var(--kf-ink);
  min-width: 48px;
}
.kf-navbtn {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid #122336;
  background: transparent;
  color: #122336;
  font-size: 20px;
  cursor: pointer;
}

/* Categories */
.kf-cats {
  padding: 56px 0 40px;
  color: #fff;
}
.kf-cats h2 {
  font-family: var(--kf-serif);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 40px;
  text-transform: uppercase;
  background: linear-gradient(3.5deg, #d3ad72 0%, #ffefd4 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kf-reviews h2,
.kf-faq h2 {
  font-family: var(--kf-serif);
  font-size: 42px;
  margin: 0 0 28px;
  color: #fff;
}
.kf-cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 28px;
}
.kf-cat {
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 20px;
  row-gap: 8px;
  color: inherit;
  align-items: start;
}
.kf-cat__main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 20px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.kf-cat img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.kf-cat h3 {
  margin: 0;
  font-family: var(--kf-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--kf-cream);
}
.kf-cat__subs {
  grid-column: 2;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}
.kf-cat__subs a {
  color: #fff;
  text-decoration: none;
}
.kf-cat__subs a:hover {
  color: var(--kf-cream);
}
.kf-cat__subs span {
  color: rgba(255, 255, 255, 0.55);
}

/* Reviews */
.kf-reviews { margin-top: 60px; padding: 20px 0 48px; }
.kf-reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kf-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.kf-review {
  background: #0e1c2c;
  border: 1px solid var(--kf-gold);
  border-radius: 16px;
  padding: 22px;
  min-height: 266px;
}
.kf-review__top { display: flex; gap: 16px; align-items: center; }
.kf-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--kf-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.kf-review h3 { margin: 0; font-size: 16px; color: #fff; }
.kf-stars { color: var(--kf-gold); letter-spacing: 2px; font-size: 18px; }
.kf-review time { color: #9aa8b6; font-size: 13px; margin-left: 10px; }
.kf-review p { margin: 16px 0 0; color: #e8eef4; font-size: 14px; line-height: 1.45; }
.kf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 42px;
  padding: 0 18px;
  border-radius: 86px;
  background: var(--kf-red);
  color: #fff;
  text-decoration: none;
  font-family: var(--kf-serif);
  font-size: 18px;
}
.kf-reviews .kf-btn { margin: 28px auto 0; display: flex; width: 168px; }

/* FAQ */
.kf-faq { padding: 10px 0 40px; }
.kf-faq h2 { font-size: 28px; max-width: 980px; }
.kf-acc {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #0e1c2c;
}
.kf-acc[open] { background: #ead7b0; color: var(--kf-ink); }
.kf-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 70px 20px 32px;
  font-size: 22px;
  position: relative;
}
.kf-acc summary::-webkit-details-marker { display: none; }
.kf-acc summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 16px;
  width: 41px;
  height: 41px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.kf-acc[open] summary::after { content: '–'; }
.kf-acc__body { padding: 0 32px 24px; font-size: 16px; line-height: 1.55; }

/* About */
.kf-about {
  margin-top: 60px;
  padding: 0 0 48px;
  color: #fff;
}
.kf-about h2 {
  font-family: var(--kf-serif);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 32px;
  text-transform: uppercase;
  background: linear-gradient(3.5deg, #d3ad72 0%, #ffefd4 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kf-about__intro {
  background: #0e1c2c;
  border: 1px solid var(--kf-gold);
  border-radius: 22px;
  padding: 36px 40px;
}
.kf-about__brand {
  font-family: var(--kf-serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--kf-cream);
  margin: 0 0 18px;
}
.kf-about__brand span {
  color: var(--kf-gold);
}
.kf-about__welcome {
  font-size: 18px;
  line-height: 1.45;
  color: var(--kf-cream);
  margin: 0 0 18px;
  max-width: 920px;
}
.kf-about__intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #e8eef4;
  margin: 0 0 14px;
}
.kf-about__intro p:last-child { margin-bottom: 0; }
.kf-about__points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kf-about__points li {
  background: #0e1c2c;
  border: 1px solid rgba(211, 173, 114, 0.55);
  border-radius: 18px;
  padding: 22px 22px 24px;
}
.kf-about__points span {
  display: block;
  font-family: var(--kf-serif);
  font-size: 22px;
  color: var(--kf-gold);
  margin-bottom: 10px;
}
.kf-about__points h3 {
  margin: 0 0 8px;
  font-family: var(--kf-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--kf-cream);
}
.kf-about__points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--kf-muted);
}
.kf-about__bar {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 20px 28px;
  border-radius: 20px;
  background: linear-gradient(-50deg, #d3ad72 12%, #ffefd4 69%);
  color: var(--kf-ink);
}
.kf-about__bar p {
  margin: 0;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
}
.kf-about__phone,
.kf-about__tg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--kf-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.kf-about__phone img,
.kf-about__tg img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Recipes */
.kf-recipes {
  margin-top: 60px;
  padding: 0 0 60px;
  color: #fff;
}
.kf-recipes__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.kf-recipes h2 {
  font-family: var(--kf-serif);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 24px;
  text-transform: uppercase;
  background: linear-gradient(3.5deg, #d3ad72 0%, #ffefd4 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kf-recipes__copy {
  background: #0e1c2c;
  border: 1px solid var(--kf-gold);
  border-radius: 22px;
  padding: 36px 36px 32px;
}
.kf-recipes__brand {
  font-family: var(--kf-serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--kf-cream);
  margin: 0 0 16px;
}
.kf-recipes__brand span { color: var(--kf-gold); }
.kf-recipes__lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  color: #e8eef4;
}
.kf-recipes__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.kf-recipes__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--kf-cream);
}
.kf-recipes__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kf-gold);
}
.kf-recipes__copy .kf-btn { margin-top: 4px; }
.kf-recipes__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 22px;
}

/* Footer */
.kf-footer {
  background: var(--kf-bg);
  padding: 20px 0 40px;
  color: var(--kf-cream);
  border-top: 0;
}
.kf-footer .container { display: none; }
.kf-footer__grid {
  display: grid;
  grid-template-columns: 250px 1.4fr 1fr .7fr;
  gap: 32px;
}
.kf-footer__brand img { width: 198px; height: 53px; object-fit: contain; }
.kf-footer__copy { font-size: 12px; line-height: 1.4; margin: 12px 0; max-width: 249px; }
.kf-footer__phone,
.kf-footer__addr {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
  color: var(--kf-cream);
  text-decoration: none;
}
.kf-footer__phone img,
.kf-footer__addr img { width: 30px; height: 30px; }
.kf-footer h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(211, 173, 114, 0.45);
  color: var(--kf-gold);
  -webkit-text-fill-color: var(--kf-gold);
  background: none;
}
.kf-footer ul { list-style: none; padding: 0; margin: 0; }
.kf-footer li { margin: 8px 0; padding-left: 14px; position: relative; }
.kf-footer li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--kf-gold);
  position: absolute; left: 0; top: 8px;
}
.kf-footer a { color: var(--kf-cream); text-decoration: none; }

@media (max-width: 1380px) {
  .kf-track { --kf-cols: 3; }
}
@media (max-width: 1200px) {
  .kf-header__main { grid-template-columns: 1fr; }
  .kf-logo img { width: 220px; height: 58px; }
  .kf-hero__banner { max-height: none; }
  .kf-cats__grid, .kf-menu__grid, .kf-reviews__grid, .kf-recipes__grid, .kf-footer__grid { grid-template-columns: 1fr; }
  .kf-about__points { grid-template-columns: 1fr 1fr; }
  .kf-search { max-width: none; width: 100%; }
}
@media (max-width: 900px) {
  .kf-track { --kf-cols: 2; }
}
@media (max-width: 720px) {
  .kf-wrap {
    width: min(var(--kf-max), calc(100% - 24px));
  }
  .kf-header { padding: 8px 0 10px; }
  .kf-header__top { display: none; }
  .kf-header__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 4px;
  }
  .kf-header__mid,
  .kf-header__right {
    display: contents;
  }
  .kf-logo { display: none; }
  .kf-catalog {
    order: 1;
    margin-right: auto;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
  }
  .kf-catalog img { width: 15px; height: 10px; }
  .kf-catalog__text { display: none; }
  .kf-phone,
  .kf-soc,
  .kf-icon {
    order: 2;
  }
  .kf-phone img,
  .kf-soc,
  .kf-icon,
  .kf-icon img {
    width: 32px;
    height: 32px;
  }
  .kf-phone__num { display: none; }
  .kf-search-toggle { display: none !important; }
  .kf-search {
    display: block !important;
    order: 3;
    flex: 1 1 100%;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: none;
    z-index: 2;
  }
  .kf-search.is-open { display: block !important; }
  .kf-search::after {
    display: block;
    top: 10px;
    right: 14px;
  }
  .kf-search #search .form-control {
    height: 40px;
    box-shadow: none;
  }
  .kf-search #search .btn {
    top: 2px;
    right: 4px;
  }
  .kf-badge { top: -3px; right: -4px; min-width: 16px; height: 16px; line-height: 16px; font-size: 10px; }

  .kf-rail {
    margin-top: 28px;
    padding: 16px 0 20px;
  }
  .kf-rail__head,
  .kf-rail__nav,
  .kf-track {
    width: min(var(--kf-max), calc(100% - 32px));
  }
  .kf-rail__title { font-size: 32px; }
  .kf-rail__plaque { width: 100%; max-width: 92%; }
  .kf-rail--novelties .kf-rail__texture,
  .kf-rail--hits .kf-rail__texture {
    top: 90px;
    width: 140%;
    height: auto;
    left: -10%;
  }

  .kf-track {
    --kf-cols: 2;
    --kf-gap: 10px;
    padding: 16px 0 20px;
    -webkit-overflow-scrolling: touch;
  }
  .kf-track .kf-card {
    flex-basis: calc((100% - var(--kf-gap)) / 2);
    width: calc((100% - var(--kf-gap)) / 2);
    height: auto;
    padding: 10px;
    border-radius: 14px;
  }
  .kf-track .kf-card__img {
    flex-basis: 118px;
    height: 118px;
    border-radius: 10px;
  }
  .kf-wish {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .kf-wish svg { width: 16px; height: 16px; }
  .kf-card__name {
    margin: 8px 0 6px;
    font-size: 13px;
    line-height: 16px;
    height: 32px;
  }
  .kf-card__price-row { margin-bottom: 8px; }
  .kf-card__price-row span { font-size: 12px; }
  .kf-card__price-row strong { font-size: 16px; }
  .kf-card__buy {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .kf-qty { justify-content: center; }
  .kf-qty button { width: 32px; height: 32px; font-size: 18px; }
  .kf-qty input { width: 28px; height: 32px; font-size: 14px; }
  .kf-add {
    width: 100%;
    flex: none;
    margin-left: 0;
    height: 36px;
    font-size: 13px;
    padding-right: 30px;
  }
  .kf-add__icon {
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
  }

  .kf-grid { gap: 10px; padding: 8px 0 16px; }
  .kf-grid .kf-card {
    flex: 1 1 calc((100% - 10px) / 2);
    width: auto;
    max-width: calc((100% - 10px) / 2);
    height: auto;
    padding: 10px;
  }
  body.kf-category .kf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  body.kf-category .kf-grid .kf-card {
    max-width: none;
  }
  body.kf-category #content h1 { font-size: 28px; }

  .kf-cats { padding: 32px 0 24px; }
  .kf-cats h2 { font-size: 32px; margin-bottom: 20px; }
  .kf-cats__grid,
  .kf-menu__grid { gap: 20px; }
  .kf-cat,
  .kf-cat__main { grid-template-columns: 56px 1fr; column-gap: 12px; }
  .kf-cat img { width: 56px; height: 56px; }
  .kf-cat h3 { font-size: 18px; }
  .kf-cat__subs { font-size: 14px; line-height: 22px; }

  body.kf-theme .full-menu { padding: 16px 0 40px; }
  .kf-menu__head { margin-bottom: 20px; }
  .kf-menu__head h2 { font-size: 32px; }
  .kf-menu__close { width: 36px; height: 36px; font-size: 18px; }

  .kf-about h2 { font-size: 32px; }
  .kf-about__intro { padding: 20px 16px; }
  .kf-about__brand { font-size: 20px; }
  .kf-about__points { grid-template-columns: 1fr; }

  .kf-recipes h2 { font-size: 32px; }
  .kf-recipes__copy { padding: 20px 16px; }
  .kf-recipes__visual img { height: 220px; }

  .kf-reviews h2,
  .kf-faq h2 { font-size: 28px; }
}
