/* 
  Flowershop UI theme — v2 (fixed)
  - Кнопки теперь видимые (убрана сверхпрозрачность)
  - Modern, light, mobile-first
*/

:root{
  --brand: #0f766e;
  --brand-2: #0f766e;
  --bg: #fff7f9;
  --text: #111827;
  --muted: #6b7280;
  --surface: rgba(255,255,255,.96);
  --border: rgba(17,24,39,.08);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 12px 34px rgba(17,24,39,.10);
  --shadow-soft: 0 8px 20px rgba(17,24,39,.08);
}

html, body{
  height: 100%;
}

body.app-body{
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 12% 10%, rgba(15,118,110,0.10), transparent 55%),
    radial-gradient(900px 500px at 88% 14%, rgba(15,118,110,0.16), transparent 55%),
    radial-gradient(800px 520px at 50% 100%, rgba(99,102,241,0.10), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

a{
  color: inherit;
}

a:hover{
  color: var(--brand);
}

::selection{
  background: rgba(15,118,110,.25);
}

.topbar{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.topbar a{
  text-decoration: none;
  color: var(--text);
}

.topbar a:hover{
  color: var(--brand);
}

.site-navbar{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,24,39,.08);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.brand-icon{
  font-size: 1.25rem;
}

.brand-logo{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(17,24,39,.08);
  background: #0f1720;
  flex-shrink: 0;
}

.brand-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text{
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub{
  color: var(--muted);
  font-weight: 600;
  margin-left: .35rem;
}

/* ============================================================
   КНОПКИ — исправлены, теперь чётко видны
   ============================================================ */

.btn-soft{
  background: #fff;
  border: 1.5px solid rgba(15,118,110,.35);
  color: var(--brand);
  font-weight: 600;
}

.btn-soft:hover{
  background: rgba(15,118,110,.08);
  border-color: rgba(15,118,110,.55);
  color: var(--brand);
}

.btn-primary{
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #0b5f59;
  --bs-btn-hover-border-color: #0b5f59;
  --bs-btn-active-bg: #095852;
  --bs-btn-active-border-color: #095852;
  --bs-btn-focus-shadow-rgb: 15,118,110;
}

.btn-outline-primary{
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: rgba(15,118,110,.50);
  --bs-btn-hover-bg: rgba(15,118,110,.08);
  --bs-btn-hover-border-color: rgba(15,118,110,.65);
  --bs-btn-active-bg: rgba(15,118,110,.14);
  --bs-btn-active-border-color: rgba(15,118,110,.70);
  --bs-btn-focus-shadow-rgb: 15,118,110;
}

.btn-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Кнопка корзины — всегда видима */
.btn-cart{
  background: #fff;
  border: 1.5px solid rgba(15,118,110,.35);
  color: var(--brand);
}

.btn-cart:hover{
  background: rgba(15,118,110,.08);
  border-color: rgba(15,118,110,.55);
  color: var(--brand);
}

.cart-badge{
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ============================================================
   ПОИСК
   ============================================================ */

.search-group .input-group-text{
  background: #fff;
  border: 1.5px solid rgba(17,24,39,.15);
  border-right: 0;
}

.search-group .form-control{
  background: #fff;
  border: 1.5px solid rgba(17,24,39,.15);
  border-left: 0;
}

.search-group .form-control:focus{
  box-shadow: none;
  border-color: rgba(15,118,110,.45);
}

/* ============================================================
   HERO
   ============================================================ */

.hero{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

@media (min-width: 992px){
  .hero-inner{
    grid-template-columns: 1.25fr .75fr;
    gap: 26px;
  }
}

.hero-title{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  margin-bottom: .35rem;
}

.hero-subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 2px 6px rgba(17,24,39,.06);
}

.badge-chip i{
  color: var(--brand);
}

.hero-card{
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hero-card .hero-card-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
}

.hero-card ul{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

/* ============================================================
   КАТЕГОРИИ
   ============================================================ */

.category-strip{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.category-strip::-webkit-scrollbar{
  height: 8px;
}

.category-strip::-webkit-scrollbar-thumb{
  background: rgba(17,24,39,.10);
  border-radius: 999px;
}

.chip{
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1.5px solid rgba(17,24,39,.12);
  background: #fff;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(17,24,39,.05);
}

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

.chip.active{
  background: rgba(15,118,110,.10);
  border-color: rgba(15,118,110,.40);
  color: var(--brand);
}

/* ============================================================
   КАРТОЧКИ ТОВАРОВ
   ============================================================ */

.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.product-card{
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-thumb{
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  background: #f3f4f6;
}

.product-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(180deg, #f7f4f1 0%, #f2efeb 100%);
  transition: transform .35s ease;
  display: block;
  padding: 0;
}

.product-card:hover .product-img{
  transform: scale(1.045);
}

.placeholder-img{
  width: 100%;
  height: 100%;
  background: #f6f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-badge{
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 0.01em;
  border: none;
  pointer-events: none;
  z-index: 2;
}

.product-badge.preorder-badge{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(15,118,110,.35);
}

.product-badge.soldout{
  background: rgba(255,255,255,.95);
  color: #111827;
  border: 1px solid rgba(17,24,39,.12);
}

.product-body{
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}

.product-category{
  color: var(--muted);
  font-size: .82rem;
}

.product-title{
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  line-height: 1.2;
}

.product-title:hover{
  color: var(--brand);
}

.product-desc{
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}

.price-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-now{
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price-old{
  text-decoration: line-through;
  color: var(--muted);
  font-size: .9rem;
}

.product-actions{
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(138px, .92fr);
  gap: 10px;
  align-items: stretch;
}

.product-actions > *{
  min-width: 0;
  display: flex;
}

.product-actions form{
  display: flex;
}

.product-actions .btn,
.product-actions .btn-preorder,
.product-actions form .btn{
  width: 100%;
  min-height: 46px;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.98px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

  .product-card{
    border-radius: 24px;
    box-shadow: 0 10px 26px rgba(17,24,39,.09);
  }

  .product-thumb{
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    background:
      radial-gradient(circle at top, rgba(255,255,255,.32), transparent 42%),
      linear-gradient(180deg, #f7f4f1 0%, #f2efeb 100%);
  }

  .product-img,
  .placeholder-img{
    height: 100%;
  }

  .product-img{
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .product-body{
    padding: 12px 12px 14px;
    gap: 8px;
  }

  .product-category{
    font-size: .74rem;
  }

  .product-title{
    font-size: 1.04rem;
    line-height: 1.18;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
  }

  .product-desc{
    display: none;
  }

  .price-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .price-now{
    font-size: 1.08rem;
  }

  .price-old{
    font-size: .82rem;
  }

  .product-actions{
    gap: 8px;
    align-items: stretch;
  }

  .product-actions > :first-child{
    flex: 1 1 auto;
  }

  .product-actions > :last-child{
    flex: 0 0 52px;
  }

  .product-actions form{
    display: block;
  }

  .product-actions .btn,
  .product-actions .btn-preorder,
  .product-actions form .btn{
    min-height: 42px;
    padding: .62rem .72rem;
    font-size: .86rem;
    line-height: 1.1;
  }

  .product-actions > :last-child .btn,
  .product-actions > :last-child .btn-preorder{
    width: 52px;
    min-width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 14px;
  }

  .product-actions > :last-child .btn i,
  .product-actions > :last-child .btn-preorder i{
    margin-right: 0 !important;
    font-size: 1rem;
  }

  .product-actions > :last-child .btn:not(.btn-outline-primary),
  .product-actions > :last-child .btn-preorder{
    font-size: 0;
  }

  .product-actions > :last-child .btn:not(.btn-outline-primary)::after{
    content: "";
  }

  .product-actions .btn i,
  .product-actions .btn-preorder i{
    margin-right: .2rem !important;
  }

  .product-badge{
    left: 8px;
    top: 8px;
    padding: 6px 10px;
    font-size: .7rem;
  }
}

@media (max-width: 420px){
  .product-grid{
    gap: 12px;
  }

  .product-body{
    padding: 11px 11px 13px;
  }

  .product-actions .btn,
  .product-actions .btn-preorder{
    font-size: .82rem;
    padding: .58rem .6rem;
  }

  .product-actions .btn i,
  .product-actions .btn-preorder i{
    display: none;
  }

  .product-actions > :last-child .btn i,
  .product-actions > :last-child .btn-preorder i{
    display: inline-block;
  }
}

/* ============================================================
   СТРАНИЦА ТОВАРА
   ============================================================ */

.breadcrumb-lite{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 14px;
}

.breadcrumb-lite a{
  text-decoration: none;
  color: var(--muted);
}

.breadcrumb-lite a:hover{
  color: var(--brand);
}

.product-hero-img{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #f3f4f6;
  display: block;
}

.gallery-thumbs{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumbs .thumb{
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.gallery-thumbs .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title-lg{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: .45rem;
}

.badge-stock{
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
}

.price-block{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-block .price-now{
  font-size: 1.7rem;
}

/* ============================================================
   СЧЁТЧИК КОЛИЧЕСТВА + КНОПКА «В КОРЗИНУ»
   ============================================================ */

.buy-panel{
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.qty{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  border: 1.5px solid rgba(17,24,39,.15);
  background: #fff;
  padding: 4px;
}

.qty-btn{
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.1rem;
  transition: background .15s;
}

.qty-btn:hover{
  background: rgba(15,118,110,.12);
  color: var(--brand);
}

.qty input.form-control{
  width: 72px !important;
  text-align: center;
  border: 0 !important;
  background: transparent !important;
  font-weight: 800;
  padding-left: 6px;
  padding-right: 6px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty input.form-control:focus{
  box-shadow: none !important;
}

.qty input.form-control::-webkit-outer-spin-button,
.qty input.form-control::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

/* ============================================================
   КОРЗИНА
   ============================================================ */

.cart-item{
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow-soft);
}

.cart-thumb{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  background: #f3f4f6;
  flex: 0 0 auto;
}

.cart-title-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.cart-title-row a{
  text-decoration: none;
  font-weight: 800;
}

.cart-title-row a:hover{
  color: var(--brand);
}

.cart-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.summary-card{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

@media (min-width: 992px){
  .summary-card{
    position: sticky;
    top: 110px;
  }
}

.empty-state{
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px dashed rgba(17,24,39,.18);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  text-align: center;
}

.empty-state .icon{
  font-size: 2.2rem;
  color: var(--brand);
}

/* ============================================================
   ФУТЕР
   ============================================================ */

.site-footer{
  margin-top: 48px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(17,24,39,.08);
}

.footer-link{
  text-decoration: none;
  font-weight: 800;
}

/* ============================================================
   ПЛАВАЮЩАЯ КНОПКА КОРЗИНЫ (мобильная)
   ============================================================ */

.floating-cart{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  z-index: 1030;
}

.floating-cart:hover{
  color: #fff;
  background: #0b5f59;
}

.floating-cart .cart-badge{
  top: -8px;
  right: -8px;
}

/* ============================================================
   INFO STRIP
   ============================================================ */

.info-strip {
  background: linear-gradient(90deg, rgba(15,118,110,0.08) 0%, rgba(15,118,110,0.04) 100%);
  border-bottom: 1px solid rgba(15,118,110,0.12);
  padding: 8px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-strip-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  white-space: nowrap;
  min-width: max-content;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  border-right: 1px solid rgba(15,118,110,0.15);
  white-space: normal;
  word-break: keep-all;
}

.info-chip:last-child {
  border-right: 0;
}

.info-chip i {
  color: var(--brand);
  font-size: .95rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT + REVIEWS
   ============================================================ */

.about-mini-banner{
  margin-top: 18px;
}

.about-mini-inner{
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(240,253,250,.92));
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: var(--shadow-soft);
}

.about-mini-main{
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.about-mini-logo{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(15,118,110,.10);
  box-shadow: inset 0 0 0 1px rgba(15,118,110,.12);
}

.about-mini-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mini-name{
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  font-size: 1.08rem;
}

.about-mini-desc{
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
  margin-top: 4px;
}

.about-mini-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 8px 22px rgba(17,24,39,.06);
  margin-top: 10px;
  width: fit-content;
  max-width: 100%;
}

.about-mini-stars{
  color: #f59e0b;
  letter-spacing: .14em;
  font-size: .82rem;
}

.about-mini-score{
  font-weight: 900;
}

.about-mini-source{
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.about-section{
  margin-top: 48px;
}

.about-shell{
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.93));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(17,24,39,.08);
}

@media (min-width: 992px){
  .about-shell{
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, .75fr);
  }
}

.about-column{
  padding: 32px 28px;
}

@media (min-width: 992px){
  .about-column{
    padding: 36px 34px;
  }
}

.about-column--main{
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(15,118,110,.06), transparent 70%),
    #fff;
}

.about-column--side{
  background: linear-gradient(180deg, rgba(240,253,250,.96), rgba(248,250,252,.92));
  border-top: 1px solid rgba(15,118,110,.10);
}

@media (min-width: 992px){
  .about-column--side{
    border-top: 0;
    border-left: 1px solid rgba(15,118,110,.10);
  }
}

.about-label,
.reviews-label{
  color: var(--brand);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title{
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.about-desc{
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0;
}

.about-feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 22px;
  margin-top: 28px;
}

@media (min-width: 768px){
  .about-feature-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-feature{
  position: relative;
  padding-left: 22px;
}

.about-feature::before{
  content: "";
  position: absolute;
  top: .7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(15,118,110,.08);
}

.about-feature-title{
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.about-feature-sub{
  color: var(--muted);
  line-height: 1.55;
}

.about-services-title{
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-services-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about-services-list li{
  position: relative;
  padding-left: 18px;
  font-size: 1.03rem;
  font-weight: 700;
}

.about-services-list li::before{
  content: "";
  position: absolute;
  top: .68rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15,118,110,.72);
}

.about-telegram-btn{
  margin-top: 24px;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(15,118,110,.18);
}

.reviews-section{
  margin-top: 44px;
}

.reviews-panel{
  border-radius: 30px;
  padding: 28px 22px;
  background:
    radial-gradient(620px 240px at 100% 0%, rgba(15,118,110,.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(17,24,39,.07);
}

@media (min-width: 768px){
  .reviews-panel{
    padding: 34px 30px;
  }
}

.reviews-header{
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media (min-width: 992px){
  .reviews-header{
    flex-direction: row;
    align-items: end;
  }
}

.reviews-title{
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.035em;
  margin: 0;
}

.reviews-subtitle{
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
}

.reviews-rating{
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
}

.reviews-stars{
  color: #f59e0b;
  letter-spacing: .14em;
  font-size: .92rem;
}

.reviews-score{
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.reviews-count{
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.review-card{
  position: relative;
  min-height: 100%;
  padding: 22px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 30px rgba(17,24,39,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  border-color: rgba(15,118,110,.18);
  box-shadow: 0 20px 34px rgba(17,24,39,.10);
}

.review-quote{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,118,110,.08);
  color: var(--brand);
  font-size: 1.1rem;
}

.review-top{
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 44px;
}

.review-avatar{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--brand);
  background: rgba(15,118,110,.10);
  box-shadow: inset 0 0 0 1px rgba(15,118,110,.12);
  flex-shrink: 0;
}

.review-name{
  font-weight: 800;
  letter-spacing: -.015em;
}

.review-date{
  color: var(--muted);
  font-size: .88rem;
  margin-top: 2px;
}

.review-card .review-stars{
  font-size: .8rem;
}

.review-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.review-badge{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.08);
  color: #374151;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.review-badge--verified{
  background: rgba(15,118,110,.08);
  border-color: rgba(15,118,110,.14);
  color: var(--brand);
}

.review-text{
  margin: 16px 0 18px;
  color: #374151;
  line-height: 1.72;
  font-size: .97rem;
}

.review-source{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,118,110,.08);
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
}

.review-source::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .8;
}

.reviews-footer{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contacts-panel{
  border-radius: 30px;
  padding: 28px 22px;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(15,118,110,.07), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(17,24,39,.07);
}

@media (min-width: 768px){
  .contacts-panel{
    padding: 34px 30px;
  }
}

.contacts-title{
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
}

.contacts-subtitle{
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 760px;
}

.contacts-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.contact-card{
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 22px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,250,251,.94));
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 30px rgba(17,24,39,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card:hover{
  transform: translateY(-3px);
  border-color: rgba(15,118,110,.18);
  box-shadow: 0 20px 34px rgba(17,24,39,.10);
  color: inherit;
}

.contact-card--wide{
  grid-column: span 2;
}

@media (max-width: 767.98px){
  .contact-card--wide{
    grid-column: span 1;
  }
}

.contact-card-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(15,118,110,.10);
  box-shadow: inset 0 0 0 1px rgba(15,118,110,.12);
}

.contact-card-label{
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.contact-card-value{
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-card-note{
  color: var(--muted);
  font-size: .9rem;
  margin-top: auto;
}

.reviews-more-btn{
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 20px;
}

/* ============================================================
   PREORDER
   ============================================================ */

.product-badge.preorder-badge {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
  font-weight: 800;
  font-size: .78rem;
  box-shadow: 0 2px 8px rgba(15,118,110,.35);
}

.badge-preorder-label {
  background: rgba(15,118,110,.12);
  color: #0f766e;
  border: 1.5px solid rgba(15,118,110,.30);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: .82rem;
}

.preorder-panel {
  border-radius: 22px;
  border: 2px solid rgba(15,118,110,.25);
  background: linear-gradient(135deg, #fff, rgba(240,253,250,.85));
  padding: 20px;
  box-shadow: 0 4px 20px rgba(15,118,110,.10);
}

.preorder-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.1rem;
  color: #0f766e;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.preorder-panel-header i {
  font-size: 1.2rem;
}

.preorder-panel-text {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.btn-preorder-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f766e;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: background .18s ease, box-shadow .18s ease, transform .12s ease;
  box-shadow: 0 4px 16px rgba(15,118,110,.30);
}

.btn-preorder-lg:hover {
  background: #0b5f59;
  color: #fff;
  box-shadow: 0 6px 22px rgba(15,118,110,.40);
  transform: translateY(-1px);
}

.btn-preorder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  color: #0f766e;
  border: 1.5px solid rgba(15,118,110,.35);
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s ease;
  flex: 1 1 auto;
}

.btn-preorder:hover {
  background: rgba(15,118,110,.08);
  color: #0f766e;
  border-color: rgba(15,118,110,.50);
}

/* ============================================================
   MISC
   ============================================================ */

.hero-card-pickup {
  font-size: .82rem;
  color: var(--brand);
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.text-brand {
  color: var(--brand) !important;
}

.checkout-delivery-info {
  border-radius: 14px;
  background: rgba(15,118,110,.06);
  border: 1px solid rgba(15,118,110,.14);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-delivery-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}

.checkout-delivery-row i {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.usp{
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(17,24,39,.08);
  background: #fff;
}

.usp i{
  color: var(--brand);
  font-size: 1.1rem;
}

/* ============================================================
   ПЛАВАЮЩАЯ КНОПКА СВЯЗИ (Telegram / Email)
   Позиционируется над кнопкой корзины на мобильных
   ============================================================ */

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 82px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #229ed9;       /* Telegram blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(34,158,217,.40);
  z-index: 1040;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.floating-contact:hover {
  transform: scale(1.08);
  background: #1a8bbf;
  color: #fff;
  box-shadow: 0 6px 24px rgba(34,158,217,.50);
}

/* Email-вариант — немного другой оттенок */
a.floating-contact[href^="mailto"] {
  background: var(--brand);
  box-shadow: 0 4px 18px rgba(15,118,110,.38);
}

a.floating-contact[href^="mailto"]:hover {
  background: #0b5f59;
  box-shadow: 0 6px 24px rgba(15,118,110,.48);
}

@media (max-width: 767.98px) {
  .about-mini-inner{
    padding: 16px 16px 14px;
  }

  .about-mini-main{
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .about-mini-logo{
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .about-mini-name{
    font-size: 1rem;
    line-height: 1.15;
  }

  .about-mini-desc{
    font-size: .9rem;
    line-height: 1.42;
  }

  .about-mini-badge{
    padding: 8px 12px;
    gap: 6px;
    margin-top: 8px;
  }

  .about-mini-stars{
    letter-spacing: .1em;
    font-size: .75rem;
  }

  .about-mini-score{
    font-size: .96rem;
  }

  .about-mini-source{
    font-size: .78rem;
  }

  .product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 8px;
  }

  .product-actions > * {
    min-width: 0;
  }

  .product-actions > a:first-child,
  .product-actions > form:first-child,
  .product-actions > :first-child .btn {
    width: 100%;
  }

  .product-actions > a:last-child.btn-preorder,
  .product-actions > form:last-child,
  .product-actions > form:last-child .btn {
    width: 52px;
    min-width: 52px;
  }

  .product-actions > a:last-child.btn-preorder,
  .product-actions > form:last-child .btn {
    position: relative;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0 !important;
    line-height: 1;
    color: transparent !important;
    flex: 0 0 52px;
  }

  .product-actions > a:last-child.btn-preorder i,
  .product-actions > form:last-child .btn i {
    position: absolute;
    inset: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
  }

  .product-actions > a:last-child.btn-preorder i {
    color: var(--brand) !important;
  }

  .product-actions > form:last-child .btn i {
    color: #fff !important;
  }

  .product-actions > a:first-child.btn,
  .product-actions > form:first-child .btn {
    min-width: 0;
  }
}

.manager-order-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(20, 32, 51, .08);
  border-radius: 32px;
  box-shadow: 0 26px 56px rgba(19, 29, 46, .08);
  padding: 28px;
}

.manager-order-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.manager-order-card__eyebrow {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}

.manager-order-card__title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.manager-order-card__subtitle {
  margin: 0;
  max-width: 54rem;
  color: rgba(15, 23, 42, .66);
  line-height: 1.7;
}

.manager-order-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .05);
  border: 1px solid rgba(15, 23, 42, .08);
  color: var(--text-color);
  font-weight: 800;
  white-space: nowrap;
}

.manager-order-card__status--new {
  background: rgba(245, 158, 11, .10);
  color: #a16207;
  border-color: rgba(245, 158, 11, .16);
}

.manager-order-card__status--processing,
.manager-order-card__status--paid {
  background: rgba(37, 99, 235, .10);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, .16);
}

.manager-order-card__status--delivered {
  background: rgba(20, 122, 115, .10);
  color: var(--brand);
  border-color: rgba(20, 122, 115, .16);
}

.manager-order-card__status--canceled {
  background: rgba(225, 29, 72, .10);
  color: #be123c;
  border-color: rgba(225, 29, 72, .16);
}

.manager-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.manager-order-panel {
  border: 1px solid rgba(20, 32, 51, .08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(250,252,255,.95) 100%);
  padding: 22px;
}

.manager-order-panel h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.manager-order-meta {
  margin: 0;
  display: grid;
  gap: 14px;
}

.manager-order-meta div {
  display: grid;
  gap: 4px;
}

.manager-order-meta dt {
  color: rgba(15, 23, 42, .55);
  font-size: .88rem;
  font-weight: 700;
}

.manager-order-meta dd {
  margin: 0;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.55;
}

.manager-order-meta a {
  color: var(--brand);
  text-decoration: none;
}

.manager-order-panel--items {
  margin-top: 18px;
}

.manager-order-items {
  display: grid;
  gap: 12px;
}

.manager-order-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 122, 115, .04);
}

.manager-order-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.manager-order-item p {
  margin: 0;
  color: rgba(15, 23, 42, .6);
}

.manager-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 32, 51, .08);
  font-size: 1.1rem;
  font-weight: 800;
}

.manager-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .manager-order-card {
    padding: 20px;
    border-radius: 26px;
  }

  .manager-order-card__head {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .manager-order-card__title {
    font-size: 1.8rem;
  }

  .manager-order-grid {
    grid-template-columns: 1fr;
  }

  .manager-order-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .manager-order-item {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .manager-order-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .manager-order-actions .btn {
    width: 100%;
  }
}
