/* Billing & Shipping Form Styles – Consistent with Profile Page */

/* Profile Header Styles */
.profile-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.profile-title {
  font-size: 2rem;
  font-weight: 700;
  color: #006837;
  margin-bottom: 0.5rem;
}

.profile-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Form Section Styles */
.form-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.section-title {
  background: linear-gradient(135deg, #006837 0%, #13560c 100%);
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  font-size: 1.2rem;
}

.section-content {
  padding: 1.5rem;
}

.profile-form {
  display: block;
}

.input--brand {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  width: 100%;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.input--brand:focus {
  outline: none;
  border-color: #13560c;
  box-shadow: 0 0 0 2px rgba(0,104,55,.2);
}

.btn-brand {
  background: #006837;
  border: none;
  border-radius: 6px;
  color: #fff;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-brand:hover {
  background: #00502c;
}

.toggle-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #006837;
}

.toggle-copy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.toggle-copy label {
  margin: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
}

.form-submit-wrapper {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  clear: both;
}

@media (max-width: 767px) {
  .form-submit-wrapper {
    margin-top: 1.5rem;
  }
}
