.button {
  cursor: pointer;
}
.t-shop-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 55px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.t-shop-main {
  flex: 1;
}
.t-shop-main .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0;
}
.t-shop-sidebar {
  display: flex;
  width: 300px;
  /* background: #ddd; */
  border-radius: 20px;
  flex-direction: column;
  align-items: stretch;
}


.t-shop-sidebar > .widget {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--Gray-200, #e9eaeb);
    /* background: var(--White, #fff); */
    /* box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03); */
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.t-shop-sidebar > .widget .widget-title {
    font-size: 15px;
    margin-bottom: 20px;
}
.sidebar-widget.categories {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 8px;
}

.sidebar-widget.categories a {
    border-radius: 12px;
    background: #F3F3F3;
    padding: 14px 12px;
    color: #2A282F;
    font-size: 12px;
    font-weight: 500;
    line-height: 167%; /* 15px */
}

.sidebar-widget.categories a:hover {
    background: var(--Neutral---800, #292929);
    color: #fff;
}

.tavazo-product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tavazo-product-card .tpc-thumb {
  display: flex;
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 40px;
  background: #d9d9d9;
  position: relative;
  align-items: center;
  justify-content: center;
}
.tavazo-product-card .tpc-thumb.with-second-image, .tavazo-product-card .tpc-thumb.with-second-image img {
  transition: 0.4s cubic-bezier(0,.3,1,.73);
}

.tavazo-product-card .tpc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.tpc-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.tpc-thumb img {
  transition: opacity 0.3s ease;
  display: block;
  width: 100%;
}

.tpc-thumb img.hover-image {
  position: absolute;
  /* top: 0; */
  /* bottom: 0; */
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  /* transform: translateX(-100%); */
  transform: scale(1.5);
  filter: blur(30px);
}

.tpc-thumb:hover img.hover-image {
  opacity: 1;
  /* transform: translateX(0%); */
  filter: blur(0px);
  transform: scale(1);
}

.tpc-thumb.with-second-image:hover img:first-child {
  /* opacity: 0; */
  /* transform: translateX(100%); */
  filter: blur(30px);
  transform: scale(1.5);
}

.tavazo-product-card .tpc-thumb .onsale, .single-product .single-product-wrapper .single-product-gallery .onsale {
  background: var(--Primary---500, #2c5744);
  position: absolute;
  top: 30px;
  inset-inline-start: 20px;
  padding: 3px 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 25px;
  z-index: 1;
}

.tavazo-product-card .tpc-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
}

.tavazo-product-card .tpc-info {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.tavazo-product-card a.add_to_cart_button {
  border-radius: 12px;
  border: 1px solid var(--Primary, #0c3c30);
  background: var(--Primary, #0c3c30);
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-start: auto;
  margin-top: 10px;
}
.tavazo-product-card a.add_to_cart_button.loading {user-select: none;opacity: 0.5;pointer-events: none;}

.tavazo-product-card a.add_to_cart_button.loading svg {
  display: none;
}

.tavazo-product-card a.add_to_cart_button.loading:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 100%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}


a.added_to_cart {
    font-size: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    display: inline-flex;
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
	font-family: var(--theme-button-font);
    font-weight: var(--theme-button-font-weight);
    letter-spacing: var(--theme-button-letter-spacing);
    align-items: center;
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 62.4375rem;
    text-decoration: none;
}  


a.added_to_cart:before {
    content: "\f147";
    font: normal 20px / 1 dashicons;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5rem;
}
.tavazo-product-card .quantity.ajax-quantity .tavazo-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.tavazo-product-card .quantity.ajax-quantity .tavazo-loader .loader-2 {
    width: 32px;
    height: 32px;
}

.quantity.ajax-quantity {
  display: none;
}
.cart-with-quantity a.added_to_cart {
    display: none;
}

.cart-with-quantity.product-in-cart .quantity.ajax-quantity {
    display: flex;
}

.cart-with-quantity.product-in-cart a.button {
    display: none;
}


.tavazo-product-card .tpc-title {
  margin: 0;
}

.tavazo-product-card .tpc-title a {
  color: #121212;
  font-size: 20px;
  line-height: 32px; /* 160% */
  font-weight: 500;
}

.tavazo-product-card .tpc-price {
  color: #121212;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1px;
}
.tavazo-product-card .tpc-price del {
  font-size: 14px;
  /* background: #ffe0e0; */
  border-left: 1px solid;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
  color: #888;
}

.tavazo-product-card .tpc-price ins {
  text-decoration: none;
}
.tavazo-product-card .quantity.ajax-quantity {
    /* background: var(--Primary---500, #2c5744); */
    /* padding: 3px 10px; */
    /* border-radius: 50px; */
    gap: 0;
    position: relative;
    margin-top: 13px;
}

.tavazo-product-card .quantity.ajax-quantity svg {
    color: var(--Neutral-900, #060709);
}

.tavazo-product-card .quantity.ajax-quantity .quantity-button {
    cursor: pointer;
    padding: 10px;
}

.t-shop-top-info {
}
.t-shop-top-info .tavazo-breadcrumb {
  margin-top: 10px;
}

.t-shop-top-info .shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.t-shop-top-info .shop-header .search-form.archive-search {
  height: 48px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0;
  max-width: unset;
  flex: 1;
}

.t-shop-top-info .shop-header .woocommerce-ordering {
}

.t-shop-top-info .shop-header .woocommerce-ordering select {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 10px 20px;
}

.shop-archive__title {
  color: #2a282f;
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 20px 0;
}
.tdev-load-more, .no-more-products {
    padding: 55px 0;
}
.t-shop-layout.ajax-loading div#tavazo-loop-wrapper {
    position: relative;
}
.t-shop-layout.ajax-loading div#tavazo-loop-wrapper .tavazo-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    background: #ffffffc9;
}

/******************************************************************************************************************************************/
/*****************************************************  breadcrumb  ***********************************************************************/
/******************************************************************************************************************************************/
.tavazo-breadcrumb {
  margin: 8px 0 16px;
  font-size: 15px;
}
.tavazo-breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tavazo-breadcrumb li {
  display: flex;
  align-items: center;
}
.tavazo-breadcrumb li.sep {
  color: #9ca3af;
}
.tavazo-breadcrumb .tbc-sep {
  display: block;
  width: 8px;
  height: 12px;
}

.tavazo-breadcrumb a {
  color: var(--Neutral---500, #666);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.tavazo-breadcrumb a:hover {
  color: var(--Primary---500, #2c5744);
}

.tavazo-breadcrumb .current span {
  color: var(--Primary---500, #2c5744);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%; /* 21px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}



.custom-ordering.sort-dropdown {
  position: relative;
  display: inline-block;
}
.sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #4b5563;
  cursor: pointer;
  line-height: 1;
  transition: 0.2s;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  width: 100%;
}
.sort-toggle:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.sort-icon {
  display: inline-flex;
}

.sort-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 10px;
  z-index: 50;
  border-radius: 12px;
  border: 1px solid var(--Gray-200, #e9eaeb);
  background: var(--White, #fff);
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
    0 4px 6px -2px rgba(10, 13, 18, 0.03);
}
.sort-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}
.sort-item:not(:last-child) {
  margin-bottom: 7px;
}
.sort-item[aria-selected="true"] {
}
.sort-item[aria-selected="true"],
.sort-item:hover {
  background: #f6f7f9;
}
.sort-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sort-item input:checked + .text,
.sort-item[aria-selected="true"] .text {
  font-weight: 600;
}

html[dir="rtl"] .sort-menu {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

/******************************************************************************************************************************************/
/*****************************************  mini cart (from chat gpt for test)  ***********************************************************/
/******************************************************************************************************************************************/
:root {
  --tmc-bg: #fff;
  --tmc-text: #111827;
  --tmc-muted: #6b7280;
  --tmc-primary: #16a34a;
  --tmc-danger: #ef4444;
  --tmc-border: #e5e7eb;
  --tmc-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  --tmc-radius: 14px;
}
.t-mini-cart-toggle {
    width: 44px;
    height: 44px;
    padding: 10px 16px;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid #d5d7da;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    position: relative;
}

.t-mini-cart-count {
    position: absolute;
    top: -10px;
    inset-inline-start: -10px;
    background: #ee0909;
    color: #fff;
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
    border-radius: 70px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-mini-cart-panel {
    display: none;
    position: absolute;
    inset-inline-end: 0;
    top: 60px;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--Gray-200, #e9eaeb);
    background: var(--White, #fff);
    box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03);
    z-index: 2;
    width: 430px;
}

.t-mini-cart-panel.active {
    display: block;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âª ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ */
.woocommerce-mini-cart {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  padding-inline-end: 0;
  overflow-y: auto;
  max-height: calc(60vh - 200px);
  overflow-x: hidden;
}
.woocommerce-mini-cart::-webkit-scrollbar {
  width: 5px;
}
.woocommerce-mini-cart::-webkit-scrollbar-track {
  background: transparent;
}
.woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
/****************************************************************************************************************************/
.woocommerce-mini-cart-item {
    flex-direction: column;
    align-items: start;
    padding: 8px 0;
    display: flex;
    gap: 8px;
    position: relative;
}
.woocommerce-mini-cart-item.changing {}

.woocommerce-mini-cart-item.changing:before {
    content: '';
    background: #0000001a;
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(2px);
}
.woocommerce-mini-cart-item .title {
    color: var(--Neutral-color-700, #3D3D3D);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%; /* 21px */
}
.woocommerce-mini-cart-item .content {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
}
.woocommerce-mini-cart-item .content .thumbnail {
    width: 88px;
    height: 56px;
    border-radius: 6px;
    border: 1px solid var(--Neutral-50, #F4F4F4);
    background: var(--Neutral-0, #FFF);
    padding: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.woocommerce-mini-cart-item .content .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.woocommerce-mini-cart-item .content .price {margin-inline-start: auto;}
.woocommerce-mini-cart-item .content .price .woocommerce-Price-amount {
    color: var(--Neutral-color-700, #3D3D3D);
    font-weight: 500;
     /* 21px */
}
.woocommerce-mini-cart-item .content .tavazo-quantity-box {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}
.woocommerce-mini-cart-item .content .tavazo-quantity-box del, .woocommerce-mini-cart-item .content .tavazo-quantity-box del bdi {color: #888;font-weight: 400;}
.woocommerce-mini-cart-item .content .tavazo-quantity-box .quantity {
    display: flex;
    flex-direction: row-reverse;
}
.woocommerce-mini-cart-item .content .tavazo-quantity-box .quantity .quantity-button.minus {}
.woocommerce-mini-cart-item .content .tavazo-quantity-box .quantity .input-text.qty.text {}
.woocommerce-mini-cart-item .content .tavazo-quantity-box .quantity .quantity-button.plus {}
.woocommerce-mini-cart-item .content .tavazo-quantity-box .quantity .quantity-button {
    padding: 10px;
    cursor: pointer;
}
.woocommerce-mini-cart-item .content .tavazo-quantity-box ins {
    text-decoration: none;
    padding: 0 10px;
}
.woocommerce-mini-cart-item:not(:last-child) {
    border-bottom: 1px solid var(--Neutral-50, #F4F4F4);
}

.woocommerce-mini-cart-item .content .variation {
    margin-inline-end: auto;
    font-size: 14px;
    display: flex;
}

.woocommerce-mini-cart-item .content .variation dt {
    display: none;
}

.woocommerce-mini-cart-item .content .variation dd {
    margin: 0;
}

.woocommerce-mini-cart-item .content .variation p {
    margin: 0;
}
/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ */
.widget_shopping_cart_content .bottom {
    border-radius: 16px;
    border: 1px solid var(--Neutral-50, #F4F4F4);
    padding: 16px;
}
.woocommerce-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  margin: 0 0 20px 0;
}
.woocommerce-mini-cart__total strong {
  color: var(--Neutral-color-500, #666);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ */
.woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}
.woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 12px;
  user-select: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  border-radius: 12px;
  border: 1px solid;

/* Shadow/xs */
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.woocommerce-mini-cart__buttons .button:active {
  /* transform: translateY(1px); */
}
.woocommerce-mini-cart__buttons .wc-forward {
  border-color: var(--Primary, #0C3C30);
  color: var(--tmc-text);
}
.woocommerce-mini-cart__buttons .wc-forward:hover {
  /* background: #f3f4f6; */
}
.woocommerce-mini-cart__buttons .checkout {
  background: var(--Primary, #0c3c30);
  color: #fff;
}
.woocommerce-mini-cart__buttons .checkout:hover {
  /* filter: brightness(0.95); */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ */
.woocommerce-mini-cart__empty-message {
  text-align: center;
  color: var(--tmc-muted);
  padding: 10px 40px;
  font-size: 14px;
}
.woocommerce-mini-cart__empty-message img {
  
max-height: 150px;
}
.woocommerce-mini-cart__empty-message p{
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ */
.widget_shopping_cart_content .woocommerce-Price-amount {
  white-space: nowrap;
  color: var(--Neutral-900, #060709);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
}
.widget_shopping_cart_content .woocommerce-Price-currencySymbol {
  font-weight: 600;
}

/*** free shipping in cart ******/
.site-cart-notice .site-cart-notice-inner {
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid var(--Neutral---200, #D6D6D6);
    background: var(--Neutral---50, #FFF);
    padding: 8px 12px;
}

.site-cart-notice p {color: var(--Gray-700, #414651);font-size: 12px;font-weight: 600;line-height: 22px; /* 150% */padding: 3px 8px 3px 12px;background: var(--White, #FFF);border-radius: 8px;

/* Shadow/lg */box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03);width: 100%;min-height: 22px;}
.site-cart-notice p > span {

}
.site-cart-notice .site-cart-progress{
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background-color: #ECECEC;
}

.site-cart-notice .site-cart-progress > span {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    border-radius: 4px;
    background-color: var(--Secondary---400, #D5B686);
}


@media (max-width: 768px) {


.header-top .action-btns .tavazo-language-selector {
    display: none;
}

.header-top .action-btns .my-account {
    display: none;
}

.t-mini-cart .t-mini-cart-toggle {
    display: none;
}

.t-mini-cart-panel {
    position: fixed;
    top: 0;
    left: -120%;
    height: 100%;
    z-index: 999999;
    display: block;
    max-width: calc(100% - 40px);
    border-radius: 0;
    padding: 24px 16px;
}
  body.mobile-cart-open .tavazo-shadow {
    position: fixed;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
}
  .t-mini-cart.active .t-mini-cart-panel {
    left: 0;
  }

.t-mini-cart-panel .widget_shopping_cart_content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.woocommerce-mini-cart {
    max-height: unset;
    flex: 1 1 100%;
}
  .woocommerce-mini-cart__buttons .button {
    padding: 12px 10px;
    font-size: 12px;
}

}



/******************************************************************************************************************************************/
/*********************************************  woocommerce notices wrapper  **************************************************************/
/******************************************************************************************************************************************/
.woocommerce-notices-wrapper .woocommerce-message {
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid var(--Primary-500, #17AF26);
  background: var(--Primary-50, #F3FBF4);
  color: var(--Neutral-900, #060709);
  margin-bottom: 26px;
}
.woocommerce-notices-wrapper .woocommerce-message:focus-visible {
    outline: unset;
}
@media (max-width: 768px) {
  .t-shop-layout {
    flex-direction: column;
    padding-top: 10px;
  }
.tavazo-product-card .quantity.ajax-quantity{
    /* display: flex; */
    justify-content: center;
    border: 1px solid #f5f5f5;
    padding: 4px 10px;
}
  .tavazo-product-card .quantity.ajax-quantity > * {
    flex: 1;
  }
  .t-shop-main .products {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 8px), 1fr));
    gap: 16px;
  }
  .tavazo-product-card .tpc-thumb{
    border-radius: 16px;
}
  .t-shop-top-info .shop-header {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .sort-toggle span.sort-label {
    text-wrap-mode: nowrap;
  }

  .sort-menu {
    /* position: fixed; */
    /* top: 50%; */
    inset-inline-start: 0 !important;
    /* transform: translate(-20%); */
    /* box-shadow: 0 0 100px 0 #000; */
  }
}





@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}













































































/********************/
.widget-checkbox-list ul li a input {
    width:0;
    margin: 0;
}

.widget-checkbox-list ul li a input + label {
    border-radius: 12px;
    background: #F3F3F3;
    width: 100%;
    padding: 16px 12px;
    color: rgba(42, 40, 47, 1);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; /* 15px */
    cursor: pointer;
}

.widget-checkbox-list ul li a input:checked {
    
}

.widget-checkbox-list ul li a input:checked + label {
    background: var(--Primary, #0c3c30);
    color: #fff;
}
.widget-checkbox-list ul li a:hover input + label {
    background: var(--Primary, #0c3c30);
    color: #fff;
}

.widget-checkbox-list {}

.widget-checkbox-list ul {
    padding: 0;
    margin: 0;
}

.widget-checkbox-list ul li {
    display: block;
}

.widget-checkbox-list ul li a {
    width: 100%;
    display: flex;
}

.widget-checkbox-list ul li:not(:last-child) {
    margin-bottom: 8px;
}





/********************/
.t-shop-top-info .shop-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a.remove-filter-element:before,a.remove-filter-element:after {
    content: " ";
    width: 10px;
    height: 2px;
    position: absolute;
    left: 10px;
    display: inline-block;
    background-color: #222;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

a.remove-filter-element {
    position: relative;
    padding-left: 15px;
    color: #222;
    letter-spacing: 0.2px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    background: #00000012;
    border-radius: 50px;
    padding: 3px 13px 3px 33px;
    display: flex;
    align-items: center;
    border: 1px solid #0000001a;
}
a.remove-filter-element:hover {
    color: red;
    background: #ff000017;
    border-color: #ffbfbf;
}

a.remove-filter-element:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.remove-filter-element:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

a.remove-filter-element:hover:before,
a.remove-filter-element:hover:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    background-color: red;
}

.filters-container .nav-tabs.nav-tab-box {
    display: inline-block;
}

ul.remove-filter {
    display: flex;
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

ul.remove-filter li {
}

.filter-holder .widget ul {
    list-style: none;
    padding-left: 0;
}





/* tavazo products slider controls */
.tavazo-products-slider-controls {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 32px 0;
}

.tavazo-products-slider-controls .tavazo-slider-nav {
    display: flex;
    gap: 16px;
}

.tavazo-products-slider-controls .tavazo-slider-nav > div {
    display: flex;
    border-radius: 46px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tavazo-products-slider-controls .tavazo-slider-nav > div i {}

.tavazo-products-slider-controls .tavazo-slider-progressbar {
    position: unset;
    flex: 1;
    border-radius: 100px;
    background: var(--White-90, #E4E4E7);
    height: 6px;
}

.tavazo-products-slider-controls .tavazo-slider-progressbar .swiper-pagination-progressbar-fill {
    position: unset;
    height: 6px;
    display: block;
    border-radius: 30px;
    background: var(--Grey-15, #262626);
}

.tavazo-products-slider-controls .tavazo-slider-nav > div:hover {
    border-radius: 46px;
    background: var(--Grey-15, #262626);
    color: #fff;
    border-color: var(--Grey-15, #262626);
}




/**********************************************/
/*******        woocommerce-error        ******/
/**********************************************/
ul.woocommerce-error li {
  list-style-type: none;
  font-size: 14px;
}

button.woocommerce-button + ul.woocommerce-error {
  padding: 0;
  margin: 0;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid red;
  background: #f9e3e3;
  color: var(
  --Neutral-900, #060709);
  margin-bottom: 26px;
}






















.woocommerce-notices-wrapper {
    width: 100%;
}

.woocommerce-notices-wrapper .woocommerce-error {
    border-radius: 12px;
    border: 1px solid var(--Neutral---100, #EBEBEB);
    background: var(--White, #FFF);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-notices-wrapper .woocommerce-error li {
    list-style-type: none;
    color: var(--Gray-900, #181D27);
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px; /* 184.615% */
}

.woocommerce-notices-wrapper .woocommerce-error:focus-visible {
    outline: unset;
}

.woocommerce-notices-wrapper .woocommerce-error:focus {
    outline: unset;
    border: 1px solid;
}

/* price filter */

.widget .price_slider_wrapper .price_slider_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.widget .price_slider_wrapper .price_slider_amount > * {
  /* -webkit-box-flex: 1; */
  -ms-flex: 1 0 0%;
  /* flex: 1 0 0%; */
}
.widget .price_slider_wrapper .price_slider_amount > *.separator {
  /* -webkit-box-flex: 0; */
  -ms-flex: 0 0 auto;
  /* flex: 0 0 auto; */
  /* margin: 1.25rem 0.625rem 0; */
}
.widget .price_slider_wrapper .price_slider_amount > * .price-placeholder {
  display: block;
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-bottom: 0.25rem;
}
.widget .price_slider_wrapper .price_slider_amount > * input {
  block-size: 2.375rem;
  border: 1px solid #a1a1aa;
  padding-inline-start: 0.875rem;
  padding-inline-end: 0.875rem;
}
.widget .price_slider_wrapper .price_slider_amount > * input:hover {
  border-color: #71717a;
}
.widget .price_slider_wrapper .price_slider_amount > * input:focus, .widget .price_slider_wrapper .price_slider_amount > * input:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #71717a;
}
.widget .price_slider_wrapper .ui-widget-content {
  position: relative;
  block-size: 0.1875rem;
  background-color: #e4e4e7;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
  margin-right: 10px;
}
.widget .price_slider_wrapper .ui-widget-content .ui-slider-range {
  position: absolute;
  display: block;
  inline-size: 100%;
  block-size: 0.1875rem;
  border: 0;
  border-radius: 0.625rem;
  background-color: #71717a;
  z-index: 1;
}
.widget .price_slider_wrapper .ui-widget-content .ui-slider-handle {
  position: absolute;
  inline-size: 0.875rem;
  block-size: 0.875rem;
  background-color: #18181b;
  border-radius: 50%;
  inset-block-start: -0.375rem;
  inset-inline-start: 0;
  margin: 0;
  outline: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  z-index: 1;
}
.widget .price_slider_wrapper .ui-widget-content .ui-slider-handle:last-child {
  /* inset-inline-start: 100%; */
  /* -webkit-transform: translateX(-100%); */
  /* transform: translateX(100%); */
}
.widget .price_slider_wrapper .price_slider_bottom {
  display: flex;
  flex-direction: column-reverse;
}
.widget .price_slider_wrapper .price_slider_bottom button {
  border-radius: 12px;
  background: var(--Primary, #0c3c30);
  color: #fff;
  padding: 10px 10px;
}
.widget .price_slider_wrapper .price_slider_bottom button:hover {
  background-color: #d4d4d8;
}
.widget .price_slider_wrapper .price_slider_bottom .price_label {
  font-size: 0.875rem;
  margin-inline-end: auto;
}

.price_slider.ui-slider.ui-corner-all.ui-slider-horizontal.ui-widget.ui-widget-content {
    direction: ltr !important;
}
/* === Crisp bubble offset override (theme-owned, safe) === */
#crisp-chatbox [role="button"]{
  position: fixed !important;                 /* defend against position overrides */
  right: 16px !important;                     /* adjust if you want more left space */
  bottom: var(--tavazo-crisp-bottom, 80px) !important; /* JS sets this value */
  z-index: 2147483647 !important;             /* stay above nav shadows if any */
}






/* select shipping method */
/* ÃƒËœÃ‚Â­ÃƒËœÃ‚Â°Ãƒâ„¢Ã‚Â ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â§Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã¢â‚¬Å¾ Ãƒâ„¢Ã‚Â¾Ãƒâ€ºÃ…â€™ÃƒËœÃ‚Â´ÃƒÂ¢Ã¢â€šÂ¬Ã…â€™Ãƒâ„¢Ã‚ÂÃƒËœÃ‚Â±ÃƒËœÃ‚Â¶ Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ€ºÃ…â€™ÃƒËœÃ‚Â³ÃƒËœÃ‚Âª */
.woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Ãƒâ„¢Ã‚ÂÃƒËœÃ‚Â§ÃƒËœÃ‚ÂµÃƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¡ ÃƒËœÃ‚Â¨Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â¯ÃƒÅ¡Ã‚Â©Ãƒâ„¢Ã¢â‚¬Â¦Ãƒâ„¢Ã¢â‚¬Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã…â€™Ãƒâ„¢Ã¢â‚¬Â¡ÃƒËœÃ‚Â§ */
}

/* Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â®Ãƒâ„¢Ã‚ÂÃƒâ€ºÃ…â€™ ÃƒÅ¡Ã‚Â©ÃƒËœÃ‚Â±ÃƒËœÃ‚Â¯Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â±ÃƒËœÃ‚Â§ÃƒËœÃ‚Â¯Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã‹â€  ÃƒËœÃ‚Â§ÃƒËœÃ‚ÂµÃƒâ„¢Ã¢â‚¬Å¾Ãƒâ€ºÃ…â€™ */
.woocommerce-shipping-methods input[type="radio"] {
  display: none;
}

/* ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â§Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â¯ÃƒÅ¡Ã‚Â©Ãƒâ„¢Ã¢â‚¬Â¦Ãƒâ„¢Ã¢â‚¬Â¡ÃƒÂ¢Ã¢â€šÂ¬Ã…â€™Ãƒâ„¢Ã¢â‚¬Â¡ÃƒËœÃ‚Â§ */
.woocommerce-shipping-methods label {
  width: 100%;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  /* opacity: 0.6; */
  border-radius: 10px;
  border: 1px solid #E6E8E7;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  color: var(--Neutral---700, #3D3D3D);
  align-items: center;
}

.woocommerce-shipping-methods label {
    margin-inline-end: 0;
    --tavazo-svg-first: #222;
    --tavazo-svg-second: #fff;
    color: #222;
}
.woocommerce-shipping-methods label svg {
  margin-inline-end: 10px;
  width: 38px;
}

/* ÃƒËœÃ‚Â­ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Âª Ãƒâ„¢Ã¢â‚¬Â¡ÃƒËœÃ‚Â§Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â± */
.woocommerce-shipping-methods label:hover {
  background: #f5fff8;
  border-color: #cfedcd;
}

/* ÃƒËœÃ‚Â­ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Âª ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Â ÃƒËœÃ‚ÂªÃƒËœÃ‚Â®ÃƒËœÃ‚Â§ÃƒËœÃ‚Â¨ ÃƒËœÃ‚Â´ÃƒËœÃ‚Â¯Ãƒâ„¢Ã¢â‚¬Â¡ */
.woocommerce-shipping-methods input[type="radio"]:checked + label {
  background: var(--Primary, #0c3c30);
  border-color: var(--Primary, #0c3c30);
  color: #fff;
  opacity: 1;
  --tavazo-svg-first: #fff;
  --tavazo-svg-second: var(--Primary, #0c3c30);
  color: #fff;
}

/* ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â§Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã¢â‚¬Å¾ Ãƒâ„¢Ã¢â‚¬Å¡Ãƒâ€ºÃ…â€™Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Âª ÃƒËœÃ‚Â¯ÃƒËœÃ‚Â§ÃƒËœÃ‚Â®Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â¯ÃƒÅ¡Ã‚Â©Ãƒâ„¢Ã¢â‚¬Â¦Ãƒâ„¢Ã¢â‚¬Â¡ */
.woocommerce-shipping-methods label .woocommerce-Price-amount {
  font-weight: 600;
  margin-inline-start: auto;
}

.woocommerce-shipping-methods li {
    margin: 0 !important;
}
.shipping-method-box {direction: rtl;text-align: start !important;margin-bottom: 20px !important;border: solid var(--Neutral-50, #f4f4f4);background: var(--Neutral---50, #FFF);padding: 18px 0 20px;border-width: 1px 0px 1px 0px;}

.shipping-method-box > span {
    color: var(--Neutral---900, #1A1A1A);
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 150% !important; /* 24px */
}

.shipping-method-box > ul#shipping_method {
    margin-top: 12px !important;
}
