.woocommerce-cart .return-to-shop {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.woocommerce-cart .woocommerce-message {
  display: none;
}

.site-main > .woocommerce > .return-to-shop {
  display: none;
}

.aelia-header-container {
  display: flex;
  gap: 2px;
  align-items: center;
  position: relative;
  width: 90px;
  color: black;
  padding: 0px 10px;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {
  .aelia-header-container {
    padding: 0px 5px;
    width: 80px;
  }
}

.dark .aelia-header-container {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}

.aelia-inner-container {
  position: relative;
  height: 100%;
}

.aelia-header-container svg {
  width: 24px;
  height: 24px;
}

.currency_selector {
  width: 100% !important;
}

.currency_switch_form {
  border: none !important;
  color: black !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.dark .currency_switch_form {
  color: white !important;
}

.aelia_cs_currencies {
  background-color: transparent !important;
  width: auto !important;
  padding: 0px !important;
  padding-left: 26px !important;
  font-size: 13px !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  appearance: none; /* Remove default arrow in most browsers */
  -webkit-appearance: none; /* Remove default arrow in Safari and Chrome */
  -moz-appearance: none; /* Remove default arrow in Firefox */
}

.polylang-header-container {
  display: flex;
  gap: 2px;
  align-items: center;
  position: relative;
  width: auto;
  padding: 0px 4px;
  height: 60%;
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {
  .polylang-header-container {
    padding: 0px 4px;
  }
}

.dark .polylang-header-container {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}

.polylang-inner-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  align-items: center;
}

/* .polylang-svg-container {
  width: 24px;
  height: 24px;
} */

.polylang-svg-container svg {
  width: 24px;
  height: 24px;
}

.language-switcher-link {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
  color: inherit;
}

.language-switcher-flag {
  width: 34px;
  height: auto;
}

.pll-switcher-select {
  background-color: transparent !important;
  width: auto !important;
  padding: 0px !important;
  padding-left: 26px !important;
  font-size: 13px !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  appearance: none; /* Remove default arrow in most browsers */
  -webkit-appearance: none; /* Remove default arrow in Safari and Chrome */
  -moz-appearance: none; /* Remove default arrow in Firefox */
}

.header-chevron {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  width: 18px !important;
  height: 18px !important;
}

/*

SLIDER

*/
.slider-item {
  opacity: 0;
  visibility: hidden;
  position: absolute; /* To stack slides on top of each other */
  width: 100%; /* Ensure they fill the container */
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
  opacity: 1;
  visibility: visible;
  position: relative; /* Take up space when active, this is important */
}

.slider-container {
  position: relative; /* Important for positioning child absolute items */
  width: 100%;
  min-height: 150px; /* Adjust this value as needed based on your content */
}

.slider-dots-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 5px;
  position: relative;
  z-index: 10;
}

.slider-dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #717171;
}
