.kare-coverage-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.kare-map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

#kare-map {
  width: 100%;
  height: 600px;
  display: block;
}

.kare-zip-card {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(360px, calc(100% - 24px));
}

.kare-zip-card h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.25;
}

.kare-zip-card p {
  margin: 0 0 2px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
}

.kare-zip-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

#kare-zip-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 40px;
  font-size: 16px;
  border: 1.5px solid #cccccc;
  border-radius: 6px;
  padding: 0 10px;
  outline: none;
  box-sizing: border-box;
}

#kare-zip-input:focus {
  border-color: #2E75B6;
  box-shadow: 0 0 0 2px rgba(46, 117, 182, 0.15);
}

#kare-zip-btn {
  flex: 0 0 76px;
  width: 76px;
  height: 40px;
  min-height: 40px;
  background: #4CAF50;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

#kare-zip-btn:hover {
  background: #43A047;
}

#kare-zip-result {
  display: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.kare-result--success {
  background: #E8F5E9;
  border-left: 4px solid #4CAF50;
  color: #1B5E20;
}

.kare-result--info {
  background: #ECEFF1;
  border-left: 4px solid #2E75B6;
  color: #37474F;
}

.kare-appt-link {
  display: inline-block;
  margin-top: 6px;
  color: #2E75B6;
  font-weight: 600;
  text-decoration: none;
}

.kare-appt-link:hover {
  text-decoration: underline;
}

.kare-contact-strip {
  background: #F5F8FA;
  text-align: center;
  padding: 28px 20px;
  margin-top: 0;
}

.kare-contact-strip h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1a1a1a;
}

.kare-contact-strip p {
  margin: 0;
  font-size: 15px;
  color: #444444;
}

.kare-contact-strip a {
  color: #2E75B6;
  font-weight: 600;
}

@media (max-width: 768px) {
  #kare-map {
    height: 450px;
  }
}

@media (max-width: 480px) {
  #kare-map {
    height: 350px;
  }

  .kare-zip-card {
    top: 8px;
    left: 8px;
    padding: 10px;
    width: min(310px, calc(100% - 16px));
  }

  .kare-zip-card h3 {
    font-size: 15px;
  }

  .kare-zip-card p {
    font-size: 13px;
  }

  #kare-zip-input {
    height: 36px;
    font-size: 14px;
  }

  #kare-zip-btn {
    flex-basis: 64px;
    width: 64px;
    height: 36px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
}
