/* xl - DESKTOP STYLES */ 
/* COOKIE CONSENT BANNER */
.ge-cookie-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(30, 26, 23, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ge-cookie-overlay.is-open {
  opacity: 1; visibility: visible;
}
.ge-cookie-modal {
  background: var(--cream);
  max-width: 480px; width: 100%;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(30, 26, 23, 0.35);
  max-height: 85vh; overflow-y: auto;
}
.ge-cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 20px;
}
.ge-cookie-text {
  font-size: 14px; line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 14px;
}
.ge-cookie-link {
  color: var(--brown-corp);
  text-decoration: underline;
}
.ge-cookie-link:hover { color: var(--brown-dark); }

.ge-cookie-actions {
  display: flex; flex-wrap: nowrap; gap: 12px;
  margin-top: 24px;
}
.ge-cookie-btn {
  padding: 12px 24px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.ge-cookie-btn-primary {
  background: var(--sand); color: var(--brown-dark);
}
.ge-cookie-btn-primary:hover { background: var(--parchment); }
.ge-cookie-btn-outline {
  background: transparent; color: var(--brown-dark);
  border-color: var(--brown-corp);
}
.ge-cookie-btn-outline:hover { background: rgba(139, 98, 69, 0.08); }
.ge-cookie-btn-ghost {
  background: transparent; color: var(--charcoal);
  opacity: 0.6;
}
.ge-cookie-btn-ghost:hover { opacity: 1; }

/* CATEGORIES (vista Configurar) */
.ge-cookie-category {
  padding: 16px 0;
  border-top: 1px solid rgba(92, 61, 40, 0.12);
}
.ge-cookie-category:last-of-type { border-bottom: 1px solid rgba(92, 61, 40, 0.12); }
.ge-cookie-category-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.ge-cookie-category-name {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--brown-dark);
}
.ge-cookie-category-desc {
  font-size: 13px; line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.7;
}
.ge-cookie-toggle-locked {
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown-light);
}

/* Toggle switch reCAPTCHA */
.ge-cookie-switch {
  position: relative; display: inline-block;
  width: 40px; height: 22px; flex-shrink: 0;
}
.ge-cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.ge-cookie-switch-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--brown-pale);
  border-radius: 22px;
  opacity: 0.5;
  transition: 0.2s;
}

.ge-cookie-switch-slider::before {
  content: ''; position: absolute;
  height: 16px; width: 16px; left: 3px; top: 3px;
  background: var(--warm-white);
  border-radius: 50%;
  transition: 0.2s;
}
.ge-cookie-switch input:checked + .ge-cookie-switch-slider {
  background: var(--brown-corp);
  opacity: 1;
}
.ge-cookie-switch input:checked + .ge-cookie-switch-slider::before {
  transform: translateX(18px);
}

@media (max-width: 768px) {
  .ge-cookie-modal { padding: 28px; }
  .ge-cookie-actions { flex-direction: column; }
  .ge-cookie-btn { text-align: center; }
}

