    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }
    body {
      padding-top: 70px;
      background: #f8f9fa;
    }

    /* Authentication Banner */
    .auth-banner {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      border: 1px solid #f59e0b;
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
    }

    .banner-content {
      max-width: 1600px;
      margin: 0 auto;
    }

    .auth-banner p {
      margin: 0;
      font-size: 14px;
      color: #92400e;
      font-weight: 500;
    }

    .auth-banner a {
      color: #d97706;
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid #d97706;
      transition: all 0.2s;
    }

    .auth-banner a:hover {
      color: #b45309;
      border-color: #b45309;
    }

    .suppliers-container {
      max-width: 1600px;
      margin: 2rem auto;
      padding: 0 2rem;
    }
    .suppliers-header {
      text-align: center;
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e5e7eb;
    }
    .suppliers-header h1 {
      font-size: 40px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 0.5rem;
      letter-spacing: -0.5px;
    }
    .suppliers-header p {
      font-size: 15px;
      color: #64748b;
      margin: 0;
      font-weight: 500;
    }

    /* Filter Controls */
    .suppliers-controls {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      margin-bottom: 2.5rem;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
      border: 1px solid #f1f5f9;
    }

    .suppliers-count {
      font-size: 13px;
      color: #475569;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #f1f5f9;
      font-weight: 500;
    }

    .suppliers-count strong {
      color: #0891b2;
      font-weight: 700;
      font-size: 14px;
    }

    .filters-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.75rem;
    }

    .filter-group,
    .sort-group {
      display: flex;
      flex-direction: column;
    }

    .filter-group label,
    .sort-group label {
      font-size: 11px;
      font-weight: 700;
      color: #0f172a;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 0.75rem;
    }

    .filter-group select,
    .filter-group input,
    .sort-group select {
      padding: 10px 14px;
      border: 1.5px solid #e5e7eb;
      border-radius: 8px;
      font-size: 14px;
      color: #1e293b;
      background: #fff;
      transition: all 0.2s ease;
      font-weight: 500;
    }

    .filter-group select:hover,
    .filter-group input:hover,
    .sort-group select:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
    }

    .filter-group select:focus,
    .filter-group input:focus,
    .sort-group select:focus {
      outline: none;
      border-color: #0891b2;
      box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.08);
      background: #fff;
    }

    .filter-group input::placeholder {
      color: #94a3b8;
      font-weight: 400;
    }
    .suppliers-table-wrapper {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
      border: 1px solid #f1f5f9;
    }
    .suppliers-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .suppliers-table thead {
      background: #f8fafc;
      border-bottom: 1.5px solid #e5e7eb;
    }
    .suppliers-table th {
      padding: 16px 18px;
      text-align: left;
      font-weight: 700;
      color: #0f172a;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.6px;
    }
    .suppliers-table tbody tr {
      border-bottom: 2px solid #e5e7eb;
      transition: all 0.15s ease;
      background: #fff;
    }

    .suppliers-table tbody tr:hover {
      background: #f8fafc;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .suppliers-table tbody tr:nth-child(even) {
      background: #f9fafb;
    }

    .suppliers-table tbody tr:last-child {
      border-bottom: 2px solid #e5e7eb;
    }

    .suppliers-table td {
      padding: 16px 18px;
      color: #475569;
      vertical-align: middle;
    }
    .suppliers-table td:first-child {
      font-weight: 700;
      color: #0f172a;
      font-size: 15px;
    }
    .suppliers-table .category-badge {
      display: inline-block;
      padding: 5px 12px;
      background: #f0f9ff;
      color: #0369a1;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid #bae6fd;
    }
    .suppliers-table .rating {
      color: #ca8a04;
      font-weight: 700;
      font-size: 14px;
    }
    .suppliers-table .specialties {
      font-size: 13px;
      color: #64748b;
      max-width: 380px;
      line-height: 1.6;
      word-spacing: 2px;
    }
    .suppliers-table .actions {
      display: flex;
      gap: 10px;
    }
    .suppliers-table a {
      padding: 8px 16px;
      border-radius: 7px;
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
    }
    .suppliers-table a.view {
      color: #0891b2;
      border: 1.5px solid #0891b2;
      background: #fff;
    }
    .suppliers-table a.view:hover {
      background: #0891b2;
      color: #fff;
      box-shadow: 0 2px 8px rgba(8, 145, 178, 0.15);
    }
    .suppliers-table a.contact {
      background: #f0f4f8;
      color: #1e293b;
      border: 1px solid #e5e7eb;
    }
    .suppliers-table a.contact:hover {
      background: #e5e7eb;
      border-color: #cbd5e1;
    }

    /* Contact on card/row — blurred for free users */
    .supplier-contact-cell {
      min-width: 200px;
      max-width: 280px;
      vertical-align: top;
    }

    .supplier-contact-card {
      position: relative;
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      padding: 0.65rem 0.75rem;
      overflow: hidden;
      min-height: 4.5rem;
    }

    .supplier-contact-card.is-unlocked {
      background: #f0f9ff;
      border-color: #bae6fd;
    }

    .supplier-contact-person + .supplier-contact-person {
      margin-top: 0.55rem;
      padding-top: 0.55rem;
      border-top: 1px dashed #e2e8f0;
    }

    .supplier-contact-name {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.25;
    }

    .supplier-contact-title {
      font-size: 11px;
      color: #64748b;
      font-weight: 500;
      margin: 0.15rem 0 0.3rem;
    }

    .supplier-contact-lines {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .supplier-contact-line {
      font-size: 11.5px;
      color: #0e7490;
      font-weight: 500;
      word-break: break-all;
    }

    .supplier-contact-card.is-locked .supplier-contact-blur {
      filter: blur(5.5px);
      opacity: 0.7;
      user-select: none;
      pointer-events: none;
      transform: scale(1.02);
    }

    .supplier-contact-card.is-empty {
      min-height: auto;
      padding: 0.55rem 0.65rem;
      background: #f8fafc;
      border: 1px dashed #cbd5e1;
    }

    .supplier-contact-empty {
      font-size: 12px;
      font-weight: 600;
      color: #64748b;
      line-height: 1.35;
    }

    .supplier-contact-card.is-empty .supplier-contact-unlock {
      position: static;
      display: inline-flex;
      margin-top: 0.35rem;
      padding: 0;
      background: none;
      font-size: 11px;
      text-transform: none;
      letter-spacing: 0;
      text-decoration: underline;
    }

    .supplier-contact-unlock {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0.5rem 0.65rem;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-decoration: none;
      color: #0e7490;
      background: linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.15) 0%,
        rgba(236, 254, 255, 0.88) 45%,
        rgba(240, 249, 255, 0.95) 100%
      );
      border: none;
      cursor: pointer;
      transition: color 0.15s ease;
    }

    .supplier-contact-unlock:hover {
      color: #155e75;
    }

    .contact-card-people {
      margin-bottom: 1rem;
    }

    .contact-card-people .supplier-contact-card {
      min-height: 5rem;
    }

    /* Inline Tags */
    .specialty-tags-inline {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag-inline {
      display: inline-flex;
      align-items: center;
      padding: 7px 14px;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      color: #0369a1;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid #bae6fd;
      transition: all 0.2s ease;
      box-shadow: 0 1px 3px rgba(3, 105, 161, 0.08);
    }

    .tag-inline:hover {
      background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
      border-color: #7dd3fc;
      box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
      transform: translateY(-1px);
    }

    /* Table Actions */
    .table-actions {
      display: flex;
      gap: 10px;
    }

    .action-link {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      background: #e0f2fe;
      color: #0369a1;
      cursor: pointer;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .action-link:hover {
      background: #0369a1;
      color: #fff;
      box-shadow: 0 3px 12px rgba(3, 105, 161, 0.2);
    }

    .action-link:active {
      transform: scale(0.98);
    }

    /* Contact Card Modal */
    .contact-card-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 999;
      backdrop-filter: blur(4px);
    }

    .contact-card-overlay.active {
      display: block;
    }

    .contact-card {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      border-radius: 16px 16px 0 0;
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
      z-index: 1000;
      max-width: 700px;
      margin: 0 auto;
      animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-card.active {
      display: block;
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .contact-card-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: #f1f5f9;
      border: none;
      font-size: 1.25rem;
      color: #475569;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      transition: all 0.2s ease;
      font-weight: 600;
    }

    .contact-card-close:hover {
      background: #e5e7eb;
      color: #0f172a;
    }

    .contact-card-header {
      padding: 2rem 2rem 1.25rem;
      border-bottom: 1px solid #f1f5f9;
    }

    .contact-card-header h2 {
      font-size: 1.75rem;
      color: #0f172a;
      margin: 0 0 0.5rem;
      padding-right: 2rem;
      font-weight: 800;
    }

    .contact-card-header p {
      font-size: 0.95rem;
      color: #64748b;
      margin: 0;
      font-weight: 500;
    }

    .contact-card-body {
      padding: 2rem;
    }

    .contact-info {
      margin-bottom: 1.75rem;
    }

    .contact-info label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: #0f172a;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      margin-bottom: 0.5rem;
    }

    .contact-info p {
      font-size: 1rem;
      color: #0f172a;
      margin: 0;
      font-weight: 600;
    }

    .contact-btn {
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      margin-right: 1rem;
      margin-bottom: 1rem;
      transition: all 0.2s ease;
    }

    .contact-btn.primary {
      background: #0891b2;
      color: white;
    }

    .contact-btn.primary:hover {
      background: #0a7f99;
      box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
      transform: translateY(-1px);
    }

    .contact-btn.secondary {
      background: #f0f4f8;
      color: #0f172a;
      border: 1.5px solid #e5e7eb;
    }

    .contact-btn.secondary:hover {
      background: #e5e7eb;
      border-color: #cbd5e1;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .suppliers-container {
        padding: 0 1.5rem;
      }
      .suppliers-header h1 {
        font-size: 32px;
      }
    }

    @media (max-width: 1024px) {
      .filters-row {
        grid-template-columns: repeat(2, 1fr);
      }
      .suppliers-table {
        font-size: 13px;
      }
      .suppliers-table th,
      .suppliers-table td {
        padding: 14px 12px;
      }
    }

    @media (max-width: 768px) {
      .suppliers-container {
        padding: 0 1rem;
        margin: 1rem auto;
      }
      .suppliers-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
      }
      .suppliers-header h1 {
        font-size: 28px;
      }
      .suppliers-header p {
        font-size: 14px;
      }
      .suppliers-controls {
        padding: 1.5rem;
      }
      .filters-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
      .suppliers-table {
        font-size: 12px;
      }
      .suppliers-table th,
      .suppliers-table td {
        padding: 12px 10px;
      }
      .suppliers-table th {
        font-size: 10px;
      }
      .specialty-tags-inline {
        gap: 6px;
      }
      .tag-inline {
        padding: 4px 8px;
        font-size: 11px;
      }
      .suppliers-table .actions {
        flex-direction: column;
        gap: 6px;
      }
      .suppliers-table a,
      .action-link {
        padding: 6px 12px;
        font-size: 11px;
        width: 100%;
        text-align: center;
      }
      .contact-card {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
      }
      .contact-card-body {
        padding: 1.5rem;
      }
      .contact-card-header {
        padding: 1.5rem;
      }
      .contact-card-header h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .suppliers-container {
        padding: 0 0.75rem;
      }
      body {
        padding-top: 60px;
      }
      .suppliers-header h1 {
        font-size: 24px;
        margin-bottom: 0.5rem;
      }
      .suppliers-header p {
        font-size: 13px;
      }
      .suppliers-controls {
        padding: 1rem;
        margin-bottom: 1.5rem;
      }
      .suppliers-count {
        font-size: 12px;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
      }
      .filters-row {
        gap: 1rem;
      }
      .filter-group label,
      .sort-group label {
        font-size: 10px;
      }
      .filter-group select,
      .filter-group input,
      .sort-group select {
        font-size: 13px;
        padding: 9px 12px;
      }
      .suppliers-table {
        font-size: 11px;
      }
      .suppliers-table th,
      .suppliers-table td {
        padding: 10px 8px;
      }
      .suppliers-table td:first-child {
        font-size: 13px;
      }
      .suppliers-table-wrapper {
        border-radius: 8px;
      }
      .tag-inline {
        padding: 3px 6px;
        font-size: 10px;
      }
      .action-link {
        padding: 6px 10px;
        font-size: 10px;
      }
    }
    .country-selector {
      position: relative;
      display: inline-block;
    }
    .country-selector-btn {
      background: none;
      border: 1px solid #d1d8df;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #3d4a5c;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .country-selector-btn:hover {
      border-color: #0891b2;
      background: #f0f5ff;
    }
    .country-selector-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #d1d8df;
      border-radius: 6px;
      min-width: 200px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      display: none;
      margin-top: 6px;
    }
    .country-selector-dropdown.active {
      display: block;
    }
    .country-option {
      padding: 10px 14px;
      cursor: pointer;
      transition: background 0.15s;
      border-bottom: 1px solid #e8ecf1;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #3d4a5c;
    }
    .country-option:last-child {
      border-bottom: none;
    }
    .country-option:hover {
      background: #f8f9fb;
      color: #0891b2;
    }
    .country-option.active {
      background: #f0f5ff;
      color: #0c66e4;
      font-weight: 600;
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    @media (max-width: 768px) {
      .suppliers-table {
        font-size: 12px;
      }
      .suppliers-table th,
      .suppliers-table td {
        padding: 10px 12px;
      }
    }

    /* Scoring Modal */
    .scoring-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .scoring-modal-overlay.active {
      display: flex;
    }

    .scoring-modal {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      max-width: 900px;
      width: 90%;
      max-height: 85vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    }

    .scoring-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 36px;
      height: 36px;
      border: none;
      background: #f3f4f6;
      border-radius: 6px;
      cursor: pointer;
      font-size: 24px;
      color: #6b7280;
      transition: all 0.2s;
    }

    .scoring-modal-close:hover {
      background: #e5e7eb;
      color: #1f2937;
    }

    @media (max-width: 768px) {
      .scoring-modal {
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
      }

      .scoring-modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
      }
    }
