/** Shopify CDN: Minification failed

Line 437:89 Unexpected "/"

**/
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-background.mobile {
  display: none;
}

.slide-background.desktop {
  display: block;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}


.fixed-content {
  position: absolute;
  top: 45px;
  bottom: 40px;
  left: 120px;
  max-width: 700px;
  z-index: 10;
  transition: color 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 0;
  height: calc(100vh - 85px);
}

.logo {
  width: 180px;
  margin-bottom: 40px;
  transition: filter 0.5s ease;
}

.fixed-content h1 {
  font-size: 46px;
  margin: 0;
  transition: color 0.5s ease;
  color: inherit !important;
  margin-top: 20px;
  padding-bottom: 20px;
  font-weight: 300;
  max-width: 700px;
}

.fixed-content p {
  font-size: 18px;
  margin: 0;
  max-width: 600px;
  transition: color 0.5s ease;
  padding-bottom: 15px;
}

.cta-button {
  margin-top: 20px;
  padding: 5px 25px;
  background-color: transparent;
  border: 1px solid;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}


.prev,
.next {
  position: absolute;
  top: 50%;
  width: 55px;
  cursor: pointer;
  z-index: 15;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.prev {
  left: 40px;
  transform: translateY(-50%) rotate(180deg);
}

.next {
  right: 40px;
  transform: translateY(-50%);
}

.prev:hover,
.next:hover {
  opacity: 0.7;
}


.prev.white-theme,
.next.white-theme {
  filter: brightness(100);
}

.prev.dark-theme,
.next.dark-theme {
  filter: brightness(0);
}


.pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 12;
}

.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}


.nav-icons {
  position: absolute;
  top: 60px;
  right: 60px;
  display: flex;
  gap: 30px;
  align-items: center;
  z-index: 1;
  transition: filter 0.5s ease;
}

.nav-icons > * {
  margin-left: 15px;
}

.nav-icons > *:first-child {
  margin-left: 0;
}

.nav-icons a {
  display: flex;
  align-items: center;
}

.nav-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity 0.3s ease, filter 0.5s ease;
}

.nav-icon:hover {
  opacity: 0.7;
}

.icons-group {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-direction: row;
}


.search-form {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 5px 10px;
  width: 220px;
  height: 36px;
  box-sizing: border-box;
}

.search-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-button img {
  width: 20px;
  height: 20px;
}

.search-input {
  position: relative;
  border: none;
  background: none;
  outline: none;
  padding: 0 10px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  -webkit-appearance: none;
  box-shadow: none;
}


.search-input:focus {
  border: none;
  outline: none;
}

.search-form::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FFCE54;
  animation: none;
}

.search-input:focus ~ .search-form::after,
.search-form:focus-within::after {
  animation: searchUnderline 2s ease-in-out infinite;
  width: 100%;
}

@keyframes searchUnderline {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  50% {
    width: 100%;
    left: 0;
    right: auto;
  }
  51% {
    width: 100%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}


.burger-menu {
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  margin-left: 0px;
}


.menu-sidebar {
  position: fixed;
  top: 0;
  right: -25%;
  width: 25%;
  height: 100vh;
  background-color: #222222;
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-sidebar::-webkit-scrollbar {
  display: none;
}

.menu-sidebar.active {
  right: 0;
}

.sidebar-content {
  padding: 100px 40px;
}


.white-theme {
  color: white !important;
}

.white-theme h1 {
  color: black !important;
}

.white-theme p {
  color: white !important;
}

.white-theme .logo {
  filter: brightness(100);
}

.white-theme .cta-button {
  border-color: white;
  color: white;
}

.white-theme .nav-icon,
.white-theme .search-button img {
  filter: brightness(100);
}

.white-theme .search-form {
  border: 1px solid #eeeeee;
}

.white-theme .search-input {
  color: #bfbfbf;
}

.white-theme .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.white-theme.pagination .dot {
  background-color: rgba(255, 255, 255, 0.5);
}

.white-theme.pagination .dot.active {
  background-color: white;
}


.dark-theme {
  color: black !important;
}

.dark-theme h1 {
  color: white !important;
}

.dark-theme p {
  color: black !important;
}

.dark-theme .logo {
  filter: brightness(0);
}

.dark-theme .cta-button {
  border-color: black;
  color: black;
}

.dark-theme .nav-icon,
.dark-theme .search-button img {
  filter: brightness(0);
}

.dark-theme .search-form {
  border: 1px solid black;
}

.dark-theme .search-input {
  color: #838383;
}

.dark-theme .search-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.dark-theme.pagination .dot {
  background-color: rgba(0, 0, 0, 0.5);
}

.dark-theme.pagination .dot.active {
  background-color: black;
}

* Обновляем стили для навигации внутри сайдбара */
.sidebar-navigation {
  padding: 20px;
  padding-top: 80px; 
  padding-bottom: 40px; 
  height: 100%; 
  overflow-y: auto; 
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu-item {
  margin-bottom: 30px;
}

.sidebar-menu-link {
  display: block;
  padding: 10px 0;
  color: #F6F6F6;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}


.sidebar-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FFCE54;
  transition: width 0.5s ease-in-out;
}

.sidebar-menu-link:hover::after {
  width: 100%;
}


.dark-theme .cta-button {
  color: #131313;
  border: 1px solid #131313;
}

.dark-theme .cta-button:hover {
  color: #F8F8F8;
  background: #131313;
  border-color: #131313;
}


.white-theme .cta-button {
  color: #F8F8F8;
  border: 1px solid #F8F8F8;
}

.white-theme .cta-button:hover {
  color: #131313;
  background: #F8F8F8;
  border-color: #F8F8F8;
}


@media (max-width: 1440px) {
  .nav-icon {
    width: 28px;
    height: 28px;
  }

  .search-form {
    height: 36px;
  }

  .search-button img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1024px) {
  .nav-icon {
    width: 24px;
    height: 24px;
  }

  .search-form {
    height: 36px;
  }

  .search-button img {
    width: 16px;
    height: 16px;
  }

  .menu-sidebar {
    width: 35%;
    right: -35%;
  }
}

@media (max-width: 768px) {
  .slide-background.desktop {
    display: none;
  }

  .slide-background.mobile {
    display: block;
  }

  .nav-icons {
    position: absolute;
    top: 28px;
    right: 0;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0 10px;
    margin: 0;
    z-index: 1001;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  .mobile-search-icon,
  .burger-menu,
  .wishlist-mobile {
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .mobile-search-icon {
    margin-right: 0 !important;
  }
  .nav-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    display: block;
    pointer-events: none;
  }
  .wishlist-mobile .nav-icon {
    width: 28px;
    height: 28px;
  }
  .mobile-search-button:focus-visible,
  .wishlist-mobile:focus-visible,
  .burger-menu:focus-visible {
    outline: 2px solid #888;
    outline-offset: 2px;
    border-radius: 6px;
  }

  .prev, .next {
    display: none;
  }

  .pagination {
    left: auto;
    right: 20px;
    transform: none;
    bottom: 20px;
  }

  .fixed-content {
    left: 40px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    width: 120px;
    margin-bottom: 30px;
  }

  .fixed-content h1 {
    font-size: 24px;
  }

  .fixed-content p {
    font-size: 16px;
  }

  .menu-sidebar {
    width: 100%;
    right: -100%;
  }

  .sidebar-navigation {
    padding: 0px 10px;
  }

  .sidebar-menu-link {
    font-size: 18px;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  display: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 5px 10px;
  width: 220px;
  height: 36px;
  box-sizing: border-box;
  transition: width 0.3s ease, background-color 0.3s ease; 
}


.search-form:focus-within {
  width: 308px;
  background-color: white;
}


.white-theme .search-form:focus-within .search-input,
.dark-theme .search-form:focus-within .search-input {
  color: #131313;
}

.white-theme .search-form:focus-within .search-button img,
.dark-theme .search-form:focus-within .search-button img {
  filter: brightness(0);
}


.white-theme .search-form:focus-within .search-input::placeholder,
.dark-theme .search-form:focus-within .search-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.country-selector-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-fill-available !important;
  padding: 1.2rem 1rem;
  background: #343434;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  font-family: Montserrat;
  color: #F6F6F6;
}

.icon-caret {
  width: 10px;
  height: 6px;
  margin-left: 10px;
}

.country-selector-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-top: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-selector-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.country-selector-dropdown li a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: inherit;
}

.country-selector-dropdown li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.country-selector-dropdown li a[aria-current="true"] {
  background-color: rgba(0, 0, 0, 0.05);
}

.localization-selector {
  position: relative;
}

.localization-form:only-child {
  justify-content: start;
  width: -webkit-fill-available;
}

@media (max-width: 768px) {
  .nav-icons {
    display: flex;
  }

  .nav-icons {
    top: 20px;
    right: 20px;
    gap: 15px;
  }

  .nav-icon {
    width: 34px;
    height: 34px;
    margin-top: -12px;
    margin-right: -20px;
  }

  .icons-group {
    display: none;
  }

  .search-form {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .prev, .next {
    display: none;
  }

  .pagination {
    left: auto;
    right: 20px;
    transform: none;
  }

  .fixed-content {
    left: 40px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    width: 120px;
    margin-bottom: 30px;
  }

  .fixed-content h1 {
    font-size: 24px;
  }

  .fixed-content p {
    font-size: 16px;
  }

  .menu-sidebar {
    width: 100%;
    right: -100%;
  }

  .sidebar-navigation {
    padding: 0px 10px;
  }

  .sidebar-menu-link {
    font-size: 18px;
  }
}

.close-button {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-sidebar .close-button {
  opacity: 0;
  visibility: hidden;
}

.menu-sidebar.active .close-button {
  opacity: 1;
  visibility: visible;
}

.close-button:hover {
  opacity: 0.7;
}


.mobile-search-icon,
.mobile-search-wrapper {
  display: none;
}


.mobile-search-submit img,
.mobile-search-icon img,
.nav-icon {
  width: 34px;
  height: 34px;
  filter: brightness(0);
}


.mobile-search-button,
.mobile-search-submit,
.mobile-search-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  
  .desktop-search {
    display: none;
  }

  
  .mobile-search-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }

  
  .mobile-search-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1001;
    padding: 20px;
    box-shadow: none;
    margin-top: 15px;
  }

  .mobile-search-wrapper.active {
    display: block;
  }

  
  .mobile-search-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

 
  .mobile-search-form {
    width: 100%;
  }

 
  .mobile-search-input {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border: none;
    font-size: 16px;
    background: #ffffff;
    outline: none;
  }

  .mobile-search-input:focus {
    box-shadow: none;
    border: 1px solid #cfcfcf !important;
  }

 
  .mobile-search-submit {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }


  .mobile-search-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  
  .mobile-search-submit img,
  .mobile-search-close svg {
    width: 20px;
    height: 20px;
  }

 
  .nav-icons {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-icon {
    width: 34px;
    height: 34px;
    margin-top: 0;
  }

  .icons-group {
    display: none;
  }

  .burger-menu {
    display: flex;
    align-items: center;
  }
}


body.search-active {
  overflow: hidden;
}


body.menu-active {
  overflow: hidden;
}

.slider-container {
  position: relative;
}

.hotspot {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  z-index: 1000;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

.hotspot.fade {
  opacity: 0;
}

.hotspot-fixed {
  background: rgba(255,255,255,.7);
  border-width: 4px;
  border-style: solid;
  border-radius: 50%;
  border-color: rgba(255,255,255,.5);
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  cursor: pointer;
  animation: ownpulse 3s cubic-bezier(.19,1,.22,1) infinite both;
  pointer-events: auto;
}

.tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: auto;
}

.tooltip-content {
  background-color: #000000;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.tooltip-content:hover {
  opacity: 0.9;
}

.tooltip-text {
  font-size: 18px;
  color: #ffffff;
  display: flex;
}

.tooltip-arrow {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}


.hotspot:hover .tooltip,
.hotspot.active .tooltip {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease-out forwards;
}


@keyframes ownpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}


@media (max-width: 768px) {
  .hotspot {
    top: 30%;
    right: 20%;
    z-index: 2000;
  }

  .hotspot-fixed {
    width: 24px;
    height: 24px;
  }

  .tooltip {
    z-index: 2001;
  }

  .slider-header-bar,
  .fixed-content,
  .pagination,
  .prev,
  .next {
    z-index: 100;
  }
}


.slide[data-theme="dark"] .hotspot-fixed {
  background: rgba(0,0,0,.7);
  border-color: rgba(0,0,0,.5);
}

.slide[data-theme="dark"] .tooltip-content {
  background-color: #000000;
}

.slide[data-theme="dark"] .hotspot-fixed {
  animation: ownpulseDark 3s cubic-bezier(.19,1,.22,1) infinite both;
}

@keyframes ownpulseDark {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

#language-form .localization-selector {
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.75);
  list-style: none;
  box-sizing: inherit;
  scrollbar-color: var(--color, #000000) var(--color_bg, #999999) !important;
  margin-bottom: 30px;
}

.language-selector-button {
  width: 100%;
  text-align: left;
  padding: 13px 10px;
  background: rgba(255, 255, 255, 0.08); 
  border: none;
  border-radius: var(--popup-corner-radius);
  color: #fff; 
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
}

.language-selector-dropdown {
  position: absolute;
  width: 100%;
  background: rgb(var(--color-background));
  border-radius: var(--popup-corner-radius);
  margin-top: 4px;
  box-shadow: 0 var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: 2;
}

.language-selector-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.language-selector-dropdown li {
  padding: 0;
}

.language-selector-dropdown a {
  display: block;
  padding: 8px 12px;
  color: rgba(var(--color-foreground), 0.75);
  text-decoration: none;
  font-size: 1.6rem;
  font-family: var(--font-body-family);
  transition: color var(--duration-short) ease;
}

.language-selector-dropdown a:hover {
  color: rgb(var(--color-foreground));
  background: rgba(var(--color-foreground), 0.04);
}

.language-selector-dropdown a[aria-current="true"] {
  background: rgba(var(--color-foreground), 0.08);
  color: rgb(var(--color-foreground));
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .mobile-only {
    display: flex !important;
  }
  .wishlist-svg {
    stroke-width: 1px !important;
  }
}

/* Predictive Search Styles */
.predictive-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin-top: 4px;
  max-height: 400px;
  overflow-y: auto;
}

.predictive-search__loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.predictive-search__results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.predictive-search__item {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.predictive-search__item:hover {
  background-color: #f8f8f8;
}

.predictive-search__item-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.predictive-search__item-content {
  flex: 1;
}

.predictive-search__item-title {
  font-size: 14px;
  margin: 0 0 4px;
  color: #333;
}

.predictive-search__item-price {
  font-size: 14px;
  color: #666;
}

.predictive-search__item-vendor {
  font-size: 12px;
  color: #999;
}

/* Adjust search form for predictive search */
.search-form {
  position: relative;
}

.search-form.predictive-search {
  width: 100%;
}

/* Mobile predictive search adjustments */
.mobile-search-wrapper .predictive-search {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 60vh;
  margin-top: 0;
  border-top: 1px solid #eeeeee;
}

.mobile-search-wrapper .predictive-search__item {
  padding: 1rem;
}

.mobile-search-wrapper .predictive-search__item-image {
  width: 60px;
  height: 60px;
}

/* Dark theme adjustments */
.dark-theme .predictive-search {
  background: #222222;
  border-color: #333333;
}

.dark-theme .predictive-search__item {
  border-bottom-color: #333333;
}

.dark-theme .predictive-search__item:hover {
  background-color: #2a2a2a;
}

.dark-theme .predictive-search__item-title {
  color: #ffffff;
}

.dark-theme .predictive-search__item-price {
  color: #cccccc;
}

.dark-theme .predictive-search__item-vendor {
  color: #999999;
}

/* Absolutely position header bar over the slider, below the top edge */
.slider-header-bar {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  z-index: 3000;
}
@media (max-width: 1024px) {
  .slider-header-bar {
    top: 20px;
    padding: 0 10px;
    gap: 15px;
  }
}

/* Remove absolute positioning for search icon in hero-slider */
.slider-container .header__search {
  position: static;
  top: auto;
  right: auto;
  z-index: 1000;
}

/* Only white background for modal and results, not for search icon */
.slider-header-bar .search-modal,
.slider-header-bar .search-modal__content,
.slider-header-bar .predictive-search,
.slider-header-bar .predictive-search__item-title,
.slider-header-bar .predictive-search__item,
.slider-header-bar .predictive-search__item-price {
  background: #fff !important;
  color: #111 !important;
  border-color: #eee !important;
}
.slider-header-bar .predictive-search__item-title,
.slider-header-bar .predictive-search__item-price,
.slider-header-bar .predictive-search__item-vendor {
  color: #111 !important;
}
.slider-header-bar .search__button,
.slider-header-bar .reset__button {
  color: #111 !important;
}

/* When search modal is open, force header bar to top: 0 and no padding */
.header__search details[open] ~ .slider-header-bar,
.slider-header-bar.force-top {
  top: 0 !important;
  padding: 0 !important;
}

/* When search is active, force header bar to top: 0 and no padding */
body.search-active .slider-header-bar {
  top: 0 !important;
  padding: 0 !important;
}

/* When search is active, remove all top/margin/padding from search modal and content */
body.search-active .header__search,
body.search-active .search-modal,
body.search-active .search-modal__content {
  top: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* When search is active, make search modal fixed and full width at the top */
body.search-active .search-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  z-index: 2000 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* When search is active, shift search modal up for perfect alignment */
body.search-active .search-modal {
  top: -20px !important;
}

/* Extra specific selectors to force search modal top to -20px when search is active */
body.search-active [role='dialog'].search-modal {
  top: -20px !important;
}
body.search-active .slider-header-bar ~ .search-modal {
  top: -20px !important;
}

details[open] .modal-overlay:after  {
  background-color: transparent;
}

.search-modal__content {
  padding: 6rem;
}

.slider-header-bar .predictive-search,
.slider-header-bar .predictive-search__item-title,
.slider-header-bar .predictive-search__item,
.slider-header-bar .predictive-search__item-price,
.slider-header-bar .predictive-search__item-vendor {
  color: #111 !important;
}

/* Force dark text for predictive search in hero-slider, regardless of theme */
.slider-container .predictive-search,
.slider-container .predictive-search__item-title,
.slider-container .predictive-search__item,
.slider-container .predictive-search__item-price,
.slider-container .predictive-search__item-vendor {
  color: #111 !important;
}

.slider-container .predictive-search p,
.slider-container .predictive-search__item p,
.slider-container .predictive-search__item-title,
.slider-container .predictive-search__item,
.slider-container .predictive-search__item-price,
.slider-container .predictive-search__item-vendor {
  color: #111 !important;
}

/* Search icon a bit smaller and perfectly aligned */
.slider-header-bar .header__icon--search {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Make all nav icons perfectly aligned */
.slider-header-bar .nav-icon,
.slider-header-bar .header__icon--search,
.slider-header-bar .burger-menu {
  vertical-align: middle;
  align-items: center;
  display: flex;
}

/* Search icon SVG size and stroke */
.slider-header-bar .header__icon--search .icon,
.slider-header-bar .header__icon--search svg {
  width: 32px;
  height: 32px;
  stroke-width: 1px;
  display: block;
}

/* White theme: white search icon */
.slider-header-bar.white-theme .header__icon--search .icon,
.slider-header-bar.white-theme .header__icon--search svg {
  filter: brightness(100);
  color: #fff;
  stroke: #fff;
  fill: none;
}

/* Dark theme: black search icon */
.slider-header-bar.dark-theme .header__icon--search .icon,
.slider-header-bar.dark-theme .header__icon--search svg {
  filter: brightness(0);
  color: #111;
  stroke: #111;
  fill: none;
}

@media (max-width: 768px) {
  .hotspot {
    top: 30%;
    right: 20%;
    z-index: 2000;
  }

  .tooltip {
    z-index: 2001;
  }

  /* Navigation elements should be above hotspots */
  .slider-header-bar,
  .slider-header-bar .header__search,
  .slider-header-bar .search-modal,
  .slider-header-bar .burger-menu,
  .slider-header-bar .wishlist-mobile,
  .slider-header-bar .icons-group,
  .slider-header-bar .nav-icon {
    z-index: 3000;
  }

  /* Other elements should be below navigation but above content */
  .fixed-content,
  .pagination,
  .prev,
  .next {
    z-index: 100;
  }
}

/* Ensure search modal is always above all icons and hotspots */
.slider-header-bar .header__search,
.slider-header-bar .search-modal,
.slider-header-bar .search-modal__content,
.header__search,
.search-modal,
.search-modal__content {
  z-index: 4000 !important;
}

@media (max-width: 768px) {
  .slider-header-bar,
  .slider-header-bar .header__search,
  .slider-header-bar .search-modal,
  .slider-header-bar .burger-menu,
  .slider-header-bar .wishlist-mobile,
  .slider-header-bar .icons-group,
  .slider-header-bar .nav-icon {
    z-index: 3000;
  }
  .header__search,
  .search-modal,
  .search-modal__content {
    z-index: 4000 !important;
  }
}