/* =========================================
   ELGASCO GMBH – Main Stylesheet
   Colors: Navy #0d1b2a | Orange #e84c10 | White #fff
   ========================================= */

:root {
  --navy: #0d1b2a;
  --navy-mid: #152638;
  --navy-light: #1e3450;
  --orange: #e84c10;
  --orange-light: #ff6a35;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #e2e6ed;
  --gray-text: #6b7a8d;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,42,.12);
  --shadow-hover: 0 12px 40px rgba(13,27,42,.22);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,27,42,0.98);
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600;
}
.nav-links a.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.lang-btn {
  background: transparent; border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 700;
  padding: 5px 12px; border-radius: 6px; cursor: pointer;
  transition: var(--transition); letter-spacing: .06em; font-family: var(--font);
}
.lang-btn:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.6); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a2f4a 100%);
  padding: 80px 5% 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-glow {
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,76,16,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,76,16,.15); border: 1px solid rgba(232,76,16,.35);
  color: var(--orange-light); font-size: .82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 28px;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero-badge::before { content: ''; display: none; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--orange); }
.hero p {
  color: rgba(255,255,255,.7); font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7; margin-bottom: 36px; max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: .95rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,76,16,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  width: min(420px, 38vw);
}
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 20px;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.hero-card:first-child { grid-column: 1/-1; }
.hero-card-icon { font-size: 2rem; margin-bottom: 8px; }
.hero-card h3 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
.hero-card p { color: rgba(255,255,255,.5); font-size: .75rem; }

/* ==================== STATS ==================== */
.stats {
  background: var(--orange);
  padding: 52px 5%;
}
.stats-grid {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.stats-grid .stat-item { min-width: 140px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500; margin-top: 6px; }

/* ==================== SECTIONS SHARED ==================== */
section { padding: 90px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  color: var(--orange); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.section-header p { color: var(--gray-text); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ==================== CATEGORIES ==================== */
.categories { background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 1300px; margin: 0 auto;
}
.category-card {
  background: var(--white); border: 1.5px solid var(--gray-mid);
  border-radius: 16px; overflow: hidden;
  transition: var(--transition); cursor: pointer;
  text-decoration: none; color: var(--navy);
}
.category-card:hover {
  border-color: var(--orange); transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.category-img {
  height: 180px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-card:hover .category-img img { transform: scale(1.06); }
.category-img .cat-icon {
  font-size: 3rem; color: var(--gray-text);
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.category-body { padding: 20px 22px 22px; }
.category-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.category-body p { font-size: .83rem; color: var(--gray-text); line-height: 1.5; }
.cat-count {
  display: inline-block; background: rgba(232,76,16,.1);
  color: var(--orange); font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-top: 10px;
}

/* ==================== CATALOG PAGE ==================== */
.catalog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 5% 60px;
  text-align: center;
}
.catalog-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 12px; }
.catalog-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.catalog-section { padding: 60px 5%; background: var(--gray-light); }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; max-width: 1400px; margin: 0 auto; align-items: start; }

/* Sidebar */
.catalog-sidebar {
  background: var(--white); border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow); position: sticky; top: 88px;
}
.sidebar-title { font-size: .75rem; font-weight: 700; color: var(--gray-text); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.sidebar-filter { display: flex; flex-direction: column; gap: 4px; }
.sidebar-filter button {
  background: none; border: none; cursor: pointer;
  text-align: left; padding: 10px 14px; border-radius: 10px;
  font-size: .88rem; font-weight: 500; color: var(--navy);
  transition: var(--transition); display: flex; align-items: center; justify-content: space-between;
}
.sidebar-filter button:hover { background: var(--gray-light); }
.sidebar-filter button.active { background: rgba(232,76,16,.1); color: var(--orange); font-weight: 700; }
.sidebar-filter button .count { font-size: .75rem; color: var(--gray-text); background: var(--gray-light); padding: 2px 7px; border-radius: 50px; }
.sidebar-filter button.active .count { background: rgba(232,76,16,.15); color: var(--orange); }

/* Search bar */
.catalog-search {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.catalog-search input {
  flex: 1; padding: 12px 18px; border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius); font-size: .9rem; font-family: var(--font);
  outline: none; transition: var(--transition);
  background: var(--white);
}
.catalog-search input:focus { border-color: var(--orange); }
.catalog-search button {
  background: var(--orange); color: var(--white); border: none;
  padding: 12px 20px; border-radius: var(--radius); cursor: pointer;
  font-weight: 600; display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.catalog-search button:hover { background: var(--orange-light); }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1.5px solid var(--gray-mid); transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); border-color: var(--orange); transform: translateY(-4px); }
.product-img {
  height: 170px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img .no-img { font-size: 2.5rem; opacity: .3; }
.product-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--orange); margin-bottom: 6px;
}
.product-body h4 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.product-body p { font-size: .78rem; color: var(--gray-text); line-height: 1.5; flex: 1; }
.product-part { font-size: .72rem; color: var(--gray-text); font-family: 'Courier New', monospace; margin-top: 10px; border-top: 1px solid var(--gray-mid); padding-top: 10px; }
.product-part strong { color: var(--navy); }

/* Results count */
.results-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-count { font-size: .88rem; color: var(--gray-text); }
.results-count strong { color: var(--navy); }

/* ==================== ABOUT ==================== */
.about { background: var(--gray-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-content h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--gray-text); font-size: .98rem; line-height: 1.8; margin-bottom: 18px; }
.timeline { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.timeline-item { display: flex; gap: 16px; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; font-size: .75rem; }
.timeline-body h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.timeline-body p { font-size: .82rem; color: var(--gray-text); line-height: 1.5; }

.about-visual { position: relative; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-item { border-radius: 14px; overflow: hidden; aspect-ratio: 1; background: var(--gray-mid); }
.about-img-item img { width: 100%; height: 100%; object-fit: cover; }
.about-img-item:first-child { grid-row: span 2; aspect-ratio: auto; }
.about-strengths { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-strength-item { padding-left: 14px; border-left: 3px solid var(--orange); }
.about-strength-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.about-strength-item p { font-size: .82rem; color: var(--gray-text); line-height: 1.55; }

.about-badge-overlay {
  position: absolute; bottom: -12px; left: -12px;
  background: var(--orange); color: var(--white);
  border-radius: 16px; padding: 18px 24px; box-shadow: 0 8px 32px rgba(232,76,16,.4);
}
.about-badge-overlay .number { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge-overlay .text { font-size: .8rem; font-weight: 600; opacity: .9; }

/* ==================== CLIENTS / PARTNERS ==================== */
.partners { background: var(--white); padding: 64px 5%; }
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partners h2 { text-align: center; font-size: 1.1rem; font-weight: 600; color: var(--gray-text); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 40px; }
.partners-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px 60px; }
.partner-logo { font-size: 1.1rem; font-weight: 800; color: var(--gray-mid); letter-spacing: .06em; text-transform: uppercase; transition: var(--transition); }
.partner-logo:hover { color: var(--navy); }

/* ==================== WHY US ==================== */
.why-us { background: var(--navy); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.why-card { border-top: 3px solid var(--orange); }
.why-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.6; }

/* ==================== CONTACT ==================== */
.contact { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--gray-text); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(232,76,16,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); }
.contact-item-body p:first-child { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.contact-item-body p:last-child { color: var(--gray-text); font-size: .85rem; }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius); font-size: .9rem; font-family: var(--font);
  outline: none; transition: var(--transition); background: var(--white);
  color: var(--navy);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; border-radius: var(--radius); }

/* ==================== FOOTER ==================== */
footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 64px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; font-size: .82rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 44px; }

/* ==================== ANIMATIONS ==================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px 5%; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 100px 5% 60px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  section { padding: 64px 5%; }
}

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .12);
  border-top: 3px solid var(--orange);
  border-radius: 14px;
  padding: 20px 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  animation: cookieSlideUp .4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text {
  font-size: .86rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-consent-text a {
  color: var(--orange-light);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--orange);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--orange-light); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .35);
}
.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 20px;
  }
  .cookie-consent-actions { justify-content: flex-end; }
}
