/* Pakistan phone input — local 03xx… digits, LTR */

.phone-input-field {
  width: 100%;
}

.phone-input {
  display: block;
  direction: ltr;
  width: 100%;
}

.phone-input input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  direction: ltr;
  text-align: left;
  line-height: 1.25;
}

.phone-input input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.phone-input:focus-within input {
  border-color: var(--teal, #2bb8c8);
}

.phone-input-field .field-error {
  font-size: 12px;
  color: #ff6b6b;
  margin: 2px 0 0;
  line-height: 1.4;
}

.phone-input-field .field-availability-hint {
  font-size: 12px;
  color: #9a7b2e;
  margin: 2px 0 0;
  line-height: 1.45;
}

/* Auth pages */
.auth-field .phone-input {
  display: block;
  width: 100%;
}

.auth-field .phone-input input,
.auth-field .phone-input input#phone {
  width: 100%;
  min-width: 0;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 16px;
  margin: 0;
  border: 2px solid rgba(43, 184, 200, 0.25);
  border-radius: 14px !important;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  line-height: 1.25;
  background: #ffffff;
  color: var(--navy, #0f2a44);
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field .phone-input input:focus {
  box-shadow: 0 0 0 4px rgba(43, 184, 200, 0.15);
}

/* Checkout */
.checkout-page .phone-field .phone-input,
.checkout-step1-section .phone-field .phone-input,
.checkout-info-section .phone-field .phone-input {
  display: block;
  width: 100%;
}

.checkout-page .phone-input input,
.checkout-page .phone-input input#phone,
.checkout-step1-section .phone-input input,
.checkout-step1-section .phone-input input#phone,
.checkout-info-section .phone-input input,
.checkout-info-section .phone-input input#phone {
  width: 100%;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  margin: 0;
  padding: 0 12px !important;
  border-width: 1.5px;
  border-radius: 8px !important;
  font-size: 14px;
  line-height: 1.25;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 768px) {
  .checkout-page .phone-input input,
  .checkout-page .phone-input input#phone,
  .checkout-step1-section .phone-input input,
  .checkout-step1-section .phone-input input#phone,
  .checkout-info-section .phone-input input,
  .checkout-info-section .phone-input input#phone {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
  }
}

/* Account profile */
.acct-field .phone-input input {
  border-width: 1.5px;
  border-radius: 10px !important;
  font-size: 14px;
  padding: 10px 14px;
  min-height: 44px;
}

.auth-field .field-error,
.acct-field .field-error {
  font-size: 12px;
  color: #e50000;
  margin: 4px 0 0;
  line-height: 1.4;
}
