:root {
  color-scheme: light dark;
  --primary-black: #181D25;
  --primary-white: #FFFFFF;
  --primary-color: #1BB22D;
  --primary-gray: #F5F7FA;
  --border-gray: #D9D9D9;
  --text-gray: #505B73;
  --background-gray: #F7F9FB;
  --placeholder: var(--primary-gray);
  --information-blue: #4c82f7;
  --error-red: #ed1b35;
  --success-green: #00c9a7;
  --warning-orange: #ffba08;
  --footer-text-color: var(--primary-gray);
  --carousel-text-color: var(--white);
  --image-filter: grayscale(1);
  --border: #cad0d9;
}

[data-theme=dark] {
  color-scheme: light dark;
  --primary-black: #B0B3B8;
  --white: #18191a;
  --primary-color: #D4AF37;
  --primary-gray: #242526;
  --border-gray: #3E4042;
  --text-gray: #E4E6EB;
  --background-gray: #242526;
  --placeholder: var(--primary-gray);
  --information-blue: #4c82f7;
  --error-red: #ed1b35;
  --success-green: #00c9a7;
  --warning-orange: #ffba08;
  --footer-text-color: var(--primary-gray);
  --carousel-text-color: var(--white);
  --image-filter: grayscale(0);
  --image-filter: grayscale(10%);
}

[data-theme=dark] img:not([src*=".svg"]) {
  filter: var(--image-filter);
}

[data-theme=dark] img:not([src*=".svg"]) {
  filter: var(--image-filter);
}

[data-theme=dark] svg {
  fill: var(--text-gray);
}

.btn-primary-bbh, .button {
  background-color: var(--primary-black);
  border-color: var(--primary-black);
  color: var(--primary-white);
  border-radius: 1.5625rem;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  display: block;
  box-shadow: none;
  text-align: center;
}

.btn-primary-bbh:hover, .button:hover {
  background-color: var(--primary-color);
  border: var(--primary-color);
  color: var(--primary-white);
}

.btn-primary-bbh:disabled, .button:disabled {
  background: var(--background-gray);
  color: var(--text-gray);
  border: var(--background-gray);
}

@media (min-width: 768px) {
  .btn-primary-bbh {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.woocommerce-cart-form .shop_table thead tr th {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom-color: var(--border);
  font-weight: 500;
}

.woocommerce-cart-form .shop_table tbody tr th, .woocommerce-cart-form .shop_table tbody tr td {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom-color: var(--border);
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-remove .remove {
  color: var(--error-red);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-name {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-name a {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-thumbnail {
  padding: 0;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-thumbnail a img {
  width: 100px;
  height: 100px;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-quantity {
  width: 90px;
}

.woocommerce-cart-form .shop_table tbody .cart_item .product-quantity .quantity label {
  display: none;
}

.woocommerce-cart-form .shop_table tbody .actions {
  padding: 1.75rem 0.75rem;
  border-bottom: none;
}

input, select, textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--primary-white);
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary-blue);
  outline: 0;
  box-shadow: none;
}

.cart_totals, .your-order {
  padding: 1.5rem 2rem;
  background: var(--primary-gray);
  border-radius: 1.5625rem;
}

.cart_totals .shop_table tbody tr th, .cart_totals .shop_table tbody tr td, .your-order .shop_table tbody tr th, .your-order .shop_table tbody tr td {
  background: transparent;
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
}

.cart_totals .shop_table tbody .order-total, .your-order .shop_table tbody .order-total {
  border-bottom: transparent;
}

.checkout-inline-error-message {
  font-size: 0.75rem;
  color: var(--error-red);
  margin-bottom: 0;
}

.woocommerce-billing-fields__field-wrapper label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0;
}

.woocommerce form .form-row {
  margin-bottom: 1rem;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  float: left;
  width: 48%;
  margin-right: 2%;
}

.woocommerce form .form-row.col-md-6 {
  float: left;
  width: 48%;
  margin-right: 2%;
}

.woocommerce form .form-row.col-md-6:last-child {
  margin-right: 0;
}

.woocommerce-privacy-policy-text p {
  color: var(--text-gray);
  font-size: 0.75rem;
  line-height: 1.2;
}

.wc_payment_methods {
  list-style-type: none;
  padding-left: 0;
}

.wc_payment_methods .woocommerce-info {
  margin: 1rem 0;
  padding-left: 15 !important;
}

#order_review .shop_table thead tr th, #order_review .shop_table thead tr td, #order_review .shop_table tfoot tr th, #order_review .shop_table tfoot tr td {
  padding: 1rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom-color: var(--border);
  font-weight: 600;
  background: transparent;
}

#order_review .shop_table tbody tr th, #order_review .shop_table tbody tr td {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom-color: var(--border);
  background: transparent;
}

#order_review .shop_table tfoot th, #order_review .shop_table tfoot td {
  border-bottom: transparent;
}

.variations tbody tr {
  display: flex;
  flex-direction: column;
}

.variations tbody tr th {
  display: flex;
}

.variations tbody tr .value {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding-bottom: 16px;
}

.variations tbody tr .value select {
  width: 250px;
}

.variations tbody tr .value .reset_variations {
  color: var(--error-red);
  text-decoration: none;
}

.woocommerce-variation-add-to-cart .quantity label {
  display: none;
}

.woocommerce-variation-add-to-cart .quantity .form-control {
  width: 100px;
}

.single_add_to_cart_button {
  margin-top: 1rem;
}

.lead {
  line-height: 1.6;
  font-size: 16px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.3125rem 0.75rem;
  height: 38px;
}

.select2-container .select2-selection--single {
  height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  right: 12px;
}

.woocommerce-message:before {
  display: none !important;
}

.section-name .product .card {
  border: none;
}

.section-name .product .card .card-body .price {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--primary-black);
  margin-bottom: 0;
}

.section-name .product .card .card-body .card-title a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-black);
}

.section-name .product .card .card-footer {
  border: none;
  height: 110px;
  padding-bottom: 1rem;
  background: var(--primary-white);
}

.section-name .product .card .card-footer .button {
  background-color: var(--primary-black);
  border-color: var(--primary-black);
  color: var(--primary-white);
  border-radius: 1.5625rem;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  display: block;
  box-shadow: none;
  text-align: center;
}

.section-name .product .card .card-footer .button:hover {
  background-color: var(--primary-color);
  border: var(--primary-color);
  color: var(--primary-white);
}

.section-name .product .card .card-footer .button:disabled {
  background: var(--background-gray);
  color: var(--text-gray);
  border: var(--background-gray);
}

.section-name .product .card .card-footer .added_to_cart {
  display: block;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  margin-top: 0.5rem;
}
/*# sourceMappingURL=shop.css.map */
