/* Calculator css */
.weight-calculator-box {
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f8f8;
}

.calculator-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.calculator-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.calculator-field input {
  width: 100%;
  height: 45px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
}

.calculator-field input:focus {
  border-color: #999;
}

.calculator-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.calculator-actions button {
  padding: 11px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.calculator-actions button:first-child {
  background: #333;
  color: #fff;
}

.calculator-actions button:last-child {
  background: #ddd;
  color: #333;
}

.calculator-result {
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
}

.calculator-result span {
  font-weight: 700;
}

@media (max-width: 768px) {
  .calculator-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .calculator-actions {
    flex-wrap: wrap;
  }

  .calculator-actions button {
    width: 100%;
  }
}

/*  text-formating  */
.custom-heading {
  font-size: 26px;
  line-height: 32px;
  padding: 22px 0;
  font-weight: 600;
  color: #137082;
  margin: 0;
  font-family: "Poppins", sans-serif;
}



/* for flag */
.order-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.order-list li img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
