.elementor-387 .elementor-element.elementor-element-07e4433{--display:flex;--min-height:100vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-07e4433 *//* ===== Hintergrund (animiert) auf der Elementor-Sektion ===== */
#cookie-section {
  position: relative;
  min-height: 100vh;
  display: flex; 
  justify-content: center; 
  align-items: center;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(79,255,202,0.08), transparent 60%),
              radial-gradient(1000px 500px at 90% 20%, rgba(0,224,255,0.08), transparent 60%),
              linear-gradient(135deg, #0f172a, #1e293b 60%, #0b1324);
  overflow: hidden;
  padding: 60px 20px;
}
#cookie-section::before, 
#cookie-section::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), rgba(255,255,255,0));
  border-radius: 50%;
  filter: blur(12px);
  animation: float 10s ease-in-out infinite alternate;
}
#cookie-section::after { top: 15%; left: 65%; animation-delay: 4s; }
@keyframes float {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.15); }
}

/* ===== Karte (Glassmorphism + Glow) ===== */
.cookie-card {
  position: relative;
  width: min(980px, 96vw);
  padding: 28px 28px 14px;
  border-radius: 24px;
  color: #eaf2ff;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
  animation: cardIn 0.8s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Hero ===== */
.cookie-hero { text-align: center; padding: 24px 12px 8px; }
.cookie-icon { font-size: 48px; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.9} 50%{transform:scale(1.15);opacity:1} 100%{transform:scale(1);opacity:.9} }
.cookie-title {
  margin: 8px 0 4px; font-size: clamp(28px, 4vw, 40px);
  background: linear-gradient(90deg, #4fffca, #00e0ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(0,224,255,0.35);
}
.cookie-subtitle { margin: 0 0 10px; color: #b9c8ff; opacity: .9; }

/* ===== Hinweisbox ===== */
.cookie-alert {
  margin: 8px auto 18px; padding: 12px 16px; border-radius: 14px;
  background: rgba(0,224,255,0.09); border: 1px solid rgba(0,224,255,0.25);
  color: #dff9ff; box-shadow: inset 0 0 20px rgba(0,224,255,0.08);
}

/* ===== Abschnitte ===== */
.cookie-section-block {
  margin: 16px 0 14px; padding: 16px 16px 6px; border-radius: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.cookie-section-block h2 { margin: 0 0 8px; font-size: clamp(18px, 2.6vw, 22px); color: #e7f6ff; }
.cookie-section-block p, .cookie-section-block li { color: #d7e7ff; line-height: 1.6; }

/* ===== Toggle-Liste ===== */
.cookie-toggle-list { display: grid; gap: 12px; }
.toggle-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center;
  padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.switch { position: relative; display: inline-block; width: 54px; height: 30px; }
.switch input { display: none; }
.slider {
  position: absolute; cursor: pointer; inset: 0; border-radius: 999px;
  background: rgba(255,255,255,0.25); transition: .25s; box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}
.slider:before {
  content: ""; position: absolute; height: 22px; width: 22px; left: 4px; top: 4px;
  background: #fff; border-radius: 50%; transition: .25s; box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.switch input:checked + .slider { background: linear-gradient(90deg, #00e0ff, #4fffca); }
.switch input:checked + .slider:before { transform: translateX(24px); }

/* ===== Buttons ===== */
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.btn {
  appearance: none; border: none; cursor: pointer; padding: 10px 16px; border-radius: 12px; font-weight: 700;
  background: linear-gradient(90deg, #00e0ff, #4fffca); color: #051427;
  box-shadow: 0 6px 20px rgba(0,224,255,0.25); transition: transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,224,255,0.35); }
.btn.ghost { background: transparent; color: #d7e7ff; border: 1px solid rgba(255,255,255,0.16); }
.btn.outline { background: rgba(255,255,255,0.06); color: #eaf2ff; border: 1px solid rgba(0,224,255,0.35); }

/* ===== Feedback ===== */
.cookie-feedback { margin-top: 8px; opacity: 0; transform: translateY(6px); transition: all .25s; color: #c7fcee; }
.cookie-feedback.show { opacity: 1; transform: translateY(0); }

/* ===== Accordion ===== */
.accordion details {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 10px 12px; margin: 8px 0; transition: border-color .2s, background .2s;
}
.accordion summary { cursor: pointer; color: #eaf2ff; list-style: none; }
.accordion details[open] { background: rgba(0,224,255,0.05); border-color: rgba(0,224,255,0.25); }

/* ===== Links ===== */
.link { color: #7fefff; text-decoration: none; border-bottom: 1px dashed rgba(127,239,255,0.5); }
.link:hover { border-color: transparent; }

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .cookie-card { padding: 20px 16px 8px; border-radius: 18px; }
  .toggle-row { grid-template-columns: 1fr auto; }
}

-----
/* ====== FIX PACK LISIBILITÉ + RESPONSIVE ====== */

/* Couleur par défaut pour tout le contenu de la carte */
.cookie-card, .cookie-card * {
  color: #eaf2ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Corrige certains éléments qui restaient noirs (summary/details par défaut du navigateur) */
.accordion summary,
.accordion details p,
.accordion details li {
  color: #eaf2ff;
}

/* Rendre le summary plus tactile, lisible et accessible */
.accordion summary {
  font-weight: 700;
  line-height: 1.4;
  outline: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "▸";
  margin-left: 8px;
  transition: transform .2s ease;
  display: inline-block;
  transform: translateY(-1px);
  color: #7fefff;
}
.accordion details[open] summary::after { transform: rotate(90deg) translateX(2px); }

/* Empêche tout débordement (URLs longues, mots collés, emails, etc.) */
.cookie-card p, .cookie-card li, .cookie-card a, .cookie-card summary {
  overflow-wrap: anywhere;       /* moderne */
  word-break: break-word;        /* fallback */
  hyphens: auto;                 /* si dispo */
}

/* Empêche les enfants de "sortir" visuellement de la carte sur mobile */
.cookie-card {
  width: clamp(300px, 92vw, 960px);
  padding: clamp(16px, 3.5vw, 28px);
  border-radius: 22px;
  overflow: hidden; /* évite les fuites d’ombres/éléments animés en mobile */
}

/* Grille des toggles plus flexible */
.cookie-toggle-list { 
  display: grid; 
  gap: 12px; 
}
.toggle-row {
  grid-template-columns: 1fr auto;
}

/* Boutons: meilleures zones de clic en mobile */
.btn { 
  padding: 12px 16px; 
  border-radius: 12px; 
  font-size: clamp(14px, 2.7vw, 16px);
}

/* Switch/toggle: taille adaptée et cliquable sur petits écrans */
.switch { width: 54px; height: 30px; }
.slider:before { width: 22px; height: 22px; }

/* Liens mieux contrastés et focus visible (a11y) */
.link { 
  color: #9af7ff; 
  text-decoration: none; 
  border-bottom: 1px dashed rgba(154,247,255,0.6);
}
.link:hover, .link:focus { 
  border-bottom-color: transparent; 
  outline: none;
}

/* Titres adaptatifs & contrastés */
.cookie-title { 
  text-shadow: 0 0 10px rgba(0,224,255,0.25);
}
.cookie-section-block h2 {
  color: #e7f6ff;
  font-weight: 800;
}

/* Boîte d’alerte: contraste renforcé */
.cookie-alert {
  background: rgba(0,224,255,0.11);
  border-color: rgba(0,224,255,0.35);
  color: #e8fdff;
}

/* Hero icon: taille fluide */
.cookie-icon { font-size: clamp(36px, 7vw, 48px); }

/* ====== Responsive fin ====== */
@media (max-width: 640px) {
  #cookie-section { padding: 28px 14px; }
  .cookie-card { border-radius: 18px; }
  .toggle-row { gap: 8px; }
  .switch { width: 48px; height: 28px; }
  .slider:before { width: 20px; height: 20px; }
}/* End custom CSS */