/* =========================
   app.css (Base + Components)
   ========================= */

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden; /* против случайных горизонтальных скроллов */
}

/* Фон без разрывов: фиксированный слой на псевдоэлементах */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 650px at 12% 8%, rgba(255,90,166,.24), transparent 62%),
    radial-gradient(820px 620px at 88% 10%, rgba(106,91,255,.22), transparent 62%),
    radial-gradient(980px 720px at 55% 92%, rgba(200,76,255,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}

body::after{
  content:"";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  filter: blur(.2px);
  background:
    repeating-linear-gradient(45deg, rgba(19,21,42,.035) 0 1px, transparent 1px 7px);
}

/* Links / selection */
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

::selection{
  background: rgba(200,76,255,.22);
}

/* Typography helpers */
.lv-h1, .lv-h2{
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

.lv-h1{
  font-weight: 600;                 /* не “жирнючий” */
  line-height: 1.06;
  font-size: clamp(26px, 3.2vw, 44px);  /* аккуратнее, без гигантизма */
}

.lv-h2{
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(18px, 2vw, 24px);
}

.lv-lead{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.lv-muted{
  color: var(--muted);
  font-size: 14px;
}

.lv-link{
  color: rgba(106,91,255,.95);
  font-weight: 500;
}
.lv-link:hover{
  color: rgba(200,76,255,.98);
}

.lv-dot{ color: rgba(19,21,42,.35); padding: 0 10px; }

/* Page container */
.lv-page{
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 22px 56px;
}

/* Header */
.lv-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,247,255,.60);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,22,42,.08);
}

.lv-header__bar{
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lv-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
.lv-brand__name{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Quick search */
.lv-qs{
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 760px;
}

.lv-qs__input{
  flex: 1;
  height: var(--btn-h);
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.70);
  box-shadow: 0 8px 20px rgba(20,22,42,.05);
  outline: none;
  color: var(--text);
}
.lv-qs__input:focus{
  box-shadow: var(--focus), 0 10px 26px rgba(20,22,42,.06);
  border-color: rgba(106,91,255,.30);
}

.lv-qs__btn{
  height: var(--btn-h);
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.72);
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.lv-qs__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20,22,42,.10);
  background: rgba(255,255,255,.92);
}

.lv-qs__suggest{
  position: absolute;
  top: calc(var(--btn-h) + 10px);
  left: 0;
  right: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.lv-qs__item{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.lv-qs__item:hover{
  background: rgba(106,91,255,.06);
}
.lv-qs__item img{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(20,22,42,.03);
  border: 1px solid rgba(20,22,42,.06);
}
.lv-qs__itemTitle{
  font-weight: 500;
  font-size: 13px;
  line-height: 1.25;
}
.lv-qs__itemMeta{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Actions */
.lv-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.lv-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: var(--grad);
  box-shadow: 0 10px 18px rgba(106,91,255,.18);
}

.lv-iconbtn{
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.72);
  color: var(--text);
  height: var(--btn-h);
  padding: 0 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.lv-iconbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(20,22,42,.10);
}

/* Buttons */
.lv-btn{
  height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
  transition: transform .16s ease, box-shadow .16s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lv-btn:focus{
  outline: none;
  box-shadow: var(--focus);
}

.lv-btn--primary{
  color: white;
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 0 16px 34px rgba(200,76,255,.22);
}
.lv-btn--primary:hover{
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow: 0 22px 48px rgba(200,76,255,.26);
}
.lv-btn--primary:active{
  transform: translateY(0px);
}

.lv-btn--ghost{
  color: var(--text);
  border-color: var(--border2);
  background: rgba(255,255,255,.68);
}
.lv-btn--ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(20,22,42,.10);
}

/* Layout blocks */
.lv-section{
  margin-top: 26px;
}

.lv-section__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lv-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Shell (catalog/product) */
.lv-shell{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
}

.lv-sidebar{
  position: sticky;
  top: 78px; /* ниже хедера */
  align-self: start;
}

.lv-sidebar__block{
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow2);
  padding: 16px;
  margin-bottom: 16px;
}

.lv-sidebar__title{
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 10px;
}

.lv-catnav{
  display: grid;
  gap: 8px;
}

.lv-catnav__item{
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.55);
  color: var(--text);
  font-weight: 500;
}
.lv-catnav__item:hover{
  background: rgba(106,91,255,.06);
}
.lv-catnav__item.is-active{
  border-color: rgba(106,91,255,.25);
  background: rgba(106,91,255,.10);
}

.lv-filters{
  display: grid;
  gap: 12px;
}

.lv-field{
  display: grid;
  gap: 6px;
}
.lv-field__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .02em;
}
.lv-field__input{
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.70);
  outline: none;
  box-shadow: 0 8px 20px rgba(20,22,42,.05);
}
textarea.lv-field__input{
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}
.lv-field__input:focus{
  border-color: rgba(106,91,255,.30);
  box-shadow: var(--focus), 0 10px 26px rgba(20,22,42,.06);
}

/* Content */
.lv-content__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

/* Grid (cards) */
.lv-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap);
}

/* Card */
.lv-card{
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border2);
  background: var(--panel);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lv-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(106,91,255,.22);
}

.lv-card__media{
  display: block;
  background: var(--grad-soft);
  border-bottom: 1px solid rgba(20,22,42,.06);
  padding: 14px;
}
.lv-card__img{
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,.55);
  border-radius: 18px;
  border: 1px solid rgba(20,22,42,.06);
}

.lv-card__ph{
  height: 170px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,22,42,.06);
  display: grid;
  place-items: center;
  color: var(--muted);
}

/* Heart (card) */
.lv-fav{
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(20,22,42,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 18px rgba(20,22,42,.08);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.lv-fav:hover{
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 16px 28px rgba(20,22,42,.10);
}
.lv-fav.is-active{
  background: rgba(255,90,166,.16);
  border-color: rgba(255,90,166,.22);
}

/* Card body */
.lv-card__body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.lv-card__title{
  font-family: var(--font-display);
  font-weight: 600;          /* аккуратно */
  letter-spacing: -0.01em;
  font-size: 14px;
  line-height: 1.25;
}
.lv-card__title a{
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: anywhere;   /* чтоб длинные названия не ломали сетку */
}

.lv-card__price{
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(19,21,42,.86);
}

.lv-card__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lv-card__actions .lv-btn{
  width: 100%;
}

/* Product page */
.lv-product{
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.lv-product__media{
  max-width: 560px; /* чтобы маленькая картинка не растягивала страницу */
}

.lv-gallery{
  background: var(--panel2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.lv-gallery__main{
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--grad-soft);
  border-bottom: 1px solid rgba(20,22,42,.06);
}
.lv-gallery__main img{
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(20,22,42,.06);
  background: rgba(255,255,255,.55);
}

.lv-zoom{
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(20,22,42,.10);
  box-shadow: 0 12px 22px rgba(20,22,42,.10);
}

.lv-gallery__thumbs{
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  background: rgba(255,255,255,.55);
}
.lv-gallery__thumb{
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  border: 1px solid rgba(20,22,42,.08);
  background: rgba(255,255,255,.55);
  overflow: hidden;
}
.lv-gallery__thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lv-product__info{
  max-width: 640px; /* ключ: не даём колонке ужиматься в “вертикальный текст” */
}

.lv-product__meta{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lv-chip{
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(106,91,255,.22);
  background: rgba(106,91,255,.08);
  color: rgba(106,91,255,.96);
  font-weight: 600;
  font-family: var(--font-display);
}

.lv-product__price{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.lv-text{
  margin-top: 14px;
  color: rgba(19,21,42,.88);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,22,42,.08);
  border-radius: 18px;
  padding: 14px;
}

.lv-product__actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cart */
.lv-cart{
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.lv-cart__row{
  display: grid;
  grid-template-columns: 1fr 130px 170px 44px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(20,22,42,.06);
}
.lv-cart__title a{
  color: var(--text);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.lv-cart__price{
  font-family: var(--font-display);
  font-weight: 600;
}

.lv-cart__qty{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.lv-cart__qtyinput{
  width: 72px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(20,22,42,.10);
  background: rgba(255,255,255,.70);
  text-align: center;
  outline: none;
}
.lv-cart__qtyinput:focus{ box-shadow: var(--focus); }

.lv-cart__total{
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lv-iconbtn{
  /* уже задано выше, но для кнопок “+/-/x” сделаем компактный вариант */
}
.lv-cart .lv-iconbtn{
  width: 44px;
  justify-content: center;
  padding: 0;
}

/* Modal */
.lv-modal{
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.lv-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

.lv-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,12,24,.35);
  backdrop-filter: blur(6px);
}

.lv-modal__panel{
  position: relative;
  width: min(560px, calc(100vw - 28px));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.40);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  transform: translateY(10px) scale(.985);
  transition: transform .18s ease;
  overflow: hidden;
}

.lv-modal.is-open .lv-modal__panel{
  transform: translateY(0) scale(1);
}

.lv-modal__panel--wide{
  width: min(980px, calc(100vw - 28px));
}

.lv-modal__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(20,22,42,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
}

.lv-modal__title{
  font-family: var(--font-display);
  font-weight: 600;
}

.lv-form{
  padding: 14px 16px 16px;
  display: grid;
  gap: 12px;
}

.lv-form__msg{
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* SEO block */
.lv-seo{
  margin-top: 22px;
}
.lv-seo__inner{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(20,22,42,.08);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(20,22,42,.06);
  color: rgba(19,21,42,.84);
}

/* Footer */
.lv-footer{
  margin-top: 28px;
  padding: 18px 0 30px;
}
.lv-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.lv-footer__title{
  font-family: var(--font-display);
  font-weight: 600;
}
.lv-footer__meta{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .lv-shell{ grid-template-columns: 1fr; }
  .lv-sidebar{
    position: static;
    top: auto;
  }
  .lv-product{
    grid-template-columns: 1fr;
  }
  .lv-product__media{
    max-width: 100%;
  }
  .lv-header__bar{
    flex-wrap: wrap;
  }
  .lv-qs{
    order: 3;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 720px){
  .lv-page{ padding: 18px 14px 44px; }
  .lv-header__bar{ padding: 10px 14px; }
  .lv-grid{ grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
  .lv-cart__row{
    grid-template-columns: 1fr;
  }
  .lv-cart__qty{ justify-content: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* =========================
   Candy CTA (Callback button)
   ========================= */

/* hook: .lv-btn--candy */
.lv-btn--candy{
  position: relative;
  overflow: hidden;

  color: #fff;
  border-color: rgba(255,255,255,.28);

  /* базовый конфетный градиент */
  background: linear-gradient(135deg,
    rgba(236,72,153,.98),
    rgba(168,85,247,.95),
    rgba(59,130,246,.90)
  );
  background-size: 220% 220%;
  background-position: 0% 50%;

  box-shadow:
    0 14px 34px rgba(168,85,247,.22),
    0 2px 0 rgba(255,255,255,.22) inset;

  animation: lvCandyShift 3.2s ease-in-out infinite;
}

/* “блик-обертка” */
.lv-btn--candy::before{
  content:"";
  position: absolute;
  inset: -40% -60%;
  background:
    radial-gradient(closest-side at 30% 35%, rgba(255,255,255,.70), rgba(255,255,255,0) 60%),
    linear-gradient(115deg, rgba(255,255,255,0) 30%, rgba(255,255,255,.38) 45%, rgba(255,255,255,0) 60%);
  transform: rotate(12deg) translateX(-20%);
  opacity: .55;
  mix-blend-mode: screen;
  pointer-events: none;

  animation: lvCandyShine 2.8s ease-in-out infinite;
}

/* “посыпка” */
.lv-btn--candy::after{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(4px 4px at 18% 35%, rgba(255,255,255,.85), rgba(255,255,255,0) 70%),
    radial-gradient(3px 3px at 38% 70%, rgba(255,255,255,.75), rgba(255,255,255,0) 70%),
    radial-gradient(4px 4px at 62% 28%, rgba(255,255,255,.82), rgba(255,255,255,0) 70%),
    radial-gradient(3px 3px at 78% 62%, rgba(255,255,255,.72), rgba(255,255,255,0) 70%);
}

/* пульс — только в спокойном состоянии */
@media (prefers-reduced-motion: no-preference){
  .lv-btn--candy{
    animation:
      lvCandyShift 3.2s ease-in-out infinite,
      lvCandyPulse 2.2s ease-in-out infinite;
  }
}

.lv-btn--candy:hover{
  transform: translateY(-1px);
  box-shadow:
    0 20px 52px rgba(168,85,247,.28),
    0 2px 0 rgba(255,255,255,.26) inset;
}

.lv-btn--candy:active{
  transform: translateY(0px);
  box-shadow:
    0 14px 34px rgba(168,85,247,.22),
    0 2px 0 rgba(255,255,255,.18) inset;
}

.lv-btn--candy:focus{
  box-shadow: var(--focus), 0 18px 48px rgba(168,85,247,.22);
}

/* keyframes */
@keyframes lvCandyShift{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lvCandyShine{
  0%,100% { transform: rotate(12deg) translateX(-28%); opacity: .45; }
  50%     { transform: rotate(12deg) translateX(18%);  opacity: .68; }
}

@keyframes lvCandyPulse{
  0%,100% { filter: saturate(1) brightness(1); }
  50%     { filter: saturate(1.12) brightness(1.04); }
}

/* reduced motion safe */
@media (prefers-reduced-motion: reduce){
  .lv-btn--candy,
  .lv-btn--candy::before{
    animation: none !important;
  }
}
/* Search width tune */
.lv-qs{
  max-width: 640px; /* было 760 */
}

@media (max-width: 1200px){
  .lv-qs{ max-width: 560px; }
}

@media (max-width: 980px){
  .lv-qs{ max-width: none; } /* как у тебя: на мобиле на всю ширину */
}


/* === LIZARD MOBILE HEADER PATCH START === */
@media (max-width: 680px){
  .lv-header__bar{
    display: grid !important;
    grid-template-columns: minmax(120px, 1fr) auto !important;
    grid-template-areas:
      "brand actions"
      "search search";
    column-gap: 12px !important;
    row-gap: 12px !important;
    align-items: start !important;
    padding: 14px 14px 12px !important;
  }

  .lv-brand{
    grid-area: brand;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .lv-brand__logo{
    display: block;
    width: min(150px, 42vw) !important;
    height: auto !important;
    max-width: 100%;
    margin: 0 !important;
  }

  .lv-actions{
    grid-area: actions;
    display: grid !important;
    grid-template-columns: 40px 40px 40px;
    grid-template-rows: 40px 40px;
    gap: 8px !important;
    justify-content: end;
    align-content: start;
    min-width: 0;
  }

  .lv-actions > :nth-child(1){ grid-column: 1; grid-row: 1; }
  .lv-actions > :nth-child(2){ grid-column: 2; grid-row: 1; }
  .lv-actions > :nth-child(3){ grid-column: 3; grid-row: 1; }
  .lv-actions > :nth-child(4){ grid-column: 1 / -1; grid-row: 2; }

  .lv-iconbtn,
  .lv-actions .lv-btn--candy{
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    overflow: visible;
    line-height: 1;
    flex: none;
  }

  .lv-iconbtn{
    font-size: 18px;
  }

  .lv-iconbtn .lv-badge{
    position: absolute !important;
    top: -4px;
    right: -4px;
    transform: none !important;
    min-width: 18px;
    height: 18px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-size: 11px;
    line-height: 18px;
  }

  .lv-actions .lv-btn--candy{
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden;
  }

  .lv-actions .lv-btn--candy::before{
    display: none !important;
  }

  .lv-actions .lv-btn--candy::after{
    content: "☎";
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    font-size: 18px;
    line-height: 1;
    color: rgba(255,255,255,.96);
    background: none !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  .lv-actions .lv-link{
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none !important;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(31,41,55,.08);
  }

  .lv-qs{
    grid-area: search;
    width: 100%;
    max-width: none !important;
    min-width: 0;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .lv-qs__input{
    width: 100%;
    min-width: 0;
  }

  .lv-qs__btn{
    white-space: nowrap;
  }
}

@media (max-width: 430px){
  .lv-header__bar{
    grid-template-columns: minmax(100px, 1fr) auto !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
  }

  .lv-brand__logo{
    width: min(132px, 40vw) !important;
  }

  .lv-actions{
    grid-template-columns: 36px 36px 36px;
    grid-template-rows: 36px 36px;
    gap: 6px !important;
  }

  .lv-iconbtn,
  .lv-actions .lv-btn--candy{
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .lv-iconbtn{
    font-size: 16px;
  }

  .lv-iconbtn .lv-badge{
    top: -3px;
    right: -3px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
  }

  .lv-actions .lv-btn--candy::after{
    font-size: 16px;
  }

  .lv-actions .lv-link{
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }
}
/* === LIZARD MOBILE HEADER PATCH END === */


/* ARMADA CATALOG SPECS SIMPLE FULLWIDTH BEGIN */
.lv-productSpecs{
  width: 100%;
  margin: 30px 0 0;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(142, 93, 255, .16);
  background:
    radial-gradient(circle at 10% 0%, rgba(205, 184, 255, .32), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(249,247,255,.80));
  box-shadow: 0 22px 60px rgba(58, 39, 117, .10);
}

.lv-productSpecs__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.lv-productSpecs__eyebrow,
.lv-productSpecs__sub{
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(115, 79, 196, .82);
}

.lv-productSpecs__title{
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: rgba(12, 16, 32, .96);
}

.lv-productSpecs__lead{
  max-width: 840px;
  margin: 10px 0 0;
  color: rgba(39, 34, 58, .76);
  font-size: 16px;
  line-height: 1.55;
}

.lv-productSpecs__sku{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(142, 93, 255, .16);
  color: rgba(44, 29, 91, .86);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.lv-productSpecs__claimsWrap{
  margin: 0 0 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(142, 93, 255, .13);
  box-shadow: 0 14px 34px rgba(58, 39, 117, .055);
}

.lv-productSpecs__claims{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lv-productSpecs__claims li{
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(236, 229, 255, .82);
  border: 1px solid rgba(142, 93, 255, .14);
  color: rgba(44, 29, 91, .88);
  font-size: 13px;
  font-weight: 850;
}

.lv-productSpecs__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.lv-productSpecs__item{
  min-height: 72px;
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(142, 93, 255, .12);
  box-shadow: 0 12px 26px rgba(58, 39, 117, .045);
}

.lv-productSpecs__item span{
  display: block;
  margin-bottom: 6px;
  color: rgba(70, 61, 95, .62);
  font-size: 12px;
  font-weight: 800;
}

.lv-productSpecs__item b{
  display: block;
  color: rgba(18, 16, 34, .92);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

@media (max-width: 960px){
  .lv-productSpecs__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .lv-productSpecs{
    margin-top: 20px;
    padding: 18px;
    border-radius: 24px;
  }

  .lv-productSpecs__head{
    display: block;
  }

  .lv-productSpecs__sku{
    margin-top: 12px;
  }

  .lv-productSpecs__grid{
    grid-template-columns: 1fr;
  }
}
/* ARMADA CATALOG SPECS SIMPLE FULLWIDTH END */


/* ARMADA SPECS LEAD GAP FIX */
.lv-productSpecs__lead{
  margin-bottom: 18px;
}


/* ARMADA INGREDIENTS COSMETIC FIX BEGIN */
.lv-productSpecs__ingredients{
  margin: 18px 0 16px;
  padding: 20px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(250,247,255,.82));
  border: 1px solid rgba(142, 93, 255, .13);
  box-shadow: 0 14px 34px rgba(58, 39, 117, .055);
}

.lv-productSpecs__ingredients .lv-productSpecs__sub{
  margin-bottom: 12px;
  color: rgba(115, 79, 196, .88);
  letter-spacing: .14em;
}

.lv-productSpecs__ingredientsText{
  max-width: 1180px;
  color: rgba(15, 18, 34, .92);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: .002em;
}

@media (max-width: 720px){
  .lv-productSpecs__ingredients{
    margin: 14px 0;
    padding: 16px 18px;
    border-radius: 20px;
  }

  .lv-productSpecs__ingredientsText{
    font-size: 15px;
    line-height: 1.65;
  }
}
/* ARMADA INGREDIENTS COSMETIC FIX END */

