/* =============================================
   NRR — Coverage Map Section
============================================= */

.nrr-map-section *,
.nrr-map-section *::before,
.nrr-map-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nrr-map-section {
  background: #ffffff;
  padding: 96px 24px;
  font-family: "Poppins", sans-serif;
}

/* --- Header --- */
.nrr-map__header {
  text-align: center;
  margin-bottom: 64px;
}

.nrr-map__eyebrow {
  display: inline-block;
  background: rgba(255, 51, 23, 0.08);
  border: 1px solid rgba(255, 51, 23, 0.25);
  color: #ff3317;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.nrr-map__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #0f1721;
  line-height: 1.2;
}

/* --- Three-column layout --- */
.nrr-map__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* --- Country columns --- */
.nrr-map__countries {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nrr-map__countries--left {
  align-items: flex-end;
  text-align: right;
  padding-right: 48px;
}

.nrr-map__countries--right {
  align-items: flex-start;
  text-align: left;
  padding-left: 48px;
}

.nrr-map__country {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  padding: 14px 0;
  border-bottom: 1px solid #f0f1f3;
  width: 100%;
}

.nrr-map__country:last-child {
  border-bottom: none;
}

.nrr-map__country--featured {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #ff3317;
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

/* --- Map container --- */
.nrr-map__container {
  position: relative;
  flex: 0 0 500px;
  width: 500px;
}

.nrr-map__img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Dots --- */
@keyframes nrr-dot-ping {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3); opacity: 0; }
}

.nrr-map__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ff3317;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

/* Ping ring — delay via --d CSS variable set inline on each dot */
.nrr-map__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ff3317;
  animation: nrr-dot-ping 1.8s ease-out infinite;
  animation-delay: var(--d, 0s);
}

.nrr-map__dot:hover {
  transform: translate(-50%, -50%) scale(1.25);
}

/* Tooltip on hover */
.nrr-map__dot::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #0f1721;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.nrr-map__dot:hover::after {
  opacity: 1;
}

/* --- Shipping note --- */
.nrr-map__note {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.65;
}

.nrr-map__note-link {
  color: #ff3317;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nrr-map__note-link:hover {
  color: #e02a10;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nrr-map__inner {
    flex-direction: column;
    gap: 40px;
  }

  .nrr-map__container {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .nrr-map__countries {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .nrr-map__countries--left,
  .nrr-map__countries--right {
    align-items: center;
    text-align: center;
    padding: 0;
    width: 50%;
  }

  .nrr-map__country {
    padding: 10px 12px;
    font-size: 14px;
  }

  .nrr-map__country--featured {
    font-size: 22px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .nrr-map-section {
    padding: 64px 16px;
  }

  .nrr-map__countries--left,
  .nrr-map__countries--right {
    width: 100%;
  }
}
