

  body { background-color: var(--bg-light); }

  /* Smooth Reveal Animation */
  .reveal { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  /* Professional Card */
  .dist-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .dist-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: var(--card-hover-shadow);
  }

  .logo-box {
    width: 100px; height: 100px;
    border-radius: 12px;
    background: #f1f5f9;
    padding: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .dist-name { font-size: 15px; font-weight: 800; color: var(--brand-dark); line-height: 1.4; }
  
  .badge-premium { font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
  .badge-main { background: rgba(238, 49, 36, 0.1); color: var(--brand-red); }
  .badge-sub { background: #f1f5f9; color: #64748b; }

  .btn-action { height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; font-size: 12px; transition: all 0.2s; flex: 1; }
  .btn-whatsapp { background: #0f172a; color: white; }
  .btn-call { background: #f8fafc; color: #0f172a; border: 1px solid #e2e8f0; }
  
  .filter-bar { background: white; border: 1px solid #e2e8f0; border-radius: 20px; box-shadow: var(--card-shadow); }

  /* Skeleton */
  .skeleton { height: 250px; background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%); background-size: 200% 100%; animation: loading 1.5s infinite; border-radius: 20px; }
  @keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  /* Pager */
  .page-btn { padding: 8px 16px; border-radius: 10px; border: 1px solid #e2e8f0; background: white; font-weight: 700; font-size: 13px; }
  .page-btn.active { background: var(--brand-red); color: white; border-color: var(--brand-red); }
