/* Full design CSS for widget */
.edp-pricing-wrap {
  max-width: 1200px;
  margin: 30px auto;
  font-family: Inter, system-ui, Arial;
  color: #222;
}

.edp-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #E0E2E6;
}

.edp-top-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.edp-top-heading h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #2b2b2b;
}

.edp-domain-badge {
  display: inline-block;
  background: #f3f4ff;
  color: #4630ff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  min-width: 48px;
  text-align: center;
}

.edp-slider-wrap input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;

  /* Progress background using gradient */
  background: linear-gradient(to right, #2f3dbf 0%, #2f3dbf var(--value, 50%), #d9d9d9 var(--value, 50%), #d9d9d9 100%);
}

/* Webkit thumb (Chrome, Safari, Edge) */
.edp-slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #2f3dbf;
  border: none;
  margin-top: -2px;
  position: relative;
  z-index: 2;
}

/* Firefox */
.edp-slider-wrap input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #2f3dbf;
  border: none;
  cursor: pointer;
}

/* Firefox track colors */
.edp-slider-wrap input[type=range]::-moz-range-progress {
  background-color: #2f3dbf;
  height: 6px;
  border-radius: 6px;
}
.edp-slider-wrap input[type=range]::-moz-range-track {
  background-color: #d9d9d9;
  height: 6px;
  border-radius: 6px;
}


.edp-stats {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #E0E2E6;
  border-radius:8px;
}
.edp-stat {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border-radius: 0;
    padding: 7px;
    border-right: 1px solid #E0E2E6;
    margin: 10px 0;
}
.edp-stat:last-child {
    border: none;
}
.edp-stat h4 {
  margin: 0;
  font-size: 17px;
  color: #7b7b8a;
  font-weight: 600;
}

.edp-stat .edp-value {
  font-size: 24px;
  font-weight: 800;
  margin-top: 8px;
  color: #111;
}

.edp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.edp-plan {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
  transition: all .18s ease;
  position: relative;
}

.edp-plan.edp-selected {
  border-color: #382DB9;
  box-shadow: 0 14px 40px rgba(70, 48, 255, 0.08);
  transform: translateY(-4px);
}

.edp-title {
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  font-size: 18px;
}


.edp-price {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Inter", Arial, sans-serif;
    color: #191D23;
}
.edp-subtitle
 {
  font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    color: #191D23;
    margin: 20px 0 10px;
    font-weight: 600;
}
.edp-per {
  font-size: 17px;
  color: #7b7b8a;
  margin-bottom: 14px;
}

.edp-btn {
    width: 100%;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E0E2E6;
    color: #191D23;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
     display: inline-block;
  padding: 10px 18px;
}
.edp-btn:hover{
  background: #382DB9;
  color: #fff;
}
.edp-plan.edp-selected .edp-btn {
    background: #382DB9;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    border-radius: 8px;
}
a.edp-btn {
    text-align: center;
}

.edp-features {
  margin-top: 16px;
  color: #5f5f6b;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
}

.edp-features li {
    margin-bottom: 8px;
    font-size: 17px;
}
.edp-note {
    font-size: 14px;
    color: #5D5F63;
    border-top: 1px solid #E0E2E6;
    padding: 20px 0 0;
    margin: 50px 0 0;
}

@media (max-width:900px) {
  .edp-plans {
    grid-template-columns: 1fr;
  }

  .edp-stats {
    gap: 12px;
  }
}