/* ================================================================
     DELIA — FIXES v3.0 (diaspora.ro)
     1. Elimina scrollbar lateral dreapta
     2. Cerc stanga jos (mirror dreapta)
     3. Nav bar complet ascuns cand inchis
     4. Fix sistem cache
     ================================================================ */

  /* ── 1. ELIMINA SCROLLBAR LATERAL DREAPTA ─────────────────────── */
  html {
      overflow-y: scroll; /* Pastreaza spatiu dar ascunde scrollbar-ul */
      scrollbar-width: none !important; /* Firefox */
      -ms-overflow-style: none !important; /* IE/Edge vechi */
  }
  html::-webkit-scrollbar {
      width: 0 !important;
      display: none !important;
  }
  body::-webkit-scrollbar {
      width: 0 !important;
      display: none !important;
  }
  body {
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
  }
  /* Elimina scrollbar si de pe elementele cu overflow-y */
  *::-webkit-scrollbar {
      width: 4px;
      height: 4px;
  }
  *::-webkit-scrollbar-track {
      background: transparent;
  }
  *::-webkit-scrollbar-thumb {
      background: rgba(100,100,120,0.3);
      border-radius: 2px;
  }

  /* ── 2. CERC STANGA JOS — mirror al celui din dreapta ──────────── */
  #delia-left-circle-btn {
      position: fixed;
      bottom: 24px;
      left: 20px;
      z-index: 10001;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #ec4899 0%, #7c3aed 60%, #2563eb 100%);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(236,72,153,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.3s;
      font-size: 26px;
      line-height: 1;
      text-decoration: none;
  }
  #delia-left-circle-btn:hover {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 12px 40px rgba(236,72,153,0.65);
  }
  /* Puls animat — mirror */
  #delia-left-circle-btn::after {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(236,72,153,0.45);
      animation: leftCirclePulse 2.8s ease infinite;
      pointer-events: none;
  }
  @keyframes leftCirclePulse {
      0%   { transform: scale(1); opacity: 0.8; }
      60%  { transform: scale(1.25); opacity: 0; }
      100% { transform: scale(1); opacity: 0; }
  }

  /* ── 3. NAV BAR MOBILE — COMPLET ASCUNS CAND INCHIS ──────────── */
  /* Ascunde complet panelul cand nu e deschis (overflow-x safety) */
  body.delia-nav-open {
      overflow: hidden !important;
  }
  /* Ensure overlay covers everything */
  .delia-mobile-overlay {
      position: fixed !important;
      inset: 0 !important;
      z-index: 895 !important;
      background: rgba(0, 0, 0, 0.6) !important;
      backdrop-filter: blur(4px) !important;
      -webkit-backdrop-filter: blur(4px) !important;
      display: none !important;
      opacity: 0 !important;
      transition: opacity 0.3s ease !important;
  }
  .delia-mobile-overlay.visible {
      display: block !important;
      opacity: 1 !important;
  }
  /* Butonul de inchidere nav — mereu vizibil si accesibil */
  .delia-mobile-panel-close {
      background: rgba(255,255,255,0.1) !important;
      border: 1.5px solid rgba(255,255,255,0.18) !important;
      color: #f1f5f9 !important;
      width: 40px !important;
      height: 40px !important;
      border-radius: 50% !important;
      cursor: pointer !important;
      font-size: 20px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      transition: all 0.2s !important;
      flex-shrink: 0 !important;
  }
  .delia-mobile-panel-close:hover {
      background: rgba(239,68,68,0.2) !important;
      border-color: rgba(239,68,68,0.4) !important;
      color: #ef4444 !important;
      transform: rotate(90deg) scale(1.1) !important;
  }

  /* ── 4. CACHE/COOKIE ADMIN BAR BUTTON ────────────────────────── */
  #wp-admin-bar-delia-clear-cache .ab-item {
      background: linear-gradient(135deg, #ef4444, #dc2626) !important;
      color: #fff !important;
      border-radius: 6px !important;
      font-weight: 700 !important;
  }
  #wp-admin-bar-delia-clear-cache .ab-item:hover {
      background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  }
  #wp-admin-bar-delia-clear-cookies .ab-item {
      background: linear-gradient(135deg, #f59e0b, #d97706) !important;
      color: #fff !important;
      border-radius: 6px !important;
      font-weight: 700 !important;
  }
  #wp-admin-bar-delia-clear-cookies .ab-item:hover {
      background: linear-gradient(135deg, #d97706, #b45309) !important;
  }
  

  /* ================================================================
     DELIA QUICK GRID — v4.0 Futuristic App Launcher
     Design: glassmorphic cards cu culori individuale, hover glow
     ================================================================ */

  /* ── CONTAINER ─────────────────────────────────────────────────── */
  .delia-quick-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      max-width: 780px;
      margin: 32px auto 0;
      padding: 0 8px;
      animation: fadeInUp 0.7s ease 0.5s both;
  }

  /* ── CARD BASE ──────────────────────────────────────────────────── */
  .delia-qc {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 18px 10px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.09);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      text-decoration: none !important;
      cursor: pointer;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 0.25s ease,
                  border-color 0.25s ease,
                  background 0.25s ease;
      overflow: hidden;
      -webkit-tap-highlight-color: transparent;
      isolation: isolate;
  }

  /* Subtle shine top edge */
  .delia-qc::before {
      content: '';
      position: absolute;
      top: 0; left: 8%; right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      pointer-events: none;
  }

  /* ── ICON ───────────────────────────────────────────────────────── */
  .delia-qc-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      font-size: 24px;
      line-height: 1;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
      flex-shrink: 0;
      position: relative;
  }

  /* ── LABEL ──────────────────────────────────────────────────────── */
  .delia-qc-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.2;
      text-align: center;
      color: rgba(203,213,225,0.85);
      transition: color 0.2s ease;
      max-width: 80px;
      word-break: break-word;
      hyphens: auto;
  }

  /* ── HOVER STATE ────────────────────────────────────────────────── */
  .delia-qc:hover {
      transform: translateY(-5px) scale(1.03);
  }
  .delia-qc:hover .delia-qc-icon {
      transform: scale(1.12) rotate(-4deg);
  }
  .delia-qc:hover .delia-qc-label {
      color: #fff;
  }
  .delia-qc:active {
      transform: translateY(-1px) scale(0.98);
  }

  /* ── COLOR VARIANTS ─────────────────────────────────────────────── */
  /* Blue — CV */
  .delia-qc--blue .delia-qc-icon {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  }
  .delia-qc--blue:hover {
      border-color: rgba(37,99,235,0.5);
      background: rgba(37,99,235,0.12);
      box-shadow: 0 16px 40px rgba(37,99,235,0.25);
  }

  /* Gold — Consulate */
  .delia-qc--gold .delia-qc-icon {
      background: linear-gradient(135deg, #d97706, #b45309);
      box-shadow: 0 8px 24px rgba(217,119,6,0.45);
  }
  .delia-qc--gold:hover {
      border-color: rgba(217,119,6,0.5);
      background: rgba(217,119,6,0.12);
      box-shadow: 0 16px 40px rgba(217,119,6,0.25);
  }

  /* Green — Joburi */
  .delia-qc--green .delia-qc-icon {
      background: linear-gradient(135deg, #059669, #047857);
      box-shadow: 0 8px 24px rgba(5,150,105,0.45);
  }
  .delia-qc--green:hover {
      border-color: rgba(5,150,105,0.5);
      background: rgba(5,150,105,0.12);
      box-shadow: 0 16px 40px rgba(5,150,105,0.25);
  }

  /* Red — Cerere Ajutor */
  .delia-qc--red .delia-qc-icon {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      box-shadow: 0 8px 24px rgba(239,68,68,0.45);
  }
  .delia-qc--red:hover {
      border-color: rgba(239,68,68,0.5);
      background: rgba(239,68,68,0.12);
      box-shadow: 0 16px 40px rgba(239,68,68,0.25);
  }

  /* Amber — Alerte */
  .delia-qc--amber .delia-qc-icon {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      box-shadow: 0 8px 24px rgba(245,158,11,0.45);
  }
  .delia-qc--amber:hover {
      border-color: rgba(245,158,11,0.5);
      background: rgba(245,158,11,0.12);
      box-shadow: 0 16px 40px rgba(245,158,11,0.25);
  }

  /* Teal — GPS */
  .delia-qc--teal .delia-qc-icon {
      background: linear-gradient(135deg, #0891b2, #0e7490);
      box-shadow: 0 8px 24px rgba(8,145,178,0.45);
  }
  .delia-qc--teal:hover {
      border-color: rgba(8,145,178,0.5);
      background: rgba(8,145,178,0.12);
      box-shadow: 0 16px 40px rgba(8,145,178,0.25);
  }

  /* Purple — Start pe țară */
  .delia-qc--purple .delia-qc-icon {
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      box-shadow: 0 8px 24px rgba(124,58,237,0.45);
  }
  .delia-qc--purple:hover {
      border-color: rgba(124,58,237,0.5);
      background: rgba(124,58,237,0.12);
      box-shadow: 0 16px 40px rgba(124,58,237,0.25);
  }

  /* Emerald — AI Concierge */
  .delia-qc--emerald .delia-qc-icon {
      background: linear-gradient(135deg, #10b981, #059669);
      box-shadow: 0 8px 24px rgba(16,185,129,0.45);
  }
  .delia-qc--emerald:hover {
      border-color: rgba(16,185,129,0.5);
      background: rgba(16,185,129,0.12);
      box-shadow: 0 16px 40px rgba(16,185,129,0.25);
  }

  /* Orange — Marketplace */
  .delia-qc--orange .delia-qc-icon {
      background: linear-gradient(135deg, #f97316, #ea580c);
      box-shadow: 0 8px 24px rgba(249,115,22,0.45);
  }
  .delia-qc--orange:hover {
      border-color: rgba(249,115,22,0.5);
      background: rgba(249,115,22,0.12);
      box-shadow: 0 16px 40px rgba(249,115,22,0.25);
  }

  /* Cyan — Traducere */
  .delia-qc--cyan .delia-qc-icon {
      background: linear-gradient(135deg, #06b6d4, #0891b2);
      box-shadow: 0 8px 24px rgba(6,182,212,0.45);
  }
  .delia-qc--cyan:hover {
      border-color: rgba(6,182,212,0.5);
      background: rgba(6,182,212,0.12);
      box-shadow: 0 16px 40px rgba(6,182,212,0.25);
  }

  /* Indigo — Forum */
  .delia-qc--indigo .delia-qc-icon {
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      box-shadow: 0 8px 24px rgba(99,102,241,0.45);
  }
  .delia-qc--indigo:hover {
      border-color: rgba(99,102,241,0.5);
      background: rgba(99,102,241,0.12);
      box-shadow: 0 16px 40px rgba(99,102,241,0.25);
  }

  /* ── LIGHT THEME ────────────────────────────────────────────────── */
  [data-theme="light"] .delia-qc {
      background: rgba(255,255,255,0.7);
      border-color: rgba(0,0,0,0.07);
  }
  [data-theme="light"] .delia-qc::before {
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  }
  [data-theme="light"] .delia-qc-label {
      color: rgba(30,41,59,0.75);
  }
  [data-theme="light"] .delia-qc:hover .delia-qc-label {
      color: #0f172a;
  }

  /* ── TABLET: 4 columns ──────────────────────────────────────────── */
  @media (max-width: 900px) {
      .delia-quick-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 10px;
          max-width: 560px;
      }
  }

  /* ── MOBILE ─────────────────────────────────────────────────────── */
  @media (max-width: 640px) {
      .delia-quick-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 8px;
          max-width: 100%;
          padding: 0 4px;
          margin-top: 20px;
      }
      .delia-qc {
          padding: 14px 6px 12px;
          border-radius: 16px;
          gap: 7px;
      }
      .delia-qc-icon {
          width: 42px;
          height: 42px;
          border-radius: 13px;
          font-size: 20px;
      }
      .delia-qc-label {
          font-size: 10px;
          max-width: 64px;
      }
  }

  @media (max-width: 400px) {
      .delia-quick-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 7px;
      }
      .delia-qc {
          padding: 12px 4px 10px;
          border-radius: 14px;
          gap: 6px;
      }
      .delia-qc-icon {
          width: 38px;
          height: 38px;
          border-radius: 11px;
          font-size: 18px;
      }
      .delia-qc-label {
          font-size: 9.5px;
          max-width: 56px;
      }
  }
  

  /* ================================================================
     DELIA QUICK GRID v5.0 — "Next-Gen App Launcher"
     Glassmorphic cards cu accent color individual, glow & shimmer
     ================================================================ */

  /* ── WRAPPER (centat, maxim 800px) ─────────────────────────────── */
  .delia-quick-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      width: 100%;
      max-width: 800px;
      margin: 36px auto 0;
      padding: 0 4px;
      animation: qgFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  }

  @keyframes qgFadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
  }

  /* ── CARD ──────────────────────────────────────────────────────── */
  .delia-qc {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 16px 8px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      text-decoration: none !important;
      cursor: pointer;
      overflow: hidden;
      isolation: isolate;
      transition:
          transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.26s ease,
          border-color 0.26s ease,
          background 0.26s ease;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
  }

  /* Top shine streak */
  .delia-qc::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 1px;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.22) 50%,
          transparent 100%);
      pointer-events: none;
      transition: opacity 0.3s;
  }

  /* Shimmer on hover */
  .delia-qc::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
          120deg,
          transparent 20%,
          rgba(255, 255, 255, 0.06) 50%,
          transparent 80%
      );
      transform: translateX(-100%);
      transition: transform 0s;
      pointer-events: none;
  }
  .delia-qc:hover::after {
      transform: translateX(100%);
      transition: transform 0.55s ease;
  }

  /* ── ICON BOX ───────────────────────────────────────────────────── */
  .delia-qc-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      font-size: 22px;
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.26s ease;
      position: relative;
  }

  /* ── LABEL ──────────────────────────────────────────────────────── */
  .delia-qc-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1.25;
      text-align: center;
      color: rgba(203, 213, 225, 0.8);
      transition: color 0.22s ease;
      max-width: 76px;
      word-break: break-word;
      hyphens: auto;
  }

  /* ── HOVER ──────────────────────────────────────────────────────── */
  .delia-qc:hover {
      transform: translateY(-6px) scale(1.04);
  }
  .delia-qc:hover .delia-qc-icon {
      transform: scale(1.14) rotate(-6deg);
  }
  .delia-qc:hover .delia-qc-label {
      color: #fff;
  }
  .delia-qc:active {
      transform: translateY(-2px) scale(0.97);
      transition-duration: 0.1s;
  }

  /* ── COLOR VARIANTS — individual glow per card ──────────────────── */
  .delia-qc--blue  .delia-qc-icon { background: linear-gradient(135deg,#3b82f6,#1d4ed8); box-shadow: 0 6px 18px rgba(59,130,246,.5); }
  .delia-qc--blue:hover  { border-color: rgba(59,130,246,.45); background: rgba(59,130,246,.1); box-shadow: 0 14px 36px rgba(59,130,246,.22); }

  .delia-qc--gold  .delia-qc-icon { background: linear-gradient(135deg,#f59e0b,#b45309); box-shadow: 0 6px 18px rgba(245,158,11,.5); }
  .delia-qc--gold:hover  { border-color: rgba(245,158,11,.45); background: rgba(245,158,11,.1); box-shadow: 0 14px 36px rgba(245,158,11,.22); }

  .delia-qc--green .delia-qc-icon { background: linear-gradient(135deg,#22c55e,#15803d); box-shadow: 0 6px 18px rgba(34,197,94,.5); }
  .delia-qc--green:hover { border-color: rgba(34,197,94,.45); background: rgba(34,197,94,.1); box-shadow: 0 14px 36px rgba(34,197,94,.22); }

  .delia-qc--red   .delia-qc-icon { background: linear-gradient(135deg,#f87171,#dc2626); box-shadow: 0 6px 18px rgba(248,113,113,.5); }
  .delia-qc--red:hover   { border-color: rgba(248,113,113,.45); background: rgba(248,113,113,.1); box-shadow: 0 14px 36px rgba(248,113,113,.22); }

  .delia-qc--amber .delia-qc-icon { background: linear-gradient(135deg,#fbbf24,#d97706); box-shadow: 0 6px 18px rgba(251,191,36,.5); }
  .delia-qc--amber:hover { border-color: rgba(251,191,36,.45); background: rgba(251,191,36,.1); box-shadow: 0 14px 36px rgba(251,191,36,.22); }

  .delia-qc--teal  .delia-qc-icon { background: linear-gradient(135deg,#2dd4bf,#0d9488); box-shadow: 0 6px 18px rgba(45,212,191,.5); }
  .delia-qc--teal:hover  { border-color: rgba(45,212,191,.45); background: rgba(45,212,191,.1); box-shadow: 0 14px 36px rgba(45,212,191,.22); }

  .delia-qc--purple .delia-qc-icon { background: linear-gradient(135deg,#a78bfa,#7c3aed); box-shadow: 0 6px 18px rgba(167,139,250,.5); }
  .delia-qc--purple:hover { border-color: rgba(167,139,250,.45); background: rgba(167,139,250,.1); box-shadow: 0 14px 36px rgba(167,139,250,.22); }

  .delia-qc--emerald .delia-qc-icon { background: linear-gradient(135deg,#34d399,#059669); box-shadow: 0 6px 18px rgba(52,211,153,.5); }
  .delia-qc--emerald:hover { border-color: rgba(52,211,153,.45); background: rgba(52,211,153,.1); box-shadow: 0 14px 36px rgba(52,211,153,.22); }

  .delia-qc--orange .delia-qc-icon { background: linear-gradient(135deg,#fb923c,#ea580c); box-shadow: 0 6px 18px rgba(251,146,60,.5); }
  .delia-qc--orange:hover { border-color: rgba(251,146,60,.45); background: rgba(251,146,60,.1); box-shadow: 0 14px 36px rgba(251,146,60,.22); }

  .delia-qc--cyan  .delia-qc-icon { background: linear-gradient(135deg,#38bdf8,#0284c7); box-shadow: 0 6px 18px rgba(56,189,248,.5); }
  .delia-qc--cyan:hover  { border-color: rgba(56,189,248,.45); background: rgba(56,189,248,.1); box-shadow: 0 14px 36px rgba(56,189,248,.22); }

  .delia-qc--indigo .delia-qc-icon { background: linear-gradient(135deg,#818cf8,#4f46e5); box-shadow: 0 6px 18px rgba(129,140,248,.5); }
  .delia-qc--indigo:hover { border-color: rgba(129,140,248,.45); background: rgba(129,140,248,.1); box-shadow: 0 14px 36px rgba(129,140,248,.22); }

  /* ── LIGHT THEME ─────────────────────────────────────────────────  */
  [data-theme="light"] .delia-qc {
      background: rgba(255,255,255,0.75);
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  [data-theme="light"] .delia-qc::before {
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  }
  [data-theme="light"] .delia-qc-label { color: rgba(30,41,59,0.7); }
  [data-theme="light"] .delia-qc:hover .delia-qc-label { color: #0f172a; }

  /* ── RESPONSIVE ──────────────────────────────────────────────────── */
  /* Tablet 900px — 4 coloane */
  @media (max-width: 900px) {
      .delia-quick-grid {
          grid-template-columns: repeat(4, 1fr);
          max-width: 540px;
          gap: 10px;
      }
  }

  /* Mobile 640px — 4 coloane, mai mici */
  @media (max-width: 640px) {
      .delia-quick-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 8px;
          max-width: 100%;
          margin-top: 22px;
          padding: 0;
      }
      .delia-qc {
          padding: 13px 5px 11px;
          border-radius: 15px;
          gap: 7px;
      }
      .delia-qc-icon {
          width: 40px;
          height: 40px;
          border-radius: 12px;
          font-size: 19px;
      }
      .delia-qc-label {
          font-size: 9.5px;
          max-width: 60px;
      }
  }

  /* Small mobile 400px — 4 coloane compacte */
  @media (max-width: 400px) {
      .delia-quick-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 6px;
      }
      .delia-qc {
          padding: 11px 4px 9px;
          border-radius: 13px;
          gap: 6px;
      }
      .delia-qc-icon {
          width: 36px;
          height: 36px;
          border-radius: 10px;
          font-size: 17px;
      }
      .delia-qc-label {
          font-size: 9px;
          max-width: 54px;
      }
  }

  /* Very small 320px — 3 coloane */
  @media (max-width: 340px) {
      .delia-quick-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 6px;
      }
  }
  

  /* ── QUICK GRID: Rose variant — Cărți de Vizită ──────────────────── */
  .delia-qc--rose .delia-qc-icon {
      background: linear-gradient(135deg, #fb7185, #e11d48);
      box-shadow: 0 6px 18px rgba(251,113,133,.5);
  }
  .delia-qc--rose:hover {
      border-color: rgba(251,113,133,.45);
      background: rgba(251,113,133,.1);
      box-shadow: 0 14px 36px rgba(251,113,133,.22);
  }

  /* ================================================================
     DELIA COOKIE CONSENT BANNER
     Design: slide-up glassmorphic card, fundal blur, branded footer
     ================================================================ */

  .delia-cookie-banner {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(120px);
      z-index: 99999;
      width: min(640px, calc(100vw - 32px));
      opacity: 0;
      pointer-events: none;
      transition:
          transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1),
          opacity 0.35s ease;
      will-change: transform, opacity;
  }

  .delia-cookie-banner.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
  }

  .delia-cookie-banner.is-hiding {
      opacity: 0;
      transform: translateX(-50%) translateY(120px);
      pointer-events: none;
  }

  /* Inner card */
  .delia-cookie-inner {
      background: rgba(10, 15, 30, 0.82);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px;
      backdrop-filter: blur(28px) saturate(1.5);
      -webkit-backdrop-filter: blur(28px) saturate(1.5);
      box-shadow:
          0 32px 80px rgba(0,0,0,0.5),
          0 0 0 1px rgba(255,255,255,0.04) inset,
          0 1px 0 rgba(255,255,255,0.12) inset;
      padding: 22px 24px 18px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
  }

  /* Subtle top glow */
  .delia-cookie-inner::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 300px; height: 120px;
      background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
      pointer-events: none;
  }

  /* Top row: icon + text */
  .delia-cookie-top {
      display: flex;
      align-items: flex-start;
      gap: 14px;
  }

  .delia-cookie-icon-wrap {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.2));
      border: 1px solid rgba(99,102,241,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      line-height: 1;
      box-shadow: 0 4px 12px rgba(99,102,241,0.2);
  }

  .delia-cookie-text {
      flex: 1;
      min-width: 0;
  }

  .delia-cookie-title {
      font-size: 17px;
      font-weight: 800;
      color: #f8fafc;
      margin: 0 0 7px;
      letter-spacing: -0.01em;
      line-height: 1.3;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }

  .delia-cookie-desc {
      font-size: 13px;
      line-height: 1.65;
      color: rgba(203, 213, 225, 0.95);
      margin: 0;
      font-weight: 400;
  }

  .delia-cookie-desc a {
      color: #a5b4fc;
      text-decoration: underline;
      text-decoration-color: rgba(165,180,252,0.5);
      font-weight: 500;
      transition: color 0.2s, text-decoration-color 0.2s;
  }
  .delia-cookie-desc a:hover {
      color: #c7d2fe;
      text-decoration-color: rgba(199,210,254,0.7);
  }

  /* Action buttons */
  .delia-cookie-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
  }

  .delia-cookie-btn {
      padding: 10px 22px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      border: none;
      outline: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
      -webkit-tap-highlight-color: transparent;
  }
  .delia-cookie-btn:hover  { transform: translateY(-2px); }
  .delia-cookie-btn:active { transform: translateY(0) scale(0.97); }

  .delia-cookie-btn--ghost {
      background: rgba(255,255,255,0.06);
      color: rgba(203,213,225,0.75);
      border: 1px solid rgba(255,255,255,0.1);
  }
  .delia-cookie-btn--ghost:hover {
      background: rgba(255,255,255,0.1);
      color: #e2e8f0;
  }

  .delia-cookie-btn--accept {
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      color: #fff;
      box-shadow: 0 6px 18px rgba(99,102,241,0.4);
  }
  .delia-cookie-btn--accept:hover {
      box-shadow: 0 10px 28px rgba(99,102,241,0.5);
      background: linear-gradient(135deg, #818cf8, #6366f1);
  }

  /* Copyright line */
  .delia-cookie-copy {
      font-size: 11px;
      color: rgba(100,116,139,0.7);
      text-align: center;
      margin: 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 12px;
      letter-spacing: 0.01em;
  }
  .delia-cookie-copy strong { color: rgba(148,163,184,0.6); }

  /* ── Light theme ────────────────────────────────────────────────── */
  [data-theme="light"] .delia-cookie-inner {
      background: rgba(255,255,255,0.88);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  }
  [data-theme="light"] .delia-cookie-title { color: #0f172a; }
  [data-theme="light"] .delia-cookie-desc  { color: #475569; }
  [data-theme="light"] .delia-cookie-copy  { color: #94a3b8; border-color: rgba(0,0,0,0.06); }
  [data-theme="light"] .delia-cookie-btn--ghost {
      background: rgba(0,0,0,0.04);
      color: #64748b;
      border-color: rgba(0,0,0,0.1);
  }

  /* ── Mobile ─────────────────────────────────────────────────────── */
  @media (max-width: 640px) {
      .delia-cookie-banner {
          bottom: 16px;
          width: calc(100vw - 24px);
      }
      .delia-cookie-inner {
          padding: 18px 16px 14px;
          border-radius: 20px;
          gap: 14px;
      }
      .delia-cookie-icon-wrap {
          width: 44px;
          height: 44px;
          border-radius: 13px;
          font-size: 22px;
      }
      .delia-cookie-title { font-size: 15px; }
      .delia-cookie-desc  { font-size: 12.5px; }
      .delia-cookie-actions { justify-content: stretch; }
      .delia-cookie-btn { flex: 1; text-align: center; padding: 11px 12px; font-size: 12.5px; }
      .delia-cookie-copy { font-size: 10.5px; }
  }
  