.pw-field .pw-toggle {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
}

.pw-field.pw-right {
  position: relative;
}
.pw-field.pw-right .pw-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.pw-field.pw-left {
  position: relative;
}
.pw-field.pw-left .pw-toggle {
  position: absolute;
  left: 10px;
  top: 65%;
  transform: translateY(-50%);
}

.pw-field .icon-eye-off {
  display: none;
}
.pw-field.is-visible .icon-eye {
  display: none;
}
.pw-field.is-visible .icon-eye-off {
  display: inline;
}

.delivery-status-card {
  display: flex;
  align-items: center;
  background: #f7fcf2;
  border: 1px solid #dbeed1;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.ds-icon {
  font-size: 22px;
  margin-right: 12px;
}
.ds-label {
  font-weight: 600;
  color: #2e7d32;
  font-size: 15px;
}
.ds-pincode {
  font-size: 14px;
  color: #4b4b4b;
}
.product-options-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.option-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.option-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.option-item {
  padding: 8px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  background: #fafafa;
  transition: 0.2s;
}

.option-item.active {
  background: #000;
  color: #fff;
  border-color: #000;
  font-weight: 600;
}

.qty-box-advanced {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  width: fit-content;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.qty-btn.adv-btn {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.qty-btn.adv-btn:hover {
  background: #ececec;
  transform: scale(1.05);
}

.qty-adv-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

.qty-adv-input::-webkit-inner-spin-button,
.qty-adv-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Forgot Password Form Enhancements */
#forgotPasswordForm {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#forgotPasswordForm .form-group {
  margin-bottom: 20px;
}

#forgotPasswordForm label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

#forgotPasswordForm .btn-warning {
  position: relative;
  transition: all 0.3s ease;
}

#forgotPasswordForm .btn-warning:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#forgotPasswordForm .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#forgotPasswordForm .alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#back {
  color: #333;
  transition: all 0.2s ease;
  text-decoration: none;
}

#back:hover {
  color: #000;
  transform: translateX(-3px);
}
