.price {
  font-weight: 900;
}
.price ins {
  text-decoration: none;
}
.price del {
  font-weight: 400;
}
.price-saving {
  display: block;
  padding-top: 5px;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--brown);
}
.onsale {
  background-color: var(--wp--preset--color--brown);
  color: #FFFFFF;
  font-size: var(--wp--preset--font-size--small);
  line-height: 32px;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  font-weight: 700;
}
.onsale:before {
  content: "-";
}
.single-product .flex-col {
  position: relative;
}
.single-product .flex-col .onsale {
  right: 15px;
}
.button {
  background-color: var(--wp--preset--color--brown);
  border: 1px solid var(--wp--preset--color--brown);
  color: #FFFFFF !important;
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--regular);
  font-weight: 700;
}
.button:before {
  font-family: "Font Awesome 5 Pro";
  margin-right: 10px;
}
.button.button-secondary {
  border-color: var(--wp--preset--color--magenta);
  background-color: var(--wp--preset--color--magenta);
}
.button.button-fake {
  background-color: transparent;
  color: var(--wp--preset--color--default) !important;
  border: none;
  padding: 0;
}
.button.button-fake:hover {
  background-color: transparent;
}
.button.button-update-cart:before {
  content: "\f01e";
  font-weight: 300;
}
.button.checkout-button {
  display: block;
}
.button.button-gray {
  border-color: var(--wp--preset--color--gray);
  background-color: var(--wp--preset--color--gray);
  color: var(--wp--preset--color--default);
}
.button.button-wide {
  display: block;
}
.button.loading:before {
  content: "\f110";
}
.button.added:before {
  content: "\f00c";
}
.add-to-cart-button-wrapper .added_to_cart {
  display: none;
}
/* ########## Table ########## */
table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--wp--style--block-gap);
}
table.shop_table tr th,
table.shop_table tr td {
  padding: 10px;
}
table.shop_table tr th {
  font-weight: 700;
  text-align: left;
}
/* ########## Form ########## */
.woocommerce-input-wrapper {
  display: block;
}
/* ########## Messages ########## */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
  display: none;
}
.woocommerce-message:before,
.woocommerce-info:before,
.woocommerce-error:before {
  font-family: "Font Awesome 5 Pro";
  margin-right: 10px;
}
.woocommerce-message {
  background-color: var(--wp--preset--color--darkgreen);
  color: #FFFFFF;
}
.woocommerce-message a {
  color: #FFFFFF;
}
.woocommerce-message:before {
  content: "\f058";
}
.woocommerce-info {
  background-color: var(--wp--preset--color--lightgray);
  color: var(--wp--preset--color--default);
}
.woocommerce-info a {
  color: var(--wp--preset--color--default);
}
.woocommerce-info:before {
  content: "\f05a";
}
.woocommerce-error {
  list-style: none;
  background-color: #FF0000;
  color: #FFFFFF;
}
.woocommerce-error a {
  color: #FFFFFF;
}
.woocommerce-error:before {
  content: "\f057";
}
.wc-block-components-notice-banner {
  border-radius: 0 !important;
  border-width: 2px !important;
  font-weight: 700 !important;
}
.wc-block-components-notice-banner.is-success {
  border-color: var(--wp--preset--color--darkgreen) !important;
  background-color: transparent !important;
  color: var(--wp--preset--color--darkgreen) !important;
}
.wc-block-components-notice-banner.is-success > svg {
  background-color: var(--wp--preset--color--darkgreen) !important;
}
/* ########## Columns ########## */
.u-columns {
  display: grid;
  grid-gap: 30px;
}
.u-columns .col-1,
.u-columns .col-2 {
  background-color: var(--wp--preset--color--lightgray);
  padding: 30px;
}
@media (min-width: 1024px) {
  .col2-set {
    grid-template-columns: repeat(2, 1fr);
  }
}
