/* WooCommerce page styles (shop, product, cart, checkout) */
/* Shop layout + filters */
.mwc-shop-page .mwc-shop-layout {
  display: grid;
  gap: 2rem;
  padding: 0 0 4.5rem;
}

@media (min-width: 993px) {
  .mwc-shop-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
  }

  .mwc-shop-results .products.columns-3,
  .mwc-shop-results .products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.mwc-shop-sidebar {
  position: relative;
}

@media (min-width: 993px) {
  .mwc-shop-sidebar {
    position: sticky;
    top: 1.5rem;
  }
}

.mwc-shop-filters {
  padding: 1.25rem;
  border: 1px solid var(--mwc-border);
  border-radius: 6px;
  background: #fff;
}

.mwc-shop-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-shop-filters__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.mwc-shop-filters__reset {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mwc-green);
  cursor: pointer;
}

.mwc-shop-filters__reset:hover,
.mwc-shop-filters__reset:focus-visible {
  text-decoration: underline;
}

.mwc-shop-filter {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}

.mwc-shop-filter__label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #666;
}

.mwc-shop-filter__input,
.mwc-shop-filter__select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  font: inherit;
  color: var(--mwc-heading);
  background: #fff;
}

.mwc-shop-filter__input:focus,
.mwc-shop-filter__select:focus {
  outline: none;
  border-color: var(--mwc-green);
  box-shadow: 0 0 0 3px rgba(59, 181, 74, 0.15);
}

.mwc-shop-filter__checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-shop-filter__checks li + li {
  margin-top: 0.35rem;
}

.mwc-shop-filter__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.mwc-shop-filter__check input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--mwc-green);
}

.mwc-shop-filter__check span:first-of-type {
  flex: 1;
}

.mwc-shop-filter__count {
  font-size: 0.8rem;
  color: #999;
}

.mwc-shop-filter__price-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.mwc-shop-filter__price-field {
  position: relative;
}

.mwc-shop-filter__currency {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #888;
  pointer-events: none;
}

.mwc-shop-filter__price-field .mwc-shop-filter__input {
  padding-left: 1.6rem;
}

.mwc-shop-filter__price-sep {
  color: #aaa;
}

.mwc-shop-filter__range-wrap {
  display: grid;
  gap: 0.35rem;
}

.mwc-shop-filter__range {
  width: 100%;
  accent-color: var(--mwc-green);
}

.mwc-shop-main {
  min-width: 0;
}

.mwc-shop-results {
  position: relative;
  min-height: 200px;
}

.mwc-shop-results.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.mwc-shop-results__toolbar {
  margin-bottom: 1.25rem;
}

.mwc-shop-results__count {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

.mwc-shop-results__empty {
  margin: 2rem 0 0;
  padding: 2rem;
  text-align: center;
  background: #f7f7f7;
  border-radius: 6px;
  color: #666;
}

.mwc-shop-pagination {
  margin-top: 2rem;
}

.mwc-shop-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-shop-pagination .page-numbers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  color: var(--mwc-heading);
  text-decoration: none;
  font-weight: 600;
}

.mwc-shop-pagination .page-numbers a.current,
.mwc-shop-pagination .page-numbers a:hover,
.mwc-shop-pagination .page-numbers a:focus-visible {
  border-color: var(--mwc-green);
  background: var(--mwc-green);
  color: #fff;
}

@media (max-width: 992px) {
  .mwc-shop-page .mwc-shop-layout {
    padding-top: 0;
  }

  .mwc-products .products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Single product */
.mwc-product-page.site-main {
  max-width: none;
  padding: 0 0 4.5rem;
}

.mwc-product-page__breadcrumb {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
}

.mwc-product-page__notices {
  margin-bottom: 1.25rem;
}

.mwc-product-page__notices .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-message:has(.mwc-added-to-cart-notice) {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 4px;
  background: var(--mwc-green);
  color: #fff;
  outline: none;
}

.woocommerce-message:has(.mwc-added-to-cart-notice)::before {
  display: none;
}

.mwc-added-to-cart-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  width: 100%;
}

.mwc-added-to-cart-notice__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.mwc-added-to-cart-notice__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
}

.mwc-added-to-cart-notice__view-cart,
.mwc-added-to-cart-notice__view-cart:hover,
.mwc-added-to-cart-notice__view-cart:focus-visible {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mwc-added-to-cart-notice__view-cart:hover,
.mwc-added-to-cart-notice__view-cart:focus-visible {
  text-decoration: underline;
}

.mwc-added-to-cart-notice__checkout,
.mwc-added-to-cart-notice__checkout:hover,
.mwc-added-to-cart-notice__checkout:focus-visible {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.mwc-added-to-cart-notice__checkout:hover,
.mwc-added-to-cart-notice__checkout:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mwc-added-to-cart-notice__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.85em;
  line-height: 1;
}

@media (max-width: 767px) {
  .mwc-added-to-cart-notice {
    flex-direction: column;
    align-items: flex-start;
  }

  .mwc-added-to-cart-notice__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.mwc-product.mwc-product {
  clear: both;
}

.mwc-product.mwc-product::before,
.mwc-product.mwc-product::after {
  content: none;
  display: none;
}

.mwc-product__hero {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

@media (min-width: 993px) {
  .mwc-product__hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.mwc-product__gallery,
.mwc-product__gallery .woocommerce-product-gallery.images,
.mwc-product__summary.summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  clear: none !important;
  margin: 0 !important;
}

.mwc-product__gallery .woocommerce-product-gallery {
  position: relative;
  width: 100%;
  opacity: 1 !important;
  margin: 0;
}

.mwc-product__gallery .woocommerce-product-gallery__wrapper {
  display: block;
}

.mwc-product__gallery .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

.mwc-product__gallery .flex-viewport .woocommerce-product-gallery__image {
  display: block;
}

.mwc-product__gallery .woocommerce-product-gallery__image {
  margin: 0;
}

.mwc-product__gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f7f7f7;
}

.mwc-product__gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.mwc-product__gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.mwc-product__gallery .flex-control-thumbs li {
  width: 72px;
  margin: 0;
  list-style: none;
}

.mwc-product__gallery .flex-control-thumbs li img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.75;
}

.mwc-product__gallery .flex-control-thumbs li img.flex-active,
.mwc-product__gallery .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: var(--mwc-gold);
}

.mwc-product__summary .product_title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--mwc-heading);
}

.mwc-product__summary > .price {
  margin: 0 0 1.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--mwc-gold);
}

.mwc-product__summary > .price .price {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.mwc-product__summary .price .woocommerce-Price-amount {
  color: var(--mwc-gold);
}

.mwc-product__summary .price .woocommerce-Price-suffix,
.mwc-product__summary .price .price-suffix {
  color: var(--mwc-gold);
  font-size: 1em;
  font-weight: 600;
}

.mwc-product__summary .variations_form {
  margin-top: 0;
}

.mwc-product__summary .variations {
  width: 100%;
  margin: 0 0 0.5rem;
  border: 0;
}

.mwc-product__summary .variations tbody,
.mwc-product__summary .variations tr,
.mwc-product__summary .variations td,
.mwc-product__summary .variations th {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}

.mwc-product__summary .variations tr {
  margin-bottom: 0.85rem;
}

.mwc-product__summary .variations .label label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-product__summary .variations select,
.mwc-product__summary form.cart .input-text {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--mwc-heading);
  background: #fff;
  appearance: auto;
}

.mwc-product__summary .reset_variations {
  display: inline-block;
  margin: 0.15rem 0 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mwc-link);
  text-decoration: underline;
}

.mwc-product__summary .single_variation_wrap {
  margin-top: 0;
}

.mwc-product__summary .single_variation .woocommerce-variation-price,
.mwc-product__summary .single_variation .woocommerce-variation-availability,
.mwc-product__summary .woocommerce-variation-availability,
.mwc-product__summary .stock {
  display: none;
}

.mwc-product__summary form.cart:not(.variations_form) {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
}

.mwc-product__summary form.variations_form.cart {
  display: block;
}

.mwc-product__summary .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.mwc-product__summary form.cart .quantity {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  margin: 0;
}

.mwc-product__summary form.cart .quantity .qty {
  width: 4.25rem;
  min-height: 48px;
  padding: 0.5rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  text-align: center;
  font: inherit;
}

.mwc-product__summary form.cart .single_add_to_cart_button,
.mwc-product__summary form.cart button.button.alt {
  flex: 1 1 auto;
  min-height: 48px;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 4px;
  background: var(--mwc-green);
  color: #fff !important;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  opacity: 1;
  transition: background-color 0.2s ease;
}

.mwc-product__summary form.cart .single_add_to_cart_button:hover:not(:disabled):not(.disabled),
.mwc-product__summary form.cart button.button.alt:hover:not(:disabled):not(.disabled) {
  background: var(--mwc-green-dark);
  color: #fff !important;
}

.mwc-product__summary form.cart .single_add_to_cart_button.disabled,
.mwc-product__summary form.cart .single_add_to_cart_button:disabled,
.mwc-product__summary form.cart .single_add_to_cart_button:disabled[disabled],
.mwc-product__summary form.cart button.button.alt.disabled,
.mwc-product__summary form.cart button.button.alt:disabled,
.mwc-product__summary form.cart button.button.alt:disabled[disabled] {
  background: var(--mwc-product-btn);
  color: #fff !important;
  opacity: 1;
  cursor: not-allowed;
}

.mwc-product__summary form.cart .single_add_to_cart_button.disabled:hover,
.mwc-product__summary form.cart .single_add_to_cart_button:disabled:hover,
.mwc-product__summary form.cart .single_add_to_cart_button:disabled[disabled]:hover,
.mwc-product__summary form.cart button.button.alt.disabled:hover,
.mwc-product__summary form.cart button.button.alt:disabled:hover,
.mwc-product__summary form.cart button.button.alt:disabled[disabled]:hover {
  background: var(--mwc-product-btn);
  color: #fff !important;
}

.mwc-product-tabs {
  margin-top: 1rem;
}

.mwc-product-tabs > ul.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  border: 0;
}

.mwc-product-tabs > ul.tabs::before {
  display: none;
}

.mwc-product-tabs > ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  list-style: none;
}

.mwc-product-tabs > ul.tabs li::before,
.mwc-product-tabs > ul.tabs li::after {
  display: none;
}

.mwc-product-tabs > ul.tabs li a {
  display: inline-block;
  padding: 0 0 0.75rem;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: none;
  color: #666;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.mwc-product-tabs > ul.tabs li.active a,
.mwc-product-tabs > ul.tabs li a:hover,
.mwc-product-tabs > ul.tabs li a:focus-visible {
  color: var(--mwc-heading);
  border-bottom-color: var(--mwc-gold);
}

.mwc-product-tabs .woocommerce-Tabs-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.mwc-product-tabs .woocommerce-Tabs-panel--additional_information {
  max-width: none;
}

.mwc-product-tabs .woocommerce-Tabs-panel > h2:first-child {
  display: none;
}

.mwc-product-tabs .woocommerce-Tabs-panel p,
.mwc-product-tabs .woocommerce-Tabs-panel li {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}

.mwc-product-tabs .woocommerce-Tabs-panel h2,
.mwc-product-tabs .woocommerce-Tabs-panel h3 {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.mwc-product-tabs .woocommerce-Tabs-panel ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.mwc-product-tabs table.mwc-product-attributes,
.mwc-product-tabs table.shop_attributes,
.mwc-product-tabs table.woocommerce-product-attributes {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.mwc-product-tabs table.mwc-product-attributes th,
.mwc-product-tabs table.mwc-product-attributes td,
.mwc-product-tabs table.shop_attributes th,
.mwc-product-tabs table.shop_attributes td,
.mwc-product-tabs table.woocommerce-product-attributes th,
.mwc-product-tabs table.woocommerce-product-attributes td {
  padding: 1.1rem 0;
  border: 0;
  border-bottom: 1px solid #ececec;
  background: none;
  font-size: 0.98rem;
  line-height: 1.55;
  vertical-align: top;
}

.mwc-product-tabs table.mwc-product-attributes tr:first-child th,
.mwc-product-tabs table.mwc-product-attributes tr:first-child td,
.mwc-product-tabs table.shop_attributes tr:first-child th,
.mwc-product-tabs table.shop_attributes tr:first-child td,
.mwc-product-tabs table.woocommerce-product-attributes tr:first-child th,
.mwc-product-tabs table.woocommerce-product-attributes tr:first-child td {
  padding-top: 0.35rem;
}

.mwc-product-tabs table.mwc-product-attributes th,
.mwc-product-tabs table.shop_attributes th,
.mwc-product-tabs table.woocommerce-product-attributes th {
  width: 42%;
  padding-right: 2rem;
  font-weight: 700;
  text-align: left;
  color: var(--mwc-heading);
}

.mwc-product-tabs table.mwc-product-attributes td,
.mwc-product-tabs table.shop_attributes td,
.mwc-product-tabs table.woocommerce-product-attributes td {
  width: 58%;
  font-weight: 400;
  text-align: right;
  color: #333;
}

.mwc-product-tabs table.mwc-product-attributes td p,
.mwc-product-tabs table.shop_attributes td p,
.mwc-product-tabs table.woocommerce-product-attributes td p {
  margin: 0;
}

.mwc-product__related {
  margin-top: 3.5rem;
}

.mwc-related-products__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-related-products__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-related-products__grid::before,
.mwc-related-products__grid::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 768px) {
  .mwc-related-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.mwc-related-products__grid > .mwc-related-product {
  display: block;
  width: auto;
  max-width: none;
  float: none;
  clear: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-related-product__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mwc-related-product__image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.mwc-related-product__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f7f7f7;
  transition: transform 0.35s ease;
}

.mwc-related-product__link:hover .mwc-related-product__image,
.mwc-related-product__link:focus-visible .mwc-related-product__image {
  transform: scale(1.03);
}

.mwc-related-product__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.85rem;
}

.mwc-related-product__category {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #999;
}

.mwc-related-product__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--mwc-heading);
}

.mwc-related-product__price {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--mwc-heading);
}

.mwc-related-product__price .woocommerce-Price-amount {
  color: var(--mwc-heading);
}

.mwc-related-product__price .woocommerce-Price-suffix,
.mwc-related-product__price .price-suffix {
  color: #666;
  font-size: 0.92em;
  font-weight: 400;
}

/* Cart page */
body.woocommerce-cart .mwc-page-hero {
  display: none;
}

body.woocommerce-cart .mwc-page__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

body.woocommerce-cart .mwc-page__content.entry-content {
  max-width: none;
}

body.woocommerce-cart .woocommerce::before,
body.woocommerce-cart .woocommerce::after {
  display: none;
}

body.woocommerce-cart form.woocommerce-cart-form,
body.woocommerce-cart .mwc-cart-page .cart-collaterals,
body.woocommerce-cart .mwc-cart-page .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  clear: none !important;
}

.mwc-cart-page {
  width: 100%;
}

.mwc-cart-page__main,
.mwc-cart-page__sidebar {
  min-width: 0;
}

.mwc-cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 2.5rem;
  align-items: start;
}

.mwc-checkout-steps {
  margin: 0 0 2.5rem;
}

.mwc-checkout-steps__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-checkout-steps__item {
  position: relative;
  flex: 1 1 0;
  max-width: 220px;
  padding-top: 0.35rem;
  text-align: center;
}

.mwc-checkout-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: calc(50% + 1.15rem);
  width: calc(100% - 2.3rem);
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.mwc-checkout-steps__item--active:not(:last-child)::after,
.mwc-checkout-steps__item--complete:not(:last-child)::after {
  background: var(--mwc-green);
}

.mwc-checkout-steps__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}

.mwc-checkout-steps__item--active .mwc-checkout-steps__marker {
  background: var(--mwc-heading);
}

.mwc-checkout-steps__item--complete .mwc-checkout-steps__marker {
  background: var(--mwc-green);
}

.mwc-checkout-steps__label {
  display: block;
  color: #999;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
}

.mwc-checkout-steps__item--active .mwc-checkout-steps__label {
  color: var(--mwc-heading);
  font-weight: 700;
}

.mwc-cart-items {
  border-top: 1px solid var(--mwc-border);
}

.mwc-cart-item {
  display: grid;
  grid-template-columns: auto 80px minmax(0, 1fr) auto auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-cart-item__remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: transparent;
  font-size: 0;
  text-decoration: none;
  background: no-repeat center / 16px 16px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3Cpath d='M9 6V4h6v2'/%3E%3C/svg%3E");
}

.mwc-cart-item__remove .remove:hover,
.mwc-cart-item__remove .remove:focus-visible {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'/%3E%3Cpath d='M19 6l-1 14H6L5 6'/%3E%3Cpath d='M10 11v6M14 11v6'/%3E%3Cpath d='M9 6V4h6v2'/%3E%3C/svg%3E");
  outline: none;
}

.mwc-cart-item__thumbnail img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #f7f7f7;
}

.mwc-cart-item__title {
  display: block;
  margin: 0 0 0.5rem;
  color: var(--mwc-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

a.mwc-cart-item__title:hover {
  color: var(--mwc-green);
}

.mwc-cart-item__details dl.variation {
  margin: 0;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.mwc-cart-item__details dl.variation dt,
.mwc-cart-item__details dl.variation dd {
  display: inline;
  margin: 0;
}

.mwc-cart-item__details dl.variation dt {
  font-weight: 400;
}

.mwc-cart-item__details dl.variation dd p {
  margin: 0;
}

.mwc-cart-item__quantity .quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  background: #fff;
}

.mwc-cart-item__quantity .quantity .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mwc-cart-item__quantity .mwc-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  padding: 0;
  border: 0;
  background: #fafafa;
  color: var(--mwc-heading);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
}

.mwc-cart-item__quantity .mwc-qty-btn:hover,
.mwc-cart-item__quantity .mwc-qty-btn:focus-visible {
  background: #f0f0f0;
  outline: none;
}

.mwc-cart-item__quantity .qty {
  width: 2.5rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.25rem;
  border: 0;
  border-left: 1px solid var(--mwc-input-border);
  border-right: 1px solid var(--mwc-input-border);
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.mwc-cart-item__quantity .qty::-webkit-outer-spin-button,
.mwc-cart-item__quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mwc-cart-item__subtotal {
  min-width: 8rem;
  color: var(--mwc-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.mwc-cart-item__subtotal .woocommerce-Price-suffix {
  display: block;
  margin-top: 0.15rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mwc-cart-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mwc-cart-page__actions .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.mwc-cart-page__actions .coupon .input-text {
  min-width: 180px;
  height: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  font-size: 0.875rem;
}

.mwc-cart-page__actions .button,
.mwc-cart-page__update {
  height: 2.5rem;
  padding: 0 1.15rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  background: #f5f5f5;
  color: var(--mwc-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.mwc-cart-page__actions .button:hover,
.mwc-cart-page__update:hover {
  background: #eee;
}

.mwc-cart-page__sidebar .cart-collaterals {
  width: 100%;
  float: none;
}

.mwc-cart-totals {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  background: #fff;
}

.mwc-cart-totals__rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mwc-cart-totals__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
}

.mwc-cart-totals__label {
  color: var(--mwc-heading);
  font-weight: 600;
}

.mwc-cart-totals__value {
  text-align: right;
  color: var(--mwc-heading);
}

.mwc-cart-totals__value .woocommerce-Price-suffix {
  display: block;
  margin-top: 0.1rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mwc-cart-totals__shipping {
  padding-top: 0.35rem;
}

.mwc-cart-totals__shipping .woocommerce-shipping-methods {
  margin: 0 0 0.65rem;
  padding: 0;
  list-style: none;
}

.mwc-cart-totals__shipping .woocommerce-shipping-methods li {
  margin: 0 0 0.45rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.mwc-cart-totals__shipping .woocommerce-shipping-methods label {
  color: var(--mwc-text);
  font-weight: 400;
  cursor: pointer;
}

.mwc-cart-totals__shipping .woocommerce-shipping-destination {
  margin: 0 0 0.35rem;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.mwc-cart-totals__shipping .woocommerce-shipping-calculator,
.mwc-cart-totals__shipping .shipping-calculator-button {
  margin: 0;
  color: var(--mwc-link);
  font-size: 0.8125rem;
  text-decoration: underline;
}

.mwc-cart-totals__row--total {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mwc-border);
}

.mwc-cart-totals__row--total .mwc-cart-totals__label {
  font-size: 1rem;
  font-weight: 700;
}

.mwc-cart-totals__row--total .mwc-cart-totals__value {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
}

.mwc-cart-totals__row--total .includes_tax {
  display: block;
  margin-top: 0.2rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mwc-cart-totals .wc-proceed-to-checkout {
  margin: 1.25rem 0 0;
  padding: 0;
}

.mwc-cart-checkout-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.25rem !important;
  border: 0 !important;
  border-radius: 2px !important;
  background: var(--mwc-green) !important;
  color: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.mwc-cart-checkout-btn:hover,
.mwc-cart-checkout-btn:focus-visible {
  background: var(--mwc-green-dark) !important;
  color: #fff !important;
}

.mwc-cart-page--empty .mwc-cart-page__empty {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  text-align: center;
}

.mwc-cart-page--empty .cart-empty {
  margin-bottom: 1.25rem;
  color: var(--mwc-text);
  font-size: 1rem;
}

.mwc-cart-page--empty .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 2px;
  background: var(--mwc-green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px) {
  .mwc-cart-page__layout {
    grid-template-columns: 1fr;
  }

  .mwc-cart-page__sidebar {
    order: 2;
  }

  .mwc-cart-item {
    grid-template-columns: auto 64px minmax(0, 1fr);
    grid-template-areas:
      "remove thumb details"
      "remove qty subtotal";
  }

  .mwc-cart-item__remove {
    grid-area: remove;
  }

  .mwc-cart-item__thumbnail {
    grid-area: thumb;
  }

  .mwc-cart-item__details {
    grid-area: details;
  }

  .mwc-cart-item__quantity {
    grid-area: qty;
    padding-left: calc(64px + 1rem);
  }

  .mwc-cart-item__subtotal {
    grid-area: subtotal;
    text-align: right;
  }

  .mwc-cart-item__thumbnail img {
    width: 64px;
    height: 64px;
  }

  .mwc-checkout-steps__label {
    font-size: 0.6875rem;
  }
}

@media (max-width: 560px) {
  .mwc-checkout-steps__item {
    max-width: none;
  }

  .mwc-checkout-steps__label {
    font-size: 0.625rem;
  }

  .mwc-cart-page__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mwc-cart-page__actions .coupon {
    width: 100%;
  }

  .mwc-cart-page__actions .coupon .input-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mwc-cart-page__update {
    width: 100%;
  }
}

/* Checkout page */
body.woocommerce-checkout .mwc-page-hero,
body.woocommerce-order-received .mwc-page-hero {
  display: none;
}

body.woocommerce-checkout .mwc-page__body,
body.woocommerce-order-received .mwc-page__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

body.woocommerce-checkout .mwc-page__content.entry-content,
body.woocommerce-order-received .mwc-page__content.entry-content {
  max-width: none;
}

body.woocommerce-checkout .col2-set,
body.woocommerce-checkout #customer_details.col2-set {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout .col2-set::before,
body.woocommerce-checkout .col2-set::after {
  display: none;
}

.mwc-checkout-page {
  width: 100%;
}

.mwc-checkout-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2.5rem;
  align-items: start;
}

.mwc-checkout-page__main,
.mwc-checkout-page__sidebar {
  min-width: 0;
}

.mwc-checkout-page__customer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mwc-checkout-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.mwc-checkout-page__order-review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mwc-checkout-sidebar-box {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  background: #fff;
}

.mwc-checkout-page__order-heading {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-checkout-page .woocommerce-billing-fields > h3,
.mwc-checkout-page .woocommerce-shipping-fields > h3,
.mwc-checkout-page #ship-to-different-address {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mwc-heading);
}

.mwc-checkout-page #ship-to-different-address {
  font-size: 0.9375rem;
  font-weight: 600;
}

.mwc-checkout-page .woocommerce-billing-fields__field-wrapper,
.mwc-checkout-page .woocommerce-shipping-fields__field-wrapper,
.mwc-checkout-page .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.25rem;
}

.mwc-checkout-page .woocommerce-billing-fields__field-wrapper .form-row,
.mwc-checkout-page .woocommerce-shipping-fields__field-wrapper .form-row,
.mwc-checkout-page .woocommerce-additional-fields__field-wrapper .form-row {
  float: none !important;
  width: 100% !important;
  clear: none !important;
  margin-right: 0 !important;
}

.mwc-checkout-page #billing_first_name_field,
.mwc-checkout-page #shipping_first_name_field {
  grid-column: 1;
}

.mwc-checkout-page #billing_last_name_field,
.mwc-checkout-page #shipping_last_name_field {
  grid-column: 2;
}

.mwc-checkout-page .form-row-wide,
.mwc-checkout-page #billing_company_field,
.mwc-checkout-page #shipping_company_field,
.mwc-checkout-page #billing_country_field,
.mwc-checkout-page #shipping_country_field,
.mwc-checkout-page #billing_address_1_field,
.mwc-checkout-page #shipping_address_1_field,
.mwc-checkout-page #billing_address_2_field,
.mwc-checkout-page #shipping_address_2_field,
.mwc-checkout-page #order_comments_field {
  grid-column: 1 / -1;
}

.mwc-checkout-page #order_comments {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.5;
}

.mwc-checkout-page .form-row {
  margin: 0 0 1rem;
  padding: 0;
}

.mwc-checkout-page .form-row label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--mwc-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.mwc-checkout-page .form-row .input-text,
.mwc-checkout-page .form-row select,
.mwc-checkout-page .form-row textarea {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  background: #fff;
  color: var(--mwc-text);
  font-size: 0.875rem;
}

.mwc-checkout-page .shipping_address {
  margin-top: 1rem;
}

.mwc-checkout-review__items {
  margin: 0;
  padding: 0;
  border: 0;
}

.mwc-checkout-review__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-checkout-review__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mwc-checkout-review__item-thumb img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 2px;
  background: #f5f5f5;
}

.mwc-checkout-review__item-body {
  min-width: 0;
}

.mwc-checkout-review__item-name {
  color: var(--mwc-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.mwc-checkout-review__item-name .product-quantity {
  font-weight: 700;
}

.mwc-checkout-review__item-body dl.variation {
  margin: 0.45rem 0 0;
  color: #666;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
}

.mwc-checkout-review__item-body dl.variation dt,
.mwc-checkout-review__item-body dl.variation dd {
  display: inline;
  margin: 0;
}

.mwc-checkout-review__item-body dl.variation dt {
  font-weight: 400;
}

.mwc-checkout-review__item-body dl.variation p {
  margin: 0;
}

.mwc-checkout-review__item-total {
  color: var(--mwc-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.mwc-checkout-review__totals-box {
  margin-top: 0.25rem;
}

.mwc-checkout-review__totals {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mwc-checkout-review__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mwc-border);
  font-size: 0.9375rem;
}

.mwc-checkout-review__row:last-child {
  border-bottom: 0;
}

.mwc-checkout-review__label {
  color: var(--mwc-heading);
  font-weight: 600;
}

.mwc-checkout-review__value {
  text-align: right;
  color: var(--mwc-heading);
}

.mwc-checkout-review__value .woocommerce-Price-suffix,
.mwc-checkout-review__item-total .woocommerce-Price-suffix {
  display: block;
  margin-top: 0.1rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mwc-checkout-review__shipping {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-checkout-review__shipping .mwc-cart-totals__shipping {
  padding: 0;
}

.mwc-checkout-review__shipping .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwc-checkout-review__shipping .woocommerce-shipping-methods li {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.mwc-checkout-review__shipping .woocommerce-shipping-methods li:last-child {
  margin-bottom: 0;
}

.mwc-checkout-page__sidebar input[type="radio"],
.mwc-checkout-page__sidebar input[type="checkbox"] {
  accent-color: var(--mwc-gold);
}

.mwc-checkout-review__row--total {
  margin-top: 0;
  padding-top: 0.85rem;
  border-top: 0;
  border-bottom: 0;
}

.mwc-checkout-review__row--total .mwc-checkout-review__label {
  font-size: 1rem;
  font-weight: 700;
}

.mwc-checkout-review__row--total .mwc-checkout-review__value {
  font-size: 1.25rem;
  font-weight: 700;
}

.mwc-checkout-review__row--total .includes_tax {
  display: block;
  margin-top: 0.15rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mwc-checkout-page__sidebar #payment {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 4px;
  background: #fff;
}

.mwc-checkout-payment {
  margin: 0;
  padding: 0;
  border: 0;
}

.mwc-checkout-payment .wc_payment_methods {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.mwc-checkout-payment .wc_payment_method {
  margin: 0;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--mwc-border);
}

.mwc-checkout-payment .wc_payment_method:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mwc-checkout-payment .wc_payment_method label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: calc(100% - 1.75rem);
  margin-left: 1.75rem;
  color: var(--mwc-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}

.mwc-checkout-payment .wc_payment_method .input-radio {
  float: left;
  margin: 0.2rem 0 0 -1.75rem;
}

.mwc-checkout-payment__label-text {
  flex: 1;
  min-width: 0;
}

.mwc-checkout-payment__icon {
  flex-shrink: 0;
  margin-left: auto;
}

.mwc-checkout-payment__icon img {
  display: block;
  max-height: 24px;
  width: auto;
}

.mwc-checkout-payment .payment_box {
  margin: 0.55rem 0 0 1.75rem;
  padding: 0;
  background: transparent;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.mwc-checkout-payment .payment_box::before {
  display: none;
}

.mwc-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  margin: 0 0 1rem;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.mwc-checkout-payment .woocommerce-terms-and-conditions-wrapper a {
  color: var(--mwc-link);
}

.mwc-checkout-payment .place-order {
  margin: 0;
  padding: 0;
}

.mwc-checkout-place-order {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.25rem !important;
  border: 0 !important;
  border-radius: 2px !important;
  background: var(--mwc-green) !important;
  color: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
}

.mwc-checkout-place-order:hover,
.mwc-checkout-place-order:focus-visible {
  background: var(--mwc-green-dark) !important;
  color: #fff !important;
}

.mwc-checkout-page--thankyou .mwc-checkout-page__thankyou {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.mwc-checkout-page--thankyou .woocommerce-order-overview {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--mwc-input-border);
  border-radius: 2px;
  list-style: none;
}

.mwc-checkout-page--thankyou .woocommerce-order-overview li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--mwc-text);
  font-size: 0.9375rem;
}

@media (max-width: 960px) {
  .mwc-checkout-page__layout {
    grid-template-columns: 1fr;
  }

  .mwc-checkout-page__sidebar {
    order: 2;
  }

  .mwc-checkout-page .woocommerce-billing-fields__field-wrapper,
  .mwc-checkout-page .woocommerce-shipping-fields__field-wrapper,
  .mwc-checkout-page .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}
