/*
Theme Name: Wollsdorf

WooCommerce styles override
*/

/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}

table.shop_table_responsive tbody th {
  display: none;
}

table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}

table.shop_table_responsive tr td::before {
  content: attr(data-title) ': ';
  float: left;
}

table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
  display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
  display: none;
}

table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }

  table.shop_table_responsive tbody th {
    display: table-cell;
  }

  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }

  table.shop_table_responsive tr td {
    display: table-cell;
  }

  table.shop_table_responsive tr td::before {
    display: none;
  }
}

/**
 * products categories
 */

.home .product__categories {
  padding: 60px 0 80px;
  background: #f8f8f8;
  border-bottom: 1px solid #e7e7e7;
}

.archive .product__categories {
  padding-bottom: 80px;
}

.archive .section__name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.archive .product__categories .cats {
  justify-content: flex-start;
}

.product__categories .cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product__categories .cat {
  position: relative;
  display: block;
  line-height: 0;
  width: calc(100% / 4 - (90px / 4));
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
}

.product__categories .cat::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(360deg, #000000 10.9%, rgba(0, 0, 0, 0) 93.88%);
  opacity: 0.7;
}

.product__categories .cat .content {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #ffffff;
  padding: 20px;
}

.product__categories .cat .title {
  position: relative;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.product__categories .cat:hover {
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}

.product__categories .cat:hover .title {
  transform: translateX(10px);
}

.product__categories .cat .title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  transform: translateX(-101%);
  width: 10px;
  height: 100%;
  background: #e30613;
  transition: 0.3s;
}

.product__categories .cat:hover .title::before {
  transform: translateX(0);
}

.product__categories .cat .desc {
  font-size: 14px;
  line-height: 140%;
}

.product__categories .cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__categories .btn {
  margin: 65px auto 0;
}

.term-description {
  margin-top: -20px;
  margin-bottom: 40px;
}

/**
 * Products
 */
ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

ul.products li.product {
  width: calc(100% / 4 - (60px / 4));
  display: flex;
  flex-direction: column;
  list-style: none;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  transition: 0.3s;
}

/*ul.products li.product::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(360deg, #000000 10.9%, rgba(0, 0, 0, 0) 93.88%);
  opacity: 0.7;
} */

ul.products li.product:hover {
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}

.flashes {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}

.flashes .onsale {
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  padding: 2px 8px;
  color: #ffffff;
  background: linear-gradient(270deg, #e74752 2.6%, #e30613 100%);
  border-radius: 6px 6px 0 6px;
}

.flashes .featured {
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  padding: 2px 8px;
  color: #ffffff;
  background: linear-gradient(270deg, #13a4d1 0%, #0f75be 100%);
  border-radius: 6px 6px 0 6px;
}

.flashes .itsnew {
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  padding: 2px 8px;
  color: #ffffff;
  background: linear-gradient(270deg, #41df83 2.6%, #03a742 100%);
  border-radius: 6px 6px 0 6px;
}

ul.products li.product .pic {
  width: 100%;
  height: 100%;
}

ul.products li.product .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul.products li.product .woocommerce-LoopProduct-link {
  line-height: 0;
  text-decoration: none;
}

ul.products li.product .content {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

ul.products li.product .woocommerce-loop-product__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
  margin: 0 0 20px 0;
  padding-left: 0;
  transition: 0.3s;
}

ul.products li.product:hover .woocommerce-loop-product__title {
  transform: translateX(10px);
}

ul.products li.product .woocommerce-loop-product__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  transform: translateX(-101%);
  width: 10px;
  height: 100%;
  background: #e30613;
  border-radius: 0;
  transition: 0.3s;
}

ul.products li.product:hover .woocommerce-loop-product__title::before {
  transform: translateX(0);
}

ul.products li.product .excerpt {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #89929c;
  margin-top: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

ul.products li.product .price {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}

ul.products li.product del {
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  color: #e7e7e7;
}

ul.products li.product ins {
  background: transparent;
}

ul.products li.product .button {
  position: relative;
  margin-top: 20px;
  padding-left: 38px;
}

ul.products li.product .button::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/add-to-cart-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.3s;
}

ul.products li.product .button.added::before {
  background-image: url(../img/check-white.svg);
  left: 14px;
  width: 22px;
  height: 22px;
}

ul.products li.product .added_to_cart {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #89929c;
  text-align: center;
  margin-top: 5px;
}

/**
 * Single product
 */
.single-product div.product {
  position: relative;
}

.single-product div.product .product__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.single-product div.product .product__content .pics {
  width: 100%;
  max-width: 420px;
  height: fit-content;
}

.single-product div.product .product__content .pics figure {
  margin: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
  border: 1px solid #eaecee;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li:first-child {
  display: none;
}

.single-product
  div.product
  .product__content
  .pics
  .woocommerce-product-gallery__image
  a {
  display: block;
  line-height: 0;
}

@media (max-width: 800px) {
  .single-product .woocommerce-product-gallery__image a {
    pointer-events: none;
  }
}

.single-product div.product .product__content .summary {
  width: calc(100% - 800px);
  flex-grow: 1;
  margin-top: 0;
}

.single-product div.product .product__content .summary h1 {
  margin-top: 0;
  font-size: 24px;
  line-height: 120%;
  text-transform: inherit;
  padding-left: 46px;
}

.single-product div.product .product__content .summary .price {
  font-size: 28px;
  font-weight: 500;
}

.single-product div.product .product__content .summary .price del {
  font-size: 18px;
  font-weight: 400;
  color: #89929c;
}

.single-product div.product .product__content .summary .price ins {
  background: transparent;
  text-decoration: none;
}

.single-product
  div.product
  .product__content
  .summary
  .woocommerce-product-details__short-description {
  margin-bottom: 20px;
}

.single-product
  div.product
  .product__content
  .summary
  .single_add_to_cart_button {
  position: relative;
  padding-left: 38px;
}

.single-product
  div.product
  .product__content
  .summary
  .single_add_to_cart_button::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/add-to-cart-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  transition: 0.3s;
}

.single-product
  div.product
  .product__content
  .summary
  .single_add_to_cart_button.added::before {
  background-image: url(../img/check-white.svg);
  left: 14px;
  width: 22px;
  height: 22px;
}

.single-product div.product .product__content .summary .added_to_cart {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #111111;
}

.single-product div.product .product__content .summary .__one_click {
  margin-top: 40px;
}

.single-product div.product .product__content .summary .__one_click .title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.single-product div.product .product__content .related.products {
  width: 300px;
  justify-content: center;
  align-content: flex-start;
  margin: 0;
}

.single-product div.product .product__content .related.products .products {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 10px;
  overflow: hidden;
  overflow-y: auto;
}

.single-product
  div.product
  .product__content
  .related.products
  .products::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  background-color: #f5f5f5;
}

.single-product
  div.product
  .product__content
  .related.products
  .products::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

.single-product
  div.product
  .product__content
  .related.products
  .products::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ffca41;
}

.single-product
  div.product
  .product__content
  .related.products
  .products
  .product {
  width: 100%;
}

.single-product div.product .product__content .related.products > h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  margin-top: 0;
}

.single-product div.product .woocommerce-product-gallery {
  position: relative;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 2em;
  right: 1em;
  display: block;
  z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li {
  width: calc(100% / 5 - 10px);
  border: 1px solid #eaecee;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li
  img {
  opacity: 0.5;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li
  img.flex-active {
  opacity: 1;
}

.single-product
  div.product
  .woocommerce-product-gallery
  .flex-control-thumbs
  li:hover
  img {
  opacity: 1;
}

.stock:empty::before {
  display: none;
}

.stock.in-stock {
  color: #0f834d;
}

.stock.out-of-stock {
  color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }

  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }

  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: 48.1%;
  }
}

/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header-cart .cart-contents {
  text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
  display: none;
}

.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}

.star-rating::before {
  content: '\53\53\53\53\53';
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span::before {
  content: '\53\53\53\53\53';
  top: 0;
  position: absolute;
  left: 0;
  color: #4169e1;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}

p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: '\53';
  color: #404040;
  text-indent: 0;
  opacity: 0.25;
}

p.stars a:hover ~ a::before {
  content: '\53';
  color: #404040;
  opacity: 0.25;
}

p.stars:hover a::before {
  content: '\53';
  color: #4169e1;
  opacity: 1;
}

p.stars.selected a.active::before {
  content: '\53';
  color: #4169e1;
  opacity: 1;
}

p.stars.selected a.active ~ a::before {
  content: '\53';
  color: #404040;
  opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
  content: '\53';
  color: #4169e1;
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.woocommerce-tabs ul.tabs li {
  position: relative;
}

.woocommerce-tabs ul.tabs li a {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #e7e7e7;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  color: #111111;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.woocommerce-tabs ul.tabs li a:hover {
  color: #ffffff;
  background: #e42936;
  border-color: #e42936;
}

.woocommerce-tabs ul.tabs li.active a {
  color: #ffffff;
  background: #e30613;
  border-color: #e30613;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 40px;
  border: 2px solid #e7e7e7;
  margin-top: -2px;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2:first-child {
  position: relative;
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  padding-left: 35px;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border-radius: 6px 6px 0 6px;
  background: #e30613;
}

/**
 * qty buttons
 */
.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 5px;
}

.quantity button,
.quantity button:hover,
.quantity button:visited,
.quantity button:focus {
  padding: 4px 4px 9px 4px;
  height: 40px;
  width: 40px;
  min-width: 40px;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 0;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  display: none;
  margin: 0;
}

.quantity input.qty {
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  min-width: 60px;
  max-width: 100px;
  text-align: center;
  padding: 0;
  height: 40px;
  font-size: 18px;
}

form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

form.cart .single_add_to_cart_button {
  max-height: 40px;
}

/**
 * cart page
 */

.woocommerce-cart .shop_table {
  border: 1px solid #eaecee;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
}

.woocommerce-cart .shop_table th {
  font-weight: bold;
  padding: 10px;
  background: #f7f7f7;
  border: 0.5px solid #eaecee;
  text-align: center;
}

.woocommerce-cart .shop_table td {
  padding: 5px 10px;
  border: 0.5px solid #eaecee;
  text-align: left;
}

.woocommerce-cart .shop_table td.product-remove {
  max-width: 40px;
  text-align: center;
}

.woocommerce-cart table.shop_table_responsive tr td.product-remove a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #e30613;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
}

.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail {
  max-width: 100px;
}

.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail a {
  display: block;
  line-height: 0;
}

.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail img {
  border-radius: 4px;
}

.woocommerce-cart table.shop_table_responsive tr td.product-name a {
  text-decoration: none;
  color: #111111;
}

.woocommerce-cart table.shop_table_responsive tr td.product-price {
  white-space: nowrap;
  text-align: center;
}

.woocommerce-cart table.shop_table_responsive tr td.product-quantity .quantity {
  margin: auto;
}

.woocommerce-cart table.shop_table_responsive tr td.product-subtotal {
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}

.woocommerce-cart .shop_table tbody tr:nth-child(odd) {
  background: #fff;
}

.woocommerce-cart .shop_table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.woocommerce-cart .shop_table tbody tr [name='update_cart'] {
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals {
  max-width: 300px;
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals .shop_table th {
  text-align: left;
}

.woocommerce-cart .cart-collaterals .shop_table .cart-subtotal {
  display: none;
}

.woocommerce-cart .cart-collaterals .woocommerce-shipping-totals.shipping {
  display: none;
}

@media (max-width: 768px) {
  .woocommerce-cart .shop_table td {
    display: flex;
    justify-content: space-between;
  }

  .woocommerce-cart table.shop_table_responsive tr td::before {
    font-weight: bold;
  }

  .woocommerce-cart .shop_table td.product-remove {
    max-width: 100%;
    justify-content: center;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-thumbnail {
    max-width: 100%;
    justify-content: center;
  }

  .woocommerce-cart
    table.shop_table_responsive
    tr
    td.product-thumbnail::before {
    display: none;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-name a {
    text-align: end;
  }

  .woocommerce-cart
    table.shop_table_responsive
    tr
    td.product-quantity
    .quantity {
    margin: unset;
  }
}

/**
 * checkout page
 */
.woocommerce-checkout form.checkout {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-checkout .col2-set {
  width: 50%;
  padding-right: 20px;
}

.woocommerce-checkout .col2-set h3 {
  font-size: 18px;
  font-weight: 400;
}

.woocommerce-checkout .col2-set .woocommerce-billing-fields__field-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.woocommerce-checkout .col2-set .form-row-first,
.woocommerce-checkout .col2-set .form-row-last {
  float: unset;
}

.woocommerce-checkout .col2-set .form-row {
  margin: 10px 0;
}

.woocommerce-checkout .col2-set #billing_country_field {
  display: none;
}

.woocommerce-checkout .col3-set {
  width: 50%;
  padding: 15px;
  border: 1px solid #eaecee;
  border-radius: 4px;
}

.woocommerce-checkout .col3-set #order_review_heading {
  margin-top: 0;
  font-weight: 400;
}

.woocommerce-checkout .col3-set th {
  font-weight: 400;
}

.woocommerce-checkout .col3-set table,
.woocommerce-checkout #order_review .shop_table {
  border: 1px solid #eaecee;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
}

.woocommerce-checkout .col3-set table th,
.woocommerce-checkout #order_review .shop_table th {
  font-weight: bold;
  padding: 10px;
  background: #f7f7f7;
  border: 0.5px solid #eaecee;
  text-align: center;
}

.woocommerce-checkout .col3-set table td,
.woocommerce-checkout #order_review .shop_table td {
  padding: 5px 10px;
  border: 0.5px solid #eaecee;
  text-align: left;
}

.woocommerce-checkout .col3-set table td.product-total {
  text-align: center;
}

.woocommerce-checkout .col3-set table .order-total {
  background-color: #f7f7f7;
}

.woocommerce-checkout .col3-set table .order-total td {
  white-space: nowrap;
  text-align: center;
}

.woocommerce-checkout .col3-set table:not(.variations) tbody tr:nth-child(odd),
.woocommerce-checkout #order_review .shop_table tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}

.woocommerce-checkout #order_review .shop_table tfoot th {
  text-align: left;
}

.woocommerce-checkout #order_review .shop_table tfoot > tr:first-child {
  display: none;
}

.woocommerce-checkout .col3-set .woocommerce-Price-currencySymbol {
  margin-left: 3px;
}

.woocommerce-checkout .cart_item td {
  padding: 10px 5px;
}

.woocommerce-checkout .cart_item .product-name {
  font-size: 14px;
}

.woocommerce-checkout .cart-subtotal {
  display: none;
}

.woocommerce-checkout .order-total td {
  padding: 10px;
}

.woocommerce-checkout .wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .wc_payment_methods .wc_payment_method label {
  font-size: 16px;
  font-weight: 500;
}

.woocommerce-checkout [name='woocommerce_checkout_place_order'] {
  width: fit-content;
  margin: 20px auto 0;
}

.woocommerce-checkout .woocommerce-remove-coupon {
  color: #ffca41;
  font-size: 14px;
  font-weight: 700;
}

.woocommerce-checkout .woocommerce-shipping-totals.shipping th {
  font-weight: 700;
  text-align: left;
  background-color: #f7f7f7;
  border: 1px solid #eaecee;
  padding: 10px;
}

.woocommerce-checkout .woocommerce-shipping-totals.shipping td {
  background-color: #f7f7f7;
  border: 1px solid #eaecee;
  padding: 10px;
  width: 30%;
}

.woocommerce-checkout
  .woocommerce-shipping-totals.shipping
  td
  #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-shipping-totals.shipping {
  display: none;
}

.woocommerce-checkout .wc_payment_method.payment_method_cod {
  background-color: #f7f7f7;
  border: 1px solid #eaecee;
  padding: 10px;
}

.woocommerce-checkout .payment_box.payment_method_cod {
  font-size: 14px;
  margin-top: 10px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
  font-size: 12px;
  line-height: 1.3em;
  color: #b8b8b8;
  margin-top: 20px;
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  width: 100%;
}

@media (max-width: 768px) {
  .woocommerce-checkout .col2-set {
    width: 100%;
    padding-right: 0;
  }

  .woocommerce-checkout .col3-set {
    width: 100%;
    padding: 10px;
  }
}

/**
 * thx
 */

.woocommerce-checkout .woocommerce-order-details,
.woocommerce-checkout .woocommerce-customer-details {
  display: none;
}

/**
 * account
 */
.woocommerce-account #customer_login {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
  width: calc(100% / 2 - 20px);
}

/* control panel */
.woocommerce-account .entry-content > .woocommerce {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation {
  width: 25%;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
  margin-top: -1px;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  display: block;
  text-decoration: none;
  padding: 8px 20px;
  background-color: #f7f7f7;
  border: 1px solid #eaecee;
  transition: 0.3s;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active {
  border-right: transparent;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #eaecee;
  cursor: default;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:after {
  content: '';
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid #eaecee;
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -35px;
  margin-top: -7px;
  opacity: 0;
  transition: 0.3s;
}

.woocommerce-account
  nav.woocommerce-MyAccount-navigation
  ul
  li.is-active
  a:after {
  opacity: 1;
}

.woocommerce-account
  nav.woocommerce-MyAccount-navigation
  ul
  li:not(.is-active):hover {
  border-right: transparent;
}

.woocommerce-account
  nav.woocommerce-MyAccount-navigation
  ul
  li:not(.is-active)
  a:hover {
  background-color: #eaecee;
}

.woocommerce-account
  nav.woocommerce-MyAccount-navigation
  ul
  li:not(.is-active)
  a:hover:after {
  border-left: 14px solid #eaecee;
  opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 70%;
}

.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-address-fields__field-wrapper,
.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  fieldset {
  width: 100%;
  padding: 20px;
}

.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-address-fields__field-wrapper
  #billing_country_field {
  display: none;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table--order-details {
  border: 1px solid #eaecee;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-table--order-details th {
  font-weight: bold;
  padding: 10px;
  background: #f7f7f7;
  border: 0.5px solid #eaecee;
  text-align: center;
}

.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account .woocommerce-table--order-details td {
  padding: 5px 10px;
  border: 0.5px solid #eaecee;
  text-align: center;
}

.woocommerce-account .woocommerce-table--order-details td,
.woocommerce-account .woocommerce-table--order-details tfoot th {
  text-align: left;
}

.woocommerce-account .woocommerce-orders-table td a {
  margin: 5px;
  width: 100%;
}

.woocommerce-button.wp-element-button.button.pay {
  display: none;
}

.woocommerce-account .woocommerce-OrderUpdates {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-OrderUpdate {
  background: #f7f7f7;
  border: 1px solid #eaecee;
  padding: 10px;
  margin: 10px 0;
}

.woocommerce-account .woocommerce-OrderUpdate-meta {
  font-weight: bold;
}

.woocommerce-account .woocommerce-orders-table tbody tr:nth-child(even),
.woocommerce-account
  .woocommerce-table--order-details
  tbody
  tr:nth-child(even) {
  background: #f7f7f7;
}

.woocommerce-account .woocommerce-table--order-details tfoot > tr:first-child {
  display: none;
}

.woocommerce-account.woocommerce-view-order .woocommerce-customer-details {
  padding: 20px;
  border: 1px solid #eaecee;
  border-radius: 4px;
  background: #f7f7f7;
}

.woocommerce-account.woocommerce-view-order .woocommerce-customer-details h2 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .woocommerce-account nav.woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-account .woocommerce-orders-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .woocommerce-account .woocommerce-orders-table td::before {
    float: unset;
    flex-grow: 1;
    text-align: left;
    font-weight: bold;
  }
}

/**
 * Password strength meter
 */

.woocommerce-password-strength {
  text-align: right;
}

.woocommerce-password-strength.strong {
  color: #0f834d;
}

.woocommerce-password-strength.short {
  color: #e2401c;
}

.woocommerce-password-strength.bad {
  color: #e2401c;
}

.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #e2401c;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #eaecee;
  margin: 20px 0;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-noreviews .button,
p.no-comments .button {
  order: 1;
  margin-left: 20px;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  border-color: #3d9cd2;
}

.woocommerce-error {
  border-color: #e2401c;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #3d9cd2;
  z-index: 9999;
}

.site-header-cart .cart-contents {
  position: relative;
  display: flex;
  align-items: center;
  color: #111111;
}

.home .site-header-cart .cart-contents {
  color: #ffffff;
}

.site-header-cart .cart-contents .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #c5c5c5;
}

.home .site-header-cart .cart-contents .icon {
  color: #ffffff;
}

.site-header-cart .cart-contents .count {
  position: absolute;
  top: -10px;
  left: 12px;
  background: #e30613;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header-cart .cart-contents .amount {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}

ul.products .product-category {
  display: none !important;
}

@media (min-width: 768px) {
  /**
	 * Header cart
	 */
  .site-header-cart .widget_shopping_cart {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999999;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10%);
    transition: 0.3s;
  }

  .site-header-cart:hover .widget_shopping_cart,
  .site-header-cart.focus .widget_shopping_cart {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    width: 280px;
    max-height: 380px;
    overflow-y: auto;
    z-index: 999999;
    right: 0;
    left: auto;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    display: block;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    transition: 0.3s;
  }

  .site-header-cart.focus .widget_shopping_cart,
  .site-header-cart:hover .widget_shopping_cart {
    right: 0;
    left: auto;
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .widget_shopping_cart::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
  }

  .widget_shopping_cart::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
  }

  .widget_shopping_cart::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #dd7575;
  }

  .site-header-cart .widget_shopping_cart_content .mini_cart_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
    border-bottom: 1px dashed #dedede;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .mini_cart_item:nth-child(odd) {
    background-color: #f8f9fa;
  }

  .site-header-cart .widget_shopping_cart_content .mini_cart_item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 30px);
    font-size: 12px;
    line-height: 1.3em;
    font-weight: 400;
    text-decoration: none;
    color: #111111;
  }

  .site-header-cart .widget_shopping_cart_content .mini_cart_item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin: 5px 10px 5px 5px;
  }

  .site-header-cart .widget_shopping_cart_content .mini_cart_item .quantity {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }

  .site-header-cart .widget_shopping_cart_content .mini_cart_item .remove {
    font-size: 14px;
    color: #fff;
    background-color: #9f9f9f;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .mini_cart_item
    .remove:hover {
    background-color: #dd7575;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__total {
    margin: 0;
    padding: 10px;
    text-align: center;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__total
    .woocommerce-Price-amount {
    font-weight: 500;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__total
    .woocommerce-Price-currencySymbol {
    margin-left: 4px;
    font-weight: 300;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 10px;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__buttons
    a {
    width: fit-content;
    font-size: 13px;
    padding: 8px 10px;
    margin: 5px;
  }

  .site-header-cart
    .widget_shopping_cart_content
    .woocommerce-mini-cart__empty-message {
    padding: 20px;
  }
}

/**
 * popup catalog
 */
#pop__catalog {
  width: 100%;
  max-width: 1280px;
}

#pop__catalog .product__categories {
  margin-top: 40px;
}

#pop__catalog .product__categories .cat {
  max-height: 150px;
}

#pop__catalog .product__categories {
  padding: 0;
  background: #ffffff;
  border-bottom: none;
}

#pop__catalog .product__categories .cat .content {
  margin-top: 0;
}

#pop__catalog .product__categories .cat .title {
  font-size: 16px;
  margin-bottom: 0;
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
  margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
  float: left;
}

.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: #4169e1;
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%;
}

@media (max-width: 1380px) {
  ul.products.columns-5 li.product {
    width: calc(100% / 4 - 16px);
  }

  .single-product div.product .product__content .summary .__one_click .form-row,
  .single-product div.product .product__content .summary .__one_click .send7 {
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 1220px) {
  .woocommerce-tabs ul.tabs li a {
    border-radius: 6px;
  }
}

@media (max-width: 1190px) {
  ul.products.columns-5 li.product {
    width: calc(100% / 3 - 16px);
  }

  .single-product div.product .product__content .related.products {
    display: none;
  }

  .single-product div.product .product__content .summary {
    width: calc(100% - 460px);
  }
}

@media (max-width: 1040px) {
  .product__categories .cat {
    width: calc(100% / 3 - (90px / 3));
  }

  ul.products li.product {
    width: calc(100% / 3 - (40px / 3));
  }
}

@media (max-width: 880px) {
  .single-product div.product .product__content .pics {
    width: 100%;
    max-width: 100%;
  }

  .single-product div.product .product__content .summary {
    width: 100%;
  }
}

@media (max-width: 800px) {
  ul.products.columns-5 li.product {
    width: calc(100% / 2 - 16px);
  }

  .woocommerce-account nav.woocommerce-MyAccount-navigation ul {
    padding-right: 5px;
  }

  .form-row.notes label {
    display: none;
  }

  .woocommerce-account #customer_login .u-column1,
  .woocommerce-account #customer_login .u-column2 {
    width: 100%;
  }

  .woocommerce-form-login .form-row-first,
  .woocommerce-form-login .form-row-last {
    width: 100%;
  }

  .product__categories .cats {
    gap: 10px;
  }

  .product__categories .cat {
    width: calc(100% / 2 - (10px / 2));
  }

  ul.products li.product {
    width: calc(100% / 2 - (20px / 2));
  }
}

@media (max-width: 480px) {
  ul.products.columns-5 li.product {
    width: 100%;
  }

  .single-product div.product .product__content .summary h1 {
    font-size: 24px;
  }

  .single-product
    div.product
    .product__content
    .summary
    .__one_click
    .__fields-wrapper {
    gap: 5px;
  }

  .single-product div.product .product__content .summary .__one_click .form-row,
  .single-product div.product .product__content .summary .__one_click .send7 {
    width: 100%;
  }

  .single-product
    div.product
    .product__content
    .summary
    .__one_click
    .send7
    .btn {
    width: 100%;
  }

  .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 10px;
  }

  .woocommerce-tabs ul.tabs {
    gap: 5px;
  }

  .woocommerce-tabs ul.tabs li {
    position: relative;
    width: 100%;
  }

  .woocommerce-tabs ul.tabs li a {
    width: 100%;
  }

  ul.products li.product .content {
    padding: 10px;
  }

  ul.products li.product .button {
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    min-width: unset;
    width: 100%;
    white-space: nowrap;
    padding: 6px 10px 6px 20px;
  }

  ul.products li.product .button::before {
    left: 8px;
    width: 14px;
    height: 14px;
  }

  ul.products li.product .woocommerce-LoopProduct-link {
    line-height: 0;
    text-decoration: none;
    margin-bottom: 10px;
  }

  ul.products li.product .price {
    font-size: 14px;
  }

  ul.products li.product del {
    font-size: 12px;
  }

  ul.products li.product .woocommerce-loop-product__title {
    font-size: 12px;
  }

  .flashes .featured,
  .flashes .itsnew,
  .flashes .onsale {
    font-size: 10px;
  }

  .single-product div.product .product__content .summary h1 {
    font-size: 18px;
  }

  .woocommerce-tabs .woocommerce-Tabs-panel h2:first-child {
    margin-top: 20px;
    font-size: 18px;
  }

  .product__categories .cat .title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .product__categories .cat .desc {
    display: none;
  }

  #pop__catalog {
    padding: 20px 10px;
  }

  #pop__catalog .product__categories {
    margin-top: 20px;
  }

  form.cart {
    flex-wrap: wrap;
    justify-content: center;
  }

  .single-product div.product .product__content .summary .quantity,
  .single-product
    div.product
    .product__content
    .summary
    .single_add_to_cart_button {
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 360px) {
  .product__categories .cat .title {
    font-size: 16px;
  }
}
