/* Account / Auth pages */
.account-auth-page {
  padding-bottom: 50px;
  background: #FBFBFB;
}

.account-register-page {
  padding-bottom: 50px;
  background: #FBFBFB;
}

.account-alert {
  margin-bottom: 24px;
}

.account-auth-row {
  display: flex;
  flex-wrap: wrap;
}

.account-auth-content {
  padding-right: 32px;
}

/* Two cards: Register + Login */
.account-auth-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.account-auth-card {
  border: 1px solid #e5e5e5;
  padding: 30px 20px 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.account-auth-card-login {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  border: none;
}

.account-auth-card-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
}

.account-auth-card-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin: 0 0 20px 0;
}

.account-auth-card-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #000;
}

.account-auth-card-text br {
  display: block;
  content: "";
  margin-top: 8px;
}

/* Buttons */
.account-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.account-forgotten-card .account-auth-btn.account-auth-btn-login {
  margin-top: 0px;
}

.account-auth-btn-register {
  background: #000;
  color: #fff;
}

.account-auth-btn-register:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
}

.account-auth-btn-login {
  background: #A2947A;
  color: #fff;
  width: 100%;
  margin-top: 8px;
}

.account-auth-btn-login:hover {
  background: #8f826c;
  color: #fff;
}

/* Form */
.account-auth-form .account-form-group {
  margin-bottom: 20px;
}

.account-form-label {
  display: block;
  font-family: Gilroy, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.account-form-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  outline: none;
  background: #fafafa;
}

.account-form-input::focus {
  background: #fafafa;
}

.account-form-input:focus {
  outline: none;
  border: 1px solid #ebeaea;
  background: #fff;
}

.account-forgotten-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #a2947a;
  text-decoration: none;
}

.account-forgotten-link:hover {
  text-decoration: underline;
  color: #8f826c;
}

/* Forgot password page */
.account-forgotten-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 32px;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.06);
}

.account-forgotten-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.account-auth-btn-back {
  background: #fff;
  color: #000;
  border: 1px solid #e0e0e0;
}

.account-auth-btn-back:hover {
  background: #f5f5f5;
  color: #000;
  border-color: #ccc;
  text-decoration: none;
}

/* Right sidebar (account menu) */
#account-login #column-right,
#account-register #column-right,
#account-forgotten #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-login .list-group,
#account-register .list-group,
#account-forgotten .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-login .list-group-item,
#account-register .list-group-item,
#account-forgotten .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-login .list-group-item:last-child,
#account-register .list-group-item:last-child,
#account-forgotten .list-group-item:last-child {
  border-bottom: none;
}

#account-login .list-group-item:hover,
#account-register .list-group-item:hover,
#account-forgotten .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

/* Register page */
.account-register-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 8px 0;
}

.account-register-intro {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
}

.account-register-intro a {
  color: #A2947A;
  text-decoration: underline;
}

.account-register-card {
  max-width: 100%;
}

.account-register-card fieldset {
  border: none;
  outline: none;
  margin: 0 0 8px 0;
  padding: 0;
}

.reg-field-group--password legend {
  display: block;
  text-transform: capitalize;
}

.reg-field-group--password,
.reg-field-group--newsletter {
  margin-top: 50px !important;
}

.account-register-card legend {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
  width: 100%;
}

/* Floating label field group */
.reg-field-group {
  position: relative;
  margin-bottom: 0px;
}

.reg-field-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg-field-label {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  padding-left: 20px;
  margin-bottom: 10px;
}

.reg-field-input {
  display: block;
  width: 100%;
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  background: #f4f4f4;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  border: none;
  transition: border-color 0.2s ease;
  height: auto;
}

.reg-field-error {
  font-family: var(--font-family);
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  padding-left: 4px;
}

.reg-field-select {
  padding: 26px 16px 10px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.reg-field-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Radio & checkbox */
.reg-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
}

.reg-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  color: #000;
  cursor: pointer;
  font-weight: 400;
}

.reg-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #000;
  cursor: pointer;
  flex-shrink: 0;
}

.reg-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  color: #000;
  cursor: pointer;
  margin-bottom: 6px;
}

.reg-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #A2947A;
  cursor: pointer;
  flex-shrink: 0;
}

.reg-newsletter-question {
  font-family: var(--font-family);
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
}

/* Agree row & submit */
.reg-agree-row {
  margin-top: 24px;
}

.reg-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 1.5;
}

.reg-agree-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #000;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-agree-label a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: underline;
}

.reg-agree-label a b {
  font-weight: 400;
}

.reg-submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.reg-submit-btn:hover {
  background: #222;
}

.pull-right {
  float: unset !important;
}

@media (max-width: 991px) {

  .account-auth-cards {
    margin-bottom: 0px;
  }

  .account-auth-row {
    padding-right: 15px;
  }

  .account-auth-card-text {
    margin-bottom: 20px;
  }

  .account-auth-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .account-auth-content {
    padding-right: 0;
    margin-bottom: 0px;
  }

  .account-auth-content {
    padding-right: 15px;
  }

  .account-auth-page {
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .account-auth-card {
    padding: 15px;
  }

  .account-auth-card-title {
    font-size: 18px;
  }
  
  .account-auth-btn {
    font-size: 16px;
  }

  .account-register-title {
    font-size: 28px;
  }
}

/* ================================
   Wishlist page
   ================================ */

.wishlist-page + #column-right .list-group-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  padding: 15px 20px;
}

.wishlist-page + #column-right {
  padding-right: 0px;
  padding-left: 20px;
}

.list-group {
 margin-bottom: 0px;
}

#account-wishlist {
  padding-bottom: 80px;
  background: #FBFBFB;
}

#account-reward {
  background: #FBFBFB;
}

#account-wishlist .container > .row,
#account-password .container > .row,
#account-edit .container > .row,
#account-address .container > .row,
#account-order .container > .row,
#account-download .container > .row,
#account-recurring .container > .row,
#account-reward .container > .row,
#account-return .container > .row,
#account-transaction .container > .row,
#account-newsletter .container > .row,
#account-affiliate .container > .row {
  margin-left: 0px;
  margin-right: 0px;
}

#account-password .container > .row #content,
#account-edit .container > .row #content,
#account-address .container > .row #content,
#account-order .container > .row #content,
#account-download .container > .row #content,
#account-reward .container > .row #content,
#account-return .container > .row #content,
#account-transaction .container > .row #content,
#account-newsletter .container > .row #content,
#account-affiliate .container > .row #content {
  padding-left: 0px;
}

#account-account #column-right .list-group-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.wishlist-page {
  padding-bottom: 50px;
  padding-left: 0px;
  padding-right: 0px;
}

.wishlist-page__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin-top: 0;
  margin-bottom: 50px;
}

.wishlist-table-wrapper {
  margin-bottom: 32px;
}

.wishlist-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e8e8e8;
}

.wishlist-table__head-cell {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px;
  text-align: left;
}

.wishlist-table__head-cell--actions {
  text-align: left;
}

.wishlist-table__row > td.wishlist-table__cell {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  padding: 10px;
  border: 1px solid #e8e8e8;
  vertical-align: middle;
}

.wishlist-table__cell--image {
  width: 100px;
}

.wishlist-table__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Typography */
.wishlist-product__name {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.list-group-item:first-child {
  border-radius: 0px;
}

.wishlist-product__name:hover {
  text-decoration: underline;
  color: #000;
}

.wishlist-table__cell--model,
.wishlist-table__cell--stock {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.wishlist-product__price {
  font-family: var(--font-family);
  font-size: 16px;
  color: #000;
}

.wishlist-product__price--special {
  font-weight: 600;
  color: #000;
  margin-right: 6px;
}

.wishlist-product__price--old {
  color: #999;
  font-size: 13px;
  text-decoration: line-through;
}

/* Action column */
.wishlist-table__cell--actions {
  text-align: right;
}

.wishlist-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wishlist-actions__btn--add {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 11px 7px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background: #a2947a;
  border-radius: 0;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

td.wishlist-table__cell.wishlist-table__cell--stock {
  min-width: 120px;
}

.wishlist-actions__remove svg {
  margin-top: -4px;
}


.wishlist-actions__btn--add:hover,
.wishlist-actions__btn--add:focus {
  background: #8f826c;
  border-color: #8f826c;
  color: #fff;
}

.wishlist-actions__remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 11px 7px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #f52929;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wishlist-actions__remove:hover {
  color: #b52b27;
  text-decoration: none;
}

/* Empty state */
.wishlist-page__empty {
  font-family: var(--font-family);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

/* Continue button */
.wishlist-page__buttons {
  margin-top: 16px;
}

.wishlist-page__continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background: #A2947A;
  border: 1px solid #A2947A;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.wishlist-page__continue-btn:hover,
.wishlist-page__continue-btn:focus {
  background: #8f826c;
  border-color: #8f826c;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {

  .account-auth-content {
    max-width: 100%;
    width: 100%;
    padding-right: 0px;
  }

  .account-auth-row #column-right {
    display: flex !important;
    padding-left: 15px !important;
    padding-top: 30px !important;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
  }

  .account-auth-row #column-right .list-group {
    width: 100%;
    max-width: 100%;
  }

  #account-reward,
  #account-return,
  #account-transaction {
    padding-bottom: 30px !important;
  }

  #account-recurring {
    padding-bottom: 50px;
  }

  #account-download {
    padding-bottom: 30px !important;
  }

  .account-page {
    padding: 0px !important;
}

  #account-wishlist .container > .row #column-right,
  #account-password .container > .row #column-right,
  #account-edit .container > .row #column-right,
  #account-address .container > .row #column-right,
  #account-order .container > .row #column-right,
  #account-download .container > .row #column-right,
  #account-recurring .container > .row #column-right,
  #account-reward .container > .row #column-right,
  #account-return .container > .row #column-right,
  #account-transaction .container > .row #column-right,
  #account-newsletter .container > .row #column-right,
  #account-affiliate .container > .row #column-right {
    padding-top: 30px;
    display: flex !important;
    padding-left: 0px;
  }

  .wishlist-page {
    padding-bottom: 0px;
  }

  #account-account {
    padding-bottom: 30px !important;
  }

  #account-wishlist .container > .row #column-right .list-group,
  #account-password .container > .row #column-right .list-group,
  #account-edit .container > .row #column-right .list-group,
  #account-address .container > .row #column-right .list-group,
  #account-order .container > .row #column-right .list-group,
  #account-download .container > .row #column-right .list-group,
  #account-recurring .container > .row #column-right .list-group,
  #account-reward .container > .row #column-right .list-group,
  #account-return .container > .row #column-right .list-group,
  #account-transaction .container > .row #column-right .list-group,
  #account-newsletter .container > .row #column-right .list-group,
  #account-affiliate .container > .row #column-right .list-group {
    width: 100%;
  }

  .wishlist-page__title {
    font-size: 26px;
  }

  .wishlist-table__head-cell--image,
  .wishlist-table__cell--image {
    display: none;
  }

  .wishlist-table__head-cell--model,
  .wishlist-table__cell--model {
    display: none;
  }
  
  /* a.list-group-item, button.list-group-item {
    padding: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #000;
  } */

  .wishlist-actions {
    align-items: stretch;
  }

  .wishlist-actions__btn--add {
    width: 100%;
    justify-content: center;
  }

  .wishlist-page__continue-btn {
    width: 100%;
    text-align: center;
  }

  #account-wishlist {
    padding-bottom: 50px;
  }
}


/* ================================
   Account page
   ================================ */

#account-account {
  padding-bottom: 80px;
  background: #FBFBFB;
}

#account-account .container > .row {
  margin-left: 0px;
  margin-right: 0px;
}

.account-page {
  padding: 20px 0 60px;
}

.account-page__section-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin: 30px 0 16px;
  padding-top: 30px;
  border-top: 1px solid #ebebeb;
}

.account-page__section-title:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0px;
}

.account-page__links {
  margin-bottom: 0;
}

.account-page__link-item:last-child {
  border-bottom: none;
}

.account-page__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.account-page__link::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 7px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1l5 5-5 5' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  margin-left: 8px;
  margin-right: auto;
  opacity: 0.4;
}

.account-page__link:hover {
  color: #A2947A;
  text-decoration: none;
}

.account-page__link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1l5 5-5 5' stroke='%23A2947A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Right column for account page */
#account-account #column-right {
  padding-left: 20px;
  padding-right: 0;
}

#account-account #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-account #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-account #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-account #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Edit & Password account pages
   ================================ */

#account-edit {
  padding-bottom: 80px;
  background: #FBFBFB;
}

.form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
}

#account-edit #content h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 28px 0;
  border: none;
}

#account-edit fieldset {
  border: none;
  outline: none;
  margin: 0 0 10px 0;
  padding: 0;
}

#account-edit fieldset legend {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
}

#account-edit .form-group {
  margin-bottom: 20px;
}

#account-edit .form-horizontal .control-label {
  float: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  padding: 0;
}

#account-edit .form-horizontal .col-sm-10 {
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#account-edit .form-control {
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  height: auto;
}

#account-edit .form-control:focus {
  border-color: #A2947A;
  outline: none;
  box-shadow: none;
  background: #fafafa;
}

#account-edit .buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

#account-edit .buttons .pull-left,
#account-edit .buttons .pull-right {
  float: none !important;
}

#account-edit .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

#account-edit .buttons.clearfix::before {
  display: none;
}

#account-edit .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-edit .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#account-edit .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

/* Right column */
#account-edit #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-edit #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-edit #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-edit #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-edit #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Password page (#account-password)
   ================================ */

#account-password {
  padding-bottom: 80px;
  background: #FBFBFB;
}

#account-password #content h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 28px 0;
  border: none;
}

#account-password fieldset {
  border: none;
  outline: none;
  margin: 0 0 10px 0;
  padding: 0;
}

#account-password fieldset legend {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
}

#account-password .form-group {
  margin-bottom: 20px;
}

#account-password .form-horizontal .control-label {
  float: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  padding: 0;
}

#account-password .form-horizontal .col-sm-10 {
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#account-password .form-control {
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  height: auto;
}

#account-password .form-control:focus {
  border-color: #A2947A;
  outline: none;
  box-shadow: none;
  background: #fafafa;
}

#account-password .buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-password .buttons .pull-left,
#account-password .buttons .pull-right {
  float: none !important;
}

#account-password .buttons.clearfix::before {
  display: none;
}

#account-password .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

#account-password .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-password .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#account-password .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-password #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-password #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-password #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-password #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-password #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Address list page (#account-address)
   ================================ */

#account-address {
  padding-bottom: 80px;
  background: #FBFBFB;
}

#account-address #content h1,
#account-address #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-address #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

#account-address .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-address .buttons .pull-left,
#account-address .buttons .pull-right {
  float: none !important;
}

#account-address .buttons.clearfix::before {
  display: none;
}

#account-address .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

#account-address .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-address .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-address .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-address table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

#account-address table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-address table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-address table.table .btn-info {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 7px 16px;
  font-family: var(--font-family);
  font-size: 13px;
  transition: background 0.2s ease;
}

#account-address table.table .btn-info:hover {
  background: #f8f7f5;
  color: #000;
}

#account-address table.table .btn-danger {
  background: transparent;
  color: #c0392b;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 7px 16px;
  font-family: var(--font-family);
  font-size: 13px;
  transition: background 0.2s ease;
}

#account-address table.table .btn-danger:hover {
  background: #fdf0ef;
  color: #c0392b;
}

#account-address #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-address #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-wishlist .list-group-item {
  background-color: transparent;
}


#account-address #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-address #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-address #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Order history page (#account-order)
   ================================ */

#account-order {
  padding-bottom: 80px;
}

#account-order #content h1,
#account-order #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-order #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

#account-order .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-order .buttons .pull-left,
#account-order .buttons .pull-right {
  float: none !important;
}

#account-order .buttons.clearfix::before {
  display: none;
}

#account-order .buttons .btn-default,
#account-order .buttons .btn-primary {
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}

#account-order .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
}

#account-order .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-order .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  cursor: pointer;
}

#account-order .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-order table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

#account-order table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-order table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-order table.table td a {
  color: #000;
  text-decoration: none;
}

#account-order table.table td a:hover {
  color: #A2947A;
}

#account-order table.table .btn {
  border-radius: 0;
  font-family: var(--font-family);
  font-size: 13px;
  padding: 7px 16px;
  transition: background 0.2s ease;
}

#account-order table.table .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
}

#account-order table.table .btn-default:hover {
  background: #f8f7f5;
}

#account-order #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-order #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-order #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-order #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-order #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Downloads page (#account-download)
   ================================ */

#account-download {
  padding-bottom: 80px;
  background: #FBFBFB;
}

#account-download #content h1,
#account-download #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-download #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

#account-download .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-download .buttons .pull-left,
#account-download .buttons .pull-right {
  float: none !important;
}

#account-download .buttons.clearfix::before {
  display: none;
}

#account-download .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-download .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-download .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-download .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-download table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

#account-download table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-download table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-download table.table td a {
  color: #000;
  text-decoration: none;
}

#account-download table.table td a:hover {
  color: #A2947A;
}

#account-download #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-download #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-download #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-download #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-download #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Recurring payments (#account-recurring)
   ================================ */

#account-recurring {
  padding-bottom: 80px;
}

#account-recurring #content h1,
#account-recurring #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-recurring #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

#account-recurring .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-recurring .buttons .pull-left,
#account-recurring .buttons .pull-right {
  float: none !important;
}

#account-recurring .buttons.clearfix::before {
  display: none;
}

#account-recurring .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-recurring .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-recurring .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-recurring .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-recurring table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

#account-recurring table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-recurring table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-recurring table.table td a {
  color: #000;
  text-decoration: none;
}

#account-recurring table.table td a:hover {
  color: #A2947A;
}

#account-recurring #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-recurring #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-recurring #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-recurring #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-recurring #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Reward points page (#account-reward)
   ================================ */

#account-reward {
  padding-bottom: 80px;
}

#account-reward #content h1,
#account-reward #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-reward #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

#account-reward table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 12px;
}

#account-reward table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-reward table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-reward .pagination-wrapper,
#account-reward #content > p:last-of-type {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  margin-bottom: 20px;
}

#account-reward .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-reward .buttons .pull-left,
#account-reward .buttons .pull-right {
  float: none !important;
}

#account-reward .buttons.clearfix::before {
  display: none;
}

#account-reward .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-reward .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-reward .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-reward .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-reward #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-reward #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-reward #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-reward #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-reward #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Returns page (#account-return)
   ================================ */

#account-return {
  padding-bottom: 80px;
  background-color: #FBFBFB;
}

#account-return #content h1,
#account-return #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-return #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

#account-return table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

#account-return table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-return table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-return table.table td a {
  color: #000;
  text-decoration: none;
}

#account-return table.table td a:hover {
  color: #A2947A;
}

#account-return .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-return .buttons .pull-left,
#account-return .buttons .pull-right {
  float: none !important;
}

#account-return .buttons.clearfix::before {
  display: none;
}

#account-return .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-return .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-return .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-return .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-return #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-return #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-return #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-return #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-return #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Transaction history (#account-transaction)
   ================================ */

#account-transaction {
  padding-bottom: 80px;
  background-color: #FBFBFB;
}

#account-transaction #content h1,
#account-transaction #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 12px 0;
  border: none;
}

#account-transaction #content > p {
  font-family: var(--font-family);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

#account-transaction table.table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 12px;
}

#account-transaction table.table th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  background: #f8f7f5;
}

#account-transaction table.table td {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  border: 1px solid #e8e8e8;
  padding: 14px 16px;
  vertical-align: middle;
}

#account-transaction .pagination-wrapper,
#account-transaction #content > p.text-right {
  font-family: var(--font-family);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
  margin-bottom: 20px;
}

#account-transaction .buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-transaction .buttons .pull-left,
#account-transaction .buttons .pull-right {
  float: none !important;
}

#account-transaction .buttons.clearfix::before {
  display: none;
}

#account-transaction .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-transaction .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-transaction .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-transaction .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-transaction #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-transaction #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-transaction #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-transaction #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-transaction #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Newsletter page (#account-newsletter)
   ================================ */

#account-newsletter {
  padding-bottom: 80px;
  background-color: #FBFBFB;
}

#account-newsletter #content h1,
#account-newsletter #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 24px 0;
  border: none;
}

#account-newsletter .form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#account-newsletter .form-group label.control-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  min-width: 90px;
}

#account-newsletter .radio-inline {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  padding-left: 0;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

#account-newsletter input[type="radio"] {
  accent-color: #A2947A;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: none;
  outline: none;
}

#account-newsletter .buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}

#account-newsletter .buttons .pull-left,
#account-newsletter .buttons .pull-right {
  float: none !important;
}

#account-newsletter .buttons.clearfix::before {
  display: none;
}

#account-newsletter .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-newsletter .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-newsletter .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#account-newsletter .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-newsletter #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-newsletter #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-newsletter #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-newsletter #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-newsletter #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}

/* ================================
   Affiliate page (#account-affiliate)
   ================================ */

#account-affiliate {
  padding-bottom: 80px;
  background-color: #FBFBFB;
}

#account-affiliate #content h1,
#account-affiliate #content h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: #000;
  margin: 0 0 28px 0;
  border: none;
}

#account-affiliate fieldset {
  border: none;
  outline: none;
  margin: 0 0 10px 0;
  padding: 0;
}

#account-affiliate fieldset legend {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
}

#account-affiliate .form-group {
  margin-bottom: 20px;
}

#account-affiliate .form-horizontal .control-label {
  float: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  padding: 0;
}

#account-affiliate .form-horizontal .col-sm-10 {
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#account-affiliate .form-control {
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  height: auto;
}

#account-affiliate .form-control:focus {
  border-color: #A2947A;
  outline: none;
  box-shadow: none;
  background: #fafafa;
}

#account-affiliate input[type="radio"],
#account-affiliate input[type="checkbox"] {
  accent-color: #A2947A;
  cursor: pointer;
}

#account-affiliate .radio label,
#account-affiliate .checkbox label {
  font-family: var(--font-family);
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

#account-affiliate .buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

#account-affiliate .buttons .pull-left,
#account-affiliate .buttons .pull-right {
  float: none !important;
}

#account-affiliate .buttons.clearfix::before {
  display: none;
}

#account-affiliate .buttons .btn-default {
  background: transparent;
  color: #000;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

#account-affiliate .buttons .btn-default:hover {
  background: #f8f7f5;
  color: #000;
}

#account-affiliate .buttons .btn-primary {
  background: #A2947A;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#account-affiliate .buttons .btn-primary:hover {
  background: #8f826c;
  color: #fff;
}

#account-affiliate #column-right {
  padding-left: 0;
  padding-right: 0;
}

#account-affiliate #column-right .list-group {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#account-affiliate #column-right .list-group-item {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8 !important;
  background-color: transparent;
  border-radius: 0;
  transition: background 0.2s ease;
}

#account-affiliate #column-right .list-group-item:hover {
  background: #f8f7f5;
  color: #000;
}

#account-affiliate #column-right .list-group-item.active {
  background: #f8f7f5;
  color: #000;
  border-left: 3px solid #A2947A;
  padding-left: 17px;
}