/* Country page styling – esimdb-inspired design */
.country-shell {
  max-width: 1200px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.country-hero {
  background-image:
    linear-gradient(120deg, rgba(8, 20, 46, 0.72), rgba(16, 77, 93, 0.35)),
    var(--country-hero-image, url("https://images.unsplash.com/photo-1520175480921-4edfa2983e0f?auto=format&fit=crop&w=1800&q=80"));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 24px 28px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.country-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ghost-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.primary-btn {
  background: var(--accent);
  border-color: #0b57d0;
  color: #fff;
}

.primary-btn:hover {
  filter: brightness(1.04);
}

.country-flag {
  font-size: 48px;
  line-height: 1;
  text-align: center;
  margin-bottom: 6px;
}

.country-hero__body {
  text-align: center;
}

.country-hero__body h1 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}

.country-hero__body p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

/* ── Popular Carousel ─────────────────────────────────────── */
.popular-carousel {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popular-cards {
  display: flex;
  gap: 12px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}

.popular-card {
  flex: 0 0 calc(33.333% - 8px);
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  color: #1a1a2e;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.popular-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.popular-card__label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-card__label .arrow {
  color: #9ca3af;
  font-size: 16px;
}

.popular-card__price {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.popular-card__price .promo-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ef4444;
  border-radius: 4px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
  margin-left: 6px;
}

.popular-card__specs {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
}

.popular-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popular-card__provider {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.popular-card__provider img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.popular-card__cta {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.popular-card__cta:hover {
  background: #2563eb;
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #fff;
}

/* ── Stats bar ────────────────────────────────────────────── */
.country-stats-bar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.stats-text {
  font-size: 14px;
  color: var(--muted, #6b7280);
  font-weight: 500;
}

.stats-text a {
  color: var(--accent, #3b82f6);
  text-decoration: none;
}

/* ── Sort & Filter Controls ───────────────────────────────── */
.country-main {
  margin-top: 0;
}

.country-controls {
  background: var(--panel, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sort-label {
  font-size: 13px;
  color: var(--muted, #6b7280);
  font-weight: 600;
  margin-right: 2px;
}

.sort-btn {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  background: var(--panel, #fff);
  color: var(--text, #1a1a2e);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.sort-btn:hover {
  border-color: var(--accent, #3b82f6);
  color: var(--accent, #3b82f6);
}

.sort-btn.active {
  background: var(--text, #1a1a2e);
  color: #fff;
  border-color: var(--text, #1a1a2e);
}

.sort-icon {
  margin-right: 2px;
}

.promo-btn {
  border: 1px solid #ef4444;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.promo-btn:hover {
  background: #fef2f2;
}

.promo-btn.active {
  background: #ef4444;
  color: #fff;
}

.promo-btn.active:hover {
  background: #dc2626;
}

/* ── Inline promo badge on plan rows ──────────────────────── */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fecaca;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.promo-badge::before {
  content: "🏷";
  font-size: 10px;
}

.promo-badge:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

/* ── Filter Bar ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 0 4px;
}

.filter-label {
  font-size: 13px;
  color: var(--muted, #6b7280);
  font-weight: 600;
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--panel, #fff);
  color: var(--text, #1a1a2e);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--accent, #3b82f6);
  color: var(--accent, #3b82f6);
}

.filter-pill.active {
  background: var(--accent, #3b82f6);
  color: #fff;
  border-color: var(--accent, #3b82f6);
}

.filter-actions {
  margin-left: auto;
}

.more-filters-btn {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--panel, #fff);
  color: var(--muted, #6b7280);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.more-filters-btn:hover {
  border-color: var(--accent, #3b82f6);
  color: var(--accent, #3b82f6);
}

.more-filters-btn.active {
  background: var(--accent, #3b82f6);
  color: #fff;
  border-color: var(--accent, #3b82f6);
}

/* ── Advanced Filters ─────────────────────────────────────── */
.advanced-filters {
  background: var(--panel, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 10px;
}

.advanced-filters.hidden {
  display: none;
}

.filter-section {
  margin-bottom: 14px;
}

.filter-section:last-of-type {
  margin-bottom: 10px;
}

.filter-section h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #1a1a2e);
  margin: 0 0 8px 0;
}

.filter-actions-bar {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
  border-top: 1px solid var(--border, #e5e7eb);
}

.clear-filters-btn {
  border: none;
  background: none;
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}

.clear-filters-btn:hover {
  background: #fef2f2;
}

/* ── Table Header ─────────────────────────────────────────── */
.plan-table-header {
  display: grid;
  grid-template-columns: minmax(200px, 2fr) 100px 100px 100px 100px;
  gap: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border, #e5e7eb);
}

.sort-arrow {
  font-size: 10px;
  margin-left: 2px;
}

/* ── Plan Grid ────────────────────────────────────────────── */
.plans-grid {
  margin-top: 0;
}

.country-empty {
  margin-top: 16px;
  color: var(--muted, #6b7280);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 40px 20px;
}

/* ── Load More ────────────────────────────────────────────── */
.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 20px;
}

.load-more-btn {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  background: var(--panel, #fff);
  color: var(--text, #1a1a2e);
  cursor: pointer;
  transition: all 0.15s;
}

.load-more-btn:hover {
  border-color: var(--accent, #3b82f6);
  color: var(--accent, #3b82f6);
}

.load-more-wrap.hidden {
  display: none;
}

.plans-shown-count {
  font-size: 12px;
  color: var(--muted, #6b7280);
}

/* ── Plan Card Rows ───────────────────────────────────────── */
.plan-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  background: var(--panel, #fff);
  transition: background 0.15s, box-shadow 0.15s;
}

.plan-card-row:first-child {
  border-radius: 12px 12px 0 0;
}

.plan-card-row:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.plan-card-row:only-child {
  border-radius: 12px;
  border-bottom: none;
}

.plan-card-row:hover {
  background: #f8fafc;
  box-shadow: inset 3px 0 0 var(--accent, #3b82f6);
}

/* ── Logo ─────────────────────────────────────────────────── */
.pcr-logo-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border, #e5e7eb);
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pcr-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.pcr-logo.hidden {
  display: none;
}

/* ── Centre ───────────────────────────────────────────────── */
.pcr-centre {
  flex: 1;
  min-width: 0;
}

.pcr-provider {
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #1a1a2e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pcr-name {
  font-size: 12px;
  color: var(--muted, #6b7280);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.pcr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
  align-items: center;
}

.pcr-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.pcr-chip--ppg { /* $/GB chip: neutral by default */
  background: #f1f5f9;
  color: #475569;
  border-color: #e2e8f0;
}

.pcr-chip--good { /* great value <$2/GB */
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

.pcr-chip--mid { /* decent value <$5/GB */
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.pcr-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.pcr-badge--5g {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.pcr-badge--tether {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.pcr-promo {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px dashed #fca5a5;
  background: #fef2f2;
  color: #dc2626;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.pcr-promo:hover {
  background: #ef4444;
  color: #fff;
  border-style: solid;
}

/* ── Right: price + CTA ───────────────────────────────────── */
.pcr-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 100px;
}

.pcr-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text, #1a1a2e);
  white-space: nowrap;
}

.pcr-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent, #3b82f6);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.pcr-buy:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* ── Legacy classes kept for backward compat ──────────────── */
.plan-row-table { display: none; }
.buy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent, #3b82f6);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.buy-cta:hover { background: #2563eb; }

.feature-tag--5g {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .plan-table-header {
    display: none;
  }

  /* Card rows on mobile: stack chips & compress right */
  .plan-card-row {
    padding: 12px 14px;
    gap: 10px;
  }

  .pcr-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .pcr-price {
    font-size: 16px;
  }

  .popular-card {
    flex: 0 0 calc(100% - 8px);
  }
}

@media (max-width: 520px) {
  .plan-card-row {
    flex-wrap: wrap;
  }

  .pcr-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .pcr-logo {
    width: 32px;
    height: 32px;
  }

  .pcr-right {
    flex: 1 0 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
  }
}

@media (max-width: 760px) {
  .country-hero__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-hero {
    padding: 16px;
  }

  .country-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-group {
    justify-content: center;
    gap: 4px;
  }

  .sort-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-actions {
    margin-left: 0;
  }

  .promo-btn {
    width: 100%;
    text-align: center;
  }
}


/* Provider name link to sub-page */
.pcr-provider-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color 0.15s;
}

.pcr-provider-link:hover {
  color: var(--accent, #1a73e8);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   Provider-Country Sub-page styles
   ═══════════════════════════════════════════════════════════ */

/* ── Provider hero wrapper ─────────────────────────────────── */
.provider-country-hero {
  background-image:
    linear-gradient(120deg, rgba(8, 20, 46, 0.72), rgba(16, 77, 93, 0.35)),
    var(--country-hero-image, url("https://images.unsplash.com/photo-1520175480921-4edfa2983e0f?auto=format&fit=crop&w=1800&q=80"));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 24px 28px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ── Top row: breadcrumb + CTA ─────────────────────────────── */
.pch-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Breadcrumb */
.pch-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
}

.pch-breadcrumb__link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.pch-breadcrumb__link:hover {
  color: #fff;
  text-decoration: underline;
}

.pch-breadcrumb__sep {
  color: rgba(255,255,255,0.45);
  user-select: none;
}

.pch-breadcrumb__current {
  color: #fff;
  font-weight: 700;
}

/* ── Provider Profile Card ─────────────────────────────────── */
.provider-profile-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ppc-identity {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Logo */
.ppc-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.45);
}

.ppc-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.ppc-logo-placeholder {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent, #1a73e8);
}

/* Name row + verified badge */
.ppc-info {
  flex: 1;
  min-width: 0;
}

.ppc-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ppc-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.ppc-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(26, 115, 232, 0.22);
  border: 1px solid rgba(26, 115, 232, 0.55);
  color: #7ec8ff;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ppc-verified-badge svg {
  color: #4caf8a;
}

.ppc-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin: 0 0 6px;
  line-height: 1.5;
}

.ppc-description {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0 0 10px;
  line-height: 1.6;
  max-width: 560px;
}

/* Stat pills */
.ppc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ppc-stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 5px 12px;
  min-width: 64px;
}

.ppc-stat-pill strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.ppc-stat-pill em {
  font-style: normal;
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Promo code */
.ppc-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ppc-promo-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255,200,50,0.18);
  border: 1px solid rgba(255,200,50,0.45);
  color: #ffe082;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.ppc-promo-btn:hover {
  background: rgba(255,200,50,0.28);
}

.ppc-promo-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* Visit provider button */
.ppc-cta-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ppc-visit-btn {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  background: var(--accent, #1a73e8);
  border: 1px solid #0b57d0;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s;
}

.ppc-visit-btn:hover {
  filter: brightness(1.08);
}

/* ── Compare back link ─────────────────────────────────────── */
.pch-compare-cta {
  margin-top: 28px;
  text-align: center;
}

.pch-back-country {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border);
  background: var(--surface, #fff);
  color: var(--text-secondary, #555);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.pch-back-country:hover {
  background: var(--hover-bg, #f5f7fa);
  color: var(--text, #111);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 760px) {
  .pch-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-country-hero {
    padding: 16px;
  }

  .ppc-identity {
    flex-direction: column;
    align-items: flex-start;
  }

  .ppc-name {
    font-size: 18px;
  }
}
