/* ==========================================================================
   ПРЕМІАЛЬНА ТЕМА: BREATHE EASY (Медичний Блакитний + Кораловий акцент)
   ========================================================================== */

:root {
    /* --- Колірна палітра --- */
    --bg-white: #ffffff;          /* Чисто білий фон */
    --bg-sky-light: #f0f9ff;      /* Дуже світлий небесно-блакитний для чергування */
    --bg-input: #f8fafc;          /* Фон для інпутів */
    
    --primary: #0284c7;           /* Надійний медичний синій (sky-600) */
    --primary-dark: #0369a1;      
    
    --accent: #f97316;            /* Яскравий теплий помаранчевий для кнопок (orange-500) */
    --accent-hover: #ea580c;      
    --accent-light: rgba(249, 115, 22, 0.15);
    
    --text-heading: #0f172a;      /* Майже чорний для заголовків */
    --text-main: #475569;         /* Темно-сірий для читабельного тексту */
    --text-muted: #94a3b8;        /* Приглушений сірий */
    
    --text-blue: #0ea5e9;         /* Акцентний блакитний для тексту/іконок */
    
    --border-light: #e0f2fe;      /* Легкі блакитні межі */
    --border-sky: #bae6fd;        
    --border-primary: rgba(2, 132, 199, 0.3);
    
    /* --- Тіні (м'які, "повітряні") --- */
    --shadow-soft: 0 10px 40px rgba(2, 132, 199, 0.08);
    --shadow-card: 0 15px 35px rgba(15, 23, 42, 0.05);
    --shadow-btn: 0 10px 25px rgba(249, 115, 22, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.03);
    
    /* --- Радіуси закруглення --- */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;            
    --radius-btn: 60px;           /* Овальні кнопки */
    
    /* --- Переходи --- */
    --transition-fast: 0.2s ease;
    --transition-norm: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* --- Z-index --- */
    --z-back: -1;
    --z-norm: 1;
    --z-header: 1000;
}

/* ==========================================================================
   БАЗОВІ СТИЛІ ТА СКИДАННЯ
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Кастомний скролбар */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-sky-light); }
::-webkit-scrollbar-thumb { background: #7dd3fc; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

::selection { background: var(--accent); color: #fff; }

body {
    margin: 0; padding: 0; font-family: 'Montserrat', sans-serif;
    background: var(--bg-white); color: var(--text-main); line-height: 1.65; overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }

/* Використовуємо Nunito для заголовків (він м'який і викликає довіру) */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--text-heading); margin: 0 0 15px 0; line-height: 1.25; }
a { text-decoration: none; transition: var(--transition-norm); }

/* Допоміжні класи */
.section-padding { padding: 80px 0; }
.bg-sky-light { background-color: var(--bg-sky-light); }
.bg-white { background-color: var(--bg-white); }
.border-y { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.text-accent { color: var(--accent); }
.text-blue { color: var(--text-blue); }
.text-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Класи для заокруглень та тіней */
.rounded-img { border-radius: var(--radius-md); overflow: hidden; }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); background-color: #fff;}
.border-white { border: 5px solid #fff; }
.border-sky { border: 3px solid var(--border-sky); }
.border-primary { border: 2px solid var(--border-primary); }

/* ==========================================================================
   АНІМАЦІЇ
   ========================================================================== */
@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes bounceBadge {
    0%, 100% { transform: translateY(0) rotate(5deg) scale(1); }
    50% { transform: translateY(-5px) rotate(5deg) scale(1.05); }
}

/* ==========================================================================
   КНОПКИ
   ========================================================================== */
.btn-hero {
    display: inline-flex; justify-content: center; align-items: center;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: #ffffff; padding: 22px 45px; font-weight: 800; font-size: 16px;
    text-transform: uppercase; letter-spacing: 1px; border: none; 
    cursor: pointer; border-radius: var(--radius-btn); transition: var(--transition-norm);
    box-shadow: var(--shadow-btn); font-family: 'Nunito', sans-serif;
    width: 100%; max-width: 380px; position: relative; overflow: hidden;
}
.btn-hero::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shimmer 4s infinite;
}
.btn-hero:hover { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4); }
.pulse-btn { animation: pulseOrange 2.5s infinite; }

/* ==========================================================================
   ШАПКА (HEADER)
   ========================================================================== */
.header {
    position: sticky; top: 0; z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light); padding: 15px 0; box-shadow: var(--shadow-card);
}
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(22px, 3.5vw, 26px); color: var(--text-heading); letter-spacing: 1px; margin: 0; }
.logo span { color: var(--primary); }

.btn-header {
    border: 2px solid var(--primary); color: var(--primary); 
    padding: 8px 24px; border-radius: var(--radius-btn); 
    font-weight: 700; font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.5px; background: transparent; font-family: 'Nunito', sans-serif;
}
.btn-header:hover { background: var(--primary); color: #ffffff; }

/* ==========================================================================
   ГОЛОВНИЙ ЕКРАН
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: var(--z-norm); }

/* Ховаємо мобільне фото на десктопі */
.hero-img-box-mobile { display: none; }
.hero-img-box-desktop { position: relative; width: 100%; }

.img-relative { position: relative; }
.hero-main-img { width: 100%; border-radius: var(--radius-lg); position: relative; z-index: 2; border: 5px solid #fff; box-shadow: var(--shadow-soft);}

/* Декоративне світіння під фотографією */
.glow-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90%; height: 90%; background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
    z-index: 1; border-radius: 50%;
}

.float-anim { animation: floatY 7s ease-in-out infinite; }

/* Плаваюча лейба */
.floating-badge {
    position: absolute; bottom: 5%; right: -15px; background: var(--bg-white); color: var(--primary);
    padding: 12px 25px; border-radius: var(--radius-sm); font-weight: 800; font-size: 14px;
    box-shadow: var(--shadow-card); z-index: 3; border: 2px solid var(--border-sky);
    display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px;
    font-family: 'Nunito', sans-serif; animation: bounceBadge 4s infinite;
}

.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.badge-top { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--primary); padding: 8px 18px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius-btn); margin-bottom: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border-light); font-family: 'Nunito', sans-serif;}
.hero-title { font-size: clamp(32px, 5.5vw, 56px); letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 15px; text-transform: uppercase; }
.hero-tagline { font-size: clamp(16px, 2vw, 17px); margin-bottom: 35px; max-width: 480px; }

/* Блок ціни */
.price-box { display: flex; align-items: center; gap: 30px; padding: 20px 35px; border-radius: var(--radius-md); margin-bottom: 30px; position: relative; border: 1px solid var(--border-light); }
.price-box::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 5px; background: var(--accent); border-radius: var(--radius-md) 0 0 var(--radius-md); }
.price-col { display: flex; flex-direction: column; }
.price-divider { width: 1px; height: 50px; background: var(--border-light); }
.price-label { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; margin-bottom: 2px; letter-spacing: 1px; }
.old-price { font-size: 24px; color: #cbd5e1; text-decoration: line-through; font-weight: 700; }
.new-price { font-size: 46px; color: var(--text-heading); font-weight: 900; line-height: 1; font-family: 'Nunito', sans-serif;}

/* Таймер */
.timer-wrap { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 25px; border-radius: var(--radius-btn); border: 1px solid var(--border-light); width: fit-content; }
.timer-dot { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; animation: blinkDot 1.5s infinite; }
.timer-info { font-size: 14px; color: var(--text-main); font-weight: 700; margin: 0; }
#timer { font-weight: 900; color: var(--text-heading); letter-spacing: 0.5px; }

/* ==========================================================================
   БЛОК ПЕРЕВАГ
   ========================================================================== */
.features-bar { padding: 40px 0; }
.f-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.f-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 15px 10px; }
.f-icon { font-size: 40px; margin-bottom: 10px; display: block; filter: drop-shadow(0 4px 6px rgba(2, 132, 199, 0.15)); }
.f-text { font-size: 13px; font-weight: 800; color: var(--text-heading); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Nunito', sans-serif;}

/* ==========================================================================
   ІНФОРМАЦІЙНІ БЛОКИ
   ========================================================================== */
.section-title { text-align: center; font-size: clamp(24px, 4vw, 38px); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 50px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }

.img-group { display: flex; flex-direction: column; gap: 20px;}
.info-img img { width: 100%; }

.lead-text { font-size: 17px; color: var(--primary); font-weight: 700; margin-bottom: 15px; }
.info-text p { font-size: 16px; margin-bottom: 25px; line-height: 1.7;}

/* Списки з булітами */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; background: #fff; padding: 25px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); box-shadow: var(--shadow-card); transition: var(--transition-norm); }
.bg-sky-light .feature-list li { border-color: var(--border-sky); }
.feature-list li:hover { border-color: var(--primary); transform: translateX(5px); box-shadow: var(--shadow-soft);}
.feature-list li strong { color: var(--text-heading); display: block; margin-bottom: 2px; font-size: 16px; font-family: 'Nunito', sans-serif;}
.feature-list li div { font-size: 14px; line-height: 1.6;}
.f-bullet { width: 44px; height: 44px; min-width: 44px; background: var(--bg-sky-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid var(--border-sky);}
.bg-sky-light .f-bullet { background: #fff; }

/* ==========================================================================
   ХАРАКТЕРИСТИКИ ТА ІНСТРУКЦІЇ
   ========================================================================== */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.specs-img-group { display: flex; flex-direction: column; gap: 20px;}

.specs-list { display: flex; flex-direction: column; gap: 12px; }
.spec-item { display: flex; justify-content: space-between; align-items: center; padding: 18px 25px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-norm); box-shadow: var(--shadow-card);}
.spec-item:hover { border-color: var(--primary); transform: scale(1.02); }
.spec-name { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.spec-val { font-size: 15px; color: var(--text-heading); font-weight: 800; font-family: 'Nunito', sans-serif;}

/* Інструкція (Новий стиль карток) */
.how-to-list { display: flex; flex-direction: column; gap: 20px;}
.how-to-item { padding: 30px 25px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); position: relative; overflow: hidden;}
.how-to-item h4 { font-size: 16px; margin-bottom: 8px; color: var(--text-heading); text-transform: uppercase; position: relative; z-index: 2; font-family: 'Nunito', sans-serif;}
.how-to-item p { font-size: 14px; margin: 0; line-height: 1.6; position: relative; z-index: 2; font-weight: 500;}
.step-num { position: absolute; top: -15px; right: -5px; font-size: 110px; font-weight: 900; color: var(--primary); font-family: 'Nunito', sans-serif; line-height: 1; opacity: 0.05; z-index: 0;}

/* ==========================================================================
   ВІДГУКИ (REVIEWS) - Горизонтальний скрол на мобільних
   ========================================================================== */
.google-header { display: flex; justify-content: space-between; align-items: center; padding: 25px 35px; margin-bottom: 40px; border-radius: var(--radius-md); border: 1px solid var(--border-light);}
.g-logo { font-family: 'Arial', sans-serif; font-weight: 500; font-size: 26px; display: flex; align-items: center; gap: 2px;}
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC05; } .g-green { color: #34A853; }
.stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; margin-left: 20px; }
.gh-right { text-align: right; }
.gh-right p { margin: 0; font-size: 32px; font-weight: 900; color: var(--text-heading); font-family: 'Nunito', sans-serif;}
.gh-right span { color: var(--text-muted); font-size: 14px; font-weight: 600;}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-height: 650px; overflow-y: auto; padding-right: 10px; padding-bottom: 10px;}
.reviews-grid::-webkit-scrollbar { width: 6px; }
.reviews-grid::-webkit-scrollbar-track { background: transparent; border-radius: 10px; }
.reviews-grid::-webkit-scrollbar-thumb { background: #bae6fd; border-radius: 10px; }

.review-card { padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: var(--transition-norm); background: #fff;}
.review-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.rc-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; box-shadow: var(--shadow-inner); font-family: 'Nunito', sans-serif;}
.avatar.or { background: #f97316; } .avatar.gr { background: #10b981; } .avatar.bl { background: #0ea5e9; } .avatar.rd { background: #ef4444; } .avatar.gn { background: #8b5cf6; }
.rc-info b { display: block; font-size: 15px; color: var(--text-heading); font-weight: 800; margin-bottom: 2px; font-family: 'Nunito', sans-serif;}
.stars-small { color: #FBBC05; font-size: 13px; }
.date { margin-left: auto; font-size: 12px; color: var(--text-muted); font-weight: 600;}
.review-card p { font-size: 14px; margin: 0; line-height: 1.6; font-weight: 500;}

/* ==========================================================================
   ФОРМА ЗАМОВЛЕННЯ (ORDER FORM)
   ========================================================================== */
.form-panel { background: #fff; padding: 50px; max-width: 520px; margin: 0 auto; border-radius: var(--radius-lg); position: relative;}

.panel-header { text-align: center; margin-bottom: 30px; }
.panel-header h2 { font-size: clamp(24px, 4vw, 28px); margin-bottom: 8px; letter-spacing: 0.5px;}
.sub-h { color: var(--text-muted); font-size: 15px; font-weight: 500;}

/* Товар в формі */
.product-summary { display: flex; align-items: center; gap: 15px; padding: 15px 20px; margin-bottom: 25px; border-radius: var(--radius-sm); }
.sum-img img { width: 70px; border-radius: 12px; box-shadow: var(--shadow-card);}
.sum-info h4 { margin: 0 0 5px; font-size: 15px; font-weight: 800; color: var(--text-heading); font-family: 'Nunito', sans-serif;}
.sum-info p { margin: 0; font-size: 12px; color: var(--primary); font-weight: 800; text-transform: uppercase; }

/* Інпути */
.inp-group { margin-bottom: 20px; }
.inp-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; padding-left: 15px;}
.inp-field input, .inp-field select { width: 100%; padding: 18px 25px; background: var(--bg-input); border: 1px solid var(--border-light); border-radius: var(--radius-btn); font-size: 15px; color: var(--text-heading); transition: var(--transition-norm); font-family: 'Montserrat', sans-serif; font-weight: 600; appearance: none; -webkit-appearance: none;}
.inp-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230ea5e9' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 25px center; padding-right: 40px; cursor: pointer; }
.inp-field input:focus, .inp-field select:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15); }
.inp-field input::placeholder { color: #94a3b8; font-weight: 500;}

/* Підсумок ціни */
.total-row { display: flex; justify-content: space-between; align-items: center; margin: 30px 0; border-top: 2px dashed var(--border-light); padding-top: 25px; }
.total-row span:first-child { font-size: 15px; font-weight: 800; text-transform: uppercase;}
.total-val { color: var(--text-heading); font-size: 38px; font-weight: 900; font-family: 'Nunito', sans-serif; line-height: 1; }

.full-width { width: 100%; max-width: none; font-size: 17px; padding: 22px; }
.security-note { text-align: center; font-size: 13px; margin-top: 20px; color: var(--text-muted); font-weight: 500;}

/* ==========================================================================
   ПІДВАЛ (FOOTER)
   ========================================================================== */
.footer { background: #0f172a; padding: 40px 0; color: #fff;}
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-footer { font-size: 22px; margin: 0; color: #fff;}
.f-links { text-align: right; }
.f-links p { margin: 0 0 5px; font-size: 12px; color: #94a3b8; }
.f-links a { color: #94a3b8; text-decoration: none; font-size: 12px; transition: var(--transition-fast); }
.f-links a:hover { color: var(--primary); }

/* ==========================================================================
   АДАПТИВНІСТЬ ДЛЯ ТЕЛЕФОНІВ (ВОРОНКА ТА КАРУСЕЛЬ)
   ========================================================================== */
@media (max-width: 992px) {
    .section-padding { padding: 50px 0; }
    
    .hero-img-box-desktop { display: none; }
    .hero-img-box-mobile { display: block; margin-bottom: 25px; width: 100%; max-width: 450px; margin-left: auto; margin-right: auto;}
    
    .hero-grid { display: flex; flex-direction: column; align-items: center; gap: 0; text-align: center; }
    .hero-text { display: flex; flex-direction: column; align-items: center; width: 100%;}
    .badge-top { order: 1; margin-bottom: 15px; }
    .hero-title { order: 2; margin-bottom: 15px; }
    .hero-tagline { order: 3; margin-bottom: 25px; max-width: 90%; }
    .hero-img-box-mobile { order: 4; }
    .price-box { order: 5; margin: 0 auto 25px; width: 100%; max-width: 350px; justify-content: center; padding: 0; background: transparent; border: none; box-shadow: none;}
    .price-box::before { display: none;}
    .price-col { text-align: center; }
    .btn-hero { order: 6; width: 100%; max-width: 400px; }
    .timer-wrap { order: 7; margin: 15px auto 0; justify-content: center; background: transparent; border: none; box-shadow: none; padding: 0;}

    .f-grid { grid-template-columns: repeat(2, 1fr); }
    
    .info-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .info-grid.reverse { direction: ltr; }
    .rounded-img { max-width: 85%; margin: 0 auto; }
    .feature-list li { text-align: left; }
    
    .specs-grid { grid-template-columns: 1fr; gap: 40px; }
    .specs-img-group { flex-direction: row; justify-content: center;}
    .specs-img-group img { width: 48%; margin-bottom: 0 !important;}
    
    .form-panel { padding: 40px 30px; }
}

@media (max-width: 576px) {
    .section-padding { padding: 40px 0; }
    .header { padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--border-light);}
    .btn-header { display: none; } 
    .logo { width: 100%; text-align: center; font-size: 24px;}
    
    .hero-title { font-size: 32px; line-height: 1.2; padding: 0 10px;}
    
    .floating-badge { bottom: -10px; right: -5px; padding: 8px 15px; font-size: 11px;}
    
    .price-box { flex-direction: column; gap: 10px;}
    .price-divider { width: 80%; height: 1px; background: #e0f2fe;}
    .new-price { font-size: 42px; }
    .btn-hero { padding: 20px; font-size: 15px; }
    
    .f-grid { gap: 10px; }
    .f-item { padding: 15px 5px;}
    .f-icon { font-size: 32px; }
    .f-text { font-size: 11px; }
    
    .rounded-img { max-width: 100%; border-width: 2px; }
    .feature-list li { padding: 20px 15px; flex-direction: column; align-items: center; text-align: center; gap: 12px; border-radius: var(--radius-sm);}
    .f-bullet { margin-bottom: 5px; }
    
    .order-section { padding-left: 10px; padding-right: 10px; }
    .form-panel { padding: 35px 20px; border-radius: var(--radius-md);}
    .inp-field input, .inp-field select { padding: 16px 20px; font-size: 14px;}
    .total-val { font-size: 34px; }

    /* Горизонтальний скрол відгуків (Карусель) */
    .reviews-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 25px !important;
        padding-left: 5px !important;
        padding-right: 20px !important;
        gap: 15px !important;
        max-height: none !important;
    }
    .review-card {
        flex: 0 0 85% !important; 
        max-width: 320px !important;
        scroll-snap-align: center !important; 
        height: auto !important;
        white-space: normal !important;
        display: flex;
        flex-direction: column;
    }
    .reviews-grid::-webkit-scrollbar {
        height: 5px !important;
        width: auto !important;
    }
    .reviews-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05) !important; 
        border-radius: 10px !important;
    }
    .reviews-grid::-webkit-scrollbar-thumb {
        background: var(--primary) !important; 
        border-radius: 10px !important;
    }
}

@media (max-width: 380px) {
    .review-card { flex: 0 0 90% !important; }
}