.bcs-account-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 40px;
}
@media (max-width: 768px) {
  .bcs-account-container {
    padding: 24px 16px;
  }
}
.bcs-account-container .woocommerce-form-login .form-row,
.bcs-account-container .woocommerce-form-register .form-row {
  margin-bottom: 16px;
}
.bcs-account-container .woocommerce-form-login .form-row label,
.bcs-account-container .woocommerce-form-register .form-row label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 6px;
}
.bcs-account-container .woocommerce-form-login .form-row label .required,
.bcs-account-container .woocommerce-form-register .form-row label .required {
  color: #D40000;
}
.bcs-account-container .woocommerce-form-login .form-row .input-text,
.bcs-account-container .woocommerce-form-register .form-row .input-text {
  width: 100%;
  height: 56px;
  padding: 16px 14px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bcs-account-container .woocommerce-form-login .form-row .input-text:focus, .bcs-account-container .woocommerce-form-login .form-row .input-text:focus-visible,
.bcs-account-container .woocommerce-form-register .form-row .input-text:focus,
.bcs-account-container .woocommerce-form-register .form-row .input-text:focus-visible {
  outline: none;
  border-color: #0E4FE3;
  box-shadow: 0 0 0 3px rgba(14, 79, 227, 0.25);
}
.bcs-account-container .woocommerce-form-login .woocommerce-form-login__rememberme,
.bcs-account-container .woocommerce-form-register .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000000;
}
.bcs-account-container .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox]:focus, .bcs-account-container .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox]:focus-visible,
.bcs-account-container .woocommerce-form-register .woocommerce-form-login__rememberme input[type=checkbox]:focus,
.bcs-account-container .woocommerce-form-register .woocommerce-form-login__rememberme input[type=checkbox]:focus-visible {
  outline: 2px solid #0E4FE3;
  outline-offset: 2px;
}
.bcs-account-container .woocommerce-form-login button[type=submit],
.bcs-account-container .woocommerce-form-register button[type=submit] {
  width: 100%;
  height: 56px;
  background: #F9A90C !important;
  border: 1px solid #F9A90C !important;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bcs-account-container .woocommerce-form-login button[type=submit]:hover,
.bcs-account-container .woocommerce-form-register button[type=submit]:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #FFFFFF !important;
}
.bcs-account-container .woocommerce-form-login button[type=submit]:focus-visible,
.bcs-account-container .woocommerce-form-register button[type=submit]:focus-visible {
  outline: 2px solid #0E4FE3;
  outline-offset: 2px;
}
.bcs-account-container .woocommerce-form-login .lost_password,
.bcs-account-container .woocommerce-form-register .lost_password {
  margin-top: 12px;
}
.bcs-account-container .woocommerce-form-login .lost_password a,
.bcs-account-container .woocommerce-form-register .lost_password a {
  font-size: 14px;
  color: #2259DA;
}
.bcs-account-container .woocommerce-form-login .lost_password a:hover,
.bcs-account-container .woocommerce-form-register .lost_password a:hover {
  text-decoration: underline;
}
.bcs-account-container .woocommerce-form-login .lost_password a:focus-visible,
.bcs-account-container .woocommerce-form-register .lost_password a:focus-visible {
  text-decoration: underline;
  outline: 2px solid #0E4FE3;
  outline-offset: 2px;
}

.bcs-account-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) {
  .bcs-account-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.bcs-account-columns__login h2, .bcs-account-columns__register h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
}

body.woocommerce-account .bcs-main {
  background-color: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body.woocommerce-account .bcs-main {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

.bcs-my-account {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 40px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .bcs-my-account {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}
body.woocommerce-account .bcs-my-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .bcs-my-account .woocommerce-MyAccount-content {
  float: none;
}
body.woocommerce-account .bcs-my-account .woocommerce-MyAccount-navigation {
  width: 100%;
  max-width: none;
}
body.woocommerce-account .bcs-my-account .woocommerce-MyAccount-content {
  width: 100%;
  max-width: none;
  min-width: 0;
}
body.woocommerce-account .bcs-my-account .woocommerce-MyAccount-content > .woocommerce-notices-wrapper:empty {
  display: none;
}

.bcs-my-account-sidebar {
  padding: 0 28px 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .bcs-my-account-sidebar {
    padding: 0 20px 32px;
  }
}
.bcs-my-account-sidebar__user {
  margin-bottom: 48px;
  line-height: 1.3;
  color: #000000;
}
.bcs-my-account-sidebar__name {
  margin: 0 0 12px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #000000;
}
.bcs-my-account-sidebar__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bcs-my-account-sidebar__customer-type {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.bcs-my-account-sidebar__ip {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.bcs-my-account-sidebar__ip-label {
  font-weight: 700;
  margin-right: 0.25em;
}

.bcs-my-account-nav-section {
  margin-bottom: 40px;
}
.bcs-my-account-nav-section:last-child {
  margin-bottom: 0;
}
.bcs-my-account-nav-section__title {
  margin: 0 0 24px 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  border: none;
  position: relative;
}
.bcs-my-account-nav-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 6px;
  background: #FF9000;
}
.bcs-my-account-nav-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bcs-my-account-nav-section__list li {
  margin: 0;
}
.bcs-my-account-nav-section__list a {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bcs-my-account-nav-section__list a:hover, .bcs-my-account-nav-section__list a:focus-visible {
  color: #FF9000;
  outline: none;
}
.bcs-my-account-nav-section__list li.is-active a {
  font-weight: 700;
  color: #000000;
}

@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: baseline;
    width: 100%;
  }
  .bcs-my-account-nav-section {
    display: contents;
    margin-bottom: 0;
  }
  .bcs-my-account-nav-section__title {
    display: none;
  }
  .bcs-my-account-nav-section__list {
    display: contents;
  }
  .bcs-my-account-nav-section__list > li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .bcs-my-account-nav-section__list a {
    display: inline;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation {
    display: block;
  }
}
.bcs-dashboard__greeting {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #000000;
  margin: 0 0 16px 0;
}
.bcs-dashboard__greeting strong {
  font-weight: 700;
}
.bcs-dashboard__greeting a {
  color: #2259DA;
  text-decoration: none;
}
.bcs-dashboard__greeting a:hover {
  text-decoration: underline;
}
.bcs-dashboard__description {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.bcs-dashboard__description a {
  color: #2259DA;
  text-decoration: none;
}
.bcs-dashboard__description a:hover {
  text-decoration: underline;
}

.bcs-edit-account {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
}
.bcs-edit-account__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bcs-edit-account__heading {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
.bcs-edit-account__header-info {
  display: flex;
  flex-shrink: 0;
}
.bcs-edit-account__header-info-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.bcs-edit-account__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
.bcs-edit-account__form .form-row {
  margin: 0;
  padding: 0;
}
.bcs-edit-account__form .form-row label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0 0 6px 0;
}
.bcs-edit-account__form .form-row label .required {
  visibility: visible;
  color: #D40000;
}
.bcs-edit-account__form .input-text {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 16px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  background: #FFFFFF;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bcs-edit-account__form .input-text:focus, .bcs-edit-account__form .input-text:focus-visible {
  outline: none;
  border-color: #0E4FE3;
  box-shadow: 0 0 0 3px rgba(14, 79, 227, 0.25);
}
.bcs-edit-account__form select.input-text,
.bcs-edit-account__form textarea.input-text {
  height: auto;
  min-height: 56px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.bcs-edit-account__form .password-input {
  display: block;
  position: relative;
  width: 100%;
  height: 56px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  background: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bcs-edit-account__form .password-input:focus-within {
  outline: none;
  border-color: #0E4FE3;
  box-shadow: 0 0 0 3px rgba(14, 79, 227, 0.25);
}
.bcs-edit-account__form .password-input input.input-text,
.bcs-edit-account__form .password-input input.woocommerce-Input--password {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 48px 0 16px;
  border: none !important;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
}
.bcs-edit-account__form .password-input input.input-text:focus, .bcs-edit-account__form .password-input input.input-text:focus-visible,
.bcs-edit-account__form .password-input input.woocommerce-Input--password:focus,
.bcs-edit-account__form .password-input input.woocommerce-Input--password:focus-visible {
  outline: none;
}
.bcs-edit-account__form .password-input .show-password-input {
  right: 12px;
}
.bcs-edit-account__form .clear {
  display: none;
}
.bcs-edit-account__field-help {
  display: block;
  margin: 10px 0 0 0;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.75);
}
.bcs-edit-account__field-help em {
  font-style: italic;
}
.bcs-edit-account__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.bcs-edit-account__fieldset legend {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000;
  padding: 0;
  margin: 0 0 6px 0;
}
.bcs-edit-account__fieldset > .form-row + .form-row {
  margin-top: 24px;
}
.bcs-edit-account__actions {
  margin: 8px 0 0 0;
  padding: 0;
}
.bcs-edit-account__actions .button {
  margin: 0;
}
.bcs-edit-account__submit {
  width: 100%;
  min-height: 54px;
  padding: 16px 32px;
  background: #F9A90C !important;
  border: 1px solid #F9A90C !important;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000000 !important;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bcs-edit-account__submit:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #FFFFFF !important;
}
.bcs-edit-account__submit:focus-visible {
  outline: 2px solid #0E4FE3;
  outline-offset: 2px;
}

.bcs-orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.bcs-orders-toolbar__search-wrap {
  flex: 1 1 360px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 0.2px solid #000000;
  border-radius: 2px;
  background: #FFFFFF;
  box-sizing: border-box;
}
.bcs-orders-toolbar__search {
  flex: 1 1 auto;
  min-width: 0;
  border: 0 !important;
  outline: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}
.bcs-orders-toolbar__search:focus, .bcs-orders-toolbar__search:focus-visible, .bcs-orders-toolbar__search:active {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.bcs-orders-toolbar__search::-webkit-search-decoration, .bcs-orders-toolbar__search::-webkit-search-cancel-button, .bcs-orders-toolbar__search::-webkit-search-results-button, .bcs-orders-toolbar__search::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.bcs-orders-toolbar__search::placeholder {
  color: #000000;
  opacity: 1;
}
.bcs-orders-toolbar__search-btn {
  border: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bcs-orders-toolbar__search-icon {
  width: 16px;
  height: 16px;
  stroke-width: 1.7;
}
.bcs-orders-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.bcs-orders-toolbar__btn {
  min-height: 45px;
  border: 0.2px solid #000000;
  border-radius: 2px;
  background: #FFFFFF;
  box-sizing: border-box;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.bcs-orders-toolbar__btn--filters {
  background: #FFFFFF;
}
.bcs-orders-toolbar__btn-icon {
  width: 12px;
  height: 12px;
  stroke-width: 1.5;
}
.bcs-orders-toolbar__btn-chevron {
  width: 12px;
  height: 12px;
  stroke-width: 2;
  transition: transform 0.2s ease;
}
.bcs-orders-toolbar__dropdown {
  position: relative;
}
.bcs-orders-toolbar__dropdown > summary {
  list-style: none;
}
.bcs-orders-toolbar__dropdown > summary::-webkit-details-marker {
  display: none;
}
.bcs-orders-toolbar__dropdown[open] > summary .bcs-orders-toolbar__btn-chevron {
  transform: rotate(180deg);
}
.bcs-orders-toolbar__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  min-width: 210px;
  padding: 16px;
  border: 0.2px solid #000000;
  border-radius: 2px;
  background: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.bcs-orders-toolbar__menu-item {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
.bcs-orders-toolbar__menu-item:hover, .bcs-orders-toolbar__menu-item:focus-visible {
  color: #0E4FE3;
}
.bcs-orders-toolbar__menu-item.is-active {
  font-weight: 700;
}

.bcs-orders-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.bcs-orders-layout__main {
  flex: 1 1 auto;
  min-width: 0;
}
.bcs-orders-layout.is-filters-open .bcs-orders-toolbar__btn--filters {
  background: #d9d9d9;
}
.bcs-orders-layout.is-filters-open .bcs-orders-toolbar {
  width: calc(100% + 310px);
}

.bcs-orders-filters {
  flex: 0 0 286px;
  width: 286px;
  margin-top: 99px;
  padding: 24px;
  border-radius: 10px;
  background: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bcs-orders-filters[hidden] {
  display: none !important;
}
.bcs-orders-filters__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bcs-orders-filters__section + .bcs-orders-filters__section .bcs-orders-filters__title,
.bcs-orders-filters__section + .bcs-orders-filters__section .bcs-orders-filters__caps {
  margin-top: 32px;
}
.bcs-orders-filters__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}
.bcs-orders-filters__caps {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000000;
}
.bcs-orders-filters__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bcs-orders-filters__option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}
.bcs-orders-filters__option input {
  margin: 0;
  width: 16px;
  height: 16px;
}
.bcs-orders-filters__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.bcs-orders-filters__row--date {
  flex-direction: column;
  align-items: stretch;
}
.bcs-orders-filters__mini-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}
.bcs-orders-filters__mini-field input {
  width: 58px;
  height: 42px;
  border: 0.5px solid #000000;
  border-radius: 3px;
  background: #FFFFFF;
  padding: 0 6px;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}
.bcs-orders-filters__mini-field input[type=date] {
  width: 126px;
  padding-right: 6px;
}
.bcs-orders-filters__mini-field--aligned {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
}
.bcs-orders-filters__mini-field--aligned input[type=date] {
  width: 100%;
}
.bcs-orders-filters__text {
  width: 100%;
  min-height: 45px;
  border: 0.2px solid #000000;
  background: #FFFFFF;
  padding: 12px 16px;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}
.bcs-orders-filters__save {
  margin-top: 32px;
  width: 100%;
  min-height: 49px;
  padding: 12px 32px;
  border: 0;
  border-radius: 4px !important;
  background: #0E4FE3;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
}

.bcs-orders {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}
.bcs-orders__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}
.bcs-orders__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bcs-orders--empty .woocommerce-info {
  margin-top: 0;
}

.bcs-order-card {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 16px 24px;
  box-sizing: border-box;
}
.bcs-order-card__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.bcs-order-card__left {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bcs-order-card__number {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
}
.bcs-order-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
}
.bcs-order-card__meta-line {
  margin: 0;
}
.bcs-order-card__meta-label {
  font-weight: 600;
}
.bcs-order-card__badge {
  align-self: flex-start;
  margin: 0;
  padding: 8px 12px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  background: #f9a90c;
}
.bcs-order-card__aside {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  min-height: 157px;
  justify-content: space-between;
}
.bcs-order-card__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  box-sizing: border-box;
  background: #000000;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  text-align: center;
  transition: opacity 0.2s ease;
}
.bcs-order-card__primary:hover, .bcs-order-card__primary:focus-visible {
  opacity: 0.88;
  color: #FFFFFF;
}
.bcs-order-card__thumb {
  width: 131px;
  height: 71px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  background: #ECECEC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcs-order-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bcs-order-card__secondary {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #000000;
  text-align: center;
}
.bcs-order-card__secondary:hover, .bcs-order-card__secondary:focus-visible {
  color: #0E4FE3;
}
.bcs-order-card__badge--pending, .bcs-order-card__badge--processing {
  background: #f9a90c;
  color: #000000;
}
.bcs-order-card__badge--completed {
  background: #06af00;
  color: #FFFFFF;
}
.bcs-order-card__badge--on-hold, .bcs-order-card__badge--cancelled, .bcs-order-card__badge--refunded, .bcs-order-card__badge--failed {
  background: #ea2b1f;
  color: #FFFFFF;
}

.bcs-order-card__badge--wc-ready,
.bcs-order-card__badge--ready {
  background: #0e4fe3;
  color: #FFFFFF;
}

.bcs-orders-pagination {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: 100%;
}
.bcs-orders-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.bcs-orders-pagination__label {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
}
.bcs-orders-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bcs-orders-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bcs-orders-pagination .page-numbers a,
.bcs-orders-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 8px;
  box-sizing: border-box;
  border: 0.5px solid #000000;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
}
.bcs-orders-pagination .page-numbers a:hover,
.bcs-orders-pagination .page-numbers a:focus-visible {
  border-color: #0E4FE3;
  color: #0E4FE3;
}
.bcs-orders-pagination .page-numbers .current {
  border-width: 1px;
  font-weight: 600;
}
.bcs-orders-pagination .page-numbers .dots {
  border-color: transparent;
}
.bcs-orders-pagination__per-page {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.bcs-orders-pagination__per-page-label {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}
.bcs-orders-pagination__select-wrap {
  position: relative;
}
.bcs-orders-pagination__select {
  appearance: none;
  min-width: 60px;
  height: 40px;
  padding: 0 28px 0 12px;
  border: 0.5px solid #000000;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  cursor: pointer;
}

@media (max-width: 767px) {
  .bcs-orders-layout {
    flex-direction: column;
  }
  .bcs-orders-layout.is-filters-open .bcs-orders-toolbar {
    width: 100%;
  }
  .bcs-orders-filters {
    margin-top: 0;
    width: 100%;
    flex: 1 1 auto;
  }
  .bcs-orders-toolbar__search-wrap {
    flex: 1 1 100%;
  }
  .bcs-orders-toolbar__actions {
    width: 100%;
    gap: 8px;
  }
  .bcs-orders-toolbar__btn {
    flex: 1 1 auto;
    justify-content: space-between;
  }
  .bcs-order-card__inner {
    flex-direction: column;
  }
  .bcs-order-card__aside {
    width: 100%;
    min-height: 0;
    align-items: stretch;
  }
  .bcs-order-card__primary {
    width: 100%;
  }
  .bcs-orders__title {
    font-size: 24px;
  }
}
.bcs-view-order {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  min-width: 0;
}
.bcs-view-order__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 12px 24px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  background: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.bcs-view-order__back:hover, .bcs-view-order__back:focus-visible {
  border-color: #0E4FE3;
  color: #0E4FE3;
}
.bcs-view-order__back-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.bcs-view-order__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.bcs-view-order__toolbar-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.bcs-view-order__title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__title-label {
  font-weight: 600;
}
.bcs-view-order__title-number {
  font-weight: 400;
}
.bcs-view-order__badge {
  align-self: flex-start;
  margin: 0;
  padding: 8px 12px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #f9a90c;
  color: #000000;
}
.bcs-view-order__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.bcs-view-order__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 4px;
  background: #000000;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}
.bcs-view-order__action-btn:hover, .bcs-view-order__action-btn:focus-visible {
  opacity: 0.88;
  color: #FFFFFF;
}
.bcs-view-order__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.bcs-view-order__cards--addresses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .bcs-view-order__cards--addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .bcs-view-order__cards--addresses {
    grid-template-columns: 1fr;
  }
}
.bcs-view-order__card {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 24px;
  box-sizing: border-box;
}
.bcs-view-order__card-title {
  margin: 0 0 16px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__address-lines {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__address-lines br {
  display: block;
  content: "";
  margin-top: 6px;
}
.bcs-view-order__address-phone {
  margin: 6px 0 0 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__address-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #000000;
}
.bcs-view-order__address-edit:hover, .bcs-view-order__address-edit:focus-visible {
  color: #0E4FE3;
}
.bcs-view-order__edit-svg {
  width: 12px;
  height: 12px;
}
.bcs-view-order__seller-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__seller-line {
  margin: 0;
}
.bcs-view-order__products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.bcs-view-order__products-head {
  display: none;
  align-items: end;
  padding: 0 16px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}
@media (min-width: 1024px) {
  .bcs-view-order__products-head {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.bcs-view-order__col {
  flex: 0 0 auto;
}
.bcs-view-order__col--product {
  flex: 1 1 auto;
  min-width: 0;
}
.bcs-view-order__col--price {
  width: 100px;
  text-align: right;
}
.bcs-view-order__col--qty {
  width: 48px;
  text-align: right;
}
.bcs-view-order__col--summary {
  width: 120px;
  text-align: right;
}
.bcs-view-order__col--vat {
  width: 100px;
  text-align: right;
}
.bcs-view-order__col--more {
  width: 24px;
}
.bcs-view-order__line {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 16px;
  box-sizing: border-box;
}
.bcs-view-order__line-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bcs-view-order__line-product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 240px;
}
.bcs-view-order__line--shipping .bcs-view-order__line-product {
  flex: 1 1 280px;
}
.bcs-view-order__thumb {
  width: 80px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #ECECEC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcs-view-order__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bcs-view-order__ship-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.bcs-view-order__ship-svg {
  width: 18px;
  height: 15px;
}
.bcs-view-order__product-name {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  min-width: 0;
}
.bcs-view-order__product-name a {
  color: inherit;
  text-decoration: none;
}
.bcs-view-order__product-name a:hover {
  color: #0E4FE3;
  text-decoration: underline;
}
.bcs-view-order__line-values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 32px;
  flex: 1 1 200px;
}
.bcs-view-order__line-values--shipping {
  justify-content: flex-end;
}
.bcs-view-order__val {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}
.bcs-view-order__val--price, .bcs-view-order__val--summary {
  font-weight: 600;
}
.bcs-view-order__line-more {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: default;
  opacity: 0.35;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}
.bcs-view-order__item-meta {
  margin-top: 8px;
  grid-column: 1/-1;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85);
}
.bcs-view-order__purchase-note {
  margin-top: 12px;
  grid-column: 1/-1;
  font-size: 14px;
  line-height: 1.5;
}
.bcs-view-order__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.bcs-view-order__bottom .bcs-view-order__card {
  padding: 16px 24px;
}
.bcs-view-order__bottom .bcs-view-order__card-title {
  margin: 0;
}
@media (max-width: 768px) {
  .bcs-view-order__bottom {
    flex-direction: column;
  }
}
.bcs-view-order__card--totals {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .bcs-view-order__card--totals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.bcs-view-order__card--payment {
  flex: 0 0 285px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .bcs-view-order__card--payment {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.bcs-view-order__totals {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bcs-view-order__total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__total-row dt {
  margin: 0;
  font-weight: 400;
}
.bcs-view-order__total-row dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.bcs-view-order__total-row--discount dd {
  color: #ea2b1f;
}
.bcs-view-order__total-row--grand {
  font-weight: 700;
}
.bcs-view-order__total-row--grand dt,
.bcs-view-order__total-row--grand dd {
  font-weight: 700;
}
.bcs-view-order__payment-text {
  margin: 0;
  max-width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}
.bcs-view-order__updates {
  margin: 0;
}
.bcs-view-order__updates-title {
  margin: 0 0 16px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.bcs-view-order__updates-list {
  margin: 0;
  padding-left: 1.25rem;
}
.bcs-view-order__update-meta {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}
.bcs-view-order__notes-form-title {
  margin: 0 0 24px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
.bcs-view-order__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.bcs-view-order__field-label {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000000;
}
.bcs-view-order__select-wrap {
  position: relative;
  max-width: 100%;
}
.bcs-view-order__select {
  appearance: none;
  width: 100%;
  max-width: 100%;
  height: 56px;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  background: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
}
.bcs-view-order__select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.bcs-view-order__chev {
  width: 20px;
  height: 20px;
}
.bcs-view-order__textarea {
  width: 100%;
  min-height: 161px;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  resize: vertical;
}
.bcs-view-order__textarea::placeholder {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}
.bcs-view-order__field-submit {
  margin: 0;
}
.bcs-view-order__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border: 1px solid #000000;
  border-radius: 4px;
  background: #000000;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.bcs-view-order__submit:hover, .bcs-view-order__submit:focus-visible {
  opacity: 0.88;
}
.bcs-view-order__badge--pending, .bcs-view-order__badge--processing {
  background: #f9a90c;
  color: #000000;
}
.bcs-view-order__badge--completed {
  background: #06af00;
  color: #FFFFFF;
}
.bcs-view-order__badge--on-hold, .bcs-view-order__badge--cancelled, .bcs-view-order__badge--refunded, .bcs-view-order__badge--failed {
  background: #ea2b1f;
  color: #FFFFFF;
}

.bcs-my-addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.bcs-my-addresses__intro {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.bcs-my-addresses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  align-items: stretch;
}
.bcs-my-addresses__grid::before, .bcs-my-addresses__grid::after {
  content: none !important;
  display: none !important;
}
.bcs-my-addresses__grid > .woocommerce-Address {
  display: block;
  float: none;
  width: 100% !important;
  max-width: none;
  min-width: 0;
  flex: 0 0 100%;
  flex-basis: 100%;
  justify-self: stretch;
}
.bcs-my-addresses__grid > .col-1,
.bcs-my-addresses__grid > .col-2,
.bcs-my-addresses__grid > .u-column1,
.bcs-my-addresses__grid > .u-column2 {
  width: 100% !important;
  max-width: none !important;
  flex-basis: 100% !important;
}
.bcs-my-addresses__card {
  margin: 0;
  width: 100%;
  padding: 24px;
  border-radius: 5px;
  background: #FFFFFF;
  box-sizing: border-box;
}
.bcs-my-addresses__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.bcs-my-addresses__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
}
.bcs-my-addresses__edit {
  min-width: 132px;
}
.bcs-my-addresses__content {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  font-style: normal;
}
@media (max-width: 767px) {
  .bcs-my-addresses__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bcs-view-order__title {
    font-size: 24px;
  }
  .bcs-view-order__notes-form-title {
    font-size: 20px;
  }
}
