/* ===========================
   СелоТаСало — Styles (clean)
   =========================== */
/* ===== Montserrat (self-hosted) ===== */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-400-normal.woff2") format("woff2"),
       url("/assets/fonts/montserrat-400-normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-400-italic.woff2") format("woff2"),
       url("/assets/fonts/montserrat-400-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-600-normal.woff2") format("woff2"),
       url("/assets/fonts/montserrat-600-normal.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-700-normal.woff2") format("woff2"),
       url("/assets/fonts/montserrat-700-normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-800-normal.woff2") format("woff2"),
       url("/assets/fonts/montserrat-800-normal.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Apply site-wide */
:root { --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
body { font-family: var(--font-sans); }


.font-sifonn {
  font-family: "Sifonn", Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

:root{
  --brand:#2e7d32;       /* основний зелений */
  --brand-700:#256428;   /* темніший зелений */
  --brand-green: var(--brand);
  --light-bg:#f5f7f4;    /* світлий фон секцій */
  --text:#444;           /* основний текст */
  --muted:#6b7280;       /* другорядний текст */
  --badge:#f9a825;       /* жовтий бейдж (кількість у кошику) */
}

/* Базові */
*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: var(--font-sans);
  color:var(--text);
  background:#fff;
  line-height:1.5;
  padding-top: 72 px; /* лишив як було (з пробілом), щоб не змінити поточний вигляд */
}
img{max-width:100%;display:block}
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand-700);text-decoration:underline}
.text-brand{color:var(--brand)}
small, .small{color:var(--muted)}
.navbar .navbar-brand strong{font-weight:800}

/* Заголовки секцій */
section h2,
h2.section-title{
  color:#28a745 !important;
}

/* Hero */
.hero{
  min-height:520px;
  display:flex;
  align-items:center;
  padding:12px 0 0;
  position:relative;
  overflow:hidden;
}
.hero .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero .hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,45,25,.78) 0%, rgba(11,45,25,.48) 44%, rgba(11,45,25,.16) 100%),
    linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,.08));
}
.min-vh-hero{
  min-height:500px;
}
.hero-content{
  max-width:660px;
  padding:28px 0;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  padding:.42rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.hero-title{
  color:#fff;
  font-size:clamp(2.1rem, 5vw, 4.35rem);
  line-height:1.02;
  font-weight:800;
  letter-spacing:.02em;
  text-shadow:0 6px 24px rgba(0,0,0,.28);
}
.hero-subtitle{
  max-width:560px;
  color:rgba(255,255,255,.92);
  font-size:clamp(1.04rem, 2vw, 1.28rem);
  line-height:1.55;
  text-shadow:0 4px 18px rgba(0,0,0,.24);
}
.hero-cta{
  padding:.85rem 1.35rem;
  font-weight:700;
}
.hero-card{
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
}

/* Секції */
.section{padding:48px 0}
.section-light{background:var(--light-bg)}
.section-head{max-width:740px;margin:0 auto 18px;text-align:center}
.section-title{font-weight:800;margin:0 0 4px}
section{scroll-margin-top:80px}

/* Менший відступ зверху для секції "Товари" */
#products.section{ padding-top:20px; }
/* Більший відступ під заголовком секції "Товари" */
#products .section-title{ margin-bottom:24px; }

/* About */
.about-section{
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(46,125,50,.10), transparent 62%),
    radial-gradient(760px 300px at 90% 20%, rgba(249,168,37,.14), transparent 58%),
    #fffaf2;
}
.about-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.38rem .82rem;
  border-radius:999px;
  color:var(--brand);
  background:rgba(46,125,50,.10);
  border:1px solid rgba(46,125,50,.16);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.about-card{
  background:#fff;
  border:1px solid rgba(46,125,50,.10);
}
.about-content{
  padding:clamp(22px, 4vw, 44px);
  display:flex;
  align-items:center;
}
.about-quote{
  position:relative;
  padding-left:22px;
  border-left:4px solid var(--brand);
}
.about-quote p{
  margin:0 0 1rem;
  color:#435047;
  font-size:1rem;
  line-height:1.75;
}
.about-quote p:last-of-type{ margin-bottom:1.25rem; }
.about-social-proof{
  display:flex;
  align-items:center;
  gap:12px;
  margin:1.25rem 0 0;
  padding:14px 16px;
  border-radius:18px;
  color:#243528;
  background:linear-gradient(135deg, rgba(46,125,50,.10), rgba(249,168,37,.12));
  border:1px solid rgba(46,125,50,.14);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-social-proof:hover{
  color:#243528;
  transform:translateY(-1px);
  border-color:rgba(46,125,50,.24);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}
.about-social-proof .bi{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg, #111, var(--brand));
  font-size:1.25rem;
}
.about-social-proof span{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.about-social-proof strong{
  font-size:1rem;
  line-height:1.25;
}
.about-social-proof small{
  color:var(--muted);
  font-size:.86rem;
  line-height:1.45;
}
.about-signature{
  display:flex;
  flex-direction:column;
  gap:2px;
  margin-top:1.1rem;
  padding-top:1rem;
  border-top:1px solid rgba(46,125,50,.14);
  color:#243528;
}
.about-signature strong{ font-size:1.05rem; }
.about-signature span{ color:var(--muted); font-size:.92rem; }
.about-photos{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:clamp(16px, 3vw, 26px);
  background:linear-gradient(180deg, rgba(46,125,50,.08), rgba(249,168,37,.10));
}
.about-photo-card{
  position:relative;
  min-height:260px;
  border-radius:18px;
  overflow:hidden;
  background:#e9efe7;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}
.about-photo-card img{
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  object-position:center;
  transition:transform .25s ease;
}
.about-photo-card:hover img{ transform:scale(1.02); }
.about-family-caption{
  padding:14px 16px;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg, rgba(11,61,46,.94), rgba(46,125,50,.88));
  box-shadow:0 10px 22px rgba(0,0,0,.16);
  text-align:center;
}
.about-family-caption strong,
.about-family-caption span{ display:block; }
.about-family-caption strong{ font-size:.96rem; }
.about-family-caption span{
  margin-top:3px;
  font-size:.84rem;
  color:rgba(255,255,255,.84);
}
@media (min-width:768px) and (max-width:991.98px){
  .about-photos{ grid-template-columns:1fr 1fr; }
  .about-family-caption{ grid-column:1 / -1; }
}
@media (max-width:575.98px){
  .about-content{ padding:22px 18px; }
  .about-quote{ padding-left:16px; }
  .about-quote p{ font-size:.94rem; line-height:1.68; }
  .about-photo-card,
  .about-photo-card img{ min-height:230px; }
}

/* Таби категорій */
#categoryTabs{border-bottom:2px solid var(--brand)}
#categoryTabs .nav-link{
  border:0;
  color:var(--brand);
  font-weight:600;
  border-radius:.75rem .75rem 0 0;
}
#categoryTabs .nav-link.active{
  background:var(--brand);
  color:#fff;
}

/* Картки товарів */
.product-card{
  border:0;
  border-radius:1rem;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  position:relative;
  background:#fff;
}
.product-card .card-img-top{height:200px;object-fit:cover}
.product-card .price{font-weight:700;color:var(--brand)}
.product-card .badge-wrap{
  position:absolute;
  top:.5rem;
  left:.5rem;
  z-index:2;
}
.product-card .badge{font-size:.75rem;padding:.35em .6em}

/* Фасування (плашка типу "0.5 кг / шт") у картці товару */
.product-pack{
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.01em;
  padding:.38em .65em;
  color: var(--brand);
  background: rgba(46,125,50,.10);
  border: 1px solid rgba(46,125,50,.18);
  white-space: nowrap;
  flex-shrink: 0;
}


/* Кнопки */
.btn-primary{
  --bs-btn-bg:var(--brand);
  --bs-btn-border-color:var(--brand);
  --bs-btn-hover-bg:var(--brand-700);
  --bs-btn-hover-border-color:var(--brand-700);
  --bs-btn-focus-shadow-rgb:46,125,50;
  box-shadow:0 8px 20px rgba(46,125,50,.23);
  border-radius:12px;
}
.btn-outline-primary{
  --bs-btn-color:var(--brand);
  --bs-btn-border-color:var(--brand);
  --bs-btn-hover-bg:var(--brand);
  --bs-btn-hover-border-color:var(--brand);
  --bs-btn-hover-color:#fff;
  border-radius:12px;
}

/* Кошик */
.badge.bg-primary{background:var(--badge)!important;color:#111}
#cartTotal{font-size:1.05rem}

.cart-actions .btn-icon{
  border:0;
  background:transparent;
  padding:4px;
  line-height:1;
  border-radius:8px;
  cursor:pointer;
}
.cart-actions .btn-icon:hover{background:rgba(0,0,0,.06)}
.cart-line{
  display:flex;
  gap:.5rem;
  align-items:center;
  justify-content:space-between;
  padding:6px 0;
  border-bottom:1px dashed rgba(0,0,0,.06);
}
.cart-line:last-child{border-bottom:0}

/* Підказки швидкої ваги у модалці */
.quick-weight{
  flex:1 1 0;
  text-align:center;
  border-radius:10px;
}

/* Список «Як замовити» */
.how-list{
  max-width:720px;
  margin:0 auto;
  padding-left:1.2rem;
  color:var(--muted);
  line-height:1.8;
}
.how-list li{margin-bottom:.5rem}

/* Контакти */
.contact-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:16px;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}
.contact-card p{margin:.25rem 0}
.contact-card a{color:var(--text)}
.contact-card a:hover{color:var(--brand)}

/* Модалки */
.modal-content{
  border:0;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.2);
}
.modal-header{border-bottom:1px solid rgba(0,0,0,.06)}
.modal-footer{border-top:1px solid rgba(0,0,0,.06)}

/* FAB — плаваюча кнопка кошика для мобільних */
#fabCart{
  position:fixed;
  bottom:1.2rem;
  right:1.2rem;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  z-index:1080;
}
#fabCart .badge{
  position:absolute;
  top:4px;
  right:4px;
  font-size:.7rem;
}

/* Floating buttons (mobile) */
#fabFeedback{
  position: fixed;
  left: 20px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

/* Якщо хочеш, щоб іконка була трішки більша */
#fabFeedback i{ font-size: 1.25rem; }


/* Chat help popup */
.chat-help-popup{
  position: fixed;
  right: 20px;
  bottom: 96px;
  width: min(360px, calc(100vw - 24px));
  padding: 16px 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  z-index: 1040;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.chat-help-popup[hidden]{ display:none !important; }
.chat-help-popup.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chat-help-eyebrow{
  margin-bottom: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-green, var(--brand));
}
.chat-help-title{
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #212529;
}
.chat-help-text{
  margin-bottom: 12px;
  font-size: .94rem;
  line-height: 1.45;
  color: #495057;
}
.chat-help-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.chat-help-action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 600;
  color: #fff;
  background: var(--viber);
  border: 1px solid var(--viber);
  text-decoration: none;
}
.chat-help-action:hover{
  color: #fff;
  background: var(--viber-dark);
  border-color: var(--viber-dark);
}
.chat-help-phone{
  font-weight: 700;
  color: var(--viber-dark);
  text-decoration: none;
}
.chat-help-phone:hover{
  color: var(--viber-dark);
  text-decoration: underline;
}
.chat-help-close{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6c757d;
}
.chat-help-close:hover{
  background: rgba(0,0,0,.05);
  color: #212529;
}

@media (max-width:767.98px){
  .chat-help-popup{
    right: 12px;
    left: 12px;
    bottom: 96px;
    width: auto;
  }
}


/* Дрібні покращення */
.lead{color:#f6f7f6}
.hero .btn-outline-light{border-width:2px}

/* ===========================
   Navbar (зелений фон + білий текст)
   =========================== */
.navbar.sts-navbar{
  background: var(--brand-green, var(--brand)) !important;
  border-bottom: 1px solid rgba(255,255,255,.15) !important;

  /* Гарантовано видима бургер-іконка на зеленому фоні */
  --bs-navbar-toggler-border-color: rgba(255,255,255,.35);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.sts-navbar .navbar-brand img{ filter: brightness(0) invert(1); }

.navbar.sts-navbar a,
.navbar.sts-navbar a:link,
.navbar.sts-navbar a:visited,
.navbar.sts-navbar .navbar-nav .nav-link{
  color:#fff !important;
  text-decoration:none;
}
.navbar.sts-navbar a:hover,
.navbar.sts-navbar .navbar-nav .nav-link:hover,
.navbar.sts-navbar .navbar-nav .nav-link:focus{
  color: rgba(255,255,255,.85) !important;
  text-decoration:none;
}

/* Phone + toggler layout */
.navbar.sts-navbar .container{
  flex-wrap: nowrap;
  align-items: center;
}
.navbar.sts-navbar .navbar-phone{ min-width:0; }
.navbar.sts-navbar .navbar-phone .note{
  font-size:.75rem;
  line-height:1.1;
}
.navbar.sts-navbar .navbar-toggler{ border-color: rgba(255,255,255,.35); }
.navbar.sts-navbar .navbar-toggler:focus{
  box-shadow: 0 0 0 .15rem rgba(255,255,255,.25);
}

/* Трохи ущільнюємо меню на вузьких desktop-екранах, щоб новий пункт "Про нас" не ламав шапку. */
@media (min-width:1200px) and (max-width:1399.98px){
  .navbar.sts-navbar .navbar-nav{ gap:.45rem !important; }
  .navbar.sts-navbar .navbar-nav .nav-link{
    font-size:.9rem;
    padding-left:.25rem;
    padding-right:.25rem;
  }
  .navbar.sts-navbar .navbar-collapse .btn{
    padding-left:.65rem;
    padding-right:.65rem;
  }
}

/* ===========================
   TABLET NAVBAR TUNING (iPad etc.)
   =========================== */
@media (min-width:768px) and (max-width:1199.98px){
  .navbar.sts-navbar .container{ position:relative; }
  .navbar.sts-navbar .navbar-phone{ max-width:320px; min-width:0; }

  .navbar.sts-navbar .navbar-phone .note{
    font-size:.68rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .navbar.sts-navbar .navbar-collapse{
    position:absolute;
    top: calc(100% + 8px);
    right:0;
    left:auto;

    width:360px;
    background: var(--brand-green, #1f9d4a);
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    padding:.75rem;

    box-shadow:0 14px 30px rgba(0,0,0,.18);
    z-index:1050;
  }

  .navbar.sts-navbar .navbar-nav{
    gap:.15rem !important;
    text-align:left;
  }
  .navbar.sts-navbar .navbar-nav .nav-link{
    padding:.55rem .7rem;
    border-radius:12px;
  }
  .navbar.sts-navbar .navbar-nav .nav-link:hover{
    background: rgba(255,255,255,.10);
  }

  .navbar.sts-navbar .navbar-collapse .d-grid{ display:block !important; }
  .navbar.sts-navbar .navbar-collapse .btn{ width:100%; }
}

/* ===========================
   PHONE NAVBAR TUNING (<= 767px)
   =========================== */
@media (max-width:767.98px){
  .navbar.sts-navbar .container{
    position:relative;
    flex-wrap:nowrap;
    align-items:center;
  }

  .navbar.sts-navbar .navbar-phone{
    max-width:210px;
    min-width:0;
  }
  .navbar.sts-navbar .navbar-phone a{
    white-space:nowrap;
    font-size:.95rem;
  }
  .navbar.sts-navbar .navbar-phone .note{
    font-size:.66rem;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .navbar.sts-navbar .navbar-collapse{
    position:absolute;
    top: calc(100% + 8px);
    left:12px;
    right:12px;

    background: var(--brand-green, #1f9d4a);
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    padding:.75rem;

    box-shadow:0 14px 30px rgba(0,0,0,.18);
    z-index:1050;
  }

  .navbar.sts-navbar .navbar-nav{
    text-align:left;
    gap:.15rem !important;
  }
  .navbar.sts-navbar .navbar-nav .nav-link{
    padding:.55rem .7rem;
    border-radius:12px;
  }
  .navbar.sts-navbar .navbar-nav .nav-link:hover{
    background: rgba(255,255,255,.10);
  }

  .navbar.sts-navbar .navbar-collapse .btn{ width:100%; }
  .navbar.sts-navbar .navbar-brand img{ height:56px; }
}

/* На дуже вузьких екранах */
@media (max-width:575.98px){
  .navbar.sts-navbar .navbar-phone{ max-width:190px; }
  .navbar.sts-navbar .navbar-phone .note{ font-size:.68rem; }
  .navbar.sts-navbar .navbar-brand img{ height:56px; }
}

/* ===========================
   Aдаптивність секцій/карток
   =========================== */
@media (max-width:991.98px){
  .hero{
    min-height:500px;
    padding-top:78px;
  }
  .min-vh-hero{ min-height:420px; }
  .section{padding:40px 0}
}
@media (max-width:575.98px){
  .product-card .card-img-top{height:180px}
  .hero{
    min-height:470px;
  }
  .min-vh-hero{ min-height:380px; }
  .hero-content{ padding:18px 0 28px; }
  .hero-kicker{ font-size:.72rem; }
  .hero-cta{ width:100%; }
}

/* FAB позиція на телефонах */
@media (max-width:767.98px){
  #fabCart{
    right:20px;
    bottom:28px;
  }
}

/* Order preview */
.order-preview{
  max-height:180px;
  overflow:auto;
}

/* =========================
   Hero social icons (final)
   ========================= */
.hero-social-wide{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  max-width:520px;

  gap:12px;
  flex-wrap:wrap;
}

.hero-social-link{
  --size:44px;
  width:var(--size);
  height:var(--size);
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;
  text-decoration:none;

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color:#fff;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.hero-social-link i{
  font-size:20px;
  line-height:1;
  opacity:.95;
}
.hero-social-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.40);
  box-shadow: 0 14px 28px rgba(0,0,0,.24);
  color:#fff;
}
.hero-social-link:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.hero-social-link:focus-visible{
  outline:0;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 10px 22px rgba(0,0,0,.18);
}
@media (max-width:576px){
  .hero-social-link{ --size:40px; }
  .hero-social-link i{ font-size:18px; }
}

/* Footer */
.sts-footer{
  background:#0b3d2e;
  color:rgba(255,255,255,.85);
}
.sts-footer .text-muted{ color:rgba(255,255,255,.75)!important; }
.sts-footer a{ color:rgba(255,255,255,.85); }
.sts-footer a:hover{ color:#fff; text-decoration:underline; }

/* Phone grid align */
.navbar-phone-grid{
  display:grid;
  grid-template-columns:max-content 1fr;
  row-gap:2px;
  column-gap:0;
  min-width:0;

  text-align:left;
  justify-items:start;
}
.navbar-phone-grid .phone-link{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:max-content 1fr;
  column-gap:0;
  white-space:nowrap;
}
.navbar-phone-grid .p1{ grid-column:1; }
.navbar-phone-grid .p2{ grid-column:2; }

.navbar-phone .note{
  display:block;
  padding-left:0em;
}
.navbar-phone-grid .phone-note{
  margin-bottom:16px;
  display:block;
}

/* Cart strip under hero */
.cart-strip{
  background: var(--brand);
  padding: 22px 0 30px;
  position: relative;
  overflow: hidden;
}
.cart-strip::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(600px 260px at 85% 20%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 360px at 50% 120%, rgba(0,0,0,.22), transparent 55%);
  pointer-events:none;
}
.cart-strip .container{ position:relative; }
.cart-card{ border: 1px solid rgba(0,0,0,.06); }

.hero-social-lift{
  margin-top:-170px;
}

/* Тонкий зсув телефону — тільки на планшетах.
   На телефонах (Android) прибираємо, щоб Viber не ховався під текст. */
@media (min-width:768px) and (max-width:1199.98px){
  .sts-navbar .navbar-phone{
    transform: translateX(15px);
  }
}
@media (max-width:767.98px){
  .sts-navbar .navbar-phone{
    transform: none;
  }
}

/* =========================
   Ship date (button-like)
   ========================= */
.shipdate-group .input-group-text{ cursor:pointer; }

.shipdate-group{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.shipdate-group:hover .shipdate-input,
.shipdate-group:hover .input-group-text{
  filter: brightness(1.03);
}

.shipdate-group:focus-within{
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 .2rem rgba(255,255,255,.15), 0 6px 18px rgba(0,0,0,.12);
}

.shipdate-icon{
  cursor:pointer;
  user-select:none;
  border:0;
  background: rgba(255,255,255,.12);
}
.shipdate-icon i{ font-size:1.1rem; }

.shipdate-input{
  cursor:pointer;
  font-weight:600;
  background:transparent;
  border:0;
}
.shipdate-input:focus{
  border-color:#198754;
  box-shadow:0 0 0 .25rem rgba(25,135,84,.25);
}

/* Підказка “Залишилось місць…” під полем */
.shipdate-hint{
  display:block;
  margin-top:.35rem;
}

/* ===== Navbar Viber button ===== */
:root{
  --nav-icon-size: 40px;   /* РОЗМІР КНОПКИ */
  --nav-icon-gap: 20px;    /* ВІДСТУП ДО БУРГЕРА */
  --viber: #7360F2;        /* "вайберний" фіолетовий */
  --viber-dark: #5f4ae6;
}

.nav-icon-btn{
  width: var(--nav-icon-size);
  height: var(--nav-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  text-decoration: none;
}

/* якщо іконка через <i class="bi ..."> */
.nav-icon-btn i{
  font-size: 1.35rem;  /* РОЗМІР ІКОНКИ */
  line-height: 1;
}

/* Viber-стиль */
.nav-icon-btn.viber{
  background: var(--viber);
  border-color: rgba(255,255,255,.40);
  color: #fff;
}
.nav-icon-btn.viber:hover{
  background: var(--viber-dark);
  color:#fff;
}

#navViber{
  margin-right: var(--nav-icon-gap);
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

/* РОЗМІР саме SVG/IMG-іконки (бо в тебе <img>, не <i>) */
.nav-icon-btn .nav-icon-img{
  width: 24px;   /* ← збільшуй/зменшуй */
  height: 24px;  /* ← збільшуй/зменшуй */
  display: block;
}

/* Якщо твій viber.svg НЕ фіолетовий (монохромний), зробимо його білим на фіолетовому фоні */
.nav-icon-btn.viber .nav-icon-img{
  filter: brightness(0) invert(1);
}

/* Мінімальне замовлення + рекомендації */
#minOrderBox .btn,
#minOrderBoxModal .btn {
  white-space: nowrap;
}

/* Фасування 0.7 / 1 кг */
#qtyFixedBox .pack-row {
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
}
#qtyFixedBox .pack-count {
  min-width: 38px;
  text-align: center;
}

.quick-weight.active{
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2") format("woff2"),
       url("/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff") format("woff");
  font-display: swap;
}

.sts-footer a.link-secondary{
  color: rgba(255,255,255,.85) !important;
}
.sts-footer a.link-secondary:hover{
  color: #fff !important;
  text-decoration: underline;
}

.bg-white.rounded-4.shadow-sm .text-secondary,
.bg-white.rounded-4.shadow-sm .text-muted,
.bg-white.rounded-4.shadow-sm .form-text{
  color: #495057 !important; /* темніше, але вигляд майже той самий */
}


/* Подарунок біля кошика */
.gift-box .bi-gift-fill{
  font-size: 1rem;
}
