/* ============================================
   OPTICA BRĂILA — Premium Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── PROMO / PRESCRIPTION BANNER ── */
.promo-banner {
    background: linear-gradient(135deg, #003d80 0%, #0062cc 50%, #00527a 100%);
    padding: 0;
    overflow: hidden;
}
.promo-banner-inner {
    display: flex;
    align-items: stretch;
    min-height: 0;
    flex-wrap: wrap;
}
.promo-col {
    flex: 1;
    min-width: 280px;
    padding: 48px 40px;
    position: relative;
}
.promo-col:first-child {
    background: rgba(0,0,0,0.15);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.promo-col-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}
.promo-icon { font-size: 20px; }
.promo-col h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25;
}
.promo-col p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}
.promo-col a.btn {
    font-size: 14px;
    padding: 12px 26px;
}
.discount-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.discount-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 16px 22px;
    min-width: 120px;
    transition: var(--transition);
}
.discount-badge:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}
.discount-pct {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}
.discount-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-align: center;
}
.promo-note {
    font-size: 12px !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 !important;
    font-style: italic;
}
.rx-required-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 200, 0, 0.15);
    border: 1.5px solid rgba(255, 200, 0, 0.4);
    color: #ffd740;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    animation: pulse-gold 2.5s ease-in-out infinite;
}
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 64, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255, 215, 64, 0); }
}


:root {
    --primary: #0062cc;
    --primary-light: #3d8bfd;
    --primary-dark: #003d80;
    --accent: #00b4d8;
    --accent-glow: rgba(0, 180, 216, 0.3);
    --gold: #c9a227;
    --gold-light: #f0d060;
    --bg-dark: #0a0e17;
    --bg-dark-2: #111827;
    --bg-light: #f8faff;
    --bg-section: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-on-dark: #e2e8f0;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    letter-spacing: 0.2px;
    overflow-x: hidden;
    background: var(--bg-light);
}

h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.2; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }

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

/* ── NAVBAR ── */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 30px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--transition);
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 18px; }
.nav-brand img { width: 32px; height: 32px; border-radius: 6px; }
.nav-brand span { color: var(--primary-light); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
    padding: 8px 16px; border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; background: var(--primary); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; transition: var(--transition); }

/* ── HERO ── */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: url('../images/hero_optica.png') center/cover no-repeat;
    padding: 120px 20px 80px; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(165deg, rgba(0,30,80,0.85) 0%, rgba(10,14,23,0.75) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); border-radius: var(--radius-full);
    padding: 8px 20px; font-size: 13px; color: var(--gold-light);
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 30px; animation: fadeInDown 0.8s ease-out;
}
.hero-title {
    font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 72px);
    font-weight: 800; color: #fff; margin-bottom: 24px;
    line-height: 1.05; animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.8);
    max-width: 600px; margin: 0 auto 40px; font-weight: 300; line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.6s both; }
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
    border-radius: var(--radius-full); font-weight: 600; font-size: 15px;
    cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; box-shadow: 0 8px 24px rgba(0,98,204,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,98,204,0.5); color: #fff; }
.btn-outline-light {
    background: rgba(255,255,255,0.08); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(5px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; transform: translateY(-2px); }

.hero-stats {
    display: flex; justify-content: center; gap: 50px; margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 32px; font-weight: 800; color: #fff; display: block; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark-2); color: var(--text-on-dark); }
.section-alt { background: var(--bg-light); }
.section-white { background: #fff; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-label {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
    background: rgba(0,98,204,0.08); padding: 6px 16px; border-radius: var(--radius-full);
}
.section-dark .section-label { background: rgba(0,180,216,0.15); color: var(--accent); }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; color: var(--text-primary); }
.section-dark .section-title { color: #fff; }
.section-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* ── VISUCONSULT ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.split-image img { width: 100%; display: block; }
.split-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.split-content .highlight { color: var(--primary); }
.split-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 14px; padding: 12px 0;
    font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px;
}

/* ── LENS CARDS ── */
.lens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.lens-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 32px; position: relative; overflow: hidden;
    transition: var(--transition);
}
.lens-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0;
    transition: var(--transition);
}
.lens-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(0,180,216,0.3); }
.lens-card:hover::before { opacity: 1; }
.lens-card-icon { font-size: 32px; margin-bottom: 16px; }
.lens-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.lens-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.lens-card .lens-detail { font-size: 13px; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.lens-tag {
    display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.tag-mono { background: rgba(0,180,216,0.15); color: var(--accent); }
.tag-prog { background: rgba(201,162,39,0.2); color: var(--gold-light); }
.tag-sun { background: rgba(255,100,50,0.15); color: #ff8a50; }
.tag-protect { background: rgba(100,200,100,0.15); color: #6fcf6f; }

/* ── COATINGS ── */
.coatings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.coating-card {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md);
    padding: 28px 20px; text-align: center; transition: var(--transition); position: relative;
}
.coating-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.coating-dot {
    width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.dot-gold { background: linear-gradient(135deg, #c9a227, #f0d060); }
.dot-platinum { background: linear-gradient(135deg, #5a8dcc, #90b8f0); }
.dot-silver { background: linear-gradient(135deg, #8aa0b8, #c0d4e8); }
.dot-chrome { background: linear-gradient(135deg, #4a8060, #70c090); }
.coating-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.coating-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── FRAMES (BRANDS) ── */
.brands-showcase { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }
.brand-pill {
    padding: 10px 24px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
    color: var(--text-primary); background: #fff; border: 1.5px solid var(--border-light);
    transition: var(--transition); cursor: default;
}
.brand-pill:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-pill.premium { border-color: var(--gold); color: #8B6914; background: linear-gradient(135deg, #fffdf0, #fff9e0); }
.brand-pill.premium:hover { box-shadow: 0 4px 16px rgba(201,162,39,0.25); }

.frames-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; align-items: center; }
.frames-info-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ── WHY ZEISS ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
    background: #fff; border-radius: var(--radius-md); padding: 36px 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    transition: var(--transition); text-align: center;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.why-card-icon {
    width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    background: linear-gradient(135deg, rgba(0,98,204,0.1), rgba(0,180,216,0.1));
}
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 80px 20px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 40px); color: #fff; font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }
.btn-white { background: #fff; color: var(--primary-dark); font-weight: 700; }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--primary-dark); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 600;
    color: var(--text-primary); list-style: none; transition: var(--transition);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--primary); transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 0 0 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ── FOOTER ── */
.site-footer {
    background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.footer-brand h3 span { color: var(--primary-light); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── STICKY CONTACT ── */
.sticky-contact { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.sticky-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-full); color: #fff; font-weight: 700;
    font-size: 15px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: var(--transition);
}
.sticky-btn:hover { transform: scale(1.05); color: #fff; }
.sticky-btn svg { width: 22px; height: 22px; }
.whatsapp-btn { background: #075e54; }
.phone-btn { background: var(--primary); }

/* ── GDPR CONSENT BANNER ── */
.consent-banner {
    position: fixed;
    bottom: 116px; /* deasupra butoanelor sticky desktop */
    right: 20px;
    width: 300px;
    background: rgba(13, 18, 30, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 20px;
    z-index: 998;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: translateY(20px);
    opacity: 0;
    animation: consentSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}
@keyframes consentSlideIn {
    to { transform: translateY(0); opacity: 1; }
}
.consent-banner.hidden {
    animation: consentSlideOut 0.3s ease forwards;
}
@keyframes consentSlideOut {
    to { transform: translateY(20px); opacity: 0; pointer-events: none; }
}
.consent-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.consent-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.consent-text {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}
.consent-text strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}
.consent-text a {
    color: var(--accent);
    text-decoration: underline;
    font-size: 11px;
}
.consent-actions {
    display: flex;
    gap: 8px;
}
.consent-accept {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.consent-accept:hover { opacity: 0.9; transform: translateY(-1px); }
.consent-decline {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.consent-decline:hover { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .coatings-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .frames-info { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,14,23,0.98); flex-direction: column; padding: 20px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-stats { gap: 24px; }
    .hero-stat-number { font-size: 24px; }
    .lens-grid { grid-template-columns: 1fr; }
    .coatings-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .brands-showcase { gap: 8px; }
    .brand-pill { padding: 8px 16px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .sticky-contact { bottom: 0; right: 0; left: 0; flex-direction: row; gap: 0; border-radius: 0; }
    .sticky-btn { flex: 1; border-radius: 0; padding: 14px 10px; font-size: 16px; }
    body { padding-bottom: 54px; }
    .consent-banner {
        bottom: 60px; /* deasupra sticky bar mobile */
        right: 12px;
        left: 12px;
        width: auto;
        border-radius: 14px;
    }
}
@media (max-width: 480px) {
    .coatings-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; padding: 0 10px; }
    .btn { width: 100%; justify-content: center; }
}
