@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

[hidden] {
  display: none;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin-top: 0 !important;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  margin: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* ---------------------------- */

:root {
  --font-size--1: 12px;
  --font-size--05: clamp(0.875rem, 0.8239rem + 0.2273vw, 1rem);
  /* Step 0: 16px → 18px */
  --font-size-0: clamp(0.75rem, 0.5966rem + 0.6818vw, 1.125rem);
  /* Step 1: 18px → 26px */
  --font-size-1: clamp(1.125rem, 0.9205rem + 0.9091vw, 1.625rem);
  /* Step 2: 26px → 30px */
  --font-size-2: clamp(1.625rem, 1.5227rem + 0.4545vw, 1.875rem);
  /* Step 3: 40px → 96px */
  --font-size-3: clamp(2.25rem, 0.7159rem + 6.8182vw, 6rem);

  --line-height--1: 16px;
  --line-height--05: 1.2;
  --line-height-0: clamp(1rem, 0.7955rem + 0.9091vw, 1.5rem);
  --line-height-1: clamp(1.5rem, 1.3977rem + 0.4545vw, 1.75rem);
  --line-height-2: clamp(1.75rem, 1.4432rem + 1.3636vw, 2.5rem);

  --font-family: "Raleway", sans-serif;

  --color-black: #000;
  --color-white: #fff;
  --color-text: var(--color-black);
  --color-background: #fff;
  --color-accent: #66409b;
  --color-accent-2: #d7bef9;
  --color-gray: #f5f5f5;
  --color-gray-dark: #929292;

  --space-sm: 15px;
  --space-m: 20px;
  --space-l: 30px;
  --space-l-2: 40px;
  --space-xl: 50px;
  --space-xxl: 65px;
  --space-3xl: 90px;

  --container-width: 1900px;
  --header-sticky-top: 0px;

  --wc-form-border-radius: 0;

  --glsr-star-empty: url("/wp-content/themes/tabubox/public/images/icons/empty-star.svg") !important;
  --glsr-star-full: url("/wp-content/themes/tabubox/public/images/icons/filled-star.svg") !important;
  --glsr-star-half: url("/wp-content/themes/tabubox/public/images/icons/half-star.svg") !important;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-0);
  font-weight: 500;
  line-height: var(--line-height-0);
  color: var(--color-text, #000);
  background-color: var(--color-background, #fff);
}

body.admin-bar {
  --header-sticky-top: 32px;
}

h3 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
}

ins {
  text-decoration: none;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.repel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: var(--repel-vertical-alignment, center);
  gap: var(--gutter, var(--space-m));
}

.repel[data-nowrap] {
  flex-wrap: nowrap;
}

.cluster {
  display: flex;
  flex-wrap: var(--cluster-wrap, wrap);
  gap: var(--gutter, var(--space-m));
  justify-content: var(--cluster-horizontal-alignment, flex-start);
  align-items: var(--cluster-vertical-alignment, center);
  flex-direction: var(--cluster-direction, row);
}

.cluster[data-reverse] {
  flex-direction: row-reverse;
}

.container {
  max-width: calc(var(--container-width) + (var(--space-m) * 2));
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.grid {
  display: grid;
  gap: var(--gutter, var(--space-m));
  grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
}

/* Main navigation styles Begin */
.main-nav {
  --gutter: 30px;

  --container-width: 1700px;
  background-color: var(--color-black);
  color: var(--color-white);

  position: sticky;
  top: var(--header-sticky-top);
  z-index: 10;
}

.main-nav a {
  text-decoration: none;
  padding: 5px 0;
}

.main-nav a:hover {
  text-decoration: underline;
}

.header-buttons {
  --gutter: var(--space-sm);
  width: 100%;
  max-width: 188px;
}

.header-buttons img {
  height: 36px;
}

#menu-header {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

#menu-header .menu-item {
  padding: 29px 0;
}

#menu-header .category-dropdown {
  padding: 20px 0;
  width: 100%;
  left: 0;
  max-width: 100vw;
  color: var(--color-black);
  position: absolute;
  top: 100%;
  opacity: 0;
  background-color: #ebebeb;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#menu-header .product-title {
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}

#menu-header .product-thumb {
  transform: scale(1.06);
  transform-origin: bottom center;
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-delay: 0s !important;
}

#menu-header .category-dropdown .product-list {
  max-height: calc(100vh - (86px + var(--header-sticky-top)));
  padding: 0 20px;
  overflow-y: auto;
}

#menu-header .product-info {
  display: flex;
  flex-direction: column;
}

#menu-header .product {
  overflow: hidden;
  padding-bottom: 5px;
}

@media only screen and (min-width: 1000px) {
        
    #menu-header .product {
      margin-bottom: 0 !important;
    }
}

#menu-header .product-thumb {
  background-color: white;
}

#menu-header .has-dropdown:hover > a {
  color: var(--color-accent-2);
  text-decoration: none;
}

#menu-header .has-dropdown:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#menu-header .has-dropdown:hover .product-thumb {
  transition-delay: inherit;
  transform: scale(1);
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cart-button {
  position: relative;
  display: inline-block;
  width: 24px;
}

#order_details .product-qnty,
.cart-count {
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: var(--color-accent);
  border-radius: 50%;
  width: 24px;
  height: 24px;

  position: absolute;
  right: 0;
  right: -13px;
  top: 13px;
}

#order_details .product-qnty {
  background: white;
  color: var(--color-accent);
  top: -10px;
}

@media only screen and (max-width: 1290px) {
  .main-nav {
    --gutter: 20px;
  }

  #menu-header {
    padding-left: 0;
  }
}

@media only screen and (max-width: 1190px) {
  .header-buttons {
    width: auto;
  }
  .main-nav .repel {
    flex-flow: row wrap;
    row-gap: 0;
    max-width: 970px;
  }

  .main-nav .header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
  }

  #menu-header .menu-item {
    padding: 17px 0;
  }
}

@media only screen and (max-width: 880px) {
  #menu-header {
    display: none;
  }

  .mobile-open #menu-header {
    display: block !important;
    position: fixed;
    z-index: 10;
    background: white;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    padding: 60px 20px;
    color: black;
  }

  .mobile-open #menu-header .menu-item > a {
    font-size: 14px;
    display: flex;
    max-width: 230px;
    width: 100%;
    padding: 7px 0;
    justify-content: space-between;
    gap: 5px;
    padding-right: 20px;
  }

  .mobile-open #menu-header .menu-item > a:after {
    content: "";
    display: block;
    width: 25px;
    height: 27px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='30' viewBox='0 0 24 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 14.8182L23 14.8182M23 14.8182L12 1.00349M23 14.8182L12 28.6328' stroke='%23303030' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }

  .mobile-open #menu-header .menu-item {
    padding: 0;
  }

  .mobile-open #mobile-toggle-close svg {
    width: 20px;
    height: 20px;
  }

  .mobile-open #mobile-toggle-close {
    display: block !important;
    position: absolute;
    z-index: 20;
    top: 10px;
    left: 20px;
  }

  #mobile-toggle {
    display: block !important;
  }

  .main-nav .header-logo {
    width: auto;
  }

  .main-nav .repel,
  .header-buttons .cluster {
    flex-wrap: nowrap;
  }

  .mobile-dropdown-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }

  #menu-header .category-dropdown.mobile-dropdown-active {
    top: 0;
    padding: 50px 0 40px;
  }

  #menu-header .category-dropdown .product-list {
    padding: 0;
  }

  .woocommerce
    .mobile-dropdown-active
    ul.products[class*="columns-"]
    li.product,
  .woocommerce-page
    .mobile-dropdown-active
    ul.products[class*="columns-"]
    li.product {
    width: 100% !important;
    float: none !important;
  }
}

#mobile-toggle-dropdown-back {
  position: absolute;
  width: 40px;
  height: 55px;
  z-index: 20;
  left: 50px;
  color: black;
}

/* Main navigation styles End */

#main {
  position: relative;
  z-index: 1;
}

/* Buttons Begin */

.btn,
.xoo-wsc-sp-atc .button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  #respond
  input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  input.button,
.single_add_to_cart_button,
.continue-to-checkout {
  width: var(--btn-width, 100px);
  height: var(--btn-height, 50px);
  font-size: var(--btn-font-size, var(--font-size-0));
  line-height: var(--btn-line-height, var(--line-height-0));
  font-weight: var(--btn-font-weight, 500);
  border-radius: var(--btn-border-radius, 50px);

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.single_add_to_cart_button.w-full {
  width: 100%;
}

.continue-to-checkout {
  padding: 0 18px;
  text-align: center;
}

.btn-big {
  --btn-width: clamp(11.5rem, 5.4659rem + 26.8182vw, 26.25rem);
  --btn-height: clamp(2.75rem, 1.6761rem + 4.7727vw, 5.375rem);
  --btn-font-size: var(--font-size-1);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-gray {
  background-color: #d9d9d9;
  color: var(--color-black) !important;
}

.continue-to-checkout,
.single_add_to_cart_button {
  --btn-width: auto;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  cursor: pointer;
  height: 59px;
  padding: 0 40px;
  color: var(--color-white);
}

.continue-to-checkout:hover,
.single_add_to_cart_button:hover {
  background: var(--color-white);
  color: var(--color-accent);
}

.gift-option-button {
  --btn-width: 200px;
  min-width: 200px;
  align-items: center;
  gap: 16px;
}

/* Buttons End */

/* Home Page Sliders Begin */
.home-slider .slide-item {
  background-position: center;
  background-size: cover;

  width: 100%;
  aspect-ratio: 19 / 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--color-white);
}

.home-slider .slide-item .slide-content {
  text-align: center;
}

.home-slider .slide-item h2 {
  font-size: var(--font-size-3);
  font-weight: 800;
  margin-bottom: var(--space-l);
}

.home-slider[data-content-bottom] .slide-item {
  justify-content: flex-end;
  padding-bottom: 100px;
}

.home-slider[data-content-bottom] .slide-item h2 {
  font-size: var(--font-size-3);
}
@media only screen and (max-width: 767px) {
    .home-slider[data-content-bottom] .slide-item {
        padding-bottom: 20px;
    }
}

/* Home Page Sliders End */

/* Home Page Two columns Begin */
.home-two-column-blocks {
  --cluster-wrap: nowrap;
  --cluster-vertical-alignment: normal;
  --gutter: 0;

  margin-top: 2px;
  margin-bottom: 2px;
  max-width: 1900px;
  margin: 2px auto 2px;
}

.home-two-column-blocks .cluster > div {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 950 / 600;
}

.home-two-column-blocks .cluster-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 35px;
}

.home-two-column-blocks .cluster-text > div {
  max-width: 875px;
  text-align: center;
  display: flex;
  gap: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-two-column-blocks .cluster-text p:first-of-type {
  margin: 0;
}

.home-two-column-blocks h3 {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  font-weight: 500;
}

.home-two-column-blocks .cluster-description {
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
}

@media only screen and (max-width: 900px) {
  .home-two-column-blocks .cluster {
    flex-direction: column;
  }

  .home-two-column-blocks .cluster > div {
    width: 100%;
  }

  .home-two-column-blocks .cluster-text {
    padding: 20px;
  }

  .home-two-column-blocks .cluster-text > div {
    gap: 20px;
  }
}

/* Home Page Two columns End */

/* Home Page Bottom Grid */
.home-bottom-grid {
  gap: 2px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  color: white;
  margin-bottom: 12px;
}

.home-bottom-grid > div {
  display: flex;
  align-items: flex-end;
  width: 100%;
  background-repeat: no-repeat;
  background-color: var(--color-accent);
  padding: 25px 20px;
  text-align: center;
  background-size: cover;
}

.home-bottom-grid > div,
.home-bottom-grid > div > div,
.home-bottom-grid > div > div > div {
  height: 100%;
}

.home-bottom-grid > div > div > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-bottom-grid .home-bottom-grid__no-bg {
  text-align: left;
}

.home-bottom-grid h3 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
}

@media only screen and (max-width: 1220px) {
  .home-bottom-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .home-bottom-grid > div,
  .home-bottom-grid > div > div,
  .home-bottom-grid > div > div > div {
    aspect-ratio: 1;
  }
}

@media only screen and (max-width: 880px) {
  .home-bottom-grid {
    grid-template-columns: auto;
  }
}

/* Home Page Bottom Grid End */

/* Footer styles Begin */
.footer {
  --cluster-vertical-alignment: flex-start;

  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 35px 25px;
}

.footer .container {
  --gutter: 100px;

  padding: 0;
  max-width: 1520px;
}

.footer .footer-links {
  --gutter: 50px;
}

.footer h4 {
  font-weight: 500;
}

.footer ul {
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer li:not(:last-child) {
  margin: 0 0 5px 0;
}

.footer-logo img {
  width: 100%;
  max-width: 226px;
  margin-top: 10px;
}

.footer-socials {
  --gutter: 7px;

  margin-top: 25px;
}

.socials-buttons a,
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-gray-dark);
}

.socials-buttons img,
.footer-socials img {
  width: 28px;
  height: 28px;
  margin: 0;
}

.socials-buttons {
  display: flex;
  gap: 10px;
  margin-top: var(--space-l);
  margin-bottom: var(--space-xl);
}

.copyright {
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
  margin-top: 100px;
  text-align: center;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 880px) {
  .footer .container {
    gap: 50px;
  }
}

/* Footer styles End */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Single Product Begin */

.tb-breadcrumb {
  margin-bottom: 20px;
}

.tb-breadcrumb ol {
  padding: 0;
  margin: 0;
  display: flex;
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
  --gutter: 0;
}

.tb-breadcrumb ol a {
  text-decoration: none;
}

.tb-breadcrumb ol a:hover {
  text-decoration: underline;
}

.tb-breadcrumb ol li:not(:last-of-type)::after {
  display: block;
  content: ">";
  margin: 0 5px;
}

.single .product-section {
  position: relative;
  max-width: 1290px;
  padding: var(--space-xxl) var(--space-m);
  margin: 0 auto;
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 620px) 1fr;
}

.single .gallery-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single .gallery-container .slide {
  break-inside: avoid;
  position: relative;
}

.single .gallery-container .slide img {
  object-fit: cover;
  width: 100%;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  position: sticky;
  top: calc((var(--header-sticky-top) + 20px) + 80px);
  z-index: 10;

  float: none;
  width: 100%;
  clear: both;
}

.single .product_title {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  font-weight: 500;
}

.single .price {
  margin-bottom: 30px;
  margin-top: 40px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  div.product
  span.price {
  color: var(--color-black);
  font-size: 28px;
  font-weight: 400 !important;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  font-weight: 400 !important;
  text-decoration: none;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
}

.single .quantity .qty.text {
  font-size: 32px;
  padding: 12px 35px 12px 25px;
  border-radius: 0;
}

.single .woocommerce-product-details__short-description ul {
  padding-left: 22px;
}

.single .woocommerce-product-details__short-description li {
  margin-bottom: 5px;
}

.woocommerce-tabs {
  margin-top: 40px;
}

.woocommerce-tabs > section:not(:first-of-type) {
  margin-top: 30px;
}

.woocommerce-tabs h2 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
  margin: 0;
}

.product-ingredients.cluster,
.product-ingredients .cluster {
  --gutter: 20px;
  --cluster-wrap: nowrap;
  --cluster-horizontal-alignment: space-between;
  align-items: center;
}
.product-ingredients .cluster {
  --cluster-direction: column;
}
.custom-related-products {
  --cluster-direction: column;
  --gutter: 20px;
}

.custom-related-products .grid {
  --gutter: 20px;
}

.custom-related-products a {
  text-decoration: none;
}

.custom-related-products a:hover {
  text-decoration: underline;
}

.custom-related-products ins {
  text-decoration: none;
}

.custom-related-products .product-card-image {
  margin-bottom: 20px;
}

.product-card-title {
  font-size: 24px;
  line-height: 1.2;
}

.product-card-price {
  font-size: 20px;
  line-height: 1.2;
}

.custom-related-products {
  margin-bottom: 70px;
}

.woocommerce div.product form.cart::after,
.woocommerce div.product form.cart::before {
  content: "" !important;
  display: none !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  #respond
  input#submit.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  a.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  button.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  input.button.added::after {
  content: "" !important;
  display: none !important;
}

.added_to_cart.wc-forward {
  display: none !important;
}

@media only screen and (max-width: 1000px) {
  .single .product-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 990px) {
  .single .product-section {
    grid-template-columns: auto;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .product-ingredients.cluster,
  .product-ingredients .cluster {
    --cluster-wrap: wrap;
  }

  .single-product .cart .select-popout {
    margin-right: 10px;
    min-width: 100px;
    height: 38px;
  }

  .continue-to-checkout,
  .single_add_to_cart_button {
    height: 38px;
    padding: 0 20px;
  }

  .single-product .cart .select-popout .select-popout__toggle {
    font-size: 20px;
  }

  .single-product .cart .select-popout .select-popout__toggle svg {
    width: 20px;
  }

  .single-product .cart .select-popout .select-popout__custom:not([hidden]) {
    width: 100px;
    font-size: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .woocommerce div.product {
    padding: 0 var(--space-sm);
  }

  .custom-related-products .grid {
    --columns: 2;
  }

  .custom-related-products h3 {
    font-size: var(--font-size-1);
    line-height: var(--line-height-1);
  }
}

/* Single Product End */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Quantity input begin */
.select-popout {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  display: inline-block;
  min-width: 140px;
  height: 50px;
  margin-right: 30px;
}

.select-popout__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px 9px 20px;
  background: #fff;
  border: 1px solid #000;
  width: 100%;
  cursor: pointer;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.select-popout__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  z-index: 10;
  padding: 0;
  margin: 0;
  height: 150px;
  overflow: auto;
}

.select-popout__item a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  color: #000;
}

.select-popout__item a:hover {
  background: #eee;
}

.select-popout__custom:not([hidden]) {
  display: flex;
  border: 1px solid #000;
  background: #fff;
  width: 140px;
  justify-content: space-between;
  align-items: center;

  padding: 5px 12px 6px 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  height: 50px;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
}

.qty-minus,
.qty-plus {
  background: none;
  border: none;
  cursor: pointer;
}

.select-popout [type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select-popout input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.gift-option-block {
  margin-bottom: 40px;
}

.gift-option-form {
  --cluster-wrap: nowrap;
  --cluster-horizontal-alignment: space-between;
}

.gift-option-form > .cluster {
  --gutter: 0;
}

.gift-option-form .woocommerce-Price-amount {
  white-space: nowrap;
}

@media only screen and (max-width: 990px) {
  .gift-option-block {
    position: relative;
    padding-top: 30px;
    margin-bottom: 0;
  }

  .gift-option-form {
    --gutter: 0;
  }

  .gift-option-title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
  }

  .gift-option-button {
    width: 180px !important;
    min-width: 180px;
    height: 38px !important;
  }

  .gift-option-thumbnail {
    width: 40px;
  }
}

/* Quantity input end */

/*  Cart Begin */
.cart .checkout-button {
  --btn-width: 100%;
  --btn-height: auto;
}
.woocommerce-cart .content-page {
  max-width: 1200px;
  margin: 0 auto;
}

.cart-wrapper-page {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.woocommerce-cart-form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  flex: 1 1 auto;
  margin-right: 50px;
}

.cart-collaterals {
  position: sticky;
  top: 10px;
  flex: 0 0 300px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

.woocommerce-cart-form .cart-page-items-wrapper {
  width: 100%;
  border-top: 1px solid var(--color-black);
  margin-top: 15px;
}

.woocommerce-cart-form .product-name p {
  margin: 0;
}

.woocommerce-cart-form .add-to-cart-products {
  padding: 15px 0;
  border-bottom: 1px solid var(--color-black);
  align-items: stretch;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

.woocommerce-cart-form .product-thumbnail {
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}

.woocommerce-cart-form .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.woocommerce-cart-form .product-data {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 90px);
  padding-left: 30px;
}

.woocommerce-cart-form .product-name {
  width: 40%;
}

.woocommerce-cart-form .product-price {
  margin-bottom: 8px;
  width: calc(60% - 95px);
  padding: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.woocommerce-cart-form .product-price ins {
  text-decoration: none;
}

.woocommerce-cart-form .product-price del {
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
}

.woocommerce-cart-form .remove_product {
  text-decoration: none;
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-black);
}

.woocommerce-cart-form .product-quantity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.woocommerce-cart-form .product-quantity .select-popout {
  margin-right: 0;
}

.woocommerce-cart-form .remove_product:hover {
  text-decoration: underline;
}

.woocommerce-cart .shop_table {
  border-top: 1px solid var(--color-black);
  margin-top: 15px;
}

.woocommerce-cart .order-total,
.woocommerce-cart .cart-subtotal {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-black);
}

/*  Cart End */

/* Sticky Cart Begin */
.wpcsb-wrapper .wpcsb-container {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: var(--space-m) var(--space-xl);
}

.wpcsb-wrapper .wpcsb-container .wpcsb-product {
  max-width: 100%;
}

.wpcsb-wrapper
  .wpcsb-container
  .wpcsb-product
  .wpcsb-product-info
  .wpcsb-product-data {
  justify-content: flex-start;
  gap: 30px;
}

.wpcsb-wrapper
  .wpcsb-container
  .wpcsb-product
  .wpcsb-product-info
  .wpcsb-product-image {
  display: none;
}

.wpcsb-wrapper
  .wpcsb-container
  .wpcsb-product
  .wpcsb-product-info
  .wpcsb-product-data
  .wpcsb-product-name {
  margin: 0;
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  flex-grow: 0;
}

.wpcsb-wrapper
  .wpcsb-container
  .wpcsb-product
  .wpcsb-product-info
  .wpcsb-product-data
  .wpcsb-product-price {
  font-size: 32px;
  font-weight: 400;
}

.wpcsb-wrapper .wpcsb-container .wpcsb-product .wpcsb-btn {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 1px solid var(--color-white);
}

.wpcsb-wrapper .wpcsb-container .wpcsb-product .wpcsb-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

@media only screen and (max-width: 767px) {
    .wpcsb-wrapper .wpcsb-container {
        padding: 10px 15px;
    }
    
    .wpcsb-product-price {
        font-size: var(--font-size-1) !important;
        line-height: var(--line-height-1) !important;
    }
    
    .wpcsb-wrapper .wpcsb-container .wpcsb-product .wpcsb-btn {
        --btn-height: 32px;
    }
}
/* Sticky Cart End */

/* Reviews Single Product Begin*/
.glsr-summary-rating,
.glsr-summary-text {
  font-size: var(--font-size-0) !important;
  line-height: var(--line-height-0) !important;
  font-weight: 500 !important;
}

.glsr-summary-text {
  flex: auto !important;
}

.glsr-summary .glsr-star {
  background-repeat: no-repeat;
}

.glsr-stars {
  gap: 5px;
}

/* Reviews Single Product End */

/* Archive Page Begin */

.archive .content-area {
  padding: var(--space-l) var(--space-xl);
}

.archive .woocommerce-products-header {
  padding: var(--space-xl) 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 1% 2.5em 0;
  width: 24%;
}

.card-container {
  text-align: center;
}

.woocommerce ul.products li.product .card-details,
.woocommerce-page ul.products li.product .card-details {
  margin-top: 5px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
  padding: var(--space-m) 0 0 5px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  ul.products
  li.product
  .price {
  color: var(--color-black);
  font-size: var(--font-size-0);
  line-height: var(--font-size-0);
  font-weight: 500;
}

@media only screen and (max-width: 880px) {
  .archive .content-area {
    padding: 20px;
  }

  .archive .woocommerce-products-header {
    padding: 20px 0;
  }
}

/* Archive Page End */

/* Side Cart Begin */
.xoo-wsc-container {
  background-color: #f3f3f3;
}

.xoo-wsc-ft-btn-cart,
.xoo-wsc-ft-btn-continue {
  display: none !important;
}

.tab-xoo-header {
  padding: 0;
  font-weight: 500;
}

.xoo-wsc-header,
.xoo-wsc-drawer-header,
.xoo-wsc-sl-heading {
  padding: 0;
}
.xoo-wsch-top {
  padding: var(--space-sm);
}

.xoo-wsc-pattern-card,
.xoo-wsc-img-col img,
.xoo-wsc-img-col,
.xoo-wsc-sm-back-cont {
  border-radius: 0;
}

.xoo-wsc-img-col {
  min-width: 90px;
  height: auto;
  display: flex;
  align-self: flex-start;
}

.xoo-wsc-img-col:not(:has(a)) {
  padding: 10px;
}

.xoo-wsc-body {
  padding: 0;
  font-weight: 500;
  flex-grow: inherit;
  background: #e6e6e6;
}
.xoo-wsc-product {
  border: none;
  padding: var(--space-sm);
}

.xoo-wsc-product:not(:last-of-type) {
  border-bottom: 1px solid black;
}

.xoo-wsc-sm-info {
  height: 100%;
}

.tab-xoo-qty-del {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.xoo-wsc-smr-del {
  font-size: 28px;
}

.xoo-wsc-sum-col {
  justify-content: flex-start;
}

span.xoo-wsc-pname,
span.xoo-wsc-pname a {
  font-size: var(--font-size--05);
  line-height: var(--line-height--05);
  font-weight: 500;
}

.xoo-wsc-body,
.xoo-wsc-body span.amount,
.xoo-wsc-body a {
  font-size: 14.4px;
  line-height: 1.1;
  font-weight: 500;
}

.xoo-wsc-body a {
  text-decoration: none;
}

.xoo-wsc-product del {
  opacity: 1;
  color: #929292 !important;
}

.xoo-wsc-product del span.amount {
  color: #929292 !important;
}

.xoo-wsc-sm-left > *:not(:last-child) {
  padding-bottom: 5px;
}
.xoo-wsc-sm-left {
  justify-content: flex-start;
}

input[type="number"].xoo-wsc-qty {
  font-size: var(--font-size--1);
  line-height: var(--font-size--1);
  border: none;
  padding: 5px 10px;
  height: 35px;
}

.xoo-wsc-qty-box {
  max-width: 100px;
}

.xoo-wsc-minus {
  padding: 0 0 0 10px;
}

.xoo-wsc-plus {
  padding: 0 10px 0 0px;
}

.xoo-wsc-footer {
  padding: var(--space-sm);
}

.xoo-wsc-ft-amt-value .amount,
span.xoo-wsc-ft-amt-label {
  font-size: var(--font-size-0);
  line-height: var(--font-size-0);
  font-weight: 500;
}

.xoo-wsc-ft-amt-subtotal .xoo-wsc-ft-amt-value .amount,
.xoo-wsc-ft-amt-subtotal span.xoo-wsc-ft-amt-label {
  font-size: var(--font-size-0);
  line-height: var(--font-size-0);
  font-weight: 500;
}

.xoo-wsc-ft-amt-value .amount {
  white-space: nowrap;
}

.xoo-wsc-ft-totals {
  padding: 0 0 var(--space-sm);
}

span.xoo-wsc-footer-txt {
  text-align: left;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

.coupon-form-main,
form.xoo-wsc-sl-apply-coupon {
  border-right-width: 0;
  border-left-width: 0;
  padding: var(--space-sm) 0;
  display: flex;
}
.coupon-form-main {
  padding-left: 15px;
  padding-right: 15px;
}

.xoo-wsc-container input[type="text"],
.xoo-wsc-container input[type="search"],
.xoo-wsc-container input[type="url"],
.xoo-wsc-container input[type="password"],
.xoo-wsc-container input[type="email"] {
  border-color: black;
}

.coupon-form-main,
form.xoo-wsc-sl-apply-coupon {
  gap: 15px;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-markup .xoo-wsc-btn,
.xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"],
.coupon-form button {
  border: 1px solid #d9d9d9;
  background-color: #d9d9d9;
  color: var(--color-black);
  border-radius: 60px;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
  padding: 10px 30px;
  cursor: pointer;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-markup .xoo-wsc-btn:hover,
.xoo-wsc-markup .woocommerce-shipping-calculator button[type="submit"]:hover,
.coupon-form button:hover {
  background-color: white;
  border-color: white;
}

.xoo-wsc-ft-btn-checkout {
  margin: 0 auto;
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  font-size: var(--font-size-0) !important;
  line-height: var(--line-height-0) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  width: 100%;
  max-width: 280px;
  color: white !important;
}

.xoo-wsc-ft-btn-checkout:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
  background-color: white !important;
}

.xoo-wsc-sl-applied .amount {
  text-transform: none !important;
}

.xoo-wsc-sp-prod-cont:not(:last-of-type) {
  margin-bottom: 10px;
}
.xoo-wsc-sp-atc a.button {
  --btn-height: auto;
  --btn-width: auto;
  background-color: transparent;
  padding: 0;
}
.xoo-wsc-sp-atc a.button:hover {
  background-color: transparent;
}
.xoo-wsc-sp-container {
  border-top: 2px solid black;
  padding: 20px 0;
}
.tb-promo-text {
  color: white;
  text-align: center;
  background: #ce0d49;
  width: 100%;
  padding: 10px 15px;
}

.xoo-wsc-bar-cont {
  margin: 0;
  padding: 15px;
}
span.xoo-wsc-bar-filled {
  background-color: #ce0d49;
}
.xoo-wsc-bar-remtext {
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
}

.xoo-tb-offer {
  color: black;
  display: inline-block;
  font-size: var(--font-size--1);
  line-height: var(--line-height--1);
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.xoo-tb-offer span {
  background-color: #ce0d49;
  color: white;
  display: block;
  padding: 0 12px 0;
  display: flex;
  height: 27px;
  line-height: 1;
  align-items: center;
}
.xoo-tb-offer::after,
.xoo-tb-offer::before {
  width: 17px;
  height: 28px;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='29' viewBox='0 0 18 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.03185 0.917786C2.79607 0.917786 0.979492 2.73436 0.979492 4.97015V9.58145C1.16581 9.53487 1.3987 9.53487 1.58502 9.53487C4.47291 9.53487 6.84843 11.9104 6.84843 14.7983C6.84843 17.6862 4.47291 20.0617 1.58502 20.0617C1.35212 20.0617 1.16581 20.0617 0.979492 20.0151V24.5798C0.979492 26.8156 2.79607 28.6322 5.03185 28.6322H17.0869V0.871208H5.03185V0.917786Z' fill='%23CE0D49'/%3E%3C/svg%3E%0A");
}
.xoo-tb-offer::before {
  margin-right: 1px;
  margin-top: -1px;
}
.xoo-tb-offer::after {
  transform: rotate(180deg);
  margin-bottom: -1px;
  margin-left: -1px;
}
.xoo-tb-bonus-product-row {
  background-color: #d9d9d9;
}

.xoo-wsc-sp-heading {
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  margin-bottom: 15px;
}

.tab-xoo-close-icon {
  width: 20px;
  height: 20px;
}

.tab-xoo-close-icon:hover img {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
span.xoo-wsc-sp-atc a.button {
  border: 1px solid var(--color-accent);
  padding: 2px 8px;
  text-transform: unset;
}
@media only screen and (max-width: 767px) {
  .xoo-wsc-container,
  .xoo-wsc-slider,
  .xoo-wsc-drawer {
    width: 100%;
  }

  .xoo-wsc-body {
    padding-left: 0;
    padding-right: 0;
  }
  .xoo-wsc-product {
    align-items: flex-start;
  }
}
/* Side Cart End */

/* Form Begin */
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
input[type="text"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="email"],
textarea {
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 0;
  padding: 10px 10px 10px 15px;
  text-align: left;
}

input[type="text"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: var(--color-gray-dark);
}

.input-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid #000;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  border-radius: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

.input-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="radio"] {
  width: 23px;
  height: 23px;
  vertical-align: middle;
}
.woocommerce form .form-row .input-checkbox {
  display: inline-block !important;
}
/* Form End */

/* Checkout begin */
.woocommerce-checkout .content-page {
  max-width: 100%;
}
.checkout-wrapper {
  --gutter: 0;
  --cluster-horizontal-alignment: flex-start;
  --cluster-vertical-alignment: normal;
  --cluster-wrap: nowrap;
}

.checkout-wrapper > div {
  width: 100%;
}

.checkout-wrapper-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: white;

  padding: 70px var(--space-l) var(--space-l);
}

.checkout-wrapper-right {
  background-color: #f3f3f3;
  padding: 0 0 var(--space-sm) 0;

  position: sticky;
  top: calc((var(--header-sticky-top)) + 80px);
}

.checkout-wrapper-left > div {
  max-width: 800px;
}

.checkout-wrapper-left h1 {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  font-weight: 500;
  margin-bottom: 60px;
}

#checkout-login {
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  border-radius: 60px;
  color: white;
  font-size: 32px;
  font-weight: 500;
  padding: 12px 10px;
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 70px;
}

#checkout-login:hover {
  background: white;
  color: var(--color-accent);
}

.woocommerce-billing-fields h3 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
  margin-bottom: var(--space-m);
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49%;
}

form .form-row {
  margin-bottom: var(--space-l) !important;
}

.woocommerce form .form-row::after,
.woocommerce form .form-row::before,
.woocommerce-page form .form-row::after,
.woocommerce-page form .form-row::before {
  content: "";
  display: none;
}

.form-row-wide.create-account.woocommerce-validated,
#order_vat_checkbox_field {
  margin-bottom: 10px !important;
}

#order_details {
  position: sticky;
  top: 82px;
  color: black;
  max-width: 600px;
}

#order_details .cart-items {
  background-color: #e6e6e6;
  padding-top: 30px;
}
#order_details .product-thumb {
  width: 90px;
  min-width: 90px;
  height: 90px;
  position: relative;
}
#order_details .product-thumb img {
  width: 100%;
}
#order_details .cart_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: none;
  padding: var(--space-sm);
}

#order_details .cart_item:not(:last-of-type) {
  border-bottom: 1px solid black;
}

#order_details .product-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: var(--font-size--05);
  line-height: var(--line-height--05);
}
#order_details .product-price {
  font-size: 14.4px;
  line-height: 1.1;
}
#order_details del {
  color: #929292;
}

#order_details .order-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  padding: var(--space-m) 0;
  font-weight: 500 !important;
}

#order_details .order-total bdi {
  font-weight: 500 !important;
  white-space: nowrap;
}

#order_details .cart-totals {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
#order_details .cart-totals > div:not(.order-total) {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  padding: 0px 0 10px;
  font-weight: 500 !important;
}

#order_details .cart-totals > div {
  text-align: right;
}

#order_details .cart-totals > div > *:last-of-type {
  text-align: left;
}

#order_details .coupon-form input {
  width: 100%;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background-color: transparent;
}

.order_review-title {
  padding: 0 !important;
  margin: var(--space-l-2) 0 var(--space-m);
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  padding: var(--space-m) 0;
  font-weight: 500 !important;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  margin: 0;
  padding: 0;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  background: white;
  border: 1px solid black;
  color: black;
  padding: var(--space-m) var(--space-m);
}

#add_payment_method #payment ul.payment_methods li:not(:first-of-type),
.woocommerce-cart #payment ul.payment_methods li:not(:first-of-type),
.woocommerce-checkout #payment ul.payment_methods li:not(:first-of-type) {
  border-top: 0;
}

.wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 20px;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0;
}

.woocommerce-terms-and-conditions-checkbox-text {
  line-height: var(--line-height-0);
  font-size: var(--font-size-0);
}

.woocommerce form .form-row label {
  line-height: 1;
}

.woocommerce-terms-and-conditions-checkbox-text a {
  color: black;
}

.place-order-2,
#place_order {
  width: 100%;
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: var(--space-m);
  max-width: 820px;
  text-align: center;
  border-radius: 60px;
  color: var(--color-white);
  cursor: pointer;
}

.place-order-2:hover,
#place_order:hover {
  color: var(--color-accent);
  background-color: var(--color-white);
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-billing-fields::before,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce .woocommerce-shipping-fields::before,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-billing-fields::before,
.woocommerce-page .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-shipping-fields::before {
  display: none;
}

#billing_email_field {
  width: 59%;
}

#billing_phone_field {
  width: 39%;
}

#speedy_custom_checkout_field {
  margin-top: var(--space-3xl);
}

#speedy_custom_checkout_field h3 {
  margin-bottom: var(--space-l);
}

#speedy_custom_checkout_field
  .form-row
  > label:not([for="speedy_shipping_to_ADDRESS"]) {
  display: none;
}

#speedy_shipping_to_field {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
}

#speedy_shipping_to_field .woocommerce-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.speedy_shipping_to_office,
.speedy_shipping_to_apt {
  margin-bottom: var(--space-l);
}

@media (min-width: 768px) {
  #speedy_block_no_field,
  #speedy_street_no_field,
  #speedy_entrance_no_field,
  #speedy_floor_no_field,
  #speedy_apartment_no_field {
    width: 32%;
  }
}

@media (min-width: 768px) {
  #speedy_complex_id_field,
  #speedy_street_id_field {
    width: 67%;
  }
}

@media (min-width: 768px) {
  #speedy_entrance_no_field,
  #speedy_floor_no_field {
    margin-right: 2% !important;
  }
}

#speedy_apartment_no_field {
  margin-top: -3px;
}

#speedy_destination_services_id {
  height: 48px;
}

#order_vat_checkbox_field {
  margin-top: 40px;
}

#shipping_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.place-order-2 {
  display: none;
}

#shipping_methods >li >label {
    color: black !important;
}

#speedy_custom_checkout_field .select2-container{
   min-height: 46px;
}

#speedy-title-text {
    margin-bottom: var(--space-m);
}
.speedy_services{
    margin-top: var(--space-m) !important;
}
@media only screen and (max-width: 768px) {
  .checkout-wrapper {
    flex-direction: column;
  }

  .place-order-2 {
    display: block;
  }

  .place-order-2,
  #place_order {
    padding: 10px;
    max-width: 280px;
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 500px) {
  #order_details .cart-items {
    padding-top: 0;
  }
  .checkout-wrapper-left {
    padding: 30px 20px;
  }

  .checkout-wrapper-left h1 {
    margin-bottom: 30px;
  }

  form .form-row {
    margin-bottom: 10px !important;
  }

  #add_payment_method #payment ul.payment_methods li,
  .woocommerce-cart #payment ul.payment_methods li,
  .woocommerce-checkout #payment ul.payment_methods li {
    padding: 10px;
  }

  .coupon-form-main,
  form.xoo-wsc-sl-apply-coupon {
    gap: 10px;
  }
  #checkout-login {
    margin-bottom: 40px;
    font-size: var(--font-size-0);
    line-height: var(--line-height-0);
    padding: 10px;
    max-width: 280px;
    margin: 0 auto 40px;
    display: block;
  }
}
/* Checkout end */

/* Toast style for WooCommerce messages */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  position: fixed !important;
  top: calc((var(--header-sticky-top) + 30px) + 80px);
  right: 1rem;
  z-index: 9999;
  max-width: 920px;
  padding: 1rem 2.5rem;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  list-style: none;
  border-left: 4px solid #0071a1;
  animation: fadein 0.3s ease;
}

/* Error color overrides */
.woocommerce-error {
  border-left-color: #d63638;
  background-color: #fff0f0;
}

/* Info color */
.woocommerce-info {
  border-left-color: #ff9800;
  background-color: #fff8e1;
}

/* Success message */
.woocommerce-message {
  border-left-color: #0071a1;
  background-color: #f0faff;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  left: 5px;
}

/* Close button (CSS only using ::after) */
.woocommerce-error::after,
.woocommerce-message::after,
.woocommerce-info::after {
  content: "×";
  position: absolute;
  top: 0;
  right: 12px;
  font-size: 60px;
  cursor: pointer;
  line-height: 1;
  color: #333;
}

/* Hide message when close is clicked */
.woocommerce-error:has(::after:active),
.woocommerce-message:has(::after:active),
.woocommerce-info:has(::after:active) {
  display: none !important;
}

/* Fade-in animation */
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thank you begin */
.thank-you-page {
  max-width: 1360px;
  padding: 50px 20px;
  margin: 0 auto;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
}

.thank-you-page h1 {
  font-weight: 500;
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  margin-bottom: var(--space-xl);
}

.thank-you-page h2 {
  font-weight: 500;
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
}

.thank-you-page h3 {
  font-weight: 500;
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
}

.thank-you-shipping {
  margin-top: var(--space-xxl);
  max-width: 620px;
  margin-bottom: var(--space-xxl);
}

.thank-you-row #speedy-title-text,
.thank-you-row .speedy-table {
  display: none;
}

.thank-you-socials a {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-l-2);
}

.thank-you-socials a img {
  height: 57%;
}

/* Thank you end */

/* Content Page begin */
.content-page {
  max-width: 1900px;
  margin: 0 auto;
}

.content-page-header {
  max-width: 1740px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

.content-page-header h1 {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  font-weight: 500;
}

.content-page .cluster-description h2 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  font-weight: 500;
  margin-bottom: 1rem;
}

.content-page .cluster-description p + h2 {
  margin-top: 1rem;
}

.content-page .cluster-description {
  text-align: left;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  font-weight: 500;
}

@media only screen and (max-width: 990px) {
  .content-page-header {
    padding: 30px 20px 10px;
  }
}

/* Content Page End */
/* Contact us begin */
.contact-us.cluster {
  --cluster-wrap: nowrap;
  --gutter: 50px;
  --cluster-vertical-alignment: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-us-form {
  max-width: 730px;
}

.contact-us .content-page-header {
  margin: 0;
  padding: 0;
}

.contact-us input,
.contact-us textarea {
  width: 100%;
}

.tabubox-contact-form .btn {
  --btn-width: 428px;
  --btn-height: 61px;
  --btn-font-size: 32;
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
  display: block;
  margin: 20px auto 0;
}

.tabubox-contact-form .btn:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}

/* Contact us end */

/*  Blog Begin */

.section-blog {
  --container-width: 1200px;
  margin-top: var(--space-xxl);
}

.section-blog .blog-title {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  margin-bottom: var(--space-xxl);
}

.section-blog .categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-l);
}

.section-blog .categories-nav a {
  opacity: 0.8;
  text-decoration: none;
}

.section-blog .categories-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.section-blog .categories-nav a.active {
  opacity: 1;
}

.article-img {
  margin-bottom: var(--space-m);
}

.article-img img {
  width: 100%;
}

.entry-content h3,
.article-title {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  margin: 0;
  font-weight: 500;
  margin-bottom: var(--font-size-1);
}

.entry-content h3 {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
}

.article-box .article-read-more {
  margin-top: var(--space-sm);
}

.article-box .article-read-more a {
  color: var(--color-accent);
  text-decoration: none;
}

.article-box .article-read-more a:hover {
  text-decoration: underline;
}

.article-box {
  margin-bottom: var(--space-xl);
}

.pagination {
  justify-content: center;
  display: flex;
  gap: 10px;
  margin: 0 0 var(--space-l) 0;
}

.pagination a {
  color: var(--color-black);
  opacity: 0.8;
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: underline;
}

.article-back {
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
}

.article-back a {
  color: var(--color-accent);
  text-decoration: none;
}

.article-back a:hover {
  text-decoration: underline;
}

.entry-content a:hover {
  text-decoration: none;
}

/* Blog End */

/* Login Begin */
.overlay-popup {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
}

.overlay-popup.active {
  display: block;
}

#login-popup,
#recover-password-popup,
#registration-popup {
  background: var(--color-white);
  display: none;
  left: 50%;
  max-height: 95%;
  max-width: 650px;
  overflow-y: auto;
  padding: 50px 80px 15px 40px;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9999;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

#login-popup h5,
#recover-password-popup h5,
#registration-popup h5 {
  font-size: var(--font-size-1);
  line-height: var(--line-height-1);
  margin: 0;
  font-weight: 500;
}

#login-popup .form-group,
#recover-password-popup .form-group,
#registration-popup .form-group {
  position: relative;
}

#login-popup .form-group > label,
#recover-password-popup .form-group > label,
#registration-popup .form-group > label {
  display: none;
}

#login-popup .form-group > input,
#recover-password-popup .form-group > input,
#registration-popup .form-group > input {
  width: 100%;
  margin-top: 30px;
  font-size: var(--font-size-0);
  line-height: var(--line-height-0);
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 0;
  padding: 10px 10px 10px 15px;
  text-align: left;
}

#login-popup .form-group > input::placeholder,
#recover-password-popup .form-group > input::placeholder,
#registration-popup .form-group > input::placeholder {
  color: var(--color-gray-dark);
}

#login-popup [type="submit"],
#recover-password-popup [type="submit"],
#registration-popup [type="submit"] {
  margin-top: 30px;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  border-radius: 60px;
  color: white;
  font-size: 32px;
  font-weight: 500;
  padding: 12px 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.show-password-input {
  top: inherit !important;
  bottom: 0px;
}

#login-popup a,
#recover-password-popup a,
#registration-popup a {
  color: var(--color-black);
}

#login-popup .socials-buttons {
  margin-bottom: 0px;
  justify-content: center;
}

#login-popup .socials-buttons a {
  background-color: var(--color-black);
}

#login-error,
#register-error {
  margin-top: 30px;
  color: red;
}

/* Login End */

/* Profile Begin */
.my-account .content-page {
  max-width: 1200px;
  padding: 30px 20px;
  text-align: center;
}

.my-account-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 30px;
}

.my-account-list a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 10px;
  text-decoration: none;
}

.my-account h4 {
  font-size: var(--font-size-2);
  line-height: var(--line-height-2);
  margin-bottom: 20px;
}

.my-account #main a {
  color: var(--color-black);
}

.my-account .btn-quaternary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.my-account .single-order {
  max-width: 700px;
  margin: 0 auto 30px;
}

.my-account .single-order p {
  margin: 0;
  padding: 0;
}

.my-account .order-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.my-account .woocommerce-orders-table__cell-order-actions,
.my-account .order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px;
}

.my-account .speedy_user_address,
.my-account .addresses-wrapper {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 var(--space-m);
}

/* Profile End */

/* FAQ Begin */

.section-faq {
  --container-width: 960px;
  margin-bottom: var(--space-xxl);
}

.faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  gap: 16px;
  justify-content: flex-start;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 100%;
}
.faq-box {
  border: 2px solid var(--color-black);
  cursor: pointer;
  width: 100%;
}
.faq-box .faq-header {
  width: 100%;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 24px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-box img.close-icon,
.faq-box.open .faq-header img.expand-icon {
  display: none;
}

.faq-box .collapse {
  display: none;
  margin-top: 14px;
  overflow: hidden;
  padding: 0 24px 24px;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
  width: 100%;
}
.faq-box.open .faq-header img.close-icon {
  display: block;
}
/* FAQ End */

/* Stripe Begin */
#wc-stripe-express-checkout-element {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
.wc_payment_method.payment_method_stripe {
  display: none !important;
}
/* Stripe End */
