/* Shop page specific styles */
.all-products {
  background-color: #f7f7f7;
  padding: var(--spacing-3xl) var(--spacing-md);

  @media (min-width: 786px) {
    padding: var(--spacing-3xl) var(--spacing-4xl);
  }
}

.all-products__header {
  flex-direction: column;

  @media (min-width: 786px) {
    display: flex;
    flex-direction: row;
  }

  p {
    color: #555555;
    font-weight: 400;
    flex: 1;
  }
}
.all-products__header h1 {
  color: #2e3f3b;
  font-weight: 500;
  flex: 1;
}
.all-products__header h1 span {
  font-weight: 300;
}
.all-products__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

@media (min-width: 786px) {
  .all-products__content {
    flex-direction: row;
  }
}

/* Mobile Filter Button */
.mobile-filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 13px 24px;
  background-color: #ffffff;
  border: 1px solid #d3d5de;
  border-radius: 15px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 500;
  color: #2e3f3b;
  margin-bottom: 24px;
  width: 100%;
  height: 52px;
}

.mobile-filter-button img {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .mobile-filter-button {
    display: none;
  }
}

/* Filter Modal Overlay */
.filters-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filters-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .filters-modal-overlay {
    position: relative;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    z-index: auto;
  }
}

/* Filter Modal */
.filters-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 1001;
}

.filters-modal-overlay.active .filters-modal {
  right: 0;
}

@media (min-width: 768px) {
  .filters-modal {
    position: static;
    width: 326px;
    max-width: none;
    height: auto;
    box-shadow: none;
    border-radius: 15px;
    overflow-y: visible;
  }
}

/* Filter Modal Header */
.filters-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #d3d5de;
}

@media (max-width: 768px) {
  .filters-modal-header h5 {
    margin: 0;
    color: #2e3f3b;
    font-size: 24px;
    font-weight: 500;
  }
}

.close-filters-modal {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-filters-modal img {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .filters-modal-header {
    border-bottom: none;
    padding: 24px 24px 0;
  }

  .close-filters-modal {
    display: none;
  }
}

/* Filter Form */
.all-products__content__filters {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 32px;
  background-color: #ffffff;
  height: fit-content;
}

@media (min-width: 768px) {
  .all-products__content__filters {
    padding: 32px 24px 24px;
  }
}

/* Filter Modal Footer */
.filters-modal-footer {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #d3d5de;
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
}

.filters-modal-footer button {
  flex: 1;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-filters-button {
  background-color: #ffffff;
  border: 1px solid #d3d5de;
  color: #2e3f3b;
}

.reset-filters-button:hover {
  background-color: #f7f7f7;
}

.apply-filters-button {
  background-color: #2e3f3b;
  border: none;
  color: #ffffff;
}

.apply-filters-button:hover {
  background-color: #1f2b27;
}

@media (min-width: 768px) {
  .filters-modal-footer {
    border-top: none;
    padding: 0;
    position: static;
    flex-direction: column;
  }

  .apply-filters-button {
    display: none;
  }

  .reset-filters-button {
    width: 100%;
  }
}
.all-products__content__filters h5 {
  color: #2e3f3b;
}
.all-products__content__filters p {
  color: #2e3f3b;
}
.all-products__content__filters__separator {
  width: 100%;
  height: 1px;
  background-color: #d3d5de;
}
.all-products__content__filters__groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 600px;
  overflow-y: auto;
}
.all-products__content__filters__groups label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.all-products__content__filters__groups input[type='checkbox'] {
  accent-color: #2e3f3b;
  width: 18px;
  height: 18px;
  padding: 3px;
}
.all-products__content__products {
  flex: 1;
}

/* Shop page: 3 columns max (override global 4-column default) */
.all-products .product-list__grid {
  @media (min-width: 1280px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 1700px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pagination dots styling (specific to shop) */
.products-pagination .page-numbers.dots {
  background-color: transparent;
  color: #2e3f3b;
  font-size: 14px;
  pointer-events: none;
  border: none;
}

.products-pagination .page-numbers.next,
.products-pagination .page-numbers.prev {
  background-color: transparent;
  color: #2e3f3b;
  cursor: pointer;
  width: fit-content;
  border: none;
}

.stock-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.reset-filters-button {
  height: 53px;
  background-color: transparent;
  border: 1px solid #d3d5de;
  padding: 12px 16px;
  color: #2e3f3b;
  border-radius: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.product-group-filter {
  display: flex;
  flex-direction: column;
}
.product-group-filter .product-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-group-filter .product-group-header label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-group-filter .product-group-header .toggle-treats-icon {
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: 8px;
}
.product-group-filter .product-group-header .toggle-treats-icon.opened {
  transform: rotate(180deg);
}
.product-group-filter .treats-subfilters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 12px;
  margin-top: 24px;
}
.product-group-filter .treats-subfilters label {
  padding-top: 3px;
  padding-bottom: 3px;
}
.product-group-filter .treats-subfilters.hidden {
  display: none;
}

.category-products,
.condition-products {
  padding: 68px 100px;
  display: flex;
  flex-direction: column;
  gap: 93px;
  background-color: #f7f7f7;
}
.category-products__header,
.condition-products__header {
  display: flex;
  justify-content: space-between;
}
.category-products__header p,
.condition-products__header p {
  color: #555555;
  font-weight: 400;
  flex: 1;
}
.category-products__header h1,
.condition-products__header h1 {
  color: #2e3f3b;
  font-weight: 500;
  flex: 1;
}
.category-products__header h1 span,
.condition-products__header h1 span {
  font-weight: 300;
}
.category-products__content__products,
.condition-products__content__products {
  flex: 1;
}

.category-conditions-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

@media (min-width: 1700px) {
  .category-conditions-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.category-conditions-pagination {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.category-conditions-pagination .page-numbers {
  background-color: #dbedeb;
  width: 48px;
  height: 48px;
  color: #2e3f3b;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-decoration: none;
  cursor: pointer;
}

.category-conditions-pagination .page-numbers.current {
  color: #ffffff;
  background-color: #2e3f3b;
}

.category-conditions-pagination .page-numbers.dots {
  background-color: transparent;
  color: #2e3f3b;
  font-size: 14px;
  pointer-events: none;
  border: none;
}

.category-conditions-pagination .page-numbers.next,
.category-conditions-pagination .page-numbers.prev {
  background-color: transparent;
  color: #2e3f3b;
  cursor: pointer;
  width: fit-content;
  border: none;
}

.category-products,
.condition-products {
  padding: 68px 100px;
  display: flex;
  flex-direction: column;
  gap: 93px;
  background-color: #f7f7f7;
}
.category-products__header,
.condition-products__header {
  display: flex;
  justify-content: space-between;
}
.category-products__header p,
.condition-products__header p {
  color: #555555;
  font-weight: 400;
  flex: 1;
}
.category-products__header h1,
.condition-products__header h1 {
  color: #2e3f3b;
  font-weight: 500;
  flex: 1;
}
.category-products__header h1 span,
.condition-products__header h1 span {
  font-weight: 300;
}
.category-products__content__products,
.condition-products__content__products {
  flex: 1;
}

.category-conditions-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

@media (min-width: 1700px) {
  .category-conditions-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.category-conditions-pagination {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.category-conditions-pagination .page-numbers {
  background-color: #dbedeb;
  width: 48px;
  height: 48px;
  color: #2e3f3b;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-decoration: none;
  cursor: pointer;
}

.category-conditions-pagination .page-numbers.current {
  color: #ffffff;
  background-color: #2e3f3b;
}

.category-conditions-pagination .page-numbers.dots {
  background-color: transparent;
  color: #2e3f3b;
  font-size: 14px;
  pointer-events: none;
  border: none;
}

.category-conditions-pagination .page-numbers.next,
.category-conditions-pagination .page-numbers.prev {
  background-color: transparent;
  color: #2e3f3b;
  cursor: pointer;
  width: fit-content;
  border: none;
}

.woocommerce {
  all: unset;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.woocommerce table.my_account_orders,
.woocommerce table.order_details {
  border-color: #d3d5de;
  border-radius: 16px;
  margin-top: 24px;
}
.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td,
.woocommerce table.order_details th,
.woocommerce table.order_details td {
  padding: 16px 32px;
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #555555;
}
.woocommerce table.my_account_orders th a,
.woocommerce table.my_account_orders td a,
.woocommerce table.order_details th a,
.woocommerce table.order_details td a {
  color: #69a3a8;
}
.woocommerce table.my_account_orders th a.woocommerce-button,
.woocommerce table.my_account_orders td a.woocommerce-button,
.woocommerce table.order_details th a.woocommerce-button,
.woocommerce table.order_details td a.woocommerce-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  background: transparent;
  border: 1px solid #2e3f3b;
  border-radius: 50px;
  color: #2e3f3b;
  cursor: pointer;
}
.woocommerce .order-detailed-status {
  padding: 16px 0;
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #555555;
}
.woocommerce .order-detailed-status mark {
  background-color: #dbedeb;
  border-radius: 10px;
  padding: 2px 7px;
}
.woocommerce .woocommerce-order-details h2,
.woocommerce .woocommerce-customer-details h2 {
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 24px;
}
.woocommerce .woocommerce-customer-details address {
  padding: 16px 32px;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #555555;
  border-radius: 16px;
}

.thank-you {
  padding: 60px 100px;
}
.thank-you__message {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.thank-you__message h1 {
  font-family: Outfit;
  font-weight: 300;
  font-style: Light;
  font-size: 64px;
  line-height: 74px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.thank-you__message h1 span {
  font-weight: 500;
  color: #69a3a8;
}
.thank-you__message p {
  max-width: 678px;
  width: 100%;
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.thank-you__message a {
  display: inline-flex;
  width: 250px;
}

form.woocommerce-checkout {
  display: flex;
  flex-direction: column;
}
form.woocommerce-checkout .payment-step {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
form.woocommerce-checkout .payment-step #payment.woocommerce-checkout-payment {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border-radius: 0;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 575px;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li::before,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li::after {
  display: none;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  label {
  display: flex;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box {
  display: flex;
  flex-direction: column;
  background: #dbedeb;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 0px;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box::before {
  border-bottom-color: #dbedeb;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form {
  display: flex;
  flex-direction: row;
  padding: 0;
  flex-wrap: wrap;
  margin: 0;
  height: auto;
  gap: 15px;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row::before,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row::after {
  display: none;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row.form-row-wide {
  width: 100%;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row.form-row-first {
  width: calc(70% - 7.5px);
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row.form-row-last {
  width: calc(30% - 7.5px);
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  label {
  color: #181a1b;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  label
  span,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  label
  abbr {
  color: #181a1b;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='text'],
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='email'],
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='tel'] {
  height: 58px;
  border: none;
  background-color: #f4f4f4;
  border-radius: 100px;
  padding: 16px;
  min-width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2e3f3b;
  width: 100%;
  transition: all 0.2s ease;
  position: relative;
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px 24px;
  border: 1px solid #f4f4f4;
  margin: 0;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='text']:hover,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='email']:hover,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='tel']:hover {
  border: 1px solid #696969;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='text']:focus,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='email']:focus,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods
  li
  div.payment_box
  .wc-credit-card-form
  p.form-row
  input[type='tel']:focus {
  outline: none;
  border: 1px solid #e0e0e0;
  background-color: #fbfbfb;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods::before,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  ul.payment_methods::after {
  display: none;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  .form-row.place-order {
  display: flex;
  width: 575px;
  max-width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  .form-row.place-order::before,
form.woocommerce-checkout
  .payment-step
  #payment.woocommerce-checkout-payment
  .form-row.place-order::after {
  display: none;
}

.woocommerce-billing-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 575px;
  margin-bottom: 24px;
}
.woocommerce-billing-summary[hidden='hidden'] {
  display: none;
}
.woocommerce-billing-summary button {
  height: 40px;
  width: 160px;
  font-weight: 600;
  font-size: 16px;
}
.woocommerce-billing-summary p {
  color: #181a1b;
}

.woocommerce-billing-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.woocommerce-billing-edit {
  display: flex;
  flex-direction: column;
}
.woocommerce-billing-edit[hidden='hidden'] {
  display: none;
}
.woocommerce-billing-edit .woocommerce-billing-fields {
  display: flex;
  flex-direction: column;
  width: 832px;
  max-width: 100%;
  gap: 20px;
}
.woocommerce-billing-edit .woocommerce-billing-fields::before,
.woocommerce-billing-edit .woocommerce-billing-fields::after {
  display: none;
}
.woocommerce-billing-edit .woocommerce-billing-fields h3 {
  color: #181a1b;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0;
  vertical-align: middle;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row::before,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row::after {
  display: none;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row.form-row-first,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row.form-row-last {
  width: calc(50% - 10px);
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row.form-row-wide {
  width: 100%;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  label {
  color: #181a1b;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  label
  span,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  label
  abbr {
  color: #181a1b;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='text'],
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='email'],
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='tel'],
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown {
  height: 58px;
  border: none;
  background-color: #f4f4f4;
  border-radius: 100px;
  padding: 16px;
  padding-right: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2e3f3b;
  width: 100%;
  transition: all 0.2s ease;
  position: relative;
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px 24px;
  border: 1px solid #f4f4f4;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='text']:hover,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='email']:hover,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='tel']:hover,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection:hover,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown:hover {
  border: 1px solid #696969;
  background-image: url(../icons/edit.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px 24px;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='text']:focus,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='email']:focus,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  input[type='tel']:focus,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection:focus,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown:focus {
  outline: none;
  border: 1px solid #e0e0e0;
  background-color: #fbfbfb;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection:hover,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown:hover {
  background-image: none;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection
  .select2-selection__rendered,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown
  .select2-selection__rendered {
  padding: 0;
  color: #303f59;
  opacity: 1;
  line-height: 26px;
}
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-selection
  .select2-selection__arrow,
.woocommerce-billing-edit
  .woocommerce-billing-fields
  .woocommerce-billing-fields__field-wrapper
  .form-row
  .select2-container
  .select2-dropdown
  .select2-selection__arrow {
  right: 1em;
  top: 0;
}
.woocommerce-billing-edit .billing-edit__actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.woocommerce-billing-edit .billing-edit__actions button {
  height: 40px;
  width: 160px;
  font-weight: 600;
  font-size: 16px;
}

.woocommerce-NoticeGroup {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.woocommerce-NoticeGroup div {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.woocommerce-NoticeGroup div .woocommerce-error {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.woocommerce-NoticeGroup div .woocommerce-error li {
  white-space: normal;
}
