/* Skip Hop — палитра снята с баннера брендстора (assets/banner-src.jpg):
   красная плашка логотипа #ec2c26, звёздочка #e12d30, серый слогана #666,
   тёплый светлый фон, пастельные акценты с фото (оливковый рюкзак, деним).
   Шрифты: Quicksand (округлый дисплей — в духе леттеринга SKIP*HOP) + Nunito Sans. */

@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(../fonts/Quicksand-var.woff2) format('woff2'); }
@font-face { font-family: 'Nunito Sans'; font-style: normal; font-weight: 200 1000; font-display: swap;
  src: url(../fonts/NunitoSans-var.woff2) format('woff2'); }

:root {
  --red: #ec2c26;            /* плашка логотипа */
  --red-deep: #c31f1a;
  --ink: #33383f;
  --gray: #666666;           /* серый слогана must-haves * made better */
  --cream: #faf7f2;          /* тёплый фон страницы */
  --cloud: #eef3f6;          /* холодный пастельный для полос */
  --sage: #5c6b4a;           /* оливковый рюкзак с баннера */
  --denim: #3e4a64;          /* деним с баннера */
  --card: #ffffff;
  --line: #e7e2da;
  --star: #f0a531;
  --radius: 18px;
  --shadow: 0 3px 12px rgba(51, 56, 63, .07);
  --shadow-hover: 0 12px 30px rgba(51, 56, 63, .14);
}

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

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

h1, h2, h3, h4, .logo-plate { font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif; line-height: 1.22; }
img { max-width: 100%; display: block; }
a { color: var(--red-deep); text-decoration: none; }

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

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 999px;
  border: 0;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--red-deep); transform: translateY(-1px); }

/* ---------- header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.logo { display: flex; align-items: center; }
.logo-plate {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .05em;
  padding: 7px 14px 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.logo-plate .ast { font-size: 15px; position: relative; top: 1px; }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--cream); color: var(--red); }
.main-nav a.active { color: var(--red); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- hero: светлый, с крупной звёздочкой-мотивом ---------- */
.hero { background: #fff; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.hero::before {
  content: '\2731';
  position: absolute;
  right: -60px;
  top: -80px;
  font-size: 420px;
  line-height: 1;
  color: rgba(236, 44, 38, .07);
  transform: rotate(12deg);
  pointer-events: none;
}
.hero::after {
  content: '\2731';
  position: absolute;
  left: 4%;
  bottom: -50px;
  font-size: 190px;
  line-height: 1;
  color: rgba(62, 74, 100, .06);
  transform: rotate(-16deg);
  pointer-events: none;
}
.hero-inner { padding: 88px 22px 92px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.hero h1 { font-size: 52px; font-weight: 700; margin: 12px 0 16px; max-width: 760px; color: var(--ink); }
.hero h1 .ast { color: var(--red); }
.hero-sub { font-size: 19px; color: var(--gray); max-width: 600px; margin-bottom: 30px; }

/* полоса с баннером бренда */
.brand-band { background: #fff; }
.brand-band img { width: 100%; height: auto; }

/* ---------- category grid ---------- */
.categories { padding: 56px 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;
  border: 1px solid var(--line);
}
.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-body { padding: 14px 18px 16px; border-top: 1px solid var(--line); }
.cat-body h3 { font-size: 17.5px; color: var(--ink); }
.cat-body h3 .ast { color: var(--red); font-size: 13px; }
.cat-body p { font-size: 13.5px; color: var(--gray); }

/* ---------- catalog / cards ---------- */
.catalog { padding: 52px 22px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: 32px; color: var(--ink); }
.section-head h2 .ast { color: var(--red); font-size: 22px; vertical-align: middle; }
.section-head p { color: var(--gray); 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);
  border: 1px solid var(--line);
  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: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}
.card-title { font-size: 15.5px; font-weight: 700; color: var(--ink); font-family: 'Nunito Sans', sans-serif; }
.card-short { font-size: 13.5px; line-height: 1.45; color: var(--gray); 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: 'Quicksand', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.stars .star { color: #d9d4cc; font-size: 14px; }
.stars .star.on { color: var(--star); }
.rcount { color: var(--gray); font-size: 13px; margin-left: 4px; }
.card .btn-buy { margin: 12px 16px 16px; text-align: center; padding: 11px 16px; font-size: 14.5px; }

/* ---------- value / mission bands ---------- */
.value-band { background: var(--denim); color: #fff; padding: 58px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.value-item { text-align: center; }
.value-icon { margin-bottom: 10px; }
.value-icon svg { width: 36px; height: 36px; stroke: #ffb3af; }
.value-item h3 { font-size: 19px; margin-bottom: 8px; }
.value-item p { color: #cdd4e2; font-size: 15px; }

.mission-band { padding: 62px 0; text-align: center; }
.mission-band h2 { font-size: 28px; color: var(--ink); max-width: 780px; margin: 0 auto 14px; }
.mission-band p { color: var(--gray); 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: 58px 0; }
.seo-content h2 { font-size: 27px; color: var(--ink); margin-bottom: 16px; }
.seo-content h3 { font-size: 20px; color: var(--red-deep); margin: 26px 0 10px; }
.seo-content p { margin-bottom: 12px; color: #464b52; }
.seo-content ul { margin: 10px 0 14px 22px; color: #464b52; }
.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: 'Quicksand', sans-serif; color: var(--ink); }

/* ---------- ratings commentary ---------- */
.testimonials { padding: 58px 0 70px; background: var(--cloud); }
.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; }
.testi-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-figure { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--red-deep); font-size: 15px; margin-bottom: 8px; }
.testi-card p { font-size: 15.5px; color: #464b52; }
.testi-name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(236, 44, 38, .3); }
.testi-name a:hover { color: var(--red); border-bottom-color: var(--red); }
.testi-name { margin-top: 12px; font-weight: 700; }

/* ---------- page hero (category / info) ---------- */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 50px 0 46px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '\2731';
  position: absolute;
  right: -40px;
  top: -60px;
  font-size: 240px;
  line-height: 1;
  color: rgba(236, 44, 38, .06);
  transform: rotate(12deg);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--red); }
.page-hero h1 { font-size: 38px; margin: 8px 0 10px; color: var(--ink); }
.page-hero-sub { color: var(--gray); max-width: 660px; }

/* ---------- product page ---------- */
.breadcrumb { padding: 16px 22px 0; font-size: 14px; color: var(--gray); }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--red); }
.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);
  border: 1px solid var(--line);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 94px;
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info h1 { font-size: 27px; margin: 8px 0 12px; color: var(--ink); }
.product-meta { margin-bottom: 12px; }
.product-price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 32px; color: var(--red); margin-bottom: 18px; }
.product-info .btn-buy { padding: 14px 48px; font-size: 16.5px; }
.product-intro { margin-top: 22px; color: #464b52; font-size: 17px; }

/* ---------- авторские блоки товара + спеки производителя ---------- */
.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); border: 1px solid var(--line); padding: 22px 24px; }
.feat h2 { font-size: 17px; color: var(--red-deep); margin-bottom: 8px; }
.feat p { color: #464b52; font-size: 15.5px; }
.specs { padding: 34px 22px 50px; }
.specs-head { font-size: 19px; color: var(--ink); margin-bottom: 12px; }
.bullets { margin: 0 0 0 20px; }
.bullets li { margin-bottom: 10px; color: #464b52; font-size: 15px; }
.specs-note { margin-top: 12px; font-size: 13px; color: var(--gray); }

/* ---------- info pages ---------- */
.info-page { padding: 46px 0 64px; }
.info-page .wrap { max-width: 840px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); padding: 38px 42px; }
.info-page h2 { color: var(--ink); font-size: 22px; margin: 24px 0 10px; }
.info-page h2:first-child { margin-top: 0; }
.info-page h3 { color: var(--red-deep); font-size: 17.5px; margin: 18px 0 8px; }
.info-page p { margin-bottom: 12px; color: #464b52; }
.info-page ul, .info-page ol { margin: 10px 0 14px 22px; color: #464b52; }
.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: 'Quicksand', sans-serif; color: var(--ink); }
.info-page a { color: var(--red); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c9cdd3; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; padding: 52px 22px 30px; }
.site-footer .logo-plate { font-size: 17px; }
.tagline { color: #ffb3af; font-family: 'Quicksand', sans-serif; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; margin: 12px 0 12px; }
.foot-text { margin-bottom: 14px; }
.foot-contact p { margin-bottom: 4px; }
.foot-col h3 { color: #fff; font-size: 15.5px; margin-bottom: 12px; letter-spacing: .04em; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: #c9cdd3; }
.foot-col a:hover { color: #ffb3af; }
.foot-pay { display: flex; flex-wrap: wrap; gap: 16px; padding: 16px 22px; border-top: 1px solid rgba(255, 255, 255, .12); color: #949aa3; font-size: 13.5px; }
.foot-bottom { padding: 14px 22px 26px; border-top: 1px solid rgba(255, 255, 255, .12); color: #949aa3; font-size: 13px; }

/* ---------- stats band ---------- */
.stats-band { background: var(--red); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 22px; text-align: center; }
.stat-num { display: block; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 31px; line-height: 1.15; }
.stat-label { display: block; font-size: 13.5px; color: #ffd3d1; margin-top: 2px; }

/* ---------- collab band ---------- */
.collab-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0 58px; }
.collab-band .card { border-color: #f0d6d5; }

/* ---------- characters ---------- */
.characters { padding: 58px 22px 14px; }
.char-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.char-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 20px 20px;
  text-align: center;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.char-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.char-img { aspect-ratio: 1; padding: 22px 22px 8px; }
.char-img img { width: 100%; height: 100%; object-fit: contain; }
.char-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.char-card p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.char-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--red);
}
.char-card:hover .char-link { color: var(--red-deep); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .char-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .value-grid, .testi-grid { grid-template-columns: 1fr; }
  .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: 40px; }
  .hero-inner { padding: 70px 22px 78px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    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; }
  .char-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 26px; }
  .hero h1 { font-size: 31px; }
  .hero-sub { font-size: 17px; }
  .hero::before { font-size: 260px; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .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: 27px; }
  .logo-plate { font-size: 16px; padding: 6px 11px 7px; }
}
