/**
 * cvety-nv v3.5 — refined floral design system
 */
:root {
  --fl-green: #5B6745;
  --fl-green-deep: #434F35;
  --fl-green-light: #7A8762;
  --fl-green-mist: #F0F2EC;
  --fl-blush: #f3e8e4;
  --fl-blush-soft: #FBF5F3;
  --fl-sand: #FAF9F6;
  --fl-white: #ffffff;
  --fl-header-bg: #ffffff;
  --fl-header-logo-bg: transparent;
  --fl-header-border: #E8E6E1;
  --fl-ink: #2C2E28;
  --fl-muted: #6E7268;
  --fl-line: #E8E6E1;
  --fl-radius-s: 6px;
  --fl-radius-m: 10px;
  --fl-radius-l: 14px;
  --fl-radius-xl: 18px;
  --fl-radius-pill: 20px;
  --fl-shadow: 0 12px 36px rgba(44, 46, 40, .06);
  --fl-shadow-soft: 0 4px 16px rgba(44, 46, 40, .04);
  --fl-max: 1200px;
  --fl-header: 64px;
  --fl-gap-md: 20px;
  --fl-gap-lg: 32px;
  --fl-section-y: 56px;
  --fl-section-y-mobile: 40px;
  --fl-space-1: 8px;
  --fl-space-2: 14px;
  --fl-space-3: 20px;
  --fl-space-4: 32px;
  --fl-space-5: 48px;
  --fl-space-6: 64px;
  --fl-font: "Inter", system-ui, sans-serif;
  --fl-font-display: "Cormorant Garamond", Georgia, serif;
  --fl-font-accent: "Lora", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fl-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fl-ink);
  background: var(--fl-sand);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .fl-section__title, .fl-hero__title, .fl-shop__title, .fl-page__hero h1 {
  font-family: var(--fl-font-display);
  font-weight: 500;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fl-green); text-decoration: none; }
a:hover { color: var(--fl-green-deep); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }

.fl-site { min-height: 100vh; display: flex; flex-direction: column; }
.fl-main { flex: 1; }
.fl-wrap { width: min(100% - 40px, var(--fl-max)); margin-inline: auto; }
.fl-section { padding-block: clamp(40px, 6vw, var(--fl-section-y)); }
.fl-section__head { margin-bottom: clamp(20px, 3vw, 28px); max-width: 640px; }
.fl-section__title { margin: 0 0 8px; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; letter-spacing: 0; line-height: 1.15; }
.fl-section__lead { margin: 0; color: var(--fl-muted); font-size: .98rem; line-height: 1.6; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Buttons */
.fl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--fl-radius-pill); border: 0; cursor: pointer;
  font-weight: 500; font-size: .9rem; transition: .18s ease; white-space: nowrap;
}
.fl-btn--primary { background: var(--fl-green); color: #fff; }
.fl-btn--primary:hover { background: var(--fl-green-deep); color: #fff; }
.fl-btn--ghost { background: var(--fl-white); color: var(--fl-ink); border: 1px solid var(--fl-line); }
.fl-btn--ghost:hover { border-color: var(--fl-green); color: var(--fl-green); }
.fl-btn--soft { background: var(--fl-green-mist); color: var(--fl-green-deep); }
.fl-btn--in-cart { background: var(--fl-green-mist) !important; color: var(--fl-green-deep) !important; border: 1px solid var(--fl-line) !important; }
.fl-btn--sm { padding: 7px 14px; font-size: .84rem; }
.fl-btn--block { width: 100%; }
.fl-icon-btn {
  width: 36px; height: 36px; border: 1px solid var(--fl-header-border); border-radius: 50%;
  background: var(--fl-sand); display: inline-grid; place-items: center;
  cursor: pointer; color: var(--fl-ink); transition: .2s; padding: 0; flex-shrink: 0;
  line-height: 0;
}
.fl-icon-btn:hover { border-color: var(--fl-green); color: var(--fl-green); }
.fl-icon-btn svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.fl-hide-mobile { display: initial; }
.fl-hide-desktop { display: none !important; }

/* Header — base */
.fl-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--fl-header-bg);
  border-bottom: 1px solid var(--fl-header-border);
  box-shadow: 0 8px 28px rgba(18, 32, 25, .04);
}
.fl-header__top {
  border-bottom: 1px solid var(--fl-header-border);
}
.fl-header__top-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--fl-header);
}
.fl-header__logo {
  display: flex; align-items: center;
  transition: .2s ease;
}
.fl-header__logo img {
  height: 60px; width: auto; max-width: 240px; object-fit: contain;
}

/* Вариант 1: тёплая шапка целиком */
.fl-header--warm {
  --fl-header-bg: #f3ebe0;
  --fl-header-border: #ddd2c4;
}
.fl-header--warm .fl-icon-btn,
.fl-header--warm .fl-header__cart { background: rgba(255,255,255,.55); }

/* Вариант 2: кремовая плашка (предыдущий) */
.fl-header--pill {
  --fl-header-bg: #ffffff;
  --fl-header-border: #e3dcd2;
}
.fl-header--pill .fl-header__logo {
  padding: 8px 16px 8px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6f0e6 0%, #ebe2d4 100%);
  border: 1px solid rgba(180, 158, 120, .22);
  box-shadow: 0 1px 2px rgba(18, 32, 25, .04);
}
.fl-header--pill .fl-header__logo:hover {
  border-color: rgba(42, 107, 88, .28);
  box-shadow: 0 4px 16px rgba(18, 32, 25, .06);
}
.fl-header--pill .fl-header__logo img { filter: contrast(1.06) saturate(1.04); }

/* Вариант 3: светло-зелёная */
.fl-header--mist {
  --fl-header-bg: #eef7f2;
  --fl-header-border: #d4e8de;
}
.fl-header--mist .fl-icon-btn,
.fl-header--mist .fl-header__cart { background: #fff; }
.fl-header--mist .fl-header__logo img { filter: contrast(1.08) saturate(1.06); }

/* Вариант: кремовая шапка */
.fl-header--cream {
  --fl-header-bg: #FAF9F6;
  --fl-header-border: #E8E6E1;
}
.fl-header--cream .fl-icon-btn,
.fl-header--cream .fl-header__cart { background: #fff; }

/* Вариант 4: чистый белый */
.fl-header--clean {
  --fl-header-bg: #ffffff;
  --fl-header-border: #E8E6E1;
  box-shadow: 0 1px 0 var(--fl-line);
}
.fl-header--clean .fl-header__logo img {
  height: 48px; max-width: 220px;
}
.fl-header--clean .fl-icon-btn,
.fl-header--clean .fl-header__cart { background: var(--fl-sand); }

/* Вариант 5: зелёный акцент слева */
.fl-header--accent {
  --fl-header-bg: #ffffff;
  --fl-header-border: #e3dcd2;
}
.fl-header--accent .fl-header__logo {
  padding-left: 14px;
  border-left: 3px solid var(--fl-green);
}
.fl-header--accent .fl-header__logo img {
  height: 54px;
  filter: contrast(1.08) saturate(1.05);
}
.fl-header__nav { border-top: 1px solid var(--fl-header-border); }
.fl-header__menu { display: flex; justify-content: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.fl-header__menu a { display: block; padding: 12px 0; color: var(--fl-ink); font-weight: 500; font-size: .92rem; }
.fl-header__menu a:hover { color: var(--fl-green); }
.fl-header__actions { display: flex; align-items: center; gap: 8px; }
.fl-header__photo-btn { border-color: var(--fl-line); font-weight: 500; }
.fl-header__photo-btn:hover { background: var(--fl-white); }
.fl-header__phone { font-weight: 600; font-size: .9rem; color: var(--fl-ink); padding: 8px 14px; border-radius: 999px; white-space: nowrap; }
.fl-header__phone:hover { background: var(--fl-green-mist); color: var(--fl-green-deep); }
.fl-header__max {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; background: none; border: 0; border-radius: 0;
  transition: transform .2s ease;
}
.fl-header__max:hover { transform: scale(1.1); background: none; }
.fl-header__max-icon { height: 22px; width: auto; display: block; transition: transform .2s ease; }
.fl-header__max svg { width: 22px; height: 22px; display: block; transition: transform .2s ease; }
.fl-header__cart { position: relative; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--fl-header-border); background: var(--fl-sand); display: grid; place-items: center; color: var(--fl-ink); transition: .2s; padding: 0; cursor: pointer; font: inherit; }
.fl-header__cart:hover { border-color: var(--fl-green); color: var(--fl-green); }
.fl-header__cart svg { width: 20px; height: 20px; display: block; }
.fl-header__cart-count {
  position: absolute; top: -3px; right: -3px; min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--fl-green); color: #fff; font-size: .62rem; font-weight: 600;
  display: grid; place-items: center;
}
.fl-header__cart-count[hidden] { display: none !important; }
.fl-header__cart-count.is-pulse { animation: fl-badge-pulse .5s ease; }
@keyframes fl-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Mini-cart */
.fl-header__cart-wrap { position: relative; }
.fl-minicart {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; z-index: 150;
  width: 340px; max-height: 70vh; overflow: auto;
  background: var(--fl-white); border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-l);
  box-shadow: 0 16px 40px rgba(21, 32, 25, .12);
}
.fl-minicart.is-open { display: block; }
.fl-minicart__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--fl-line);
}
.fl-minicart__head strong { font-size: .95rem; }
.fl-minicart__total { font-size: .88rem; color: var(--fl-muted); }
.fl-minicart__items { padding: 8px 0; }
.fl-minicart__empty { padding: 32px 18px; text-align: center; color: var(--fl-muted); font-size: .9rem; }
.fl-minicart__item {
  display: grid; grid-template-columns: 56px 1fr auto auto;
  gap: 10px; align-items: center;
  padding: 10px 18px; border-bottom: 1px solid var(--fl-line);
  transition: background .15s;
}
.fl-minicart__item:last-child { border-bottom: 0; }
.fl-minicart__item:hover { background: var(--fl-green-mist); }
.fl-minicart__img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--fl-radius-s); }
.fl-minicart__info { min-width: 0; }
.fl-minicart__name {
  display: block; font-size: .84rem; font-weight: 500; color: var(--fl-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; margin-bottom: 4px;
}
.fl-minicart__name:hover { color: var(--fl-green); }
.fl-minicart__qty { display: inline-flex; align-items: center; gap: 4px; }
.fl-minicart__qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--fl-line);
  background: var(--fl-white); display: grid; place-items: center; cursor: pointer;
  color: var(--fl-muted); transition: .15s;
}
.fl-minicart__qty-btn:hover { border-color: var(--fl-green); color: var(--fl-green); }
.fl-minicart__qty-btn svg { width: 12px; height: 12px; }
.fl-minicart__qty-val { font-size: .84rem; font-weight: 600; min-width: 20px; text-align: center; }
.fl-minicart__price { font-size: .88rem; font-weight: 600; color: var(--fl-green-deep); white-space: nowrap; }
.fl-minicart__remove {
  width: 24px; height: 24px; border-radius: 50%; border: 0;
  background: transparent; color: var(--fl-muted); font-size: 1.1rem;
  cursor: pointer; display: grid; place-items: center; transition: .15s;
}
.fl-minicart__remove:hover { color: #c0392b; background: #fff5f5; }
.fl-minicart__foot { padding: 14px 18px; border-top: 1px solid var(--fl-line); display: grid; gap: 8px; }

.fl-search-pop {
  position: fixed; inset: 0; z-index: 200; display: none;
  padding-top: calc(var(--fl-header) + 24px);
  background: rgba(21, 32, 25, .42);
  backdrop-filter: blur(6px);
}
.fl-search-pop.is-open { display: block; }
.fl-search-pop__inner {
  width: min(92vw, 640px); margin: 0 auto; position: relative;
}
.fl-search-pop__close {
  position: absolute; right: 0; top: -48px;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; cursor: pointer;
  display: grid; place-items: center; font-size: 1.4rem; line-height: 1;
}
.fl-search-pop__close:hover { background: rgba(255,255,255,.28); }
.fl-search-pop__form {
  display: flex; align-items: center; gap: 8px;
  background: var(--fl-white); border-radius: 999px;
  padding: 6px 6px 6px 22px; box-shadow: var(--fl-shadow);
  border: 1px solid var(--fl-line);
}
.fl-search-pop__input {
  flex: 1; border: 0; padding: 14px 0; background: transparent;
  font-size: 1.05rem; min-width: 0;
}
.fl-search-pop__input:focus { outline: none; }
.fl-search-pop__input::placeholder { color: #9aa39d; }
.fl-search-pop__submit {
  border: 0; background: var(--fl-green); color: #fff;
  padding: 0 26px; height: 48px; border-radius: 999px;
  font-weight: 600; cursor: pointer; white-space: nowrap;
}
.fl-search-pop__submit:hover { background: var(--fl-green-deep); }

.fl-search-pop__panel {
  margin-top: 10px;
  background: var(--fl-white);
  border: 1px solid var(--fl-line);
  border-radius: 20px;
  box-shadow: var(--fl-shadow);
  overflow: hidden;
}
.fl-search-live { max-height: min(70vh, 520px); overflow: auto; }
.fl-search-live__section + .fl-search-live__section { border-top: 1px solid var(--fl-line); }
.fl-search-live__label {
  padding: 12px 18px 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a938d;
}
.fl-search-live__products,
.fl-search-live__cats {
  list-style: none;
  margin: 0;
  padding: 0 8px 8px;
}
.fl-search-live__product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition: background .15s;
}
.fl-search-live__product:hover,
.fl-search-live__product.is-active,
.fl-search-live__cat:hover,
.fl-search-live__cat.is-active,
.fl-search-live__more:hover,
.fl-search-live__more.is-active {
  background: var(--fl-cream, #f7f4ef);
}
.fl-search-live__thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fl-cream, #f7f4ef);
  display: block;
}
.fl-search-live__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fl-search-live__meta { min-width: 0; display: grid; gap: 2px; }
.fl-search-live__title {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}
.fl-search-live__catname { font-size: .78rem; color: #8a938d; }
.fl-search-live__price {
  font-size: .92rem;
  font-weight: 600;
  color: var(--fl-green);
  white-space: nowrap;
}
.fl-search-live__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-size: .92rem;
}
.fl-search-live__cat em {
  font-style: normal;
  font-size: .78rem;
  color: #8a938d;
  background: var(--fl-cream, #f7f4ef);
  border-radius: 999px;
  padding: 2px 8px;
}
.fl-search-live__footer {
  border-top: 1px solid var(--fl-line);
  padding: 10px 12px 12px;
}
.fl-search-live__more {
  display: block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--fl-green);
  text-decoration: none;
}
.fl-search-live__empty,
.fl-search-live__loading {
  padding: 22px 18px;
  text-align: center;
  color: #8a938d;
  font-size: .92rem;
}

.fl-drawer { position: fixed; inset: 0; z-index: 190; pointer-events: none; }
.fl-drawer.is-open { pointer-events: auto; }
.fl-drawer__backdrop { position: absolute; inset: 0; background: rgba(21,32,25,.35); opacity: 0; transition: .25s; }
.fl-drawer.is-open .fl-drawer__backdrop { opacity: 1; }
.fl-drawer__panel {
  position: absolute; top: 0; right: 0; width: min(100%, 380px); height: 100%;
  background: var(--fl-white); padding: 28px; overflow: auto; transform: translateX(100%); transition: .25s;
}
.fl-drawer.is-open .fl-drawer__panel { transform: translateX(0); }
.fl-drawer__menu { margin: 28px 0; display: grid; gap: 6px; }
.fl-drawer__menu a { display: block; padding: 14px 0; font-weight: 600; font-size: 1.08rem; color: var(--fl-ink); border-bottom: 1px solid var(--fl-line); }

/* Hero */
.fl-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(40px, 5vw, 64px);
  min-height: auto;
  display: flex; align-items: center;
}
.fl-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #fff 0%, var(--fl-sand) 100%);
}
.fl-theme--warm .fl-hero__bg {
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(251, 245, 243, .7), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--fl-sand) 100%);
}
.fl-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 48px); align-items: center;
}
.fl-hero__label { margin: 0 0 10px; font-size: .88rem; font-weight: 400; letter-spacing: 0; color: var(--fl-muted); font-family: var(--fl-font); }
.fl-hero__title { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 500; line-height: 1.08; letter-spacing: 0; }
.fl-hero__text { margin: 0 0 24px; font-size: 1rem; color: var(--fl-muted); max-width: 44ch; }
.fl-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.fl-hero__meta { margin: 0; font-size: .86rem; color: var(--fl-muted); line-height: 1.5; }
.fl-hero__meta span { margin: 0 .35em; opacity: .5; }
.fl-hero__visual { position: relative; max-width: 100%; justify-self: stretch; width: 100%; }
.fl-hero__photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  object-position: center 40%;
  border-radius: var(--fl-radius-l); box-shadow: var(--fl-shadow-soft);
}
.fl-hero__banner {
  display: block; position: relative; border-radius: var(--fl-radius-l);
  overflow: hidden; text-decoration: none; box-shadow: var(--fl-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  aspect-ratio: 3 / 2;
  background: linear-gradient(180deg, #fff 0%, var(--fl-sand) 100%);
}
.fl-hero__banner:hover { transform: translateY(-3px); box-shadow: var(--fl-shadow); }
.fl-hero__banner-img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}
.fl-hero__banner-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(21, 32, 25, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.fl-hero__banner-badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.fl-hero__banner-title {
  margin: 0;
  flex: 1 1 140px;
  min-width: 0;
  font-family: var(--fl-font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.15;
}
.fl-hero__banner-cta {
  margin: 0;
  flex: 0 0 auto;
  padding: 8px 14px !important;
  font-size: .82rem !important;
  box-shadow: none;
  pointer-events: none;
  white-space: nowrap;
}
.fl-hero--banner .fl-hero__visual { max-width: 100%; }

/* Quick picks */
.fl-picks__track {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.fl-pick {
  display: flex; flex-direction: column; gap: 12px; padding: 20px;
  border-radius: var(--fl-radius-m); background: var(--fl-white);
  transition: .22s ease;
  background-image: linear-gradient(var(--fl-white), var(--fl-white)), linear-gradient(135deg, var(--fl-green-mist), var(--fl-blush-soft));
  background-origin: border-box; background-clip: padding-box, border-box;
  border: 1px solid transparent;
}
.fl-pick:hover { transform: translateY(-3px); box-shadow: var(--fl-shadow-soft); }
.fl-pick__icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--fl-green-mist);
  color: var(--fl-green); display: grid; place-items: center;
}
.fl-pick__icon svg { width: 22px; height: 22px; }
.fl-pick__title { font-weight: 700; font-size: .96rem; color: var(--fl-ink); }
.fl-pick__desc { font-size: .82rem; color: var(--fl-muted); line-height: 1.45; }

/* Category magazine grid */
.fl-cats {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 14px;
}
.fl-cat { position: relative; border-radius: var(--fl-radius-m); overflow: hidden; display: block; min-height: 120px; }
.fl-cat--hero { grid-column: span 6; grid-row: span 3; }
.fl-cat--md { grid-column: span 3; grid-row: span 2; }
.fl-cat--sm { grid-column: span 3; grid-row: span 2; }
.fl-cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fl-cat:hover .fl-cat__img { transform: scale(1.05); }
.fl-cat__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,61,50,.78), rgba(18,61,50,.08) 58%); }
.fl-cat__fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--fl-green-mist), var(--fl-blush-soft)); }
.fl-cat__label { position: absolute; left: 20px; bottom: 20px; z-index: 2; color: #fff; font-weight: 700; font-size: clamp(1rem, 1.4vw, 1.3rem); }
.fl-cat__label span { display: block; font-weight: 500; font-size: .82rem; opacity: .92; margin-top: 4px; }

/* Product card */
.fl-card { list-style: none; height: 100%; }
.fl-card__box {
  height: 100%; display: flex; flex-direction: column;
  background: var(--fl-white); border-radius: var(--fl-radius-m);
  border: 1px solid var(--fl-line); overflow: hidden; transition: .22s;
}
.fl-card:hover .fl-card__box { box-shadow: var(--fl-shadow-soft); border-color: #ddd4c9; transform: translateY(-2px); }
.fl-card__media { position: relative; aspect-ratio: 4/5; background: var(--fl-blush-soft); overflow: hidden; }
.fl-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fl-card:hover .fl-card__media img { transform: scale(1.04); }
.fl-card__badge {
  position: absolute; top: 14px; left: 14px; padding: 6px 11px; border-radius: 999px;
  background: var(--fl-white); font-size: .72rem; font-weight: 700; color: var(--fl-green-deep);
  box-shadow: var(--fl-shadow-soft);
}
.fl-card__overlay {
  position: absolute; inset: 0; display: none; place-items: center;
  background: rgba(21,32,25,.32); color: #fff; font-weight: 600; font-size: .9rem;
  opacity: 0; transition: .25s;
}
@media (hover: hover) and (pointer: fine) {
  .fl-card__overlay { display: grid; }
  .fl-card:hover .fl-card__overlay { opacity: 1; }
}
.fl-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fl-card__title {
  margin: 0; font-size: .98rem; font-weight: 500; line-height: 1.45;
  font-family: var(--fl-font-accent);
  letter-spacing: 0.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fl-card__title a { color: var(--fl-ink); }
.fl-card__title a:hover { color: var(--fl-green); }
.fl-card__desc {
  margin: 0; font-size: .85rem; line-height: 1.5; color: var(--fl-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fl-card__price { font-size: 1rem; font-weight: 600; color: var(--fl-ink); margin-top: auto; font-variant-numeric: tabular-nums; }
.fl-card__price .amount, .fl-card__price bdi { color: var(--fl-green-deep); }
.fl-card__price del { font-size: .86rem; font-weight: 500; color: var(--fl-muted); margin-right: 6px; }
.fl-card__price ins { text-decoration: none; }
.fl-card__btn { margin-top: auto; padding-top: 4px; }
.fl-card__btn .button, .fl-card__btn .add_to_cart_button {
  width: 100%; border-radius: var(--fl-radius-pill) !important; padding: 8px 14px !important;
  background: var(--fl-green) !important; color: #fff !important; font-weight: 500 !important;
  font-size: .84rem !important; border: 0 !important; transition: .2s !important; box-shadow: none !important;
}
.fl-card__btn .button:hover, .fl-card__btn .add_to_cart_button:hover {
  background: var(--fl-green-deep) !important; color: #fff !important;
}
.fl-card.is-loading .fl-card__btn .button { opacity: .55; pointer-events: none; }
.fl-card.is-added .fl-card__btn .button, .fl-card.is-added .fl-card__btn .add_to_cart_button {
  background: var(--fl-green-mist) !important; color: var(--fl-green-deep) !important;
}

/* Product grid */
.fl-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.fl-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.fl-chip {
  padding: 9px 18px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  border: 1px solid var(--fl-line); background: var(--fl-white); color: var(--fl-ink);
}
.fl-chip.is-active, .fl-chip:hover { background: var(--fl-green-mist); border-color: transparent; color: var(--fl-green-deep); }

/* Photo CTA */
.fl-section--photo-cta { padding-top: 0; }
.fl-photo-cta {
  border-radius: var(--fl-radius-xl);
  overflow: hidden;
  background: var(--fl-white);
  border: 1px solid var(--fl-line);
  box-shadow: var(--fl-shadow-soft);
}
.fl-photo-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  gap: 0;
  align-items: stretch;
}
.fl-photo-cta__copy {
  padding: clamp(32px, 5vw, 56px);
}
.fl-photo-cta__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--fl-green-mist);
  color: var(--fl-green-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fl-photo-cta__title {
  margin: 0 0 12px;
  font-family: var(--fl-font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--fl-ink);
}
.fl-photo-cta__text {
  margin: 0 0 20px;
  color: var(--fl-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42ch;
}
.fl-photo-cta__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.fl-photo-cta__steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--fl-muted);
}
.fl-photo-cta__steps li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fl-green-mist);
  color: var(--fl-green);
  font-size: .72rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.fl-photo-cta__aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(180deg, var(--fl-green-mist) 0%, #e8ece2 100%);
  border-left: 1px solid var(--fl-line);
}
.fl-photo-cta__upload {
  max-width: 220px;
  text-align: center;
}
.fl-photo-cta__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--fl-white);
  box-shadow: var(--fl-shadow-soft);
  display: grid;
  place-items: center;
}
.fl-photo-cta__icon svg { width: 32px; height: 32px; color: var(--fl-green); }
.fl-photo-cta__hint {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--fl-muted);
}

/* Benefits */
.fl-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fl-benefit {
  padding: clamp(28px, 3vw, 36px); border-radius: var(--fl-radius-m);
  background: var(--fl-white); border: 1px solid var(--fl-line);
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
}
.fl-benefit__icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--fl-green-mist);
  color: var(--fl-green); display: grid; place-items: center;
}
.fl-benefit__icon svg { width: 26px; height: 26px; }
.fl-benefit__title { margin: 0 0 8px; font-size: 1.08rem; font-weight: 700; }
.fl-benefit__text { margin: 0; color: var(--fl-muted); font-size: .94rem; line-height: 1.55; }

/* Stores block */
.fl-stores-block {
  border-radius: var(--fl-radius-xl); background: var(--fl-white);
  border: 1px solid var(--fl-line); padding: clamp(32px, 5vw, 48px);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center;
}
.fl-stores-block__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fl-stores-block__item {
  padding: 16px; border-radius: var(--fl-radius-s); background: var(--fl-sand); border: 1px solid var(--fl-line);
}
.fl-stores-block__item strong { display: block; margin-bottom: 6px; font-size: .95rem; }
.fl-stores-block__item span { display: block; color: var(--fl-muted); font-size: .86rem; }

/* Reviews */
.fl-reviews { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
.fl-review--main {
  padding: clamp(32px, 4vw, 44px); border-radius: var(--fl-radius-l);
  background: var(--fl-white); border: 1px solid var(--fl-line);
}
.fl-review--main .fl-review__text { font-size: 1.18rem; line-height: 1.65; margin: 18px 0; }
.fl-reviews__col { display: grid; gap: 18px; }
.fl-review--sub { padding: 22px; border-radius: var(--fl-radius-m); background: var(--fl-white); border: 1px solid var(--fl-line); }
.fl-stars { display: flex; gap: 3px; }
.fl-stars span { color: #ddd; }
.fl-stars span.is-on { color: #e5b82e; }
.fl-review__author { margin-top: 12px; font-weight: 600; font-size: .9rem; color: var(--fl-muted); }

/* Catalog */
.fl-shop { padding-block: 28px 64px; }
.fl-shop__layout { display: block; }
.fl-shop__filters {
  position: fixed; inset: auto 0 0 0; z-index: 120; max-height: 86vh;
  border-radius: var(--fl-radius-l) var(--fl-radius-l) 0 0; transform: translateY(110%); transition: .25s; overflow: auto;
  box-shadow: 0 -12px 40px rgba(0,0,0,.1);
  background: var(--fl-white); border: 1px solid var(--fl-line); padding: 22px;
}
body.fl-filters-open .fl-shop__filters { transform: translateY(0); }
.fl-shop__filters-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(42,107,88,.12);
}
.fl-shop__filters-head strong { font-size: 1rem; font-weight: 700; }
.fl-shop__toolbar {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 24px;
}
.fl-shop__title { margin: 0; font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 500; letter-spacing: 0; }
.fl-shop__count { margin: 6px 0 0; color: var(--fl-muted); font-size: .92rem; }
.fl-shop__tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.woocommerce-ordering select {
  border: 1px solid var(--fl-line); border-radius: 999px; padding: 10px 36px 10px 16px;
  background: var(--fl-white); font-size: .9rem;
}

/* PDP */
.fl-pdp { padding-block: 28px 72px; }
.fl-pdp__top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .85fr); gap: clamp(28px, 4vw, 48px); align-items: start; }
.fl-pdp__gallery {
  background: var(--fl-white); border-radius: var(--fl-radius-l);
  padding: 20px; border: 1px solid var(--fl-line);
}
.fl-pdp__gallery .woocommerce-product-gallery { opacity: 1 !important; width: 100%; }
.fl-pdp__gallery .woocommerce-product-gallery__wrapper { display: block; }
.fl-pdp__gallery .woocommerce-product-gallery__image {
  aspect-ratio: 4/5; max-height: 520px; background: var(--fl-blush-soft);
  border-radius: var(--fl-radius-m); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fl-pdp__gallery .woocommerce-product-gallery__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.fl-pdp__gallery--contain .woocommerce-product-gallery__image { aspect-ratio: 1/1; max-height: 420px; }
.fl-pdp__gallery--contain .woocommerce-product-gallery__image img {
  object-fit: contain; padding: 28px; max-height: 100%;
}

/* Product sale badge */
.fl-pdp__gallery { position: relative; }
.fl-pdp__badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 8px 16px; border-radius: var(--fl-radius-pill);
  background: var(--fl-green); color: #fff;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(47, 111, 92, .25);
}
.fl-pdp__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.fl-pdp__chip {
  padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: var(--fl-green-mist); color: var(--fl-green-deep);
}
.fl-pdp__chip:hover { background: var(--fl-green); color: #fff; }
.fl-pdp__buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.fl-pdp__buy-row form.cart { flex: 1; margin: 0 !important; }
.fl-pdp__buy-row .quantity { flex-shrink: 0; }
.fl-pdp__perk { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.fl-pdp__perk-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--fl-green-mist);
  color: var(--fl-green); display: grid; place-items: center;
}
.fl-pdp__perk-icon svg { width: 18px; height: 18px; }
.fl-pdp__buy {
  position: sticky; top: calc(var(--fl-header) + 20px);
  background: var(--fl-white); border-radius: var(--fl-radius-l);
  padding: clamp(24px, 3vw, 32px); border: 1px solid var(--fl-line);
  box-shadow: var(--fl-shadow-soft);
}
.fl-pdp__buy .product_title { margin: 0 0 14px; font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.fl-pdp__buy .price { font-size: 1.65rem; font-weight: 700; color: var(--fl-green-deep); margin-bottom: 18px; }
.fl-pdp__buy .woocommerce-product-details__short-description { color: var(--fl-muted); margin-bottom: 22px; font-size: .96rem; }
.fl-pdp__buy form.cart { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.fl-pdp__buy .quantity {
  display: inline-flex; align-items: stretch; border: 1px solid var(--fl-line); border-radius: 999px;
  overflow: hidden; background: var(--fl-sand);
}
.fl-pdp__buy .fl-qty-btn {
  width: 40px; border: 0; background: transparent; color: var(--fl-ink);
  font-size: 1.25rem; font-weight: 500; line-height: 1; cursor: pointer;
  display: grid; place-items: center; padding: 0;
}
.fl-pdp__buy .fl-qty-btn:hover { background: var(--fl-green-mist); color: var(--fl-green-deep); }
.fl-pdp__buy .quantity input.qty {
  width: 48px !important; min-height: 46px !important; padding: 0 !important;
  border: 0 !important; background: transparent !important; text-align: center; font-weight: 600;
  -moz-appearance: textfield;
}
.fl-pdp__buy .quantity input.qty::-webkit-outer-spin-button,
.fl-pdp__buy .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fl-pdp__info-links {
  margin-top: 18px; font-size: .92rem; display: flex; gap: 8px; align-items: center; color: var(--fl-muted);
}
.fl-pdp__info-links a { color: var(--fl-green-deep); text-decoration: underline; text-underline-offset: 2px; }
.fl-pdp__info-links a:hover { color: var(--fl-green); }
.fl-pdp__buy .single_add_to_cart_button {
  flex: 1; min-width: 180px; border-radius: 999px !important; padding: 15px 24px !important;
  background: var(--fl-green) !important; color: #fff !important; font-weight: 700 !important; border: 0 !important;
}
.fl-pdp__buy .single_add_to_cart_button:hover {
  background: var(--fl-green-deep) !important;
}
.fl-pdp__buy .single_add_to_cart_button.loading,
.fl-pdp__buy .single_add_to_cart_button.is-loading-pdp {
  opacity: .6; pointer-events: none;
}
.fl-pdp__buy .variations_form { width: 100%; }
.fl-pdp__buy .variations_form .variations {
  width: 100%; margin: 0 0 16px; border-collapse: separate; border-spacing: 0 10px;
}
.fl-pdp__buy .variations_form .variations th,
.fl-pdp__buy .variations_form .variations td { padding: 0; border: 0; vertical-align: middle; }
.fl-pdp__buy .variations_form .variations th { width: 34%; font-size: .9rem; font-weight: 600; text-align: left; }
.fl-pdp__buy .variations_form .variations td select {
  width: 100%; min-height: 44px; padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--fl-line); background: var(--fl-white); font-size: .95rem;
}
.fl-pdp__buy .variations_form .reset_variations {
  display: inline-block; margin-top: 4px; font-size: .86rem; color: var(--fl-muted);
}
.fl-pdp__buy .variations_form .single_variation_wrap { width: 100%; }
.fl-pdp__buy .variations_form .woocommerce-variation-price { margin-bottom: 12px; }

/* Product added notification */
.fl-pdp__added {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; margin-top: 14px;
  background: var(--fl-green-mist); border: 1px solid rgba(91, 103, 69, .2);
  border-radius: var(--fl-radius-m);
  animation: fl-slide-in .3s ease;
}
.fl-pdp__added[hidden] { display: none; }
.fl-pdp__added-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--fl-green); color: #fff;
  display: grid; place-items: center;
}
.fl-pdp__added-icon svg { width: 16px; height: 16px; }
.fl-pdp__added-text { display: flex; flex-direction: column; gap: 2px; }
.fl-pdp__added-text strong { font-size: .9rem; color: var(--fl-green-deep); }
.fl-pdp__added-link {
  font-size: .84rem; color: var(--fl-green); text-decoration: none; font-weight: 500;
}
.fl-pdp__added-link:hover { text-decoration: underline; }
@keyframes fl-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fl-pdp__perks { margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--fl-line); display: grid; gap: 14px; list-style: none; }
.fl-pdp__perks li { font-size: .9rem; color: var(--fl-muted); margin: 0; padding: 0; }
.fl-pdp__perks li::before { display: none; }
.fl-pdp__sections { margin-top: 56px; display: grid; gap: 20px; }
.fl-pdp__panel {
  background: var(--fl-white); border-radius: var(--fl-radius-m);
  padding: 28px; border: 1px solid var(--fl-line);
}
.fl-pdp__panel h2 { margin: 0 0 16px; font-size: 1.15rem; font-weight: 700; }

/* Cart */
.fl-cart { padding-block: 36px 80px; }
.fl-cart__layout { display: grid; grid-template-columns: minmax(0, 1.85fr) minmax(300px, 1fr); gap: var(--fl-gap-lg); align-items: start; }
.fl-cart__title { margin: 0 0 24px; font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 700; }
.fl-cart__items { display: grid; gap: 14px; }
.fl-cart-item {
  display: grid; grid-template-columns: 96px minmax(0, 1fr) 120px auto 36px;
  gap: 18px; align-items: center;
  padding: 18px; background: var(--fl-white); border-radius: var(--fl-radius-m);
  border: 1px solid var(--fl-line);
}
.fl-cart-item__thumb { width: 96px; flex-shrink: 0; }
.fl-cart-item__thumb img, .fl-cart-item__thumb a img {
  width: 96px !important; height: 96px !important; max-width: 96px !important;
  object-fit: cover; border-radius: var(--fl-radius-s);
}
.fl-cart.is-updating { opacity: .65; pointer-events: none; transition: opacity .2s; }
.fl-cart-item .quantity {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--fl-line); border-radius: 999px; overflow: hidden;
  background: var(--fl-sand); max-width: 140px;
}
.fl-cart-item .fl-qty-btn {
  width: 36px; border: 0; background: transparent; color: var(--fl-ink);
  font-size: 1.15rem; font-weight: 500; line-height: 1; cursor: pointer;
  display: grid; place-items: center; padding: 0;
}
.fl-cart-item .fl-qty-btn:hover { background: var(--fl-green-mist); color: var(--fl-green-deep); }
.fl-cart-item .quantity input.qty {
  width: 40px !important; min-height: 38px !important; padding: 0 !important;
  border: 0 !important; background: transparent !important; text-align: center;
  font-weight: 600; -moz-appearance: textfield; font-size: .95rem;
}
.fl-cart-item .quantity input.qty::-webkit-outer-spin-button,
.fl-cart-item .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fl-cart-item__name { margin: 0 0 6px; font-size: 1rem; font-weight: 600; }
.fl-cart-item__name a { color: var(--fl-ink); }
.fl-cart-item__meta { color: var(--fl-muted); font-size: .9rem; }
.fl-cart-item__subtotal { font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.fl-cart-item__remove a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--fl-sand); color: var(--fl-muted); font-size: 1.2rem; }
.fl-cart-item__remove a:hover { background: var(--fl-blush-soft); color: #a44; }
.fl-cart-summary {
  position: sticky; top: calc(var(--fl-header) + 20px);
  background: var(--fl-white); border-radius: var(--fl-radius-l);
  padding: 28px; border: 1px solid var(--fl-line); box-shadow: var(--fl-shadow-soft);
}
.fl-cart-summary h2 { margin: 0 0 20px; font-size: 1.2rem; font-weight: 700; }
.fl-cart-summary .cart_totals { width: 100%; }
.fl-cart-summary table { width: 100%; border-collapse: collapse; }
.fl-cart-summary th, .fl-cart-summary td { padding: 10px 0; border-bottom: 1px solid var(--fl-line); font-size: .94rem; }
.fl-cart-summary .order-total th, .fl-cart-summary .order-total td {
  font-size: 1.15rem; font-weight: 700; border-bottom: 0; padding: 4px 0 0;
}
.fl-cart-summary .fl-cart-summary__delivery-note {
  margin: 12px 0 0; padding-top: 12px; border-top: 1px dashed var(--fl-line);
  font-size: .84rem; color: var(--fl-muted); line-height: 1.45;
}
.fl-cart-summary .wc-proceed-to-checkout { margin-top: 16px; }
.fl-cart-summary .wc-proceed-to-checkout .woocommerce-pay-buttons { display: none; }
.fl-cart-summary .checkout-button,
.fl-cart-summary .wc-proceed-to-checkout .button,
.fl-cart-summary .wc-proceed-to-checkout a.button,
.fl-cart-summary .wc-forward.button,
.fl-cart-summary .fl-cart-checkout-btn {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-height: 48px !important;
  height: 48px !important;
  max-height: 48px !important;
  text-align: center;
  border-radius: 999px !important;
  padding: 0 20px !important;
  margin: 0 !important;
  background: var(--fl-green) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  border: 0 !important;
  text-decoration: none !important;
  font-size: .94rem !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  white-space: nowrap;
}
.fl-cart-summary .checkout-button::before,
.fl-cart-summary .checkout-button::after,
.fl-cart-summary .fl-cart-checkout-btn::before,
.fl-cart-summary .fl-cart-checkout-btn::after {
  content: none !important;
  display: none !important;
}
.fl-cart-summary .checkout-button:hover,
.fl-cart-summary .wc-proceed-to-checkout .button:hover,
.fl-cart-summary .fl-cart-checkout-btn:hover {
  background: var(--fl-green-dark, #4a5c2e) !important;
  color: #fff !important;
}
.fl-cart-summary table th { text-align: left; font-weight: 600; width: 45%; }
.fl-cart-summary table td { text-align: right; }
.fl-cart-summary__links { margin-top: 18px; display: grid; gap: 10px; text-align: center; font-size: .9rem; }
.fl-cart-empty {
  text-align: center; padding: clamp(48px, 8vw, 96px) 24px;
  background: var(--fl-white); border-radius: var(--fl-radius-xl); border: 1px solid var(--fl-line);
  max-width: 560px; margin: 48px auto;
}
.fl-cart-empty__icon { width: 72px; height: 72px; margin: 0 auto 20px; color: var(--fl-green); opacity: .45; }
.fl-cart-empty h2 { margin: 0 0 12px; font-size: 1.5rem; }
.fl-cart-empty p { margin: 0 0 28px; color: var(--fl-muted); }
.fl-cart-empty__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer */
.fl-footer { margin-top: auto; }
.fl-footer__main { padding: clamp(40px, 5vw, 56px) 0 28px; border-top: 1px solid var(--fl-line); background: var(--fl-white); }
.fl-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.fl-footer__col-brand { max-width: 280px; }
.fl-footer__brand { margin-bottom: 8px; font-weight: 700; font-size: 1.05rem; color: var(--fl-ink); }
.fl-footer__desc { margin: 0 0 14px; color: var(--fl-muted); font-size: .88rem; line-height: 1.5; }
.fl-footer__contacts { display: grid; gap: 6px; }
.fl-footer__contact-item { color: var(--fl-ink); font-size: .9rem; font-weight: 500; }
.fl-footer__contact-item:hover { color: var(--fl-green); }
.fl-footer__title { margin: 0 0 12px; font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--fl-muted); }
.fl-footer__links { display: grid; gap: 8px; }
.fl-footer__links a { color: var(--fl-ink); font-size: .88rem; }
.fl-footer__links a:hover { color: var(--fl-green); }
.fl-footer__stores { gap: 6px; }
.fl-footer__store { color: var(--fl-muted); font-size: .82rem; line-height: 1.45; }
.fl-footer__bar { padding: 12px 0; background: var(--fl-green-deep); color: rgba(255,255,255,.75); font-size: .82rem; }
.fl-footer__bar .fl-wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fl-footer__bar a { color: #fff; }
.fl-footer__bar a:hover { color: rgba(255,255,255,.9); }
.fl-mnav {
  --fl-mnav-h: 72px;
  display: none;
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border: 1px solid var(--fl-line); border-radius: 22px;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom)); box-shadow: var(--fl-shadow-soft);
}
.fl-mnav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; min-height: 48px; padding: 8px 4px;
  font-size: .72rem; font-weight: 600; color: var(--fl-muted); position: relative;
}
.fl-mnav a svg { width: 22px; height: 22px; stroke-width: 1.75; }
.fl-mnav__max-icon { height: 22px; width: auto; }
.fl-mnav a:hover { color: var(--fl-green); }
.fl-mnav__badge {
  position: absolute; top: 2px; right: 18%; min-width: 16px; height: 16px; border-radius: 999px;
  background: var(--fl-green); color: #fff; font-size: .6rem; font-weight: 700; display: grid; place-items: center;
}
.fl-mnav__badge[hidden] { display: none !important; }
body.fl-no-mnav .fl-mnav { display: none !important; }

/* Checkout */
.fl-checkout { padding-block: 36px 80px; }
.fl-checkout__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 28px; align-items: start; }
.fl-checkout__block {
  background: var(--fl-white); border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-m); padding: 22px; margin-bottom: 16px;
}
.fl-checkout__block-title { margin: 0 0 16px; font-size: 1.05rem; font-weight: 700; }
.fl-checkout__fields { display: grid; gap: 14px; }
.fl-checkout__fields .form-row { margin: 0; padding: 0; }
.fl-checkout__summary { position: sticky; top: calc(var(--fl-header) + 20px); }
.fl-checkout__summary > .fl-checkout__block-title { margin-bottom: 12px; }
.fl-checkout__summary .fl-checkout__block {
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #fff 0%, var(--fl-sand) 140%);
  border-color: color-mix(in srgb, var(--fl-green) 18%, var(--fl-line));
  box-shadow: var(--fl-shadow-soft);
  overflow: visible;
}
.fl-checkout__summary .woocommerce-checkout-review-order-table,
.fl-checkout-review {
  width: 100%; border-collapse: collapse; border: 0;
}
.fl-checkout-review thead th {
  padding: 0 0 12px; border: 0;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--fl-muted); font-weight: 600; text-align: left;
}
.fl-checkout-review tbody td {
  padding: 0; border: 0; vertical-align: top;
}
.fl-checkout-review__item + .fl-checkout-review__item td {
  padding-top: 12px;
}
.fl-checkout-review tbody,
.fl-checkout-review tbody td,
.fl-checkout-review__item {
  overflow: visible;
}
.fl-checkout-review__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--fl-line);
  overflow: visible;
}
.fl-checkout-review__thumb {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 12px;
  overflow: visible;
  background: transparent;
  flex-shrink: 0;
}
.fl-checkout-review__thumb img,
.fl-checkout-review__thumb-img {
  width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; border-radius: 12px;
}
.fl-checkout-review__thumb-fallback {
  display: block; width: 100%; height: 100%; border-radius: 12px;
  background: linear-gradient(135deg, var(--fl-green-mist), var(--fl-sand));
}
.fl-checkout-review__qty {
  position: absolute; top: -7px; right: -7px; z-index: 2;
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px;
  background: var(--fl-green); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px #fff;
  line-height: 1;
}
.fl-checkout-review__meta { min-width: 0; }
.fl-checkout-review__name {
  display: block;
  font-size: .92rem; font-weight: 600; line-height: 1.35;
  color: var(--fl-ink);
}
.fl-checkout-review__meta .variation {
  margin: 4px 0 0; font-size: .8rem; color: var(--fl-muted);
}
.fl-checkout-review__price {
  font-size: .95rem; font-weight: 700;
  color: var(--fl-green-deep); white-space: nowrap; text-align: right;
}
.fl-checkout-review tfoot th,
.fl-checkout-review tfoot td {
  padding: 12px 4px 0; border: 0;
  font-size: .92rem; vertical-align: middle;
}
.fl-checkout-review tfoot th { font-weight: 600; color: var(--fl-muted); text-align: left; }
.fl-checkout-review tfoot td { text-align: right; font-weight: 600; color: var(--fl-ink); }
.fl-checkout-review .woocommerce-shipping-totals th,
.fl-checkout-review .woocommerce-shipping-totals td {
  padding-top: 14px;
  border-top: 1px dashed var(--fl-line);
}
.fl-checkout-review .woocommerce-shipping-totals ul {
  list-style: none; margin: 0; padding: 0;
}
.fl-checkout-review .woocommerce-shipping-totals li {
  list-style: none; margin: 0; padding: 0;
}
.fl-checkout-review .order-total th,
.fl-checkout-review .order-total td {
  padding-top: 14px;
  border-top: 1px solid var(--fl-line);
  font-size: 1.12rem; font-weight: 800;
  color: var(--fl-ink);
}
.fl-checkout-review .order-total td {
  color: var(--fl-green-deep);
}
.fl-checkout-review .order-total strong { font-weight: 800; }
.fl-checkout-review .cart-discount td,
.fl-checkout-review .cart-discount th { color: #a44; }
@media (max-width: 380px) {
  .fl-checkout-review__row {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .fl-checkout-review__price {
    grid-column: 2; text-align: left; margin-top: -4px;
  }
  .fl-checkout-review__thumb { width: 48px; height: 48px; }
}
.fl-checkout__delivery-slot { margin-top: -4px; }
.fl-checkout__delivery-slot:empty::after {
  content: "Выберите способ получения, чтобы указать дату и время.";
  display: block; color: var(--fl-muted); font-size: .88rem; line-height: 1.45;
}
.fl-checkout__delivery-slot:not(:empty)::after { display: none; }
.fl-checkout__payment-slot .place-order { margin-top: 16px; }
.fl-checkout__payment-slot #place_order {
  width: 100%; border-radius: 999px !important; padding: 12px 20px !important;
  background: var(--fl-green) !important; color: #fff !important; font-weight: 600 !important; border: 0 !important;
}
.fl-delivery-none .cv-checkout-address-block,
.fl-pickup-selected .cv-checkout-address-block,
.cv-pickup-selected .cv-checkout-address-block { display: none !important; }
body:not(.fl-pickup-selected):not(.cv-pickup-selected) .cv-checkout-pickup-block { display: none !important; }
.fl-delivery-none .fl-checkout__block--delivery,
.fl-pickup-selected .fl-checkout__block--delivery,
.cv-pickup-selected .fl-checkout__block--delivery { display: none !important; }
.fl-checkout-same-recipient {
  display: flex; align-items: center; gap: 10px; margin: 0 0 14px;
  font-weight: 600; cursor: pointer; user-select: none;
}
.fl-checkout-same-recipient input[type="checkbox"] {
  width: 18px; height: 18px; margin: 0; accent-color: var(--fl-green); flex-shrink: 0;
}
.cv-checkout-recipient-fields-wrap[hidden] { display: none !important; }
/* Keep recipient fields visible even if Saphali tried to hide them by shipping method. */
.cv-checkout-recipient-fields-wrap:not([hidden]) #billing_new_fild5_field,
.cv-checkout-recipient-fields-wrap:not([hidden]) #billing_new_fild4_field {
  display: block !important;
}

.fl-checkout-resume {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: var(--fl-radius-m);
  border: 1px solid #e6cf8a;
  background: linear-gradient(135deg, #fff8e6 0%, #fff3cd 100%);
  box-shadow: var(--fl-shadow-soft);
}
.fl-checkout-resume__icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: #f0c14b; color: #3d2e00;
  font-weight: 800; font-size: 1.1rem; line-height: 1;
}
.fl-checkout-resume__title {
  margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #3d2e00;
}
.fl-checkout-resume__text {
  margin: 0; color: #5c4a1f; font-size: .94rem; line-height: 1.45;
}
.fl-checkout-resume__actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
}
@media (max-width: 720px) {
  .fl-checkout-resume { grid-template-columns: 1fr; }
  .fl-checkout-resume__icon { width: 32px; height: 32px; }
  .fl-checkout-resume__actions .fl-btn { flex: 1 1 auto; text-align: center; }
}
.cv-checkout-pickup-block #billing_new_fild11_field {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0);
}
.fl-checkout-pickup-cards {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 4px;
}
.fl-checkout-pickup-card {
  text-align: left; cursor: pointer; border: 1px solid var(--fl-line);
  background: var(--fl-sand); border-radius: var(--fl-radius-m); padding: 14px 16px;
  display: grid; gap: 4px; color: inherit; font: inherit;
}
.fl-checkout-pickup-card strong { font-size: .95rem; font-weight: 600; }
.fl-checkout-pickup-card span { color: var(--fl-muted); font-size: .86rem; line-height: 1.4; }
.fl-checkout-pickup-card:hover { border-color: var(--fl-green); }
.fl-checkout-pickup-card.is-active {
  border-color: var(--fl-green); background: var(--fl-green-mist);
  box-shadow: inset 0 0 0 1px var(--fl-green);
}
@media (max-width: 720px) {
  .fl-checkout-pickup-cards { grid-template-columns: 1fr; }
}

/* Thank you / order received */
.fl-thankyou {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.fl-thankyou__hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: var(--fl-radius-m);
  border: 1px solid transparent;
  box-shadow: var(--fl-shadow-soft);
}
.fl-thankyou__hero--success {
  background: linear-gradient(135deg, #edf7f0 0%, #f7fbf8 100%);
  border-color: #b7dfc4;
}
.fl-thankyou__hero--warn {
  background: linear-gradient(135deg, #fff8e6 0%, #fffdf5 100%);
  border-color: #e6cf8a;
}
.fl-thankyou__hero--error {
  background: linear-gradient(135deg, #fff5f5 0%, #fffafa 100%);
  border-color: #f1b0b7;
}
.fl-thankyou__hero-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 800; line-height: 1;
}
.fl-thankyou__hero--success .fl-thankyou__hero-icon { background: #b7dfc4; color: #14532d; }
.fl-thankyou__hero--warn .fl-thankyou__hero-icon { background: #f0c14b; color: #3d2e00; }
.fl-thankyou__hero--error .fl-thankyou__hero-icon { background: #f1b0b7; color: #6b1010; }
.fl-thankyou__hero-title {
  margin: 0 0 6px !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--fl-ink) !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
.fl-thankyou__hero-text {
  margin: 0;
  color: var(--fl-muted);
  font-size: .98rem;
  line-height: 1.45;
}
.fl-thankyou__hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 0;
}
.fl-thankyou__overview {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.fl-thankyou__overview::before,
.fl-thankyou__overview::after { display: none !important; }
.fl-thankyou__overview li {
  list-style: none !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1px solid var(--fl-line) !important;
  border-radius: 14px;
  background: #fff;
  float: none !important;
  width: auto !important;
}
.fl-thankyou__label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--fl-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.fl-thankyou__overview strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fl-ink);
  line-height: 1.3;
}
.fl-thankyou__overview .total strong { color: var(--fl-green-deep); font-size: 1.1rem; }
.fl-thankyou__pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  vertical-align: middle;
}
.fl-thankyou__pill--ok { background: #d1e7dd; color: #0f5132; }
.fl-thankyou__pill--warn { background: #fff3cd; color: #664d03; }
.fl-thankyou__pay-cta { display: flex; justify-content: flex-start; }
.fl-thankyou__details {
  display: grid;
  gap: 16px;
}
.fl-thankyou .woocommerce-order-details,
.fl-thankyou .woocommerce-customer-details {
  background: #fff;
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-m);
  padding: 20px 22px;
  box-shadow: var(--fl-shadow-soft);
}
.fl-thankyou .woocommerce-order-details__title,
.fl-thankyou .woocommerce-column__title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 700;
}
.fl-thankyou .shop_table.order_details {
  width: 100%;
  border: 0;
  border-collapse: collapse;
}
.fl-thankyou .shop_table.order_details thead { display: none; }
.fl-thankyou .shop_table.order_details th,
.fl-thankyou .shop_table.order_details td {
  border: 0;
  padding: 0;
  background: transparent;
}
.fl-thankyou .shop_table.order_details tbody tr + tr td { padding-top: 12px; }
.fl-thankyou-item__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--fl-line);
  background: var(--fl-sand);
  overflow: visible;
}
.fl-thankyou-item__thumb {
  position: relative;
  width: 56px; height: 56px;
  overflow: visible;
}
.fl-thankyou-item__thumb img,
.fl-thankyou-item__img {
  width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; border-radius: 12px;
}
.fl-thankyou-item__thumb-fallback {
  display: block; width: 100%; height: 100%; border-radius: 12px;
  background: linear-gradient(135deg, var(--fl-green-mist), var(--fl-sand));
}
.fl-thankyou-item__qty {
  position: absolute; top: -7px; right: -7px; z-index: 2;
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px;
  background: var(--fl-green); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px #fff;
}
.fl-thankyou-item__name {
  display: block;
  font-size: .95rem; font-weight: 600; line-height: 1.35;
}
.fl-thankyou-item__name a { color: var(--fl-ink); text-decoration: none; }
.fl-thankyou-item__name a:hover { color: var(--fl-green); }
.fl-thankyou-item__price {
  font-weight: 700; color: var(--fl-green-deep); white-space: nowrap;
}
.fl-thankyou .shop_table.order_details tfoot th,
.fl-thankyou .shop_table.order_details tfoot td {
  padding: 12px 4px 0;
  border-top: 0;
  font-size: .95rem;
}
.fl-thankyou .shop_table.order_details tfoot tr:first-child th,
.fl-thankyou .shop_table.order_details tfoot tr:first-child td {
  padding-top: 16px;
  border-top: 1px dashed var(--fl-line);
}
.fl-thankyou .shop_table.order_details tfoot th {
  text-align: left; font-weight: 600; color: var(--fl-muted);
}
.fl-thankyou .shop_table.order_details tfoot td {
  text-align: right; font-weight: 700;
}
.fl-thankyou .shop_table.order_details tfoot tr.order-total th,
.fl-thankyou .shop_table.order_details tfoot tr.order-total td {
  border-top: 1px solid var(--fl-line);
  padding-top: 14px;
  font-size: 1.1rem;
  color: var(--fl-ink);
}
.fl-thankyou .shop_table.order_details tfoot tr.order-total td { color: var(--fl-green-deep); }
.fl-thankyou .woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.55;
  color: var(--fl-ink);
}
.fl-thankyou .woocommerce-customer-details--phone,
.fl-thankyou .woocommerce-customer-details--email {
  margin: 6px 0 0;
  color: var(--fl-muted);
}
body.woocommerce-order-received .fl-wc-content > .woocommerce { max-width: none; }
@media (max-width: 820px) {
  .fl-thankyou__overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .fl-thankyou__hero { grid-template-columns: 1fr; }
  .fl-thankyou__overview { grid-template-columns: 1fr; }
  .fl-thankyou-item__row { grid-template-columns: 48px minmax(0, 1fr); }
  .fl-thankyou-item__price { grid-column: 2; text-align: left; }
}
#coderockz_woo_delivery_setting_wrapper { margin: 0; }
#coderockz-woo-delivery-public-delivery-details h3 { display: none; }

/* Gallery */
.woocommerce div.product div.images .flex-control-thumbs,
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important; flex-wrap: wrap; gap: 10px; list-style: none !important;
  padding: 16px 0 0 !important; margin: 0 !important;
}
.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce-product-gallery .flex-control-thumbs li {
  width: 76px !important; list-style: none !important; margin: 0 !important; float: none !important;
}
.woocommerce-product-gallery__image img { border-radius: var(--fl-radius-s); }
.woocommerce-product-gallery__trigger {
  top: 12px !important; right: 12px !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid var(--fl-line) !important;
  box-shadow: var(--fl-shadow-soft);
  z-index: 5;
}
@media (min-width: 1101px) {
  .woocommerce-product-gallery__trigger { display: none; }
}

/* Pagination & filters compat */
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-pagination ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 36px 0 0; padding: 0; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { list-style: none; margin: 0; border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid; place-items: center; min-width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--fl-line); background: var(--fl-white); font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--fl-green); border-color: var(--fl-green); color: #fff; }
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--fl-green); color: var(--fl-green); }
.fl-oneclick-modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 20px; }
.fl-oneclick-modal.is-active { display: grid; }
.fl-oneclick-modal__bg { position: absolute; inset: 0; background: rgba(21,32,25,.4); }
.fl-oneclick-modal__box { position: relative; background: #fff; border-radius: var(--fl-radius-m); padding: 28px; width: min(92vw, 480px); max-height: 90vh; overflow: auto; box-shadow: var(--fl-shadow); }

.fl-info-modal { position: fixed; inset: 0; z-index: 210; display: none; place-items: center; padding: 16px; }
.fl-info-modal.is-active { display: grid; }
.fl-info-modal__bg { position: absolute; inset: 0; background: rgba(21,32,25,.45); }
.fl-info-modal__box {
  position: relative; background: #fff; border-radius: var(--fl-radius-m);
  padding: 28px 28px 20px; width: min(94vw, 720px); max-height: 90vh;
  overflow: auto; box-shadow: var(--fl-shadow);
}
.fl-info-modal__close {
  position: absolute; top: 12px; right: 14px; width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: var(--fl-sand); color: var(--fl-ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.fl-info-modal__close:hover { background: var(--fl-green-mist); color: var(--fl-green-deep); }
.fl-info-modal__title {
  margin: 0 36px 8px 0; font-family: var(--fl-font-display); font-weight: 600; font-size: 1.5rem;
}
.fl-info-modal__lead { margin: 0 0 18px; color: var(--fl-muted); line-height: 1.45; }
.fl-info-modal__body .fl-page__section { margin-top: 20px; }
.fl-info-modal__body .fl-page__section-title { font-size: 1.1rem; margin: 0 0 12px; }
.fl-info-modal__body .fl-page__card { margin: 0; padding: 0; border: 0; box-shadow: none; background: transparent; }
.fl-info-modal__body .fl-page__card h2 { font-size: 1.1rem; margin: 0 0 10px; }
.fl-info-modal__body .fl-page__card h3 { font-size: 1rem; margin: 18px 0 6px; }
.fl-info-modal__more { margin: 20px 0 0; padding-top: 14px; border-top: 1px solid var(--fl-line); font-size: .9rem; }
.fl-info-modal__more a { color: var(--fl-muted); }

/* Sticky PDP buy bar (mobile) */
.fl-pdp-sticky {
  display: none;
  position: fixed; left: 12px; right: 12px; z-index: 95;
  bottom: calc(14px + var(--fl-mnav-h, 72px) + env(safe-area-inset-bottom));
  grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border: 1px solid var(--fl-line); border-radius: 18px;
  box-shadow: 0 12px 32px rgba(21, 32, 25, .14);
}
.fl-pdp-sticky.is-visible { display: grid; }
.fl-pdp-sticky[hidden] { display: none !important; }
.fl-pdp-sticky__price { font-size: 1.05rem; font-weight: 700; color: var(--fl-green-deep); line-height: 1.2; min-width: 0; }
.fl-pdp-sticky__price del { opacity: .55; font-size: .85em; margin-right: 6px; }
.fl-pdp-sticky__btn { min-height: 44px; padding-inline: 18px; white-space: nowrap; }
body.fl-no-mnav .fl-pdp-sticky { bottom: calc(14px + env(safe-area-inset-bottom)); }

.fl-filters-backdrop {
  display: none; position: fixed; inset: 0; z-index: 110;
  border: 0; padding: 0; margin: 0; cursor: pointer;
  background: rgba(44, 46, 40, .28);
}
body.fl-filters-open .fl-filters-backdrop { display: block; }
.fl-shop__filters-foot { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .fl-header__nav { display: none; }
  .fl-header__top { border-bottom: 0; }
  .fl-mnav { display: grid; }
  body.has-mobile-bar:not(.fl-no-mnav) { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .fl-header__logo { padding: 6px 12px 6px 10px; border-radius: 14px; }
  .fl-header--pill .fl-header__logo { padding: 6px 12px 6px 10px; }
  .fl-header__logo img { height: 48px; max-width: 190px; }
  .fl-header--clean .fl-header__logo img { height: 50px; }
  .fl-hide-mobile { display: none !important; }
  .fl-hide-desktop { display: revert !important; }
  .fl-icon-btn,
  .fl-header__cart {
    min-width: 44px; min-height: 44px; width: 44px; height: 44px;
  }
  .fl-hero__grid { grid-template-columns: 1fr; }
  .fl-hero__visual { max-width: 100%; margin-inline: 0; justify-self: stretch; }
  .fl-hero__banner-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fl-hero__banner-cta { width: 100%; text-align: center; }
  .fl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fl-cats { grid-template-columns: repeat(6, 1fr); }
  .fl-cat--hero { grid-column: span 6; grid-row: span 2; }
  .fl-cat--md, .fl-cat--sm { grid-column: span 3; grid-row: span 2; }
  .fl-shop__layout { grid-template-columns: 1fr; }
  body.fl-filters-open .fl-shop__filters { transform: translateY(0); }
  .fl-shop__filters-foot {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 14px;
  }
  .fl-shop__filters-open { min-height: 44px; padding: 10px 16px; font-size: .9rem; }
  .fl-pdp__top { grid-template-columns: 1fr; }
  .fl-pdp__buy { position: static; }
  .fl-cart__layout { grid-template-columns: 1fr; }
  .fl-cart-summary { position: static; }
  .fl-checkout__summary { position: static; }
  .fl-photo-cta__inner { grid-template-columns: 1fr; }
  .fl-photo-cta__aside { border-left: 0; border-top: 1px solid var(--fl-line); }
  .fl-stores-block { grid-template-columns: 1fr; }
  .fl-reviews { grid-template-columns: 1fr; }
  .fl-checkout__grid { grid-template-columns: 1fr; }
  .fl-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .fl-price-filter input[type="number"],
  .fl-shop-orderby { font-size: 16px; }
}

@media (max-width: 768px) {
  .fl-pdp__top { grid-template-columns: 1fr; gap: 20px; }
  .fl-pdp__gallery { padding: 12px; }
  .fl-pdp__gallery .woocommerce-product-gallery__image { max-height: 360px; }
  .fl-pdp__buy {
    padding: 16px; border: 1px solid var(--fl-line); border-radius: var(--fl-radius-m);
    background: var(--fl-white);
  }
  .fl-pdp__buy .product_title { font-size: 1.3rem; }
  .fl-pdp__buy .price { font-size: 1.3rem; }
  .fl-pdp__buy form.cart { flex-direction: column; align-items: stretch; }
  .fl-pdp__buy form.cart { width: 100%; }
  .fl-pdp__buy .quantity { flex-shrink: 0; }
  .fl-pdp__buy .single_add_to_cart_button { width: 100%; min-width: 0; }
  .fl-pdp__perks { gap: 10px; }
  .fl-pdp__perks li { font-size: .84rem; }
  .fl-pdp__sections { margin-top: 32px; }
  .fl-pdp__sections .woocommerce-tabs { padding: 16px; }
  .woocommerce div.product div.images .flex-control-thumbs,
  .woocommerce-product-gallery .flex-control-thumbs {
    flex-wrap: nowrap !important; overflow-x: auto; padding-bottom: 8px !important;
    scrollbar-width: none; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch;
  }
  .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar { display: none; }
  .fl-picks__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 8px; }
  .fl-pick { flex: 0 0 74%; scroll-snap-align: start; }
  .fl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fl-benefits, .fl-stores-block__list { grid-template-columns: 1fr; }
  .fl-cart-item { grid-template-columns: 80px 1fr; grid-template-areas: "thumb info" "thumb qty" "thumb sub" "thumb remove"; gap: 12px; }
  .fl-cart-item__thumb, .fl-cart-item__thumb img, .fl-cart-item__thumb a img { width: 80px !important; height: 80px !important; max-width: 80px !important; }
  .fl-cart-item__thumb { grid-area: thumb; }
  .fl-cart-item__info { grid-area: info; }
  .fl-cart-item__qty { grid-area: qty; }
  .fl-cart-item__subtotal { grid-area: sub; font-size: .95rem; }
  .fl-cart-item__remove { grid-area: remove; justify-self: start; }
  .fl-contacts__layout { grid-template-columns: 1fr; }
  .fl-contacts__map,
  .fl-contacts__map-fallback { position: static; height: min(52vh, 420px); }
  .fl-contacts__connect { grid-template-columns: 1fr; }
  .fl-zones { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fl-pickup-grid { grid-template-columns: 1fr; }
  .fl-search-pop__form { border-radius: 18px; flex-wrap: wrap; padding: 12px; }
  .fl-search-pop__input { width: 100%; padding: 10px 4px; }
  .fl-search-pop__submit { width: 100%; }
  .fl-search-pop__panel { border-radius: 16px; }
  .fl-search-live__product { grid-template-columns: 48px minmax(0, 1fr); }
  .fl-search-live__price { grid-column: 2; justify-self: start; margin-top: -2px; }

  /* Minicart as bottom sheet */
  .fl-header__cart-wrap { position: static; }
  .fl-minicart {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    width: 100%; max-height: 85vh; max-width: none;
    border-radius: 20px 20px 0 0; border: 0; border-top: 1px solid var(--fl-line);
    z-index: 160; overflow: auto;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -12px 40px rgba(21, 32, 25, .18);
  }
  body.fl-minicart-open::before {
    content: ""; position: fixed; inset: 0; z-index: 155;
    background: rgba(44, 46, 40, .32);
  }
  body.fl-minicart-open { overflow: hidden; }
  .fl-minicart__qty-btn,
  .fl-minicart__remove {
    min-width: 44px; min-height: 44px; width: 44px; height: 44px;
  }
  .fl-minicart__qty-btn svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .fl-footer__grid { grid-template-columns: 1fr; }
  .fl-hero__chip--a { left: 0; }
  .fl-zones { grid-template-columns: 1fr; }
}

body.fl-menu-open, body.fl-filters-open, body.fl-modal-open, body.fl-search-open, body.fl-minicart-open { overflow: hidden; }
.fl-pdp__sections .woocommerce-tabs { background: var(--fl-white); border: 1px solid var(--fl-line); border-radius: var(--fl-radius-m); padding: 28px; }
.fl-pdp__sections .woocommerce-tabs ul.tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none;
  border-bottom: 1px solid var(--fl-line); padding-bottom: 16px;
}
.fl-pdp__sections .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; background: none; border: 0; }
.fl-pdp__sections .woocommerce-tabs ul.tabs li a {
  display: block; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  color: var(--fl-muted); background: var(--fl-sand);
}
.fl-pdp__sections .woocommerce-tabs ul.tabs li.active a,
.fl-pdp__sections .woocommerce-tabs ul.tabs li a:hover {
  background: var(--fl-green-mist); color: var(--fl-green-deep);
}
.fl-pdp__sections .woocommerce-Tabs-panel { color: var(--fl-muted); line-height: 1.7; }
.fl-pdp__sections .woocommerce-Tabs-panel h2 { display: none; }
.fl-pdp__panel .fl-grid { margin-top: 8px; }
.fl-pdp__panel .fl-card__media { aspect-ratio: 4/5; }
/* Breadcrumbs */
.fl-breadcrumbs { margin-bottom: 20px; }
.fl-breadcrumbs__list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
  font-size: .85rem; color: var(--fl-muted);
}
.fl-breadcrumbs__item + .fl-breadcrumbs__item::before {
  content: '/'; margin-right: 6px; color: var(--fl-line);
}
.fl-breadcrumbs__item a { color: var(--fl-muted); text-decoration: none; transition: color .2s; }
.fl-breadcrumbs__item a:hover { color: var(--fl-green); }
.fl-breadcrumbs__item--current span { color: var(--fl-ink); font-weight: 500; }

/* Filters UI */
.fl-filters .cv-filter-widget--accordion { border-bottom: 1px solid rgba(42,107,88,.12); padding-bottom: 14px; margin-bottom: 14px; }
.fl-filters .cv-filter-widget--accordion:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.fl-filters .cv-filter-widget__toggle {
  width: 100%; border: 0; background: transparent; padding: 8px 28px 8px 0;
  font-weight: 700; font-size: .92rem; cursor: pointer; text-align: left; font: inherit;
  position: relative; color: var(--fl-ink);
}
.fl-filters .cv-filter-widget__toggle::after {
  content: "−"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--fl-muted); font-size: 1.1rem;
}
.fl-filters .cv-filter-widget--collapsed .cv-filter-widget__toggle::after { content: "+"; }
.fl-filters .cv-filter-list {
  display: grid; gap: 6px; max-height: 200px; overflow: auto;
  scrollbar-width: thin; scrollbar-color: rgba(42,107,88,.25) transparent;
  padding-right: 4px; margin-top: 10px;
}
.fl-filters .cv-filter-list::-webkit-scrollbar { width: 5px; }
.fl-filters .cv-filter-list::-webkit-scrollbar-thumb { background: rgba(42,107,88,.22); border-radius: 999px; }
.fl-filters .cv-filter-list--collapsible:not(.is-expanded) li:nth-child(n+9) { display: none; }
.fl-filters .cv-filter-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 10px; color: var(--fl-muted); font-size: .88rem;
  transition: .15s;
}
.fl-filters .cv-filter-list a:hover { background: rgba(255,255,255,.7); color: var(--fl-ink); }
.fl-filters .cv-filter-list .is-active a { background: var(--fl-white); color: var(--fl-green-deep); font-weight: 600; }
.fl-filters .cv-filter-list .count { font-size: .78rem; opacity: .7; }
.fl-filters .cv-filter-more {
  margin-top: 8px; border: 0; background: transparent; color: var(--fl-green);
  font-weight: 600; font-size: .85rem; cursor: pointer; padding: 4px 0;
}
.fl-filters .cv-filter-more:hover { text-decoration: underline; }
.fl-filters .cv-price-filter__fields { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; margin-bottom: 12px; }
.fl-filters .cv-price-filter__fields span { color: var(--fl-muted); text-align: center; }
.fl-filters .cv-price-filter input[type="number"] {
  width: 100%; height: 46px; border: 1px solid rgba(42,107,88,.15); border-radius: 12px;
  padding: 0 14px; background: var(--fl-white); font-size: .92rem;
}
.fl-filters .cv-price-filter input[type="number"]:focus {
  outline: 2px solid rgba(42,107,88,.18); border-color: var(--fl-green);
}
.fl-filters .cv-price-filter .fl-btn { margin-top: 4px; }
/* SEO block */
.fl-seo-block__card {
  padding: clamp(28px, 4vw, 40px); border-radius: var(--fl-radius-l);
  background: var(--fl-white); border: 1px solid var(--fl-line);
}
.fl-seo-block__content { margin: 16px 0 24px; color: var(--fl-muted); font-size: .94rem; line-height: 1.7; }
.fl-seo-block__content p { margin: 0 0 12px; }
.fl-seo-block__content p:last-child { margin-bottom: 0; }
.fl-seo-block__toggle {
  display: block; margin-bottom: 16px; padding: 0; border: 0; background: none;
  color: var(--fl-green); font-weight: 600; font-size: .9rem; cursor: pointer;
}
[data-seo-toggle] .fl-seo-block__content { overflow: hidden; max-height: 120px; transition: max-height .3s ease; }
[data-seo-toggle.is-expanded] .fl-seo-block__content { max-height: 2000px; }
[data-seo-toggle] .fl-seo-block__toggle { display: none; }

/* Contacts */
.fl-contacts { padding-block: 36px 80px; }
.fl-contacts__hero { margin-bottom: var(--fl-gap-lg); max-width: 640px; }
.fl-contacts__hero h1 { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; }
.fl-contacts__hero p { margin: 0; color: var(--fl-muted); font-size: 1.05rem; line-height: 1.6; }
.fl-contacts__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr); gap: var(--fl-gap-lg); align-items: stretch; }
.fl-contacts__stores { display: grid; gap: 14px; align-content: start; }
.fl-contacts__map-col { min-width: 0; }
.fl-store-card {
  padding: 20px; border-radius: var(--fl-radius-m); background: var(--fl-white);
  border: 1px solid var(--fl-line); cursor: pointer; transition: .2s;
}
.fl-store-card:hover, .fl-store-card.is-active {
  border-color: rgba(42,107,88,.35); box-shadow: var(--fl-shadow-soft);
}
.fl-store-card.is-active { background: var(--fl-green-mist); }
.fl-store-card__title { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.fl-store-card__row { margin: 0 0 4px; color: var(--fl-muted); font-size: .9rem; line-height: 1.5; }
.fl-store-card__note { margin: 8px 0 0; font-size: .85rem; font-weight: 600; color: var(--fl-green); }
.fl-store-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.fl-contacts__map,
.fl-contacts__map-fallback {
  position: sticky;
  top: calc(var(--fl-header) + 16px);
  height: 420px;
  min-height: 420px;
  border-radius: var(--fl-radius-l);
  border: 1px solid var(--fl-line);
}
.fl-contacts__map {
  overflow: hidden;
  background: var(--fl-white);
}
.fl-contacts__map-fallback {
  background: linear-gradient(135deg, var(--fl-green-mist), var(--fl-blush-soft));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; gap: 16px;
}
.fl-contacts__map-fallback svg { width: 56px; height: 56px; color: var(--fl-green); opacity: .5; }
.fl-contacts__map-fallback p { margin: 0; color: var(--fl-muted); max-width: 32ch; line-height: 1.55; }
.fl-contacts__connect {
  margin-top: var(--fl-gap-lg); padding: clamp(28px, 4vw, 36px);
  border-radius: var(--fl-radius-l); background: var(--fl-white);
  border: 1px solid var(--fl-line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fl-gap-md); align-items: center;
}
.fl-contacts__connect-item strong { display: block; margin-bottom: 6px; font-size: .88rem; color: var(--fl-muted); font-weight: 600; }
.fl-contacts__connect-item a, .fl-contacts__connect-item span { font-size: 1rem; font-weight: 600; color: var(--fl-ink); }

/* Content pages */
.fl-page { padding-block: 36px 80px; }
.fl-page__hero { margin-bottom: var(--fl-gap-lg); max-width: 680px; }
.fl-page__hero h1 { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.fl-page__lead { margin: 0; color: var(--fl-muted); font-size: 1.05rem; line-height: 1.65; }
.fl-page__section { margin-bottom: var(--fl-gap-lg); }
.fl-page__section-title { margin: 0 0 20px; font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }
.fl-page__card {
  padding: clamp(24px, 3vw, 32px); border-radius: var(--fl-radius-l);
  background: var(--fl-white); border: 1px solid var(--fl-line);
}
.fl-page__card h2, .fl-page__card h3 { margin: 1.4em 0 .6em; font-size: 1.05rem; font-weight: 700; }
.fl-page__card h2:first-child, .fl-page__card h3:first-child { margin-top: 0; }
.fl-page__card p, .fl-page__card li { color: var(--fl-muted); line-height: 1.65; }
.fl-page__card ol, .fl-page__card ul { margin: 0; padding-left: 1.2em; display: grid; gap: 8px; }
.fl-page__content { max-width: 760px; }
.fl-page__content.entry-content { line-height: 1.7; color: var(--fl-muted); }
.fl-page__content.entry-content h2, .fl-page__content.entry-content h3 {
  margin: 1.6em 0 .6em; color: var(--fl-ink); font-weight: 700; letter-spacing: -.01em;
}
.fl-page__content.entry-content h2 { font-size: 1.25rem; }
.fl-page__content.entry-content p { margin: 0 0 1em; }
.fl-page__content.entry-content ul, .fl-page__content.entry-content ol { margin: 0 0 1.2em; padding-left: 1.2em; }
.fl-page__content.entry-content a { text-decoration: underline; text-underline-offset: 2px; }

.fl-zones { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.fl-zone {
  padding: 18px; border-radius: var(--fl-radius-m); background: var(--fl-white);
  border: 1px solid var(--fl-line); display: flex; flex-direction: column; gap: 8px;
}
.fl-zone__code {
  align-self: flex-start; padding: 4px 10px; border-radius: 999px;
  background: var(--fl-green-mist); color: var(--fl-green-deep);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.fl-zone__title { margin: 0; font-size: .95rem; font-weight: 700; line-height: 1.35; }
.fl-zone__price { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--fl-green-deep); }

.fl-faq { display: grid; gap: 10px; }
.fl-faq details {
  border-radius: var(--fl-radius-m); background: var(--fl-white);
  border: 1px solid var(--fl-line); overflow: hidden;
}
.fl-faq summary {
  padding: 16px 20px; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.fl-faq summary::-webkit-details-marker { display: none; }
.fl-faq summary::after { content: "+"; color: var(--fl-green); font-size: 1.2rem; font-weight: 400; }
.fl-faq details[open] summary::after { content: "−"; }
.fl-faq details p { margin: 0; padding: 0 20px 18px; color: var(--fl-muted); line-height: 1.6; font-size: .94rem; }

.fl-pickup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.fl-pickup-card {
  padding: 18px; border-radius: var(--fl-radius-m); background: var(--fl-sand);
  border: 1px solid var(--fl-line);
}
.fl-pickup-card strong { display: block; margin-bottom: 6px; font-size: .95rem; }
.fl-pickup-card span { color: var(--fl-muted); font-size: .88rem; line-height: 1.5; }

.cv-shipping-costs {
  margin-top: 20px; padding: 20px; border-radius: var(--fl-radius-m);
  background: var(--fl-white); border: 1px solid var(--fl-line);
}
.cv-shipping-costs__list { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.cv-shipping-costs__list li { padding: 10px 14px; border-radius: 10px; background: var(--fl-sand); font-size: .92rem; }

/* Mobile nav */
.fl-mnav a.is-active { color: var(--fl-green); }
.fl-mnav a.is-active svg { stroke: var(--fl-green); }

.fl-cart-summary__note { margin: 12px 0 0; padding-top: 12px; border-top: 1px dashed var(--fl-line); font-size: .86rem; color: var(--fl-muted); }
.fl-cart-summary__note-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.fl-cart .fl-cart__update { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fl-page__card--center { text-align: center; max-width: 520px; margin: 0 auto; }
.fl-page__card--center h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 2.8rem); }
.fl-page__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

.fl-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--fl-gap-md); }
.fl-post-card {
  padding: 20px; border-radius: var(--fl-radius-m); background: var(--fl-white);
  border: 1px solid var(--fl-line);
}
.fl-post-card__thumb { display: block; margin-bottom: 12px; border-radius: var(--fl-radius-s); overflow: hidden; }
.fl-post-card__thumb img { width: 100%; height: auto; display: block; }
.fl-post-card__thumb--single { margin: 16px 0 24px; }
.fl-post-card__title { margin: 0 0 8px; font-size: 1.05rem; }
.fl-post-card__title a { color: inherit; text-decoration: none; }
.fl-post-card__title a:hover { color: var(--fl-green); }
.fl-post-card__excerpt { margin: 0; color: var(--fl-muted); font-size: .92rem; line-height: 1.6; }
.fl-post-card__body time { display: block; margin-bottom: 8px; font-size: .82rem; color: var(--fl-muted); }

/* Maintenance landing */
.fl-maintenance { min-height: 60vh; display: flex; align-items: center; padding: 48px 0; }
.fl-maintenance__card {
  max-width: 560px; margin: 0 auto; text-align: center;
  padding: 40px 32px; border-radius: var(--fl-radius-l);
  background: var(--fl-white); border: 1px solid var(--fl-line);
  box-shadow: var(--fl-shadow-soft, 0 8px 32px rgba(0,0,0,.06));
}
.fl-maintenance__logo { margin-bottom: 20px; }
.fl-maintenance__logo img { max-width: 120px; height: auto; }
.fl-maintenance__title { margin: 0 0 16px; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.fl-maintenance__content { color: var(--fl-muted); line-height: 1.7; }
.fl-maintenance__content a { color: var(--fl-green); font-weight: 600; }
body.admin-bar .fl-maintenance { min-height: calc(60vh - 32px); }
#wpadminbar .cvety-maintenance-notice > .ab-item { color: #f90 !important; font-weight: 600 !important; }

.fl-reviews--page { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--fl-gap-md); }
.fl-reviews__more { margin-top: 28px; }
.fl-reviews__more--center { text-align: center; }

