/* Mobile-first, accessible, premium look */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
:root {
  --bg: #f6f7f9; --card: #fff; --ink: #111; --muted: #6b7280;
  --red: #dc2626; --yellow: #facc15; --ink-invert:#fff;
  --radius: 18px; --shadow: 0 10px 28px rgba(0,0,0,.08);
}

body { background: var(--bg); color: var(--ink); font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a { color: inherit; }

.section { padding: 20px 16px; }
.container { width: 100%; max-width: 640px; margin: 0 auto; }

.eyebrow { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 6px; }
.title, .title-2 { font-family: 'Unbounded', sans-serif; line-height: 1.05; margin: 0 0 8px; }
.title { font-size: 40px; }
.title-2 { font-size: 28px; }
.subtitle { color: #374151; margin: 8px 0 14px; }

.hero-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sale-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--ink-invert); font-weight: 800; padding: 8px 12px; border-radius: 999px; box-shadow: 0 6px 16px rgba(220,38,38,.35); }

.price-card { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; background: #fffbea; border: 2px solid var(--yellow); border-radius: var(--radius); padding: 14px; margin: 14px 0; box-shadow: var(--shadow); }
.price-left .old-label, .price-right .new-label { display: block; font-size: 12px; color: var(--muted); }
.old-price { font-weight: 700; color: var(--muted); }
.new-price { background: var(--red); color: var(--ink-invert); font-size: 28px; font-weight: 900; letter-spacing: .02em; padding: 10px 14px; border-radius: 14px; box-shadow: 0 8px 20px rgba(220,38,38,.3); }

.btn { display: inline-block; border: 0; text-align: center; text-decoration: none; cursor: pointer; user-select: none; }
.btn-primary { width: 100%; background: linear-gradient(90deg, var(--red), var(--yellow)); color: #111; font-weight: 900; padding: 14px 16px; border-radius: 16px; margin-top: 6px; box-shadow: 0 10px 22px rgba(220,38,38,.25); font-size: 18px; }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:focus { outline: 3px solid rgba(250,204,21,.5); outline-offset: 2px; }

.badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.badges span { background: var(--card); border-radius: 12px; padding: 10px; text-align: center; box-shadow: var(--shadow); font-size: 13px; }

.countdown-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
.cd-left { display: flex; gap: 12px; align-items: center; }
.cd-ico { font-size: 22px; }
.cd-row { display: flex; gap: 10px; margin-top: 6px; }
.cd-row div { background: #111; color: #fff; padding: 8px 10px; border-radius: 12px; min-width: 86px; text-align: center; }
.cd-row span { font-weight: 900; font-size: 22px; display: block; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; }
.img-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.centered { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 12px; }

.product { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; margin-bottom: 12px; }
.product-title { font-weight: 800; margin: 8px 0; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price-row .old { color: var(--muted); }
.price-row .new strong { background: var(--red); color: var(--ink-invert); padding: 8px 12px; border-radius: 12px; box-shadow: 0 6px 16px rgba(220,38,38,.25); }

.reviews-grid { display: grid; gap: 12px; }
.rev { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
.rev-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.stars { color: #f59e0b; font-weight: 800; }
.likes { color: var(--muted); font-size: 12px; margin-top: 6px; }

.steps { display: grid; gap: 10px; }
.step { display: flex; gap: 12px; background: var(--card); border-radius: 14px; box-shadow: var(--shadow); padding: 12px; }
.step h3 { margin: 0 0 2px; }

.form { display: grid; gap: 10px; }
.form label span { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.form input { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid #e5e7eb; }

.footer-info { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.footer a { color: var(--muted); text-decoration: none; }

.sticky-cta { position: fixed; right: 14px; bottom: 14px; background: #111; color: #fff; padding: 12px 16px; border-radius: 999px; text-decoration: none; z-index: 30; box-shadow: var(--shadow); }

/* Larger screens */
@media (min-width: 768px) {
  .title { font-size: 48px; }
  .title-2 { font-size: 32px; }
  .grid-2 { gap: 14px; }
  .btn-primary { width: auto; min-width: 280px; }
}
/* ===== Price Card v2 ===== */
.price-card.v2{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:14px;
  align-items:center;
  background:#fffbea;
  border:2px solid #facc15;
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  position:relative;
}

/* ліва колонка */
.price-side .old-label,
.price-main .new-label{display:block;font-size:12px;color:#6b7280;margin-bottom:6px}

.price-side .old-price{
  font-weight:700;color:#6b7280;font-size:18px;
}
.price-side .old-price s{opacity:.9}

/* –50% + економія */
.price-savings{display:flex;align-items:center;gap:10px;margin:10px 0 4px}
.badge-sale{
  background:#dc2626;color:#fff;font-weight:900;
  padding:6px 10px;border-radius:999px;
  box-shadow:0 6px 16px rgba(220,38,38,.35);
  font-size:12px;line-height:1;
}
.save{color:#111;font-weight:700}
.save strong{font-weight:900}

/* права колонка з новою ціною */
.price-main{display:flex;flex-direction:column;align-items:flex-end}
.new-price{
  background:#dc2626;color:#fff;border-radius:16px;
  padding:12px 18px; box-shadow:0 12px 26px rgba(220,38,38,.35);
  position:relative; isolation:isolate;
}
.new-price strong{font-size:28px;letter-spacing:.02em}

/* легке "сяйво" під пігулкою */
.new-price::after{
  content:""; position:absolute; inset:auto -14px -10px -14px; height:18px;
  background:radial-gradient(50% 60% at 50% 0%, rgba(250,204,21,.55), transparent 70%);
  filter:blur(6px); z-index:-1; border-radius:18px;
}

/* службовий текст */
.till{font-size:12px}

/* адаптація: на дуже вузьких екранах — стовпчиком */
@media (max-width: 380px){
  .price-card.v2{grid-template-columns:1fr}
  .price-main{align-items:flex-start}
}
/* Стилізація для елементів форми */
.form label {
    display: block; /* Робить кожен елемент форми на новому рядку */
    margin-bottom: 15px; /* Відстань між полями */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- ФІНАЛЬНА ВЕРСІЯ СТИЛІВ ДЛЯ ФОРМИ ЗАМОВЛЕННЯ --- */

.form label {
    display: block;
    margin-bottom: 15px; 
    font-family: sans-serif;
}

.form span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

/* ОСНОВНІ СТИЛІ ДЛЯ ВСІХ ПОЛІВ (включно з textarea) */
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    box-sizing: border-box; 
    font-family: sans-serif; /* Щоб шрифт був однаковий */
    
    /* "Силові" стилі, які мають перемогти старі */
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    
    /* Скидання стандартних стилів з найвищим пріоритетом */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Дозволяємо змінювати розмір поля "Коментар" тільки по висоті */
.form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Стрілка для випадаючих списків (select) */
.form select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
}

/* Стилі для тексту-підказок */
.form input::placeholder,
.form textarea::placeholder {
    color: #aaa;
}

.form select:invalid {
    color: #aaa;
}

.form select option {
    color: #333;
}
/* --- ФІНАЛЬНІ СТИЛІ ДЛЯ ВИРІШЕННЯ КОНФЛІКТУ --- */

/* Використовуємо ID форми (#order_form) для максимального пріоритету */
#order_form label {
    display: block !important;
    margin-bottom: 15px !important;
}

#order_form span {
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 14px !important;
    color: #666 !important;
}

/* ОСНОВНІ СТИЛІ ДЛЯ ВСІХ ПОЛІВ З МАКСИМАЛЬНИМ ПРІОРИТЕТОМ */
#order_form input,
#order_form select,
#order_form textarea {
    width: 100% !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-family: 'Manrope', sans-serif !important;
    box-sizing: border-box !important;

    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Дозволяємо змінювати розмір поля "Коментар" тільки по висоті */
#order_form textarea {
    resize: vertical !important;
    min-height: 80px !important;
}

/* Стрілка для випадаючих списків (select) */
#order_form select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    cursor: pointer !important;
}

/* Стилі для тексту-підказок */
#order_form input::placeholder,
#order_form textarea::placeholder {
    color: #aaa !important;
}

#order_form select:invalid {
    color: #aaa !important;
}

#order_form select option {
    color: #333 !important;
}
/* css/app.css */

/* --- 1. Базові налаштування --- */
:root {
  --primary: #0b5cff;       /* Основний синій */
  --primary-dark: #004ad9;  /* Темно-синій (при наведенні) */
  --text: #111111;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --danger: #ff3b2f;        /* Червоний (для акцій) */
  --font-main: 'Manrope', sans-serif;
  --font-head: 'Unbounded', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin-top: 0;
  font-weight: 800;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
input, button, select, textarea { font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 2. Кнопки та UI --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 92, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 92, 255, 0.4);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(11, 92, 255, 0.4);
  z-index: 999;
  display: none; /* Показуємо тільки на мобільних */
  text-decoration: none;
}
@media(max-width: 768px) {
  .sticky-cta { display: block; }
}

/* --- 3. Секції та Типографіка --- */
.section { padding: 60px 0; }

.title { 
  font-size: 36px; 
  margin-bottom: 15px; 
}
.title-2 { 
  font-size: 30px; 
  text-align: center; 
  margin-bottom: 40px; 
}
.subtitle { 
  font-size: 18px; 
  color: var(--text-muted); 
  margin-bottom: 30px; 
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(11, 92, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

/* --- 4. Hero Section --- */
.hero {
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(circle at top, #f0f4ff, #fff);
}
.hero-media {
  position: relative;
  margin: 30px auto;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.sale-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--danger);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(255, 59, 47, 0.4);
}

/* Ціна */
.price-card.v2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.old-price s { color: #999; font-size: 18px; }
.old-label, .new-label { display: block; font-size: 12px; color: #777; margin-bottom: 2px; }
.new-price strong { font-size: 32px; color: var(--primary); line-height: 1; }
.price-savings { text-align: left; }
.badge-sale {
  background: #ffebeb;
  color: var(--danger);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin-right: 5px;
}

/* Бейджі переваг */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.badges span {
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
.badges span::before {
  content: '✓';
  color: var(--primary);
  margin-right: 6px;
  font-weight: 800;
}

/* --- 5. Переваги та Картки --- */
.benefits { background: var(--bg-light); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
}
.card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* --- 6. Продукти --- */
.product {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.2s;
}
.product:hover { border-color: var(--primary); transform: translateY(-3px); }
.product img {
  border-radius: 10px;
  margin: 0 auto 20px;
  max-height: 280px;
  object-fit: cover;
  width: 100%;
}
.product-title { font-size: 22px; margin-bottom: 15px; }

/* --- 7. Галерея --- */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
.img-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- 8. Відгуки --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.rev {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
}
.rev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.rev-head strong { font-size: 16px; }
.stars { color: #fdbb00; letter-spacing: 2px; }
.rev p { font-size: 14px; color: #444; margin-bottom: 15px; }
.rev img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.likes { font-size: 12px; color: #999; margin-top: 10px; text-align: right; }

/* --- 9. Форма замовлення --- */
.section.order { background: #f0f4ff; }
.form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(11, 92, 255, 0.1);
}
.form label {
  display: block;
  margin-bottom: 20px;
  text-align: left;
}
.form span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.2s;
  background: #fdfdfd;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}
.form .btn { width: 100%; margin-top: 10px; }

.consent {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 12px;
  color: #777;
  gap: 10px;
}
.consent input { width: auto; margin: 0; }
.consent a { text-decoration: underline; }

/* --- 10. Адаптивність (Mobile) --- */
@media (max-width: 768px) {
  .title { font-size: 28px; }
  .title-2 { font-size: 24px; }
  .price-card.v2 { flex-direction: column; gap: 10px; width: 100%; }
  .hero-media { margin: 20px -20px; border-radius: 0; width: auto; max-width: none; }
  .form { padding: 25px; }
  .gallery-list { gap: 10px; }
}

/* css/app.css */

/* --- 1. Налаштування змінних (Кольори) --- */
:root {
  /* Градієнт: Синій -> Фіолетовий -> Червоний */
  --gradient-brand: linear-gradient(135deg, #0b5cff 0%, #7a2bdb 50%, #ff2f5e 100%);
  
  --primary: #0b5cff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  
  /* Шрифти */
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

/* --- 2. Базові стилі --- */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
  font-family: var(--font-head);
  font-weight: 800;
  margin-top: 0;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 3. Навігація (Navbar) --- */
.navbar {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Градієнтний текст */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-contacts a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.nav-contacts a:hover {
  color: var(--primary);
}

/* --- 4. Hero Section (Банер) --- */
.hero-section {
  position: relative;
  background: var(--text-dark);
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
}

/* Градієнтний фон */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-brand);
  opacity: 0.92;
  z-index: 1;
}

.hero-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content { flex: 1; }
.hero-image-wrap { flex: 1; perspective: 1000px; }

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
  max-width: 500px;
  font-weight: 400;
}

.hero-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-family: var(--font-head);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* 3D ефект картинки */
.promo-img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.promo-img:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* --- 5. Каталог --- */
.section-title {
  text-align: center;
  font-size: 36px;
  margin: 70px 0 50px;
  color: var(--text-dark);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* --- 6. Картки товарів --- */
.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(11, 92, 255, 0.15);
}

.card-img-wrap {
  height: 260px;
  background: #f0f2f5;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.card-desc {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-card {
  margin-top: auto;
  display: block;
  background: var(--gradient-brand);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  box-shadow: 0 5px 15px rgba(11, 92, 255, 0.2);
}
.btn-card:hover {
  box-shadow: 0 8px 25px rgba(11, 92, 255, 0.4);
  filter: brightness(110%);
}

/* --- 7. Футер --- */
footer {
  background: var(--white);
  padding: 60px 0 30px;
  text-align: center;
  color: var(--text-gray);
  box-shadow: 0 -5px 30px rgba(0,0,0,0.02);
}

.footer-logo {
  font-size: 22px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-contacts {
  margin-bottom: 30px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.footer-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}
.footer-links a:hover { color: var(--primary); }

.copyright { font-size: 13px; opacity: 0.6; }

/* --- 8. Адаптивність (Мобільні) --- */
@media (max-width: 900px) {
  .hero-section { padding: 50px 0; }
  .hero-flex { 
      flex-direction: column-reverse; 
      gap: 30px; 
      text-align: center; 
  }
  .hero-title { font-size: 32px; }
  .hero-sub { margin: 0 auto 30px; font-size: 16px; }
  
  .promo-img { 
      transform: none; /* Прибираємо 3D на телефоні для швидкості */
  }
  
  .nav-contacts { display: none; } /* Ховаємо телефон в шапці на моб */
  .nav-flex { justify-content: center; }
  
  .catalog-grid {
      grid-template-columns: 1fr; /* Одна колонка на мобільному */
      gap: 30px;
  }
}
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px; text-align: center;
}
.stat-num {
    font-size: 36px; font-weight: 900; color: var(--primary);
    font-family: 'Unbounded', sans-serif; margin-bottom: 5px;
}
.stat-desc { font-size: 14px; color: #666; font-weight: 600; text-transform: uppercase; }
/* FAQ Accordion */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-btn {
  width: 100%; background: none; border: none; padding: 20px 0;
  text-align: left; font-size: 18px; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; color: var(--text-dark);
}
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-content p { margin: 0 0 20px; color: #666; font-size: 15px; }
.arrow { transition: 0.3s; }
.faq-item.active .arrow { transform: rotate(180deg); }
.faq-item.active .faq-content { max-height: 150px; } /* Висота розкриття */