    /* ── Quick Links ──────────────────────────────────────────────────────── */
    .cc-quick-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }

    .cc-quick-link {
      display: flex;
      align-items: center;
      gap: .65rem;
      padding: .75rem .85rem;
      border-bottom: 1px solid rgba(10, 19, 36, 0.06);
      cursor: pointer;
      transition: all .2s ease;
      border-radius: 6px;
      text-decoration: none;
      color: inherit;
    }

    .cc-quick-link:last-child {
      border-bottom: none;
    }

    .cc-quick-link:hover {
      background: rgba(201, 168, 76, 0.06);
      transform: translateX(3px);
    }

    .cc-quick-link-icon {
      font-size: 1.15rem;
      color: #C9A84C;
      width: 24px;
      text-align: center;
      flex-shrink: 0;
    }

    .cc-quick-link-label {
      font-size: 1rem;
      font-weight: 800;
      color: #0A1324;
      letter-spacing: 1px;
      text-transform: uppercase;
      flex: 1;
    }

    .cc-quick-link-chevron {
      color: #94A3B8;
      font-size: .8rem;
      font-weight: 900;
      transition: color .2s ease;
    }

    .cc-quick-link:hover .cc-quick-link-chevron {
      color: #C9A84C;
    }

