
    /* ============================================================================
     * FAVORITES POPUP OVERLAY
     * ========================================================================== */
    .dhkc-favorites-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.851);
      z-index: 999999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .dhkc-favorites-modal {
      background: white;
      border-radius: 16px;
      max-width: 1200px;
      width: 100%;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .dhkc-favorites-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      border-bottom: 2px solid #e9ecef;
    }

    .dhkc-favorites-modal-header h2 {
      margin: 0;
      color: #000049;
      font-size: 1.5rem;
    }

    

    .dhkc-favorites-count {
      display: inline-block;
      background: #d3a42d;
      color: #000049;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: bold;
      margin-left: 0.5rem;
    }

    .dhkc-favorites-close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: #666;
      transition: color 0.2s ease;
    }

    .dhkc-favorites-close:hover {
      color: #dc3545;
    }

    .dhkc-favorites-modal-content {
      flex: 1;
      overflow-y: auto;
      padding: 2rem;
    }



    .dhkc-favorites-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .dhkc-favorite-card {
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .dhkc-favorite-card:hover {
      border-color: #0a174e;
      box-shadow: 0 4px 12px rgba(10, 23, 78, 0.1);
      transform: translateY(-2px);
    }

    .dhkc-favorite-card-image {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px;
    align-content: space-around;
    }

    .dhkc-favorite-card-image img {
      width: 50%;
      height: 100%;
      object-fit: contain;
    }

    .dhkc-favorite-card-header {
      padding: 1rem 1.5rem 0.5rem;
    }

    .dhkc-favorite-card-header h3 {
      margin: 0 0 0.25rem 0;
      color: #000049;
      font-size: 1.2rem;
    }

    .dhkc-favorite-card-type {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .dhkc-favorite-card-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.85rem;
      color: #888;
      padding: 0 1.5rem 1rem;
    }

    .dhkc-favorite-card-actions {
      padding: 1rem 1.5rem;
      border-top: 1px solid #e9ecef;
      display: flex;
      gap: 0.5rem;
    }

    .dhkc-favorite-view {
      flex: 1;
      padding: 0.75rem 1.5rem;
      background: #0a174e;
      color: white;
      text-align: center;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .dhkc-favorite-view:hover {
      background: #d3a42d;
      color: #000049;
      text-decoration: none;
    }

    .dhkc-favorite-remove-btn {
      padding: 0.75rem 1rem;
      background: white;
      color: #dc3545;
      border: 2px solid #dc3545;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .dhkc-favorite-remove-btn:hover {
      background: #dc3545;
      color: white;
    }

    .dhkc-favorites-modal-empty {
      text-align: center;
      padding: 4rem 2rem;
      color: #999;
    }

    .dhkc-favorites-modal-empty svg {
      margin-bottom: 1.5rem;
      opacity: 0.5;
    }

    .dhkc-favorites-modal-empty p {
      font-size: 1.1rem;
      margin: 0;
    }

    @media (max-width: 768px) {
      .dhkc-favorites-grid {
        grid-template-columns: 1fr;
      }
      
      .dhkc-favorites-modal-header {
        padding: 1rem 1.5rem;
      }
      
      .dhkc-favorites-modal-content {
        padding: 1rem;
      }
    }
 

    .dhkc-header-actions .denhartogbutton {
        background-color: #0a174e;}