#free-shipping-calculator {
  width: 100%;
  padding: 7px 15px;
  margin-top: 10px;
  background-color: rgba(178, 251, 227, 0.22);
  border: 1px solid rgb(104, 213, 177);
  color: #000; /* Yazı rengi siyah yapıldı */
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(104, 213, 177, 0.1);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  height: auto;
  min-height: 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  gap: 18px;
}

#free-shipping-calculator span {
  color: #000; /* span içindeki yazı da siyah yapıldı */
  font-size: 12px;
}

/* Masaüstü için */
@media (min-width: 768px) {
  #free-shipping-calculator {
    font-size: 14px;
    padding: 7px 15px;
  }
}

/* Mobil için */
@media (max-width: 767px) {
  #free-shipping-calculator {
    font-size: 13px;
    padding: 6px 12px;
  }
}
