  .distribution-network-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
    box-sizing: border-box;
  }

  .distribution-network-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  /* Heading */
  .distribution-network-heading {
    margin: 0 0 12px;
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    color: #374151;
  }

  .distribution-network-subheading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #8b8b8b;
  }

  /* Map Wrapper */
  .distribution-map-wrapper {
    position: relative;
    width: 100%;
    height: 650px;

    border: 1px solid #e8e8e8;
    border-radius: 18px;

    overflow: hidden;
    background: #f7f7f7;

    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.03),
      0 15px 40px rgba(0, 0, 0, 0.05);
  }

  #distribution-map {
    width: 100%;
    height: 100%;
  }

  /* ================================
     LEGEND
  ================================= */

  .distribution-map-legend {
    position: absolute;
    z-index: 800;

    right: 24px;
    bottom: 24px;

    padding: 17px 20px;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .legend-title {
    margin: 0 0 12px;

    font-size: 13px;
    font-weight: 700;

    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 8px;

    font-size: 14px;
    color: #444444;
  }

  .legend-item:last-child {
    margin-bottom: 0;
  }

  .legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .legend-dot.head-office {
    background: #d9362b;
  }

  .legend-dot.branch-office {
    background: #27a857;
  }

  .legend-dot.distributor {
    background: #168ac0;
  }

  /* ================================
     MAP MARKERS
  ================================= */

  .network-marker {
    position: relative;

    width: 22px;
    height: 22px;

    border: 4px solid #ffffff;
    border-radius: 50%;

    box-shadow:
      0 3px 8px rgba(0, 0, 0, 0.25),
      0 0 0 2px rgba(0, 0, 0, 0.04);

    box-sizing: border-box;
  }

  .network-marker::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    background: currentColor;
    opacity: 0.12;

    animation: networkPulse 2.2s infinite;
  }

  .network-marker.head-office {
    background: #d9362b;
    color: #d9362b;
  }

  .network-marker.branch-office {
    background: #27a857;
    color: #27a857;
  }

  .network-marker.distributor {
    background: #168ac0;
    color: #168ac0;
  }

  @keyframes networkPulse {
    0% {
      transform: translate(-50%, -50%) scale(0.65);
      opacity: 0.18;
    }

    70% {
      transform: translate(-50%, -50%) scale(1.15);
      opacity: 0;
    }

    100% {
      transform: translate(-50%, -50%) scale(1.15);
      opacity: 0;
    }
  }

  /* ================================
     CITY NAME TOOLTIP
  ================================= */

  .leaflet-tooltip.network-city-tooltip {
    padding: 6px 9px;

    background: rgba(255, 255, 255, 0.94);
    color: #333333;

    border: 1px solid #e2e2e2;
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
  }

  .leaflet-tooltip.network-city-tooltip::before {
    display: none;
  }

  /* ================================
     POPUP
  ================================= */

  .network-popup {
    min-width: 190px;
    padding: 3px;
  }

  .network-popup-type {
    margin-bottom: 4px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #999999;
  }

  .network-popup-title {
    margin-bottom: 6px;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;

    color: #222222;
  }

  .network-popup-description {
    margin: 0;

    font-size: 13px;
    line-height: 1.5;

    color: #666666;
  }

  /* Leaflet popup refinement */
  .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  }

  .leaflet-popup-content {
    margin: 15px 17px;
  }

  /* Zoom control */
  .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12) !important;
  }

  .leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;

    color: #333333 !important;

    border: none !important;
  }

  /* Attribution */
  .leaflet-control-attribution {
    font-size: 9px;
  }

  /* ================================
     MOBILE
  ================================= */

  @media screen and (max-width: 767px) {
    .distribution-network-section {
      padding: 45px 10px;
    }

    .distribution-network-heading {
      font-size: 28px;
    }

    .distribution-network-subheading {
      margin-bottom: 25px;

      font-size: 14px;
      line-height: 1.6;
    }

    .distribution-map-wrapper {
      height: 520px;
      border-radius: 12px;
    }

    .distribution-map-legend {
      right: 10px;
      bottom: 20px;

      padding: 12px 14px;

      border-radius: 8px;
    }

    .legend-title {
      font-size: 11px;
      margin-bottom: 8px;
    }

    .legend-item {
      gap: 7px;

      margin-bottom: 6px;

      font-size: 11px;
    }

    .legend-dot {
      width: 8px;
      height: 8px;
    }

    .leaflet-tooltip.network-city-tooltip {
      padding: 4px 6px;
      font-size: 10px;
    }
  }

  @media screen and (max-width: 480px) {
    .distribution-map-wrapper {
      height: 470px;
    }
  }