/**
 * Notes:
 *
 * Theme colors are already defined as CSS properties on :root
 * --primary-color: #518bc5;
 * --fs-color-primary: #518bc5;
 * --fs-color-secondary: #4aaf69;
 * --fs-color-success: #4aaf69;
 * --fs-color-alert: #b20000;
 * --fs-experimental-link-color: #000000;
 * --fs-experimental-link-color-hover: #343131;
 */
:root {
  --font-primary: Lato, sans-serif;
  --font-heading: Roboto, sans-serif;
  --black: #000;
  --white: #fff;
  --border-color: #c7c7c7;
  --grid-width: 1540px;
}

@media (max-width: 767px) {
  .d-desktop {
    display: none;
  }
}

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

.header-account svg {
  width: 22px;
}

p.tagline {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0;
  color: var(--black);
}

p.tagline + h1 {
  font-size: 37px;
}

@media (max-width: 767px) {
  p.tagline + h1 {
    font-size: 30px;
    line-height: 1.1;
  }
}

a.read-more {
  color: var(--fs-color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.details-read-more summary {
  list-style: none;
}

.details-read-more summary::after {
  content: "Read more";
  display: inline-block;
  margin-left: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700 !important;
  cursor: pointer;
  font-weight: 500;
}

.details-read-more[open] summary::after {
  content: "Read less";
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  top: 125%;
  background: var(--black);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  line-height: 1.1;
  width: 240px;
}
/** Breadcrumbs */
.woocommerce-breadcrumb.breadcrumbs {
  color: rgba(0, 0, 0, 0.5);
}

.woocommerce-breadcrumb.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--fs-experimental-link-color);
  font-weight: 700;
}

.woocommerce-breadcrumb.breadcrumbs a:hover,
.woocommerce-breadcrumb.breadcrumbs a:focus {
  color: var(--fs-experimental-link-color-hover);
}

.woocommerce-breadcrumb.breadcrumbs span.divider {
  font-size: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid currentcolor;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  opacity: 1;
  vertical-align: middle;
  margin: 0 11px;
}

@media (max-width: 767px) {
  .woocommerce-breadcrumb.breadcrumbs {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .woocommerce-breadcrumb.breadcrumbs > *:not(:first-child, :nth-child(2), :last-child) {
    display: none !important;
  }

  .single-product .woocommerce-breadcrumb.breadcrumbs *:nth-child(2)::after{
    content: "...";
    display: inline-block;
    position: absolute;
    left: calc(100% + 4px);
    top: -24px;
    font-size: 16px;
    transform: rotate(-45deg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/** Guarantees */
.product-guarantees {
  list-style: none;
}

.product-guarantees li {
  margin-left: 0 !important;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--black);
  padding-left: 35px;
  position: relative;
  line-height: 1.2;
}

.product-guarantees li strong {
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}

.product-guarantees li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-guarantees li a:hover,
.product-guarantees li a:focus {
  color: var(--fs-color-primary);
}

.product-guarantees li::before {
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  object-position: 50% 50%;
}

.product-guarantees li.free_shipping::before {
  content: url("../images/free_shipping.svg");
}

.product-guarantees li.money_back::before {
  content: url("../images/money_back.svg");
}

.product-guarantees li.lifetime_warranty::before {
  content: url("../images/lifetime_warranty.svg");
  width: 17px;
  left: 2px;
}

.guarantee-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.guarantee-popup.open {
  display: block !important;
}

.guarantee-popup__inner {
  width: 912px;
  max-width: calc(100% - 40px);
  border-radius: 5px;
  background-color: var(--white);
  color: #555;
  padding: 35px 60px 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
}

.guarantee-popup__close {
  position: absolute;
  right: 12px;
  top: 5px;
  font-size: 35px;
  line-height: 1;
  padding: 0;
  margin: 0;
  min-height: initial;
}

.guarantee-popup__close:hover,
.guarantee-popup__close:focus {
  color: var(--fs-color-primary);
}

.guarantee-popup h3 {
  font-size: 27px;
  text-align: center;
}

.guarantee-popup a {
  font-weight: 700;
  color: inherit;
}

@media (max-width: 767px) {
  .guarantee-popup__inner {
    padding: 30px 30px 15px;
  }
}

/** Global Cart */
.global-cart {
  position: absolute;
  right: 0;
  top: 0;
  width: 407px;
  max-width: calc(100% - 30px);
  height: 100%;
  background-color: var(--white);
  color: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: 0.2s ease-in-out;
  transition-property: box-shadow, transform;
}

.global-cart.open {
  pointer-events: initial;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.global-cart .cart-icon {
  margin-right: 14px;
  transform: translateY(1px);
}

.global-cart .cart-icon strong {
  width: 20px;
  height: 21px;
}

.global-cart .cart-icon strong::after {
  width: 12px;
  height: 7px;
  margin-left: -6px;
}

.global-cart .cart-icon strong,
.global-cart .cart-icon strong::after {
  border-color: var(--black);
}

.global-cart__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  background-color: transparent;
  transition: 0.2s ease-in-out;
  transition-property: background-color;
  pointer-events: none;
}

.global-cart__overlay:has(.global-cart.open) {
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: initial;
}

.global-cart__header {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 25px 27px 15px;
  display: flex;
  align-items: center;
}

.global-cart__title {
  font-size: 20px;
  font-weight: 700;
}

.global-cart__close {
  padding: 0;
  border: none;
  margin: 0 0 0 auto;
  font-size: 36px;
  line-height: 1;
  display: block;
  min-height: initial;
  font-weight: 300;
}

.global-cart__main {
  padding: 25px 27px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.global-cart__main::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

.global-cart__main::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.global-cart__shipping {
  text-align: center;
  font-size: 16px;
  margin-bottom: 38px;
}

.global-cart__shipping p {
  margin: 0 0 13px;
  color: var(--black);
  font-weight: 700;
}

.global-cart__shipping strong {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.global-cart__shipping__bar {
  width: 100%;
  height: 15px;
  border-radius: 15px;
  background-color: rgba(204, 173, 101, 0.3);
}

.global-cart__shipping__bar__progress {
  background-color: #ccad65;
  height: 100%;
  border-radius: 15px;
  position: relative;
}

.global-cart__shipping__bar__progress svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
}

span.check {
  display: inline-block;
  width: 9px;
  height: 13px;
  border: solid #ccad65;
  border-width: 0 3px 3px 0;
  transform: translateY(-1px) rotate(45deg);
  margin-right: 12px;
}

.global-cart__guarantees {
  border: solid currentcolor;
  border-width: 1px 0;
  line-height: 1.1;
  padding: 0.9rem 0;
  display: flex;
  margin: 40px 0;
  font-size: 14px;
}

.global-cart__guarantees:first-child {
  margin-top: 0;
}

.global-cart__guarantees .guarantee {
  flex: 1;
  display: flex;
  align-items: center;
}

.global-cart__guarantees .guarantee svg {
  height: 20px;
  width: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.global-cart__guarantees .guarantee:not(:last-child) {
  border-right: 1px solid currentcolor;
  padding-right: 20px;
  margin-right: 20px;
}

.global-cart__lines {
  list-style: none;
  margin: 40px 0 45px;
}

.global-cart__line {
  display: flex;
  grid-gap: 10px 18px;
  line-height: 1.3;
}

.global-cart__line.loading {
  opacity: 0.4;
  pointer-events: none;
}

.global-cart__line:not(:last-child) {
  margin-bottom: 35px;
}

.global-cart__line__image {
  width: 87px;
  height: 87px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.global-cart__line__price {
  display: block;
  margin: 7px 0;
}

.global-cart__line__qty {
  font-size: 14px;
}

.global-cart__line__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.global-cart__line__remove {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.global-cart__line__discounts {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.global-cart__line__discount {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.global-cart__line__discount .amount {
  color: inherit;
  font-weight: normal;
}

.global-cart__line__discount svg {
  width: 13px;
  transform: translateY(2px);
  margin-right: 5px;
}

.flickity-slider > div.global-cart__accessories__slide:not(.col) {
  width: 146px !important;
  margin-right: 14px !important;
}

.global-cart__accessories__slide .product-small {
  padding: 0;
  width: 146px;
}

.global-cart__accessories__slide .box-image {
  border: 1px solid var(--border-color);
}

.global-cart__accessories .box-text {
  padding-bottom: 0;
}

.global-cart__accessories .flickity-button {
  opacity: 1;
  width: 27px;
  height: 27px;
  min-height: initial;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  top: -37px;
}

.global-cart__accessories .flickity-button.next {
  right: 0;
  transform: none;
}

.global-cart__accessories .flickity-button.previous {
  right: 34px;
  left: initial;
  transform: none;
}

.global-cart__accessories .flickity-button.previous svg {
  transform: translate(calc(-50% - 2px), -50%);
  height: 60% !important;
  padding: 0 !important;
}

.global-cart__accessories .flickity-button.next svg {
  transform: translate(calc(-50% + 2px), -50%);
  height: 60% !important;
  padding: 0 !important;
}

.global-cart__accessories .flickity-button::before {
  content: "";
  display: block;
  background-color: currentcolor;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.global-cart__accessories .box-text-products .add-to-cart-button .button {
  background-color: transparent;
  color: var(--fs-color-primary);
  border: 1px solid currentcolor;
  width: 100%;
  padding: 2px 10px;
}

.global-cart__accessories .woocommerce-loop-product__link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* why do i have to do this */
body:not(.single-product) .global-cart__accessories .flickity-button svg {
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  background-color: transparent !important;
  padding: 0;
}

body:not(.single-product) .global-cart__accessories .flickity-button::before {
  width: 13px;
  height: 2px;
}

.global-cart__footer {
  background-color: #eaf1f8;
  padding: 17px 27px 24px;
}

.global-cart__coupon__toggle {
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  text-transform: initial;
  margin: 0;
  letter-spacing: initial;
}

.global-cart__coupon__toggle__icon::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 6px;
}

.global-cart__coupon__toggle__icon.open::before {
  transform: scaleY(-1) rotate(45deg);
}

.global-cart__subtotal {
  margin: 6px 0 15px;
}

.global-cart__subtotal__line {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.global-cart__subtotal small {
  font-size: 14px;
  font-style: italic;
}

.global-cart__actions {
  text-align: center;
}

.global-cart__action--view-cart {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.global-cart__action--view-cart:hover,
.global-cart__action--view-cart:focus {
  color: var(--fs-color-primary);
}

a.global-cart__action--checkout {
  width: 100%;
  font-size: inherit;
  padding: 18px;
  line-height: 1;
  margin: 0 0 10px;
}

a.global-cart__action--checkout:last-child {
  margin-bottom: 0;
}

.global-cart__coupon__form {
  display: flex;
  grid-gap: 7px;
}

.global-cart__coupon__form button,
.global-cart__coupon__form input {
  margin: 0;
}

.global-cart__coupon__form button {
  flex-shrink: 0;
}

.global-cart__coupon__applied {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 7px;
}

.global-cart__coupon__applied:empty {
  display: none;
}

.global-cart__coupon__applied:has(> *) {
  margin-bottom: 15px;
}

.global-cart__coupon__item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  padding: 3px 9px;
  line-height: 1;
}

.global-cart__coupon__item svg {
  display: inline-block;
  width: 13px;
  margin-right: 5px;
}

.global-cart__coupon__item__remove {
  font-weight: 300;
  font-size: 20px;
  margin-left: 5px;
  transform: translateY(-1px);
}

.global-cart__coupon__item__remove:hover,
.global-cart__coupon__item__remove:focus {
  color: var(--fs-color-alert);
}

.global-cart__savings {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 21px 0;
}

.global-cart__savings:empty {
  display: none;
}

.global-cart__savings .amount {
  font-weight: inherit;
  display: inline-block;
  margin-left: 1px;
}

.global-cart__savings svg {
  width: 13px;
  transform: translateY(2px);
  margin-right: 5px;
}

.global-cart .quantity input:disabled,
.global-cart .quantity button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.global-cart__empty {
  text-align: center;
}

:root:has(.global-cart.open) {
  overflow: hidden;
}

/** Cart Page */
body.woocommerce-cart .page-title,
body.woocommerce-checkout .page-title {
  display: none;
}

@media (min-width: 1024px) {
  .cart-container.page-wrapper {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

body.woocommerce-cart .cart-container {
  max-width: var(--grid-width);
}

body.woocommerce-checkout .woocommerce-breadcrumb ~ p:empty {
  display: block;
}

.cart-container .row.row-large {
  max-width: calc(var(--grid-width) + 60px);
}

.cart-container .row.row-large .col.large-5 {
  border: none;
}

.cart-container .woocommerce-info {
  margin-bottom: 30px;
}

@media (min-width: 1280px) {
  .cart-container .row.row-large .col.large-5 {
    padding-left: 125px;
  }
}

.cart-container > h1 {
  display: none;
}

body.woocommerce-cart .header {
  border-bottom: 1px solid #dbdbdb;
}

@media (min-width: 1280px) {
  .cart-collaterals .global-cart__guarantees {
    justify-content: center;
    margin: 1.5em 0 0;
  }

  .cart-collaterals .guarantee {
    flex: initial;
    justify-content: center;
  }
}

.wc-proceed-to-checkout .button {
  font-size: 16px;
  padding: 18px;
  line-height: 1;
  margin: 0;
}

.cart-page__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .cart-page__header {
    margin-bottom: 40px;
  }
}

.cart-page__header h2 {
  width: initial;
  font-size: 37px;
  margin: 0;
}

@media (max-width: 1023px) {
  .cart-page__header h2 {
    margin: 0 auto;
  }

  .cart-page__header .global-cart__shipping {
    width: 100%;
    margin-top: 20px;
  }
}

.shop_table thead th {
  font-size: 16px;
  text-transform: initial;
  font-weight: 400;
  letter-spacing: initial;
  color: var(--black);
  padding-bottom: 13px;
}

.cart-container .shop_table .order-total td,
.cart-container .shop_table .order-total th,
.cart-container .shop_table th,
.cart-container .shop_table td {
  border-width: 1px;
  border-color: var(--border-color);
}

.cart-container .shop_table .cart_item td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
}

.cart-container .shop_table .cart_item .product-name > a {
  display: inline-block;
  margin-bottom: 5px;
}

.cart-container .shop_table .cart-item__remove {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop_table .product-thumbnail {
  width: 76px;
}

.shop_table .product-thumbnail img {
  width: 64px;
  height: auto;
  border: 1px solid var(--border-color);
}

.cart-container .slider .box-image img {
  border: 1px solid var(--border-color);
}

@media (min-width: 1280px) {
  .cart-container .slider .product-small.col {
    margin-right: 24px;
    width: calc(33.333% - 16px) !important;
    max-width: calc(33.333% - 16px) !important;
  }
}

.cart-container .slider .button {
  background-color: transparent;
  color: var(--fs-color-primary);
  border: 1px solid currentcolor;
  padding: 2px 20px;
}

.cart-container .slider .product-title {
  height: initial !important;
  margin-bottom: 7px;
  font-size: 16px;
}

.cart-container .slider .amount {
  font-size: 16px;
}

.cart-container .slider {
  margin-top: 15px;
}

.cart-container .slider .flickity-button {
  top: -60px;
  margin: 0 !important;
}

.cart-container .slider .flickity-button.next {
  right: 0;
}

.cart-container .slider .flickity-button.previous {
  right: 42px;
}

.cart-container .slider .flickity-button svg {
  border: none;
  height: 90%;
  transform: translate(-50%, -18%);
}

.cart-container .slider .flickity-button:hover svg,
.cart-container .slider .flickity-button:focus svg,
.cart-container .slider .flickity-button:hover svg .arrow,
.cart-container .slider .flickity-button:focus svg .arrow {
  background-color: transparent;
  fill: var(--fs-color-primary) !important;
}

.cart_totals th.product-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: initial;
  text-transform: capitalize;
  color: var(--black);
  font-family: var(--font-heading);
  border: none;
}

.cart_totals > table > tbody > tr > th,
.cart_totals > table > tbody > tr > td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.cart_totals .shipping__inner {
  padding-bottom: 0;
}

.cart_totals .shipping__inner td {
  padding-bottom: 20px;
}

.cart-sidebar {
  position: relative;
  padding-top: 40px;
}

.cart_totals > table:first-child {
  position: absolute;
  top: 0;
}

.cart-sidebar .global-cart__coupon {
  border-bottom: 1px solid var(--border-color);
  padding-top: 13px;
  padding-bottom: 13px;
}

.cart-sidebar .global-cart__coupon__toggle {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sidebar .global-cart__coupon__applied:has(> *) {
  margin-bottom: 5px;
}

.cart-discount .woocommerce-remove-coupon {
  display: none;
}

.product-quantity .quantity input:disabled {
  opacity: 0.4;
}

.page-checkout .woocommerce-breadcrumb.breadcrumbs {
  display: block !important;
}

/** Checkout */
.wc-block-checkout__form {
  --wp--preset--font-size--small: 16px;
  font-size: 16px;
}

.wc-block-checkout__form .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-checkout__form .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: 0 0 0 1px color-mix(in srgb, #121212 11%, transparent);
}

.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-checkout__form div.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-checkout__form div.wc-block-components-text-input input[type=email],
.wc-block-checkout__form div.wc-block-components-text-input input[type=number],
.wc-block-checkout__form div.wc-block-components-text-input input[type=password],
.wc-block-checkout__form div.wc-block-components-text-input input[type=tel],
.wc-block-checkout__form div.wc-block-components-text-input input[type=text],
.wc-block-checkout__form div.wc-block-components-text-input input[type=url],
.wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-checkout__form .wc-block-components-textarea {
  border-color: var(--border-color);
}

.wc-block-components-checkout-place-order-button {
  text-transform: uppercase;
}

.wc-block-components-checkout-step .wc-blocks-components-select select {
  margin-bottom: 0;
}

.wc-block-components-checkout-step .wc-block-components-address-form__country {
  margin-top: 16px !important;
}

form.wc-block-checkout__form--with-step-numbers .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__content::before,
form.wc-block-checkout__form--with-step-numbers .wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__description::before {
  border-left-color: var(--border-color);
}

div.wp-block-woocommerce-checkout-order-summary-block {
  --wp--preset--font-size--small: 16px;
  font-size: 16px;
  border: none;
  color: var(--black);
  border-top: 1px solid var(--border-color);
  border-radius: 0;
}

.wp-block-woocommerce-checkout.is-large {
  font-size: 1em;
}

.wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
  border: none;
  border-radius: 0;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon__button {
  text-transform: uppercase;
}

.wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper .wc-block-components-order-summary {
  padding: 0;
}

.wc-block-components-totals-coupon .wc-block-components-panel__button {
  font-size: 0;
}

.wc-block-components-totals-coupon .wc-block-components-panel__button::after {
  content: "Have a customer service code?";
  font-size: 16px;
}

:root body :where(.wp-element-button, .wp-block-button__link) {
  background-color: var(--fs-color-primary);
  transition: background-color 0.1s ease-in-out !important;
}

:root body :where(.wp-element-button, .wp-block-button__link):hover,
:root body :where(.wp-element-button, .wp-block-button__link):focus {
  background-color: var(--black);
}

body .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  border-radius: 0;
}

.is-large .wc-block-components-sidebar div.wc-block-components-panel,
.is-large .wc-block-components-sidebar div.wc-block-components-totals-coupon,
.is-large .wc-block-components-sidebar div.wc-block-components-totals-item,
div.wc-block-components-order-summary.is-large,
.wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill .wc-block-components-totals-coupon,
.wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill .wc-block-components-totals-item {
  padding-left: 0;
  padding-right: 0;
}

.wc-block-components-totals-item .wc-block-formatted-money-amount {
  font-weight: 600;
}

.wc-block-components-totals-wrapper {
  border-color: var(--border-color) !important;
  border-bottom: 1px solid;
}

.wp-block-woocommerce-checkout-order-summary-totals-block div.wp-block-woocommerce-checkout-order-summary-subtotal-block {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

a.wc-block-components-checkout-return-to-cart-button {
  color: var(--black);
}

div.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  border-bottom: 1px solid var(--border-color);
  border-top: none;
  padding: 0 0 20px;
  margin: 0 0 50px;
  color: var(--black);
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title p.wc-block-components-checkout-order-summary__title-text,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  margin-left: 0;
  font-size: 16px;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata__description {
  display: none;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
  padding-top: 3px;
  font-size: 16px;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__individual-prices {
  padding-top: 7px;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-price {
  font-size: 16px;
  font-weight: 600;
}

.wc-block-checkout .have-an-account {
  display: none;
}

.wc-block-components-address-card {
  border-color: var(--border-color);
}

.wc-block-components-address-form .wc-block-components-address-form__country {
  order: 5;
}

.wc-block-components-address-form .wc-block-components-address-form__first_name,
.wc-block-components-address-form .wc-block-components-address-form__last_name,
.wc-block-components-address-form .wc-block-components-address-form__address_1,
.wc-block-components-address-form .wc-block-components-address-form__address_2,
.wc-block-components-address-form .wc-block-components-address-form__address_2-toggle {
  order: 1;
}

.wc-block-components-address-form .wc-block-components-address-form__city,
.wc-block-components-address-form .wc-block-components-address-form__state,
.wc-block-components-address-form .wc-block-components-address-form__postcode,
.wc-block-components-address-form .wc-block-components-address-form__phone {
  order: 10;
}

.wc-block-components-payment-method-label,
.wc-block-checkout__payment-method .wc-block-components-radio-control__label {
  font-weight: bold;
}

@media (min-width: 1280px) {
  .wp-block-woocommerce-checkout-contact-information-block {
    position: relative;
  }

  .wp-block-woocommerce-checkout-contact-information-block .have-an-account {
    display: none;
  }

  .wp-block-woocommerce-checkout-contact-information-block .wc-block-components-checkout-step__container {
    position: static;
  }

  form.wc-block-checkout__form--with-step-numbers .wp-block-woocommerce-checkout-contact-information-block .wc-block-components-checkout-step__container:after {
    left: 12px;
    top: 40px;
    height: calc(100% - 40px);
  }
}

.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  border-top: none !important;
}

.wc-block-components-totals-discount__coupon-list-item {
  border-color: #c7c7c7 !important;
  padding: 0 10px 0 15px !important;
}

.wc-block-components-totals-discount__coupon-list-item .wc-block-components-chip__text {
  font-size: 13px;
  text-transform: uppercase;
  padding-right: 0 !important;
}

.wc-block-components-chip .wc-block-components-chip__remove {
  background-color: transparent !important;
  width: 22px !important;
}

.wc-block-components-chip .wc-block-components-chip__remove svg {
  width: 22px;
  height: 22px;
  transform: translateY(1px);
}

.wc-block-components-chip .wc-block-components-chip__remove:hover svg,
.wc-block-components-chip .wc-block-components-chip__remove:focus svg {
  fill: var(--fs-color-alert);
}

/** Login & Register */
.page-wrapper.my-account,
.page-wrapper:has(.account-register) {
  padding: 40px 0;
}

@media (min-width: 1280px) {
  .page-wrapper.my-account,
  .page-wrapper:has(.account-register) {
    padding: 90px 0;
  }
}

.account-title {
  text-align: center;
  font-size: 37px;
  margin-bottom: 50px;
}

.woocommerce-account .page-title {
  display: none;
}

#customer_login {
  width: 1318px;
  max-width: calc(100% + 30px);
}

@media (min-width: 768px) {
  #customer_login {
    margin: 0 auto;
  }
}

#customer_login input[type="text"],
#customer_login input[type="password"],
.account-register input[type="text"],
.account-register input[type="email"],
.account-register input[type="password"] {
  border-width: 1px;
  border-color: var(--border-color);
  box-shadow: none;
  height: 53px;
}

#customer_login input[type="checkbox"] {
  border-radius: 0;
  width: 21px;
  height: 21px;
  margin: 0 12px 0 0;
  vertical-align: middle;
  transform: translateY(-2px);
}

#customer_login .woocommerce-form__label-for-checkbox {
  font-weight: normal;
}

#customer_login .lost_password {
  float: right;
  margin-top: -35px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#customer_login .woocommerce-form-login {
  margin-top: 22px;
}

#customer_login .woocommerce-form-login__submit {
  margin-top: 26px;
}

#customer_login .woocommerce-form-login__submit,
#customer_login .button,
.account-register .woocommerce-form-register__submit {
  font-size: 16px;
  padding: 18px 40px;
  line-height: 1;
}

.account-register-inner--initial p {
  margin: 20px 0 23px;
}

@media (min-width: 1280px) {
  #customer_login .col-1 {
    padding-right: 100px;
  }

  #customer_login .col-2 {
    padding-left: 100px;
  }
}

@media (max-width: 767px) {
  .account-register-inner--initial {
    margin-top: 30px;
  }
}

.account-register {
  width: 590px;
  max-width: 100%;
  margin: 0 auto;
}

.account-register h1 {
  font-size: 37px;
  text-align: center;
}

.account-register h1 + p {
  color: var(--black);
  text-align: center;
}

.account-register h1 + p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-register .woocommerce-form-register__submit {
  margin: 0 auto;
  display: block;
}

div:has(> .password-toggle) {
  position: relative;
}

div:has(> .password-toggle) input[type="password"] {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  height: 53px;
  max-height: 100%;
  padding-right: 10px;
}

.password-toggle::before {
  content: url("../images/hidden.svg");
  display: block;
  width: 20px;
  transform: translateY(5px);
}

.password-toggle.show::before {
  content: url("../images/visible.svg");
  transform: translateY(3px);
}

.show-password-input { /* NOW i realize this is a thing... smh */
  display: none;
}

/** Account Dashboard */
.dashboard-title {
  font-size: 37px;
  margin-top: 40px;
  text-align: center;
}

.dashboard-title ~ .page-wrapper.my-account {
  padding-top: 25px;
}

@media (min-width: 768px) {
  .dashboard-title {
    margin-top: 90px;
  }

  .dashboard-title ~ .page-wrapper.my-account {
    padding-top: 50px;
  }
}

.dashboard-title ~ .page-wrapper.my-account > .container {
  max-width: 1260px;
}

@media (min-width: 1280px) {
  .my-account .vertical-tabs .large-3 {
    padding-right: 50px;
  }

  .my-account .vertical-tabs .large-9 {
    padding-left: 50px;
  }
}

.my-account .vertical-tabs .large-9 p {
  margin-bottom: 15px;
}

.my-account .vertical-tabs .large-9 p a {
  color: var(--fs-color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

nav > ul > li.woocommerce-MyAccount-navigation-link--customer-logout a {
  margin-top: 16px;
  border: 1px solid var(--fs-color-primary);
  background-color: var(--fs-color-primary);
  border-radius: 5rem;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 20px;
  line-height: 1;
  flex-grow: 0;
  transition: 0.1s ease-in-out !important;
  transition-property: background-color, color;
}

nav > ul > li.woocommerce-MyAccount-navigation-link--customer-logout a:hover,
nav > ul > li.woocommerce-MyAccount-navigation-link--customer-logout a:focus {
  color: var(--fs-color-primary);
  background-color: transparent;
}

ul.nav-vertical > li + li {
  border-color: var(--border-color);
}

ul.nav-vertical > li a {
  font-size: 16px;
  text-transform: initial;
  color: #202020;
  font-weight: initial;
  letter-spacing: initial;
}

ul.nav-vertical > li > a {
  transition: none !important;
}

ul.nav-vertical > li.active a,
ul.nav-vertical > li a:hover,
ul.nav-vertical > li a:focus {
  font-weight: 700;
}

ul.nav-vertical.nav-line > li > a:before {
  display: none !important;
}

ul.dashboard-links {
  margin-top: 30px;
}

.my-account .vertical-tabs .large-9 input[type="text"],
.my-account .vertical-tabs .large-9 input[type="email"],
.my-account .vertical-tabs .large-9 input[type="password"] {
  height: 53px;
  box-shadow: none;
  border-color: var(--border-color);
}

.my-account .vertical-tabs .large-9 [type="submit"] {
  letter-spacing: initial;
  font-size: 16px;
  line-height: 1;
  padding: 16px 30px;
}

/** Wishlists */
#wl-wrapper a.wl-add-link.present {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
  font-weight: 600;
  background: none !important;
  padding-left: 0 !important;
  color: var(--black);
}

#wl-wrapper a.wl-add-link.present::before {
  content: url("../images/wishlist-black.svg") !important;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px !important;
  margin-left: 1px;
}

#wl-wrapper .wl-add-link:hover,
#wl-wrapper .wl-add-link:focus {
  color: var(--fs-color-primary);
}

div#wl-wrapper .wl-already-in ul {
  margin-left: 0;
}

div#wl-wrapper .wl-already-in ul a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: inherit;
}

div#wl-wrapper .wl-already-in ul a:hover,
div#wl-wrapper .wl-already-in ul a:focus {
  color: var(--fs-color-primary);
}

h1:has(+ #wl-wrapper.woocommerce) {
  max-width: 1230px;
  margin: 90px auto 0;
}

#wrapper:has(#wl-wrapper.woocommerce) .header {
  border-bottom: 1px solid #d8d8d8;
}

#wl-wrapper.woocommerce {
  max-width: 1230px;
  margin: 38px auto 90px;
}

#wl-wrapper .wl-create-new {
  background-color: var(--fs-color-primary);
  padding: 7px 40px;
}

div#wl-wrapper .wl-table td {
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color) !important;
  background-color: color-mix(in srgb, #f2f2f2 20%, transparent);
}

div#wl-wrapper .wl-table tr:nth-last-child(2) td,
div#wl-wrapper .wl-table tr:last-child td {
  border-bottom: none !important;
}

div#wl-wrapper .wl-table td:first-child {
  padding-left: 0 !important;
}

div#wl-wrapper .wl-table td:last-child {
  padding-right: 0 !important;
}

div#wl-wrapper .wl-table th:last-child {
  text-align: right !important;
}

div#wl-wrapper .wl-table .row-actions small a {
  color: var(--fs-color-primary);
  opacity: 1;
}

div#wl-wrapper .wl-table .row-actions small a:hover,
div#wl-wrapper .wl-table .row-actions small a:focus {
  text-decoration: underline;
}

.wl-table tr:last-child td[colspan]:not([class]) {
  border: none;
}

.wl-table tr:last-child .actions {
  padding-top: 20px !important;
}

.wl-table tr:last-child .actions .button {
  margin: 0;
}

.wl-intro a[href*="delete-list"] {
  color: var(--fs-color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.wl-intro a[href*="delete-list"]:hover,
.wl-intro a[href*="delete-list"]:focus {
  color: var(--fs-color-alert);
}

#wl-wrapper input[name="update_wishlists"] {
  background-color: transparent;
  color: var(--fs-color-primary);
  border: 2px solid currentcolor;
}

#wl-wrapper input[name="update_wishlists"]:hover,
#wl-wrapper input[name="update_wishlists"]:focus {
  background-color: var(--fs-color-primary);
  border-color: var(--fs-color-primary);
  color: var(--white);
  box-shadow: none;
}

#wl-wrapper .wl-actions-table {
  margin: 30px 0 !important;
}

#wl-wrapper .wl-actions-table .button,
#wl-wrapper .wl-table.shop_table .button {
  margin: 0;
}

#wl-wrapper .wl-actions-table .btn-apply,
#wl-wrapper .wl-table.shop_table .wishlist-add-to-cart-button {
  background-color: transparent;
  border: 2px solid currentcolor;
  color: var(--fs-color-primary);
}

#wl-wrapper .wl-actions-table .btn-apply:hover,
#wl-wrapper .wl-actions-table .btn-apply:focus,
#wl-wrapper .wl-table.shop_table .wishlist-add-to-cart-button:hover,
#wl-wrapper .wl-table.shop_table .wishlist-add-to-cart-button:focus {
  background-color: var(--fs-color-primary);
  border-color: var(--fs-color-primary);
  color: var(--white);
  box-shadow: none;
}

#wl-wrapper .wl-table.shop_table td,
#wl-wrapper .wl-table.shop_table th {
  border: none;
  padding: 20px 29px;
  line-height: 1;
  font-size: 16px;
}

#wl-wrapper .wl-table.shop_table td:first-child,
#wl-wrapper .wl-table.shop_table th:first-child {
  padding-left: 50px !important;
  padding-right: 0;
}

#wl-wrapper .wl-table.shop_table td:last-child,
#wl-wrapper .wl-table.shop_table th:last-child {
  padding-right: 50px !important;
}

#wl-wrapper .wl-table.shop_table td:last-child {
  text-align: right !important;
}

#wl-wrapper .wl-table.shop_table tr:last-child td,
#wl-wrapper .wl-table.shop_table thead th {
  background-color: #f2f2f2;
}

#wl-wrapper .wl-table.shop_table th:last-child:empty {
  display: none; /* dunno why that's there */
}

#wl-wrapper .wl-table.shop_table input[type="checkbox"] {
  margin: 0;
  width: 21px;
  height: 21px;
}

#wl-wrapper .wl-table.shop_table .quantity input {
  width: 64px;
  text-align: center;
  box-shadow: none;
}

#wl-wrapper .wl-table.shop_table .product-thumbnail {
  width: 88px;
  box-sizing: content-box;
}

#wl-wrapper .wl-table.shop_table .product-thumbnail img {
  width: 88px;
  max-width: 88px;
  height: 88px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

#wl-wrapper .wl-table.shop_table .product-name {
  text-align: left;
  line-height: 1.2;
}

#wl-wrapper .wl-table.shop_table .product-name a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#wl-wrapper .wl-table.shop_table .product-name strong {
  font-weight: normal;
  margin-bottom: 5px;
  display: inline-block;
}

#wl-wrapper .wl-table.shop_table .product-price .amount {
  font-weight: normal;
}

#wl-wrapper .wl-table.shop_table .product-name a:hover,
#wl-wrapper .wl-table.shop_table .product-name a:focus {
  color: var(--fs-color-primary);
}

#wl-wrapper .wl-tab-wrap {
  margin-top: 38px;
}

#wl-wrapper .wl-table.shop_table .product-remove a.remove {
  background-color: #555;
  border: none;
  width: 19px;
  height: 19px;
  font-size: 20px !important;
  color: var(--white);
  line-height: 19px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}

#wl-wrapper .wl-table.shop_table .product-remove a.remove:hover,
#wl-wrapper .wl-table.shop_table .product-remove a.remove:focus {
  background-color: var(--fs-color-alert);
}

#wl-wrapper .wl-rad-table td:first-child {
  width: 24px;
}

form.cart #wl-wrapper.woocommerce {
  margin: 10px 0 0;
}

.wl-list-pop .wl-add-to-single {
  white-space: nowrap;
}

.wl-list-pop dt,
.wl-list-pop dd {
  display: block;
}

@media (max-width: 768px) {
  #wl-wrapper.woocommerce {
    margin-bottom: 40px;
  }

  h1:has(+ #wl-wrapper.woocommerce) {
    margin-top: 40px;
  }

  #wl-wrapper .wl-table.shop_table,
  #wl-wrapper .wl-table.shop_table tr,
  #wl-wrapper .wl-table.shop_table td,
  #wl-wrapper .wl-table.shop_table tbody {
    display: block;
  }

  #wl-wrapper .wl-table.shop_table thead,
  #wl-wrapper .wl-table.shop_table th,
  #wl-wrapper .wl-table.shop_table td:empty {
    display: none;
  }

  #wl-wrapper .wl-table.shop_table td {
    border-bottom: none !important;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item {
    display: grid;
    grid-template-columns: 21px 88px 64px auto 80px;
    grid-gap: 10px 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item td {
    padding: 0 !important;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .check-column {
    text-align: left;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-remove {
    grid-column: 1;
    grid-row: 2;
    padding-left: 1.5px !important;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-thumbnail {
    grid-column: 2;
    grid-row: 1/4;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-remove a {
    position: static;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-name {
    grid-column: 3/-1;
    grid-row: 1;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-price {
    grid-row: 1;
    grid-column: 5;
    display: flex;
    justify-content: flex-end;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-quantity {
    grid-column: 3/4;
    grid-row: 2;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-purchase {
    grid-column: 4/-1;
    grid-row: 2;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-purchase a {
    width: 100%;
  }

  #wl-wrapper .wl-table.shop_table tr:last-child td:not(.product-purchase) {
    display: none;
  }

  #wl-wrapper .wl-table.shop_table tr:last-child td:last-child {
    padding-right: 20px !important;
  }

  #wl-wrapper .wl-actions-table {
    float: none !important;
  }

  #wl-wrapper .wl-row:last-child .wl-actions-table {
    margin-bottom: -30px !important;
  }

  /* Folks, remember to add css classes to your stuff. otherwise we end up like this */
  #wl-wrapper:has(.wl-create-new) .wl-table.shop_table .cart_table_item {
    grid-template-columns: auto auto;
    align-items: center;
  }

  #wl-wrapper:has(.wl-create-new) .wl-table.shop_table .cart_table_item .product-name {
    grid-column: 1;
    grid-row: 1/3;
  }

  #wl-wrapper:has(.wl-create-new) .wl-table.shop_table .cart_table_item .wl-date-added {
    text-align: right !important;
  }

  #wl-wrapper:has(.wl-create-new) .wl-table.shop_table .cart_table_item .wl-privacy-col {
    width: 100%;
  }
}

@media (max-width: 540px) {
  #wl-wrapper .wl-table.shop_table .cart_table_item {
    grid-template-columns: 21px 88px 64px auto;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-price {
    grid-row: 2;
    grid-column: 4;
    align-items: center;
  }

  #wl-wrapper .wl-table.shop_table .cart_table_item .product-purchase {
    grid-column: 3/-1;
    grid-row: 3;
  }
}
