@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");

.cbc-calculator {
  box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  margin: 24px auto;
  padding: 28px 36px;
  border: 1px solid #e4e5eb;
  border-radius: 16px;
  background: #f6f6f8;
  box-shadow: 0 2px 10px rgba(34, 37, 68, 0.06);
  font-family: "Ubuntu", "Segoe UI", Arial, sans-serif;
  color: #232440;
}

.cbc-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #232440;
}

.cbc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 58px;
}

.cbc-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #232440;
}

.cbc-item-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cbc-item-icons {
  font-size: 18px;
}

.cbc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.cbc-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 17.49px;
}

.cbc-tag-period {
  border: 1px solid #4cbd65;
  background: #caefcf;
  color: #4cbd65;
  font-weight: 500;
}

.cbc-tag-cashback {
  border: 1px solid #8367f4;
  background: #ece7ff;
  color: #232440;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.cbc-description {
  margin: 0 0 14px;
  min-height: 56px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #666a78;
}

.cbc-slider-wrap {
  position: relative;
  padding-bottom: 32px;
}

.cbc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6759d8 var(--track-fill, 0%), #cfd2db var(--track-fill, 0%));
  outline: none;
}

.cbc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #6558d9;
  box-shadow: 0 2px 6px rgba(38, 39, 86, 0.24);
  cursor: pointer;
}

.cbc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #6558d9;
  box-shadow: 0 2px 6px rgba(38, 39, 86, 0.24);
  cursor: pointer;
}

.cbc-slider::-moz-range-track {
  height: 12px;
  border: none;
  border-radius: 999px;
  background: #cfd2db;
}

.cbc-amount {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #232440;
}

.cbc-summary {
  width: min(640px, 100%);
  margin: 28px auto 0;
  padding: 24px 20px 22px;
  border-radius: 16px;
  background: #ddd0f0;
  text-align: center;
}

.cbc-summary-label {
  margin: 0;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #232440;
}

.cbc-summary-value {
  margin: 14px 0 0;
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  color: #232440;
}

@media (max-width: 1024px) {
  .cbc-calculator {
    padding: 24px 22px;
  }

  .cbc-grid {
    gap: 22px 30px;
  }

  .cbc-title {
    font-size: 20px;
  }

  .cbc-item h3 {
    font-size: 18px;
  }

  .cbc-summary-label {
    font-size: 16px;
  }

  .cbc-summary-value {
    font-size: 40px;
  }
}

@media (max-width: 820px) {
  .cbc-calculator {
    margin: 16px auto;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .cbc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cbc-item-head {
    margin-bottom: 6px;
  }

  .cbc-title {
    margin-bottom: 18px;
  }

  .cbc-summary {
    margin-top: 22px;
    padding: 20px 14px;
    border-radius: 14px;
  }

  .cbc-summary-label {
    line-height: 1.25;
  }

  .cbc-description {
    min-height: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .cbc-calculator {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .cbc-title {
    font-size: 19px;
    line-height: 1.2;
  }

  .cbc-item h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  .cbc-tag {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 13px;
    line-height: 1.25;
  }

  .cbc-tag-cashback {
    font-size: 14px;
    line-height: 1.2;
  }

  .cbc-description {
    font-size: 15px;
    line-height: 1.25;
  }

  .cbc-slider-wrap {
    padding-bottom: 28px;
  }

  .cbc-slider {
    height: 10px;
  }

  .cbc-slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }

  .cbc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }

  .cbc-amount {
    font-size: 15px;
  }

  .cbc-summary-label {
    font-size: 16px;
  }

  .cbc-summary-value {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .cbc-calculator {
    margin: 10px auto;
    padding: 12px 10px;
  }

  .cbc-grid {
    gap: 16px;
  }

  .cbc-tags {
    gap: 6px;
  }

  .cbc-tag {
    min-height: 22px;
    padding: 1px 7px;
    font-size: 12px;
  }

  .cbc-tag-cashback {
    font-size: 13px;
  }

  .cbc-description {
    font-size: 14px;
  }

  .cbc-summary {
    margin-top: 18px;
    padding: 16px 10px;
  }

  .cbc-summary-label {
    font-size: 15px;
  }

  .cbc-summary-value {
    margin-top: 10px;
    font-size: 30px;
  }

  .cbc-item-icons {
    font-size: 16px;
  }
}
