/* ============================================
   LanovaPay SVG Icon System
   Replaces all emoji with consistent line icons
   ============================================ */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* Value prop icon containers — replaces emoji boxes */
.value-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  position: relative;
}

.value-icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.value-icon-box.purple {
  background: var(--purple-50);
  color: var(--purple-600);
  border: 1px solid var(--purple-100);
}

.value-icon-box.magenta {
  background: var(--magenta-50);
  color: var(--magenta-600);
  border: 1px solid var(--magenta-100);
}

.value-icon-box.green {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.value-icon-box.amber {
  background: #FFF8E1;
  color: #F57F17;
  border: 1px solid #FFECB3;
}

/* Flag images — replaces emoji flags */
.flag-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--neutral-100);
  background: var(--neutral-50);
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-circle.sm { width: 32px; height: 32px; }
.flag-circle.lg { width: 64px; height: 64px; }
.flag-circle.xl { width: 80px; height: 80px; border-width: 3px; }

/* Corridor card with flag image */
.card-corridor .corridor-flag-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto var(--space-3);
  border: 2px solid var(--neutral-100);
  box-shadow: var(--shadow-xs);
}

.card-corridor .corridor-flag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact channel icons */
.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.channel-icon.whatsapp {
  background: #DCF8C6;
  color: #25D366;
}

.channel-icon.email {
  background: var(--purple-50);
  color: var(--purple-600);
}

.channel-icon.phone {
  background: var(--magenta-50);
  color: var(--magenta-600);
}

.channel-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
