/* Umite Chef — kitchen catalog. Палитра из баннера стора:
   какао-коричневый лого #57493e, бирюзовый деревянный стол, куркума/морковь (CTA),
   кремовая посуда. Мотив — белая диагональная плашка с баннера. */

/* Шрифты локальные: latin-подмножества woff2 в assets/fonts/ (перф-урок odoland). */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/poppins-600-latin.woff2) format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/poppins-700-latin.woff2) format('woff2'); }
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/karla-latin.woff2) format('woff2'); }
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/karla-latin.woff2) format('woff2'); }

:root {
  --cocoa: #57493e;         /* коричневый логотипа — основной ink */
  --cocoa-deep: #3d332b;
  --teal: #2f9486;          /* бирюзовый стол с баннера */
  --teal-deep: #1e6d61;
  --amber: #d97f16;         /* куркума/морковь — CTA */
  --amber-dark: #b56508;
  --cream: #f6f1e8;         /* фон, кремовая посуда */
  --card: #ffffff;
  --line: #e2dacc;
  --muted: #85786b;
  --star: #d99a26;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(61, 51, 43, .09);
  --shadow-hover: 0 10px 26px rgba(61, 51, 43, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Karla', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--cocoa);
  background: var(--cream);
}

h1, h2, h3, h4 { font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; line-height: 1.25; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 9px;
  border: 0;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* ---------- header: текстовое лого с UC-монограммой ---------- */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.logo-name { display: flex; flex-direction: column; line-height: 1.05; gap: 3px; }
.logo-word-img { height: 21px; width: auto; display: block; }
.logo-tag { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--cocoa);
  padding: 8px 11px;
  border-radius: 7px;
}
.main-nav a:hover { background: var(--cream); color: var(--teal-deep); }
.main-nav a.active { color: var(--amber); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--cocoa); margin: 5px 0; border-radius: 2px; }

/* ---------- hero: баннер стора + белая диагональная плашка ---------- */
.hero {
  background: linear-gradient(rgba(20, 66, 59, .38), rgba(20, 66, 59, .46)), url(../images/banner.jpg) center/cover no-repeat;
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 92px 22px 100px; }
.hero-plate {
  background: rgba(255, 253, 248, .96);
  max-width: 620px;
  padding: 40px 46px 42px;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  box-shadow: var(--shadow-hover);
}
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero h1 { font-size: 44px; font-weight: 700; color: var(--cocoa); margin: 8px 0 14px; }
.hero-sub { font-size: 17.5px; color: #6b5d50; max-width: 470px; margin-bottom: 26px; }

/* ---------- category grid ---------- */
.categories { padding: 54px 22px 8px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s;
}
.cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.cat-img { aspect-ratio: 4 / 3; background: #fff; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.cat-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(30, 90, 80, .93));
  color: #fff;
  padding: 44px 18px 14px;
}
.cat-overlay h3 { font-size: 18px; }
.cat-overlay p { font-size: 13.5px; color: #cfe6e0; }

/* ---------- catalog / cards ---------- */
.catalog { padding: 52px 22px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: 31px; color: var(--teal-deep); }
.section-head p { color: var(--muted); margin-top: 6px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-link { display: flex; flex-direction: column; flex: 1; }
.card-img { aspect-ratio: 1; background: #fff; padding: 16px; }
.card-img img { width: 100%; height: 100%; object-fit: contain; }
.card-body { padding: 14px 16px 6px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal);
}
.card-title { font-size: 15.5px; font-weight: 600; color: var(--cocoa); font-family: 'Karla', sans-serif; }
.card-short { font-size: 13.5px; line-height: 1.45; color: var(--muted); margin-bottom: 4px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18.5px; color: var(--teal-deep); }
.stars .star { color: #ddd3c2; font-size: 14px; }
.stars .star.on { color: var(--star); }
.rcount { color: var(--muted); font-size: 13px; margin-left: 4px; }
.card .btn-buy { margin: 12px 16px 16px; text-align: center; padding: 11px 16px; font-size: 14px; }

/* ---------- value / mission bands ---------- */
.value-band { background: var(--teal-deep); color: #fff; padding: 56px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.value-item { text-align: center; }
.value-icon { font-size: 30px; margin-bottom: 10px; color: #f4c46a; }
.value-item h3 { font-size: 18px; margin-bottom: 8px; }
.value-item p { color: #c8e2dc; font-size: 15px; }

.mission-band { padding: 60px 0; text-align: center; }
.mission-band h2 { font-size: 27px; color: var(--teal-deep); max-width: 780px; margin: 0 auto 14px; }
.mission-band p { color: var(--muted); max-width: 720px; margin: 0 auto; }

/* ---------- seo content ---------- */
.seo-content { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.seo-content h2 { font-size: 26px; color: var(--teal-deep); margin-bottom: 16px; }
.seo-content h3 { font-size: 19px; color: var(--teal-deep); margin: 26px 0 10px; }
.seo-content p { margin-bottom: 12px; color: #52463c; }
.seo-content ul { margin: 10px 0 14px 22px; color: #52463c; }
.seo-content li { margin-bottom: 6px; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.seo-content th, .seo-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.seo-content th { background: var(--cream); font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--teal-deep); }

/* ---------- ratings commentary ---------- */
.testimonials { padding: 56px 0 68px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; border-top: 4px solid var(--teal); }
.testi-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-figure { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--teal-deep); font-size: 14.5px; margin-bottom: 8px; }
.testi-card p { font-size: 15px; color: #52463c; }
.testi-name { margin-top: 12px; font-weight: 600; }
.testi-name a { color: var(--cocoa); border-bottom: 1px solid rgba(87, 73, 62, .3); }
.testi-name a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ---------- page hero (category / info) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal) 62%, #48a595);
  color: #fff;
  padding: 52px 0 48px;
}
.page-hero h1 { font-size: 36px; margin: 8px 0 10px; }
.page-hero .eyebrow { color: #f4c46a; }
.page-hero-sub { color: #d6ece7; max-width: 640px; }

/* ---------- product page ---------- */
.breadcrumb { padding: 16px 22px 0; font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--amber); }
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 30px 22px 50px; }
.product-media {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info h1 { font-size: 25px; margin: 8px 0 12px; color: var(--cocoa); }
.product-meta { margin-bottom: 12px; }
.product-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 31px; color: var(--teal-deep); margin-bottom: 18px; }
.product-info .btn-buy { padding: 14px 46px; font-size: 16px; }
.product-intro { margin-top: 22px; color: #52463c; font-size: 16.5px; }

/* ---------- авторские блоки товара + спеки производителя ---------- */
.product-detail { padding: 0 22px 10px; }
.feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; border-left: 4px solid var(--teal); }
.feat h2 { font-size: 16.5px; color: var(--teal-deep); margin-bottom: 8px; }
.feat p { color: #52463c; font-size: 15px; }

/* ---------- info pages ---------- */
.info-page { padding: 46px 0 64px; }
.info-page .wrap { max-width: 820px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.info-page h2 { color: var(--teal-deep); font-size: 21px; margin: 24px 0 10px; }
.info-page h2:first-child { margin-top: 0; }
.info-page h3 { color: var(--teal-deep); font-size: 17px; margin: 18px 0 8px; }
.info-page p { margin-bottom: 12px; color: #52463c; }
.info-page ul, .info-page ol { margin: 10px 0 14px 22px; color: #52463c; }
.info-page li { margin-bottom: 6px; }
.info-page table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.info-page th, .info-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.info-page th { background: var(--cream); font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--teal-deep); }
.info-page a { color: var(--amber); }

/* ---------- perks strip (под хиро) ---------- */
.perks { background: #fff; border-bottom: 1px solid var(--line); }
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 20px 22px; }
.perk { display: flex; align-items: center; gap: 12px; }
.perk-icon { font-size: 24px; flex-shrink: 0; }
.perk strong { display: block; font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--cocoa); line-height: 1.3; }
.perk div > span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.35; }

/* ---------- spotlight бестселлера ---------- */
.spotlight { padding: 46px 22px 8px; }
.spotlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.spotlight-media { position: relative; align-self: center; }
.spotlight-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.spotlight-flag {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--amber); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 6px;
}
.spotlight-body h2 { font-size: 27px; color: var(--cocoa); margin: 6px 0 12px; }
.spotlight-intro { color: #52463c; margin-bottom: 14px; }
.spotlight-points { list-style: none; margin: 0 0 16px; }
.spotlight-points li { padding-left: 26px; position: relative; margin-bottom: 8px; color: #52463c; font-size: 15px; }
.spotlight-points li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.spotlight-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.spotlight-meta .price { font-size: 26px; }
.spotlight-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.spotlight-link { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: var(--teal-deep); }
.spotlight-link:hover { color: var(--amber); }

/* ---------- полоса цифр ---------- */
.stats-band { background: var(--cocoa); color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat-num { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 34px; color: #f4c46a; line-height: 1.15; }
.stat-label { display: block; font-size: 13.5px; color: #d8cec3; margin-top: 4px; }

/* ---------- кухня в три шага ---------- */
.kit-steps { padding: 54px 22px 10px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--amber);
  box-shadow: var(--shadow);
  padding: 26px 24px 22px;
  color: var(--cocoa);
  transition: box-shadow .18s, transform .18s;
}
.step:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px;
  margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.step-go { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: var(--amber-dark); }
.step:hover .step-go { color: var(--amber); }

/* ---------- CTA-лента перед футером ---------- */
.cta-band { background: linear-gradient(115deg, var(--amber), #c26a08); color: #fff; padding: 42px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band h2 { font-size: 26px; margin-bottom: 6px; }
.cta-sub { color: #ffe6c4; font-size: 15.5px; max-width: 560px; }
.btn-light { background: #fff; color: var(--amber-dark); }
.btn-light:hover { background: var(--cream); color: var(--amber-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--cocoa-deep); color: #cfc4b8; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; padding: 50px 22px 30px; }
.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.tagline { color: #6fc3b5; font-family: 'Poppins', sans-serif; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; margin: 6px 0 12px; }
.foot-text { margin-bottom: 14px; }
.foot-contact p { margin-bottom: 4px; }
.foot-col h3 { color: #fff; font-size: 15px; margin-bottom: 12px; letter-spacing: .04em; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: #cfc4b8; }
.foot-col a:hover { color: #f4c46a; }
.foot-count {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  color: #a3968a;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 20px;
  margin-left: 4px;
}
.foot-hours { color: #a3968a; font-size: 12.5px; margin-left: 6px; }
.foot-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 16px 22px; border-top: 1px solid rgba(255, 255, 255, .12); color: #a3968a; font-size: 13.5px; }
.pay-badge {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #cfc4b8;
}
.pay-note { margin-left: auto; font-size: 12.5px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 14px 22px 26px; border-top: 1px solid rgba(255, 255, 255, .12); color: #a3968a; font-size: 13px; }
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-legal a { color: #a3968a; }
.foot-legal a:hover { color: #f4c46a; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .testi-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-inner { grid-template-columns: 1fr; gap: 24px; padding: 26px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .product { grid-template-columns: 1fr; }
  .product-media { position: static; }
  .feats { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-inner { padding: 64px 22px 76px; }
  .hero-plate { padding: 30px 32px 32px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-hover);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 11px 10px; font-size: 16px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 27px; }
  .hero-sub { font-size: 16px; }
  .hero-plate { clip-path: none; border-radius: var(--radius); padding: 26px 22px 28px; }
  .section-head h2 { font-size: 25px; }
  .page-hero h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .perks-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-num { font-size: 27px; }
  .spotlight-body h2 { font-size: 22px; }
  .cta-band h2 { font-size: 22px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .pay-note { margin-left: 0; width: 100%; }
  .info-page .wrap { padding: 28px 20px; }
  .info-page table { display: block; overflow-x: auto; white-space: nowrap; }
  .info-page td { white-space: normal; min-width: 150px; }
  .product-price { font-size: 26px; }
  .logo-word-img { height: 18px; }
  .logo-tag { display: none; }
}
