/* ============================================================
   ЧОХЛИ - Shop / E-commerce (plain HTML)
   ============================================================ */

/* Montserrat - указанный пользователем cyrillic-ext italic 100 */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxC7m0dJ9pQOik20.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F5F2;
  --bg-warm: #ECE7DA;
  --paper: #FFFFFF;
  --ink: #111111;
  --ink-2: #4A4A4A;
  --ink-3: #7A7A7A;
  --line: #E5E1D6;
  --line-2: #EEEAE0;

  --accent: #F5C400;
  --orange: #E0451A;
  --blue:   #1D4FB8;
  --black-product: #1A1A1A;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body:    "Montserrat", system-ui, sans-serif;
  --font-mono:    "Montserrat", ui-monospace, monospace;

  --maxw: 1440px;
  --gutter: clamp(16px, 3vw, 40px);
  --r: 12px;
  --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(28px, 3.6vw, 44px); }
h2 { font-size: clamp(22px, 2.6vw, 32px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); }
h4 { font-size: 16px; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #333; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: #e3b500; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #c63a14; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 20px;
}
.topbar a { color: #fff; transition: color .2s ease; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--accent); }
.topbar__left, .topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__right span { opacity: 0.6; }

@media (max-width: 720px) {
  .topbar__right .hide-mobile { display: none; }
  .topbar__left .hide-mobile { display: none; }
}

/* ============================================================
   HEADER - flexbox-based, icons forced to right
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  width: 34px; height: 34px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
  display: grid; place-items: center;
}
.brand__mark::after {
  content: "";
  width: 18px; height: 6px;
  background: var(--accent);
  border-radius: 100px;
  transform: rotate(-25deg);
}

.searchbar {
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--r);
  border: 1px solid var(--line);
  padding: 0 14px;
  flex: 1 1 auto;
  max-width: 540px;
  min-width: 0;
  height: 44px;
  margin: 0 auto;
}
.searchbar input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  font-size: 14px;
  padding: 0 10px;
  font-family: inherit;
}
.searchbar input::placeholder { color: var(--ink-3); }
.searchbar button {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
}

/* The 3-icon cluster - ALWAYS at the right edge */
.header-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.icon-btn {
  width: 44px; height: 44px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--bg);
  display: grid; place-items: center;
  position: relative;
  color: var(--ink);
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn .bubble {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  padding: 0 5px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--bg);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* Main nav row */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.navbar__inner {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 50px;
  overflow-x: auto;
}
.navbar a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all .2s ease;
}
.navbar a:hover { color: var(--ink); background: var(--bg-soft); }
.navbar a.is-active { background: var(--ink); color: #fff; }
.navbar__sep { flex: 1; }
.navbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 920px) {
  .searchbar { display: none; }
  .navbar { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 20px var(--gutter);
  transform: translateY(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  margin: -20px calc(-1 * var(--gutter)) 20px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.mobile-menu__list a {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo { padding: 18px 0 32px; }
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px) { .promo__grid { grid-template-columns: 1fr; } }

.promo__main {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.promo__main::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}
.promo__main .eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.promo__main h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
}
.promo__main p {
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  max-width: 420px;
}
.promo__main .actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.promo__visual { position: relative; z-index: 2; display: grid; place-items: center; }

.promo__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.promo__card {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 162px;
}
.promo__card--blue { background: #DDE7FA; }
.promo__card--yellow { background: #FFF1A8; }
.promo__card .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.promo__card h3 {
  font-size: 22px;
  margin-top: 8px;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 60%;
}
.promo__card .price { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.promo__card .price strong { color: var(--ink); font-size: 16px; }
.promo__card .arrow {
  position: absolute;
  bottom: 26px; right: 26px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
}
.promo__card .visual {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 40px 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head__title { display: flex; flex-direction: column; gap: 6px; }
.section-head__title h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; }
.section-head__title span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.section-head a.more {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.section-head a.more:hover { color: var(--orange); }

/* ============================================================
   PRODUCT GRID / CARD
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
  position: relative;
  min-width: 0;
}
.product-card:hover {
  border-color: var(--ink-2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.product-card__media {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card__media svg { max-width: 70%; height: auto; }
.product-card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge--sale { background: var(--orange); color: #fff; border-color: var(--orange); }
.badge--new { background: var(--ink); color: #fff; border-color: var(--ink); }
.badge--premium { background: var(--blue); color: #fff; border-color: var(--blue); }
.badge--stock { background: #16a34a; color: #fff; border-color: #16a34a; }

.product-card__wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all .2s ease;
}
.product-card__wish:hover { color: var(--orange); background: #fff; }

.product-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.product-card__sku {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 600;
}
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__meta { font-size: 12px; color: var(--ink-3); margin-top: -2px; }
.product-card__foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card__price { display: flex; flex-direction: column; }
.product-card__price .now {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product-card__price .old {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--ink-3);
}
.product-card__buy {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s ease;
  font-family: inherit;
}
.product-card__buy:hover { background: var(--orange); }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }

.cat-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: transform .2s ease;
  border: 1px solid transparent;
}
.cat-tile:hover { transform: translateY(-2px); border-color: var(--ink-2); }
.cat-tile--blue { background: #DDE7FA; }
.cat-tile--yellow { background: #FFF1A8; }
.cat-tile--orange { background: #FFD9CB; }
.cat-tile--dark { background: var(--ink); color: #fff; }

.cat-tile__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cat-tile h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 80%;
}
.cat-tile__count {
  font-size: 11px;
  color: var(--ink-2);
  background: rgba(255,255,255,0.6);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.cat-tile--dark .cat-tile__count {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}
.cat-tile__visual { flex: 1; display: grid; place-items: center; margin: 6px 0; }
.cat-tile__visual svg { width: 56%; max-width: 140px; height: auto; }
.cat-tile__foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--ink-2);
}
.cat-tile--dark .cat-tile__foot { color: rgba(255,255,255,0.7); }
.cat-tile__foot .arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
}
.cat-tile--dark .cat-tile__foot .arrow { background: var(--accent); color: var(--ink); }

/* ============================================================
   ADVANTAGES, WHY, FAQ
   ============================================================ */
.adv-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .adv-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .adv-row { grid-template-columns: 1fr; } }
.adv-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.adv-tile .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--ink);
}
.adv-tile h4 { font-size: 15px; font-weight: 700; }
.adv-tile p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .why-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-row { grid-template-columns: 1fr; } }
.why-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-tile .num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.why-tile .num .accent { color: var(--orange); }
.why-tile h4 { font-size: 15px; font-weight: 700; }
.why-tile p { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-family: inherit;
}
.faq__q:hover { color: var(--orange); }
.faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--ink);
}
.faq__item.is-open .faq__plus { background: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a-inner {
  padding: 0 0 18px;
  max-width: 760px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }
.calc__left {
  padding: 32px;
  background: linear-gradient(180deg, var(--ink) 0%, #222 100%);
}
.calc__left h3 { font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.calc__left p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 380px; }
.calc__steps { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.calc__steps li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.calc__steps .n {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  font-size: 11px;
}
.calc__right { padding: 32px; background: #1f1f1f; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.field input, .field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.field input::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field select:focus { border-color: var(--accent); }
.field input[type="range"] { padding: 0; background: transparent; border: 0; accent-color: var(--accent); }

.seg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 4px;
}
.seg button {
  padding: 10px 6px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: inherit;
}
.seg button.is-active { background: var(--accent); color: var(--ink); }

.calc__result {
  margin-top: 8px;
  padding: 18px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.calc__result .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
}
.calc__result .num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ============================================================
   PDP - PRODUCT DETAIL PAGE
   ============================================================ */
.crumbs {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 16px 0 12px;
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
}
.crumbs a:hover { color: var(--orange); }
.crumbs span { opacity: 0.5; }
.crumbs .current { color: var(--ink); opacity: 1; }

.pdp {
  padding: 8px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 1024px) { .pdp { grid-template-columns: 1fr; } }

.pdp__gallery {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}
@media (max-width: 600px) { .pdp__gallery { grid-template-columns: 1fr; } }

.pdp__thumbs { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 600px) { .pdp__thumbs { flex-direction: row; } }
.pdp__thumb {
  width: 78px; height: 78px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  display: grid; place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.pdp__thumb.is-active { border-color: var(--ink); }
.pdp__thumb svg { width: 60%; height: auto; }

.pdp__main {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.pdp__main svg { width: 70%; max-width: 460px; height: auto; }
.pdp__main .badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 6px;
}

.pdp__info { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.pdp__info h1 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  word-break: break-word;
}
.pdp__sku { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); font-weight: 600; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp__price .now {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pdp__price .old {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--ink-3);
}
.pdp__price .sale-pct {
  background: var(--orange);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.pdp__selector { display: flex; flex-direction: column; gap: 8px; }
.pdp__selector .lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-2); }
.pdp__options { display: flex; gap: 6px; flex-wrap: wrap; }
.pdp__option {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.pdp__option:hover { border-color: var(--ink-2); }
.pdp__option.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp__qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.pdp__qty button { width: 42px; height: 42px; font-size: 18px; background: var(--bg); }
.pdp__qty button:hover { background: var(--bg-soft); }
.pdp__qty input {
  width: 50px;
  border: 0;
  text-align: center;
  outline: none;
  font-weight: 700;
  background: var(--bg);
}

.pdp__buy {
  display: flex; gap: 10px;
  margin-top: 4px;
  align-items: stretch;
  flex-wrap: wrap;
}
.pdp__buy .btn { padding: 14px 24px; font-size: 14px; flex: 1 1 200px; }

.pdp__notice { color: var(--orange); font-weight: 700; font-size: 14px; margin-top: 4px; }
.pdp__hint {
  font-size: 13px;
  color: var(--ink-2);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; gap: 10px; align-items: center;
}
.pdp__hint .ico { color: var(--orange); flex-shrink: 0; }
.pdp__hint a { color: var(--orange); text-decoration: underline; font-weight: 600; }

.pdp__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.pdp__perk {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px;
  color: var(--ink-2);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 10px 12px;
}
.pdp__perk .ico { color: var(--ink); }

.pdp-desc {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .pdp-desc { grid-template-columns: 1fr; } }
.pdp-desc h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.pdp-desc p { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 14px; }
.pdp-desc ul { padding-left: 20px; margin: 0; }
.pdp-desc ul li { font-size: 14px; color: var(--ink-2); margin-bottom: 8px; line-height: 1.5; }
.pdp-desc strong { color: var(--ink); }

.pdp-specs {
  background: var(--bg-soft);
  border-radius: var(--r);
  padding: 22px;
  align-self: start;
}
.pdp-specs h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.pdp-specs dl { margin: 0; }
.pdp-specs dl div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.pdp-specs dl div:last-child { border-bottom: 0; }
.pdp-specs dt { color: var(--ink-3); }
.pdp-specs dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg);
  z-index: 95;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.7,0,.3,1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__head h3 { font-size: 18px; font-weight: 700; }
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
}
.cart-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-item__media {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: grid; place-items: center;
}
.cart-item__media svg { width: 70%; height: auto; }
.cart-item__title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.cart-item__meta { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.cart-item__price { font-size: 14px; font-weight: 700; margin-top: 4px; }
.cart-item__qty { display: flex; align-items: center; gap: 4px; }
.cart-item__qty button {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--bg-soft);
  font-size: 14px;
}
.cart-item__qty span { font-weight: 700; font-size: 13px; min-width: 18px; text-align: center; }
.cart-item__remove { font-size: 11px; color: var(--ink-3); margin-left: 8px; }
.cart-item__remove:hover { color: var(--orange); }

.cart-drawer__empty { text-align: center; padding: 60px 24px; color: var(--ink-3); }
.cart-drawer__empty h4 { color: var(--ink); margin-bottom: 8px; font-size: 18px; }
.cart-drawer__empty p { font-size: 14px; margin-bottom: 20px; }

.cart-drawer__foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.cart-drawer__total {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.cart-drawer__total .lbl { font-size: 13px; color: var(--ink-3); }
.cart-drawer__total .sum { font-size: 24px; font-weight: 800; }

/* ============================================================
   PAGE HERO + INFO
   ============================================================ */
.page-hero { padding: 28px 0 26px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 4px; }
.page-hero p { max-width: 700px; margin-top: 12px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.subnav {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.subnav__inner { display: flex; gap: 4px; overflow-x: auto; padding: 10px 0; }
.subnav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.subnav a:hover { background: var(--bg-soft); }
.subnav a.is-active { background: var(--ink); color: #fff; }

.prose { max-width: 760px; }
.prose h2 { font-size: 22px; margin-top: 36px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin-top: 24px; margin-bottom: 10px; }
.prose p { margin-bottom: 14px; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.prose ul { padding-left: 22px; margin: 0 0 14px; color: var(--ink-2); }
.prose ul li { margin-bottom: 7px; line-height: 1.5; font-size: 14px; }
.prose strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 24px; } }
.split__aside h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin: 0 0 12px;
  font-weight: 600;
}
.split__aside p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 28px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-soft);
  border-radius: var(--r);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card .ico {
  width: 36px; height: 36px;
  border-radius: 8px; background: var(--bg); color: var(--orange);
  display: grid; place-items: center;
}
.contact-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}
.contact-card .val { font-size: 18px; font-weight: 700; color: var(--ink); }
.contact-card .sub { font-size: 12px; color: var(--ink-3); margin-top: auto; }

/* Catalog filter chips */
.filter-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin: 20px 0 16px; gap: 16px; flex-wrap: wrap;
}
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-2);
  cursor: pointer;
}
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover { color: var(--ink); }

/* Newsletter */
.newsletter {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px; align-items: center;
}
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2 { color: #fff; font-size: 26px; }
.newsletter p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 14px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  color: #fff; font-size: 14px;
  outline: none;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }

/* Checkout */
.checkout {
  padding: 24px 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
.checkout__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.checkout__form h2 { font-size: 22px; margin-bottom: 18px; }
.checkout__form h3 {
  font-size: 14px;
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  font-weight: 600;
}
.field-light { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-light label { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.field-light input, .field-light select, .field-light textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .row-2 { grid-template-columns: 1fr; } }
.radio-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.radio-tile {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.radio-tile.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.checkout__summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 24px;
}
.checkout__summary h3 { font-size: 16px; margin-bottom: 14px; }
.checkout__line {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--line);
}
.checkout__line.total {
  font-size: 18px;
  font-weight: 800;
  padding-top: 14px;
  border-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  margin-top: 40px;
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand .brand__mark { background: #fff; }
.footer-brand .brand__mark::after { background: var(--accent); }
.footer-brand p { margin-top: 16px; font-size: 13px; max-width: 320px; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ============================================================
   HELPERS
   ============================================================ */
.hide-mobile { display: inline; }
@media (max-width: 720px) { .hide-mobile { display: none !important; } }


/* ============================================================
   UATKS - Fixes & Variants (v1.0.1)
   ============================================================ */

/* --- Промо-картка: блокуємо зміну фону на hover (раніше білий на білому) --- */
.promo__card { transition: transform .2s ease, box-shadow .2s ease; }
.promo__card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.07); }
.promo__card--yellow,
.promo__card--yellow:hover,
.promo__card--yellow:focus { background-color: #FFF1A8; color: var(--ink); }
.promo__card--blue,
.promo__card--blue:hover,
.promo__card--blue:focus { background-color: #DDE7FA; color: var(--ink); }
.promo__card--dark,
.promo__card--dark:hover,
.promo__card--dark:focus { background-color: var(--ink); color: #fff; }
.promo__card--dark .label, .promo__card--dark .price { color: rgba(255,255,255,0.7); }
.promo__card--dark .price strong { color: #fff; }
.promo__card--orange,
.promo__card--orange:hover,
.promo__card--orange:focus { background-color: var(--orange); color: #fff; }
.promo__card--orange .label, .promo__card--orange .price { color: rgba(255,255,255,0.85); }
.promo__card--orange .price strong { color: #fff; }

/* --- Промо-картка: варіанти розкладки --- */
.promo__card--no-visual .visual { display: none !important; }
.promo__card--no-visual h3 { max-width: 100%; }

.promo__card--centered {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.promo__card--centered > div { width: 100%; }
.promo__card--centered h3 { max-width: 100%; margin: 8px auto; }
.promo__card--centered .label { margin: 0 auto; }
.promo__card--centered .price { margin: 8px auto 0; }
.promo__card--centered .visual { display: none; }
.promo__card--centered .arrow {
  position: static;
  margin: 12px auto 0;
}

.promo__card--no-arrow .arrow { display: none !important; }

/* --- Мобільне меню: фікс ширини пошукового поля + overflow --- */
.mobile-menu { overflow-x: hidden; box-sizing: border-box; }
.mobile-menu * { box-sizing: border-box; }
.mobile-menu__searchbar {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 20px;
  flex: 0 0 auto;
}
.mobile-menu__searchbar input {
  width: 100%;
  min-width: 0;
}

/* --- Логотип-картинка у бренді --- */
.brand__logo { display: block; height: 36px; width: auto; max-width: 220px; }
@media (max-width: 720px) {
  .brand__logo { max-width: 160px; }
}

/* --- Footer-made link (replaces «Виготовлено в Україні») --- */
.footer-bottom .footer-made { color: inherit; text-decoration: none; }
.footer-bottom .footer-made:hover { color: var(--accent); }
.footer-bottom .footer-made img.emoji { height: 14px; width: 14px; vertical-align: -2px; display: inline-block; }


/* ============================================================
   UATKS - Hard Fixes (v1.0.6)
   Жорстко прибиваємо: розмір логотипа, mobile-menu overflow,
   і додаємо стилі freeship-баннеру.
   ============================================================ */

/* --- Логотип-картинка: МАКСИМАЛЬНО жорстко --- */
.brand { display: flex !important; align-items: center !important; gap: 10px; min-width: 0; }
.brand .brand__mark { flex-shrink: 0; }

.brand__logo,
.site-header .brand__logo,
.footer-brand .brand__logo,
.mobile-menu .brand__logo,
.brand img {
  max-height: 44px !important;
  max-width: 200px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.site-header .brand__logo { max-height: 44px !important; max-width: 200px !important; }
.footer-brand .brand__logo { max-height: 52px !important; max-width: 240px !important; }
.mobile-menu .brand__logo { max-height: 38px !important; max-width: 160px !important; }

@media (max-width: 720px) {
  .brand__logo,
  .site-header .brand__logo {
    max-height: 36px !important;
    max-width: 150px !important;
  }
}

/* --- Mobile menu - жорстко прибиваємо переповнення --- */
.mobile-menu {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}
.mobile-menu > *,
.mobile-menu__head,
.mobile-menu__searchbar,
.mobile-menu__list,
.mobile-menu .btn {
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
.mobile-menu__searchbar {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  margin: 8px 0 20px !important;
}
.mobile-menu__searchbar input[type="search"],
.mobile-menu__searchbar input[type="text"] {
  flex: 1 1 0% !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
.mobile-menu__list a {
  word-break: break-word;
  white-space: normal;
}

/* --- Freeship-banner (замість newsletter) --- */
.freeship { padding: 40px 0; background: var(--bg-soft); }
.freeship__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #FFF1A8;
  border-radius: var(--r-lg);
  padding: 32px 40px;
  text-decoration: none;
  color: var(--ink);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.freeship__box:hover,
.freeship__box:focus {
  background: #FFF1A8;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.freeship__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.freeship__text h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.freeship__text p {
  font-size: 17px;
  margin: 6px 0 0;
  color: var(--ink-2);
}
.freeship__text strong { color: var(--ink); font-weight: 800; }

@media (max-width: 720px) {
  .freeship__box { padding: 24px 20px; gap: 16px; flex-direction: column; text-align: center; }
  .freeship__text h3 { font-size: 22px; }
  .freeship__text p { font-size: 15px; }
}


/* ============================================================
   UATKS - Логотип, прибитий гвіздками (v1.0.7)
   ============================================================ */
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  min-width: 0;
}
.brand img,
.brand__logo,
.site-header .brand__logo {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  max-width: 200px !important;
  display: block !important;
  object-fit: contain !important;
}
.footer-brand .brand__logo {
  height: 48px !important;
  max-height: 48px !important;
  max-width: 240px !important;
}
.mobile-menu .brand__logo {
  height: 36px !important;
  max-height: 36px !important;
  max-width: 160px !important;
}
@media (max-width: 720px) {
  .site-header .brand__logo,
  .brand__logo {
    height: 32px !important;
    max-height: 32px !important;
    max-width: 150px !important;
  }
}
