/* AUTO-GENERATED FILE. DO NOT EDIT DIRECTLY.
   Source: public/css/parts/*.css
   Generated: 2026-01-07T16:59:43.127Z
*/

/* ===== 00-tokens.css ===== */
:root{
  --bg: #f6fbfa;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;

  --primary: #0f766e;
  --primary-2: #0b5f58;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 26px;
  --radius-pill: 999px;

  /* было 1200 — из-за этого “не на весь экран” */
  --container: 1600px;

  /* высота/отступ под фикс-хедер (используется .header-spacer) */
  --header-offset: 110px;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 520px){
  :root{
    --header-offset: 120px;
  }
}

/* ===== 10-base.css ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--text);
}

main{ min-height: 100%; }

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration: none; }

.no-scroll { overflow: hidden; }

/* ===== 20-layout.css ===== */
.container{
  padding: 0 16px;
  margin: 0 auto;
}

.header-spacer{
  height: var(--header-offset);
}

/* главная сетка: фильтры + контент */
.container--with-filters{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

.container--with-filters > .grid,
.container--with-filters > .content {
  min-width: 0;
}

/*
  Breakpoints (UI):
  - <900px: mobile (1-column layout + filters drawer)
  - 900–1199px: 2-column cards grid
  - >=1200px: 4-column cards grid
*/
@media (max-width: 899px){
  .container--with-filters{
    grid-template-columns: 1fr;
  }
}

/* ===== 21-catalog-layout.css ===== */
.catalog-layout{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}
.catalog-sidebar .panel{
  margin-bottom: 14px;
}
.panel{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 16px;
}
.panel__title{
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .65;
  margin-bottom: 10px;
}
.panel__pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,118,110,.12);
  color: #0f766e;
  font-weight: 600;
  font-size: 13px;
}
.panel__h{
  font-weight: 700;
  margin-bottom: 10px;
}
.panel__text{
  opacity: .9;
}
.panel__muted{
  margin-top: 10px;
  opacity: .8;
}
.catalog-panels{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.catalog-panels__actions{
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.panel--wide{
  grid-column: 1 / -1;
  margin: 14px 0;
}
.kv{
  display: grid;
  gap: 8px;
}
.kv > div{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.kv dt{ opacity: .75; }
.kv a{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(15,118,110,.45);
  text-underline-offset: 2px;
}
.kv a:hover{ text-decoration-color: rgba(15,118,110,.9); }
.kv a:focus-visible{ outline: 2px solid rgba(15,118,110,.35); outline-offset: 2px; border-radius: 6px; }       
.kv--lines > div{
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.kv--lines > div:last-child{ border-bottom: 0; }
.shot img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f2f5f9;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1199px){
  .catalog-panels{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .catalog-layout{ grid-template-columns: 1fr; }
  .catalog-panels{ grid-template-columns: 1fr; }
}

/* ===== 22-order-layout.css ===== */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.selection-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.selection-card.featured {
    border: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.8);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #eee;
    border-radius: 20px;
    color: #666;
}

.card-badge.primary {
    background: var(--primary);
    color: #fff;
}

.selection-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: var(--text);
}

.selection-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.card-features li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li span {
    color: var(--primary);
    font-weight: bold;
}

/* Кнопки */
.btn-primary, .btn-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-2);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== 30-buttons.css ===== */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    border-radius: var(--radius-pill);
    border:1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor:pointer;
    font-weight:600;
    font-size: 14px;
  }
  
  .btn:hover{
    border-color: rgba(15,118,110,.35);
    box-shadow: 0 8px 16px rgba(2,6,23,0.06);
  }
  
  .btn:disabled{
    opacity:.6;
    cursor:not-allowed;
    box-shadow:none;
  }
  
  .btn--ghost{
    background: transparent;
    border-color: transparent;
  }
  
  .btn--ghost:hover{
    background: rgba(15,118,110,0.08);
    border-color: rgba(15,118,110,0.18);
  }
  
  .btn-icon{
    width: 22px;
    height: 22px;
    display:block;
  }
  
  .btn.is-primary{
    background: var(--primary);
    color: #e0f2f1;
    border-color: rgba(15,118,110,.25);
  }
  .btn.is-primary:hover{ background: var(--primary-2); }

/* ===== 40-header.css ===== */
/* ================= Header ================= */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  height: var(--header-offset);
  transition: height 0.3s ease;
}

.site-header__inner{
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.site-header__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header__tagline{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* логотип */
.logo{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
}

.logo__badge{
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* кнопка "Розділи каталогів" */
.site-header__btn{
  white-space: nowrap;
}

/* компактный режим при скролле */
.site-header.is-compact {
  height: 70px;
}

.site-header.is-compact .site-header__btn-text{
  display: none;
}

.site-header.is-compact .site-header__btn-icon{
  display: inline-block;
}

/* на узких экранах текст кнопки прячем всегда */
@media (max-width: 520px){
  .site-header__btn-text{ display: none; }
}


.site-header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.header-action{
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.header-action:hover{
  transform: translateY(-1px);
  border-color: rgba(15,118,110,.35);
}

.header-action:active{
  transform: translateY(0);
}

.header-action.is-bumped{
  animation: headerBadgePop .22s ease-out;
}

@keyframes headerBadgePop{
  0%{ transform: scale(1); }
  60%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}

.header-action__icon{
  font-size: 18px;
  line-height: 1;
}

.header-badge{
  position:absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 22px rgba(15,118,110,.25);
}

.header-badge.is-visible{
  display:flex;
}


.header-badge.is-pulse{
  animation: badge-pop .22s ease-out;
}

@keyframes badge-pop{
  0%{ transform: scale(.9); }
  60%{ transform: scale(1.12); }
  100%{ transform: scale(1); }
}

/* ===== 50-drawer.css ===== */
/* public/css/parts/50-drawer.css */

/* Overlay container */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease-in-out;
}

.drawer[aria-hidden="true"] {
  display: none; /* Це автоматично прибере конфлікт, бо приховані елементи не можуть бути активними */
}

/* opened */
.drawer.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop covers full screen */
.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

/* Right panel (full height, scrollable) */
.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 30px rgba(15, 23, 42, 0.18);
  padding: 0 16px calc(18px + env(safe-area-inset-bottom));
  overflow: auto;

  transform: translateX(16px);
  transition: transform .18s ease-in-out;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* Header inside drawer */
.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  position: sticky;
  top: 0;
  background: #fff;
  padding: 16px 16px 12px;
  z-index: 2;
}

.drawer__title{
    font-size: 16px;
    font-weight: 800;
}

/* List like on your old screenshot (no “pill inputs”) */
.drawer__list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer__list li{
  border-top: 1px solid var(--border);
}

.drawer__list a{
  display: block;
  padding: 12px 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-weight: 600;
  color: var(--text);
}

.drawer__list a:hover{
  color: var(--primary);
}

.drawer__list a[aria-current="page"]{
  color: var(--primary);
  font-weight: 800;
}

/* Optional: slightly bigger clickable area on mobile */
@media (max-width: 640px){
  .drawer__panel{ width: min(520px, 94vw); }
  .drawer__list a{ padding: 14px 0; }
}

.drawer__foot{
  position: sticky;
  bottom: 0;
  padding: 12px 0;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display:flex;
  gap: 10px;
}

.drawer__foot .btn{
  flex: 1;
  justify-content: center;
}

.drawer__list--wishlist{
  list-style:none;
  padding: 0;
  margin: 0;
}

.drawer__list--wishlist li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.drawer__list--wishlist a{
  flex: 1;
  padding-right: 0;
}

.wishlist__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.wishlist__price{
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.wishlist__remove{
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
}

.wishlist__remove:hover{
  color: var(--text);
  border-color: rgba(15,118,110,.35);
}

.drawer__empty{
  padding: 14px 0;
  color: var(--muted);
  font-size: 14px;
}

/* ===== 60-filters.css ===== */
/* =========================
Mobile Filters: FAB + Drawer
========================= */

body.no-scroll { overflow: hidden; }

/* Floating filter button */
.filters-fab {
  position: fixed;
  top: 56%;                 /* чуть ниже центра */
  transform: translateY(-50%);
  z-index: 1400;

  width: 36px;
  height: 132px;
  border: 0;
  border-radius: 0 9px 9px 0;

  background: #0f766e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);

  display: none;            /* включим на мобилке */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
}

.filters-fab__icon {
  font-size: 18px;
  line-height: 1;
  opacity: .95;
}

.filters-fab__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Backdrop */
.filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  display: none;            /* включим на мобилке */
}

.filters-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Base filters card look (desktop too) */
.filters {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}

.filters h3 {
  margin: 5px 0;
  text-align: center;
}

.filters label,
.filters .filters__item {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
}

.filters select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #dbe2ea;
  background: #fff;
}

/* ===== Price range (min/max + 2 sliders) ===== */
.filters__range{
  display: grid;
  gap: 12px;
}

.filters__range-inputs{
  display: grid;
  grid-template-columns: 1fr 30px 1fr auto;
  gap: 10px;
  align-items: center;
}

.filters__range-num{
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #dbe2ea;
  background: #fff;
  font: inherit;
}

.filters__range-num:focus-visible{
  outline: 2px solid rgba(15,118,110,.28);
  outline-offset: 2px;
}

.filters__range-sep{
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.filters__range-suffix{
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.filters__range-sliders{
  /* Эти значения JS будет обновлять, чтобы “заливка” совпадала с min/max */
  --from: 0;
  --to: 100;

  --track: #e5e7eb;
  --accent: var(--primary, #0f766e);

  position: relative;
  height: 28px;
}

.filters__range-track{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;

  /* серый трек + выделенный диапазон между from/to */
  background:
    linear-gradient(
      to right,
      var(--track) 0%,
      var(--track) calc(var(--from) * 1%),
      rgba(15,118,110,.65) calc(var(--from) * 1%),
      rgba(15,118,110,.65) calc(var(--to) * 1%),
      var(--track) calc(var(--to) * 1%),
      var(--track) 100%
    );
}

.filters__range-slider{
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;

  background: transparent;
  pointer-events: none; /* кликаем только по “шарикам” */
  -webkit-appearance: none;
  appearance: none;
}

/* чтобы оба thumb нормально тащились при наложении */
.filters__range-slider:first-of-type{ z-index: 3; }
.filters__range-slider:last-of-type{ z-index: 4; }

.filters__range-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
  display: flex;
  align-items: center;
}

.filters__range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;

  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.2);
  
  margin-top: -8px; 
  
  cursor: grab;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.filters__range-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}

.filters__range-slider:focus-visible::-webkit-slider-thumb{
  box-shadow: 0 0 0 4px rgba(15,118,110,.22), 0 6px 14px rgba(2,6,23,.14);
}

/* Firefox */
.filters__range-slider::-moz-range-track {
  background: transparent;
  border: none;
}

.filters__range-slider::-moz-range-thumb {
  pointer-events: auto;
  width: 18px; /* Firefox рахує розміри трохи інакше, залишаємо 18-20 */
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.2);
  cursor: pointer;
  border: 3px solid var(--accent);
}

.filters__range-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15), 0 4px 10px rgba(2, 6, 23, 0.2);
  outline: none;
}

.filters__range-ticks{
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
  margin-top: -2px;
}

.filters .btn {
  width: 100%;
  height: 46px;
  border-radius: 999px;
}

/* ===== Mobile: превращаем filters в drawer ===== */
@media (max-width: 899px) {
  .filters-fab { display: flex; }
  .filters-backdrop { display: block; }

  .filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    width: min(380px, 92vw);
    z-index: 1300;

    border-radius: 0 18px 18px 0;
    transform: translateX(-105%);
    transition: transform .22s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
  }

  .filters.is-open {
    transform: translateX(0);
  }
}

/* ===== Desktop: кнопки/оверлеи не нужны ===== */
@media (min-width: 900px) {
  .filters-fab,
  .filters-backdrop { display: none !important; }
}

/* ===== 70-cards.css ===== */
/* public/css/parts/70-cards.css */

/*
  Cards grid — Variant A
  - <900px: 1 column
  - 900–1199px: 2 columns
  - >=1200px: 4 columns
*/

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

@media (min-width: 900px){
  .grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (min-width: 1200px){
  .grid{
    grid-template-columns:repeat(4, 1fr);
  }
}

/* ========== CARD ========== */

.card{
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 12px 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__preview{
  position:relative;
  background:#EEF6F6;
  aspect-ratio: 16 / 11;
  overflow:hidden;
}
.card__preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card__body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 0;
}
.card__top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.card__top .badge{
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #0b766e2e;
  white-space: nowrap;
}
.card__title{
  font-size:18px;
  line-height:1.15;
  font-weight:800;
  margin:0;
}
.card__title a{
  color:inherit;
  text-decoration:none;
}
.card__desc{
  margin:0;
  color:#2A3441;
  line-height:1.45;
  font-size:14px;
  display:-webkit-box;
  line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height: 0;
}
.card__meta{
  margin-top:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 10px;
  font-size:14px;
  color:#1C2733;
}
.card__meta .k{color:#6A7A8D}
.card__meta .v{font-weight:600}

.card__chev{
  position:absolute;
  right:12px;
  bottom:12px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff;
  border:1px solid #DDE7F2;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(10, 30, 60, 0.08);
  text-decoration:none;
  color:#2A3441;
  font-size:18px;
}
.card__chev:hover{ transform: translateY(-1px); }

.card__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

/* ===== Wishlist (bookmark) button ===== */
.card__bookmark{
  position:absolute;
  cursor: pointer;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(2,6,23,.10);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}

.card__bookmark:hover{
  transform: translateY(-1px);
}

.card__bookmark:active{
  transform: translateY(0);
}

.card__bookmark svg{
  width:18px;
  height:18px;
}

.card__bookmark.is-active{
  background: rgba(15,118,110,.14);
  border-color: rgba(15,118,110,.35);
  color: var(--primary);
}

.card__bookmark.is-bumped{
  animation: wishlistPop .22s ease-out;
}

@keyframes wishlistPop{
  0%{ transform: scale(1); }
  60%{ transform: scale(1.10); }
  100%{ transform: scale(1); }
}

/* ===== 71-loadmore.css ===== */
/* load more spacing */
.load-more{
    margin: 18px 0 6px;
    grid-column: 1 / -1;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  
  .load-more__status{
    font-size:13px;
    color:var(--muted);
  }
  
  /* ========== SKELETON (load more) ========== */

.card.is-skeleton{
    pointer-events:none;
  }
  
  .skel{
    background: linear-gradient(90deg, #eef2f7 0%, #f7fafc 50%, #eef2f7 100%);
    background-size: 200% 100%;
    animation: sc-skel 1.2s infinite;
    border-radius: 10px;
  }
  
  .skel--img{
    width:100%;
    height:100%;
    border-radius: 0;
  }
  
  .skel--title{
    height:18px;
    width:70%;
  }
  
  .skel--badge{
    height:22px;
    width:72px;
    border-radius:999px;
    flex: 0 0 auto;
  }
  
  .skel--line{
    height:14px;
    width:100%;
  }
  
  .skel--line.skel--line-short{
    width:70%;
  }
  
  .skel--meta{
    height:12px;
    width:100%;
  }
  
  @keyframes sc-skel{
    0%{ background-position: 200% 0; }
    100%{ background-position: -200% 0; }
  }

/* ===== 72-scroll-btn.css ===== */
.scroll-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  
  /* Початковий стан: прихована */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

/* Поворот стрілки вгору */
.scroll-btn.direction-up svg {
  transform: rotate(180deg);
}

.scroll-btn:hover {
  background: var(--primary-2);
}

/* ===== 73-pageloader.css ===== */
/* Прелоадер */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    
    /* Ефект скла */
    background: rgba(246, 251, 250, 0.8); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    display: flex;
    flex-direction: column; /* Щоб текст був під спінером */
    justify-content: center;
    align-items: center;
    gap: 20px;
    
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  /* Назва бренду */
  .loader-brand {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary);
    text-transform: uppercase;
  }
  
  .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  .folder-loader {
    position: relative;
    width: 80px;
    height: 60px;
  }
  
  /* Папка */
  .folder {
    width: 60px;
    height: 45px;
    background: var(--primary);
    border-radius: 4px;
    position: relative;
    margin-top: 10px;
    opacity: 0.8;
  }
  
  .folder::before {
    content: "";
    position: absolute;
    top: -8px; left: 0;
    width: 25px; height: 10px;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
  }
  
  /* Лупа */
  .magnifier {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 0; right: 0;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    animation: search 2s infinite ease-in-out;
  }
  
  .magnifier::after {
    content: "";
    position: absolute;
    bottom: -8px; right: -5px;
    width: 4px; height: 12px;
    background: #fff;
    transform: rotate(-45deg);
  }
  
  /* Анімація руху */
  @keyframes search {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-40px, 10px); }
    50% { transform: translate(-10px, 30px); }
    75% { transform: translate(-45px, 25px); }
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

/* ===== 80-components.css ===== */
/* ===== modal ===== */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:140;
}

.modal.is-open{ display:block; }

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.55);
  backdrop-filter: blur(2px);
}

.modal__panel{
  position:relative;
  width:min(860px, calc(100vw - 40px));
  margin: calc(8vh) auto 0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-2xl);
  box-shadow:0 28px 70px rgba(2,6,23,.20);
  padding:22px 22px 18px;
}

.modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.9);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}

.modal__title{
  margin:0;
  font-size:22px;
  font-weight:900;
}

.modal__desc{
  margin:10px 0 16px;
  color:var(--muted);
  line-height:1.45;
  font-size:14px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.label{
  font-size:12px;
  color:var(--muted);
}

.input, .textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background:#fff;
}

.textarea{ resize:vertical; }

.form-hint{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.form-status{
  margin:0;
  min-height:18px;
  font-size:13px;
}

/* ===== 81-seotext-component.css ===== */
/* ===== Lists inside SEO (aligned, UI-like) ===== */
.seo {
	grid-column: 1 / -1;
	margin: 18px 0 26px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-2xl);
	padding: 18px 18px 16px;
	box-shadow: 0 18px 50px rgba(2, 6, 23, .06);
}

.seo h2 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.seo ul,
.seo ol {
	margin: 16px 0;
	padding: 0;
	list-style: none;
	color: var(--text);
}

/* Скидання лічильника тільки для кореневого OL */
.seo>ol {
	counter-reset: seo-counter;
}

/* Пункти списків */
.seo li {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-left: 12px;
	line-height: 1.6;
}

/* Елемент перед текстом (іконка/цифра) */
.seo li::before {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border: 1px solid rgba(0, 0, 0, .08);
	color: var(--primary);
	font-weight: 700;
	font-size: 13px;
}

/* Стиль для UL (чекбокси) */
.seo ul>li::before {
	content: "✓";
	width: 20px;
	height: 20px;
	margin-top: 3px;
	border-radius: 50%;
	background: rgba(15, 118, 110, .1);
}

/* Стиль для OL (цифри) */
.seo ol>li {
	counter-increment: seo-counter;
}

.seo ol>li::before {
	content: counter(seo-counter);
	width: 20px;
	height: 20px;
	border-radius: 8px;
	background: rgba(15, 118, 110, .05);
}

/* --- Вкладені списки --- */

/* Контейнер для тексту всередині li, щоб вкладений список був під ним */
.seo li .li-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.seo li ul,
.seo li ol {
	margin: 8px 0 0 10px;
	/* Відступ вкладеного списку */
}

/* Вкладений UL: заміна чеків на крапки */
.seo li ul>li::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: 10px;
	background: var(--primary);
	opacity: 0.4;
	border: none;
}

/* Прибираємо маркер у вкладеного списку, якщо він не потрібен */
.seo li li {
	margin-bottom: 6px;
}

.seo strong {
	font-weight: 700;
	color: var(--text);
}

.seo em {
	font-style: italic;
	opacity: 0.9;
}

.seo p:first-of-type {
	margin-top: 0;
}

@media (max-width: 520px) {
	.seo {
		padding: 16px;
	}

	.seo h2 {
		font-size: 18px;
	}
}

/* ===== 90-footer.css ===== */
/* ===== footer ===== */
.site-footer{
  margin-top: 10px;
  width:100%;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
}

.site-footer__inner{
  margin:0 auto;
  padding:18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.site-footer__copy{
  color:var(--muted);
  font-size:13px;
  text-align:right;
}

@media (max-width:520px){
  .site-footer__inner{
    flex-direction:column;
    align-items:stretch;
  }
  .site-footer__copy{
    text-align:center;
  }
}

