/* Стиль ползунка */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #000000;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Стили для темной темы */
body.dark-theme {
  background-color: #121212;
  color: ##ffffff;
}

/* Стили для подвала в тёмной теме */
body.dark-theme footer {
  background-color: #ffffff;
  color: #ffffff;
}
/* Дополнительные стили для текста и символов */
body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3,
body.dark-theme .uc-darktheme *{
  color: #ffffff !important;
}
body.dark-theme .uc-darktheme button,
body.dark-theme .uc-darktheme a .t-store__card__btn-text,
body.dark-theme .uc-darktheme .t-btn *,
body.dark-theme .uc-darktheme .t-store__search-wrapper *,
body.dark-theme .js-product-option-name *
{
  color: #d8ab7f !important;
}
body.dark-theme .t-store__card__wrap_all,
body.dark-theme .t-store__prod__quantity,
body.dark-theme .t-store__prod__quantity__minus-wrapper *,
body.dark-theme .t-store__prod__quantity__plus-wrapper *,
body.dark-theme .t-store__prod__quantity-input{
    background-color:#ffffff;
    color: #77777 !important;
} 
body.dark-theme .t-submit,
body.dark-theme .t-store__card__btn,
body.dark-theme .t-btn{
    background-color: #ffffff !important;
    color: #d8ab7f !important;
}
body.dark-theme .t838__input,
body.dark-theme .t-product__option-select,
body.dark-theme .t-store__filter__input, 
body.dark-theme .t-store__sort-select{
    color: #777777 !important;
    background-color: #ffffff !important;
} 

  body.dark-theme .t-store__card__textwrapper *,
  body.dark-theme .t-product__option-title
    {
        color: #d8ab7f !important;
    }
  body.dark-theme .t-store__prod-popup__name,
  body.dark-theme .js-store-prod-price *
    {
        color: #734e28 !important;
        font-weight: 600 !important;
    }
  body.dark-theme .t-store__prod-popup__sku,    
  body.dark-theme .t-store__prod-popup__sku *{
      color: #777777 !important;
  }
/* Стили для SVG-иконок и других графических символов */
body.dark-theme svg path {
  fill: #ffffff;
}

body.dark-theme ::placeholder {
  color: #6b6b6b !important;
}
/* Стили для текста продуктов в темной теме */
@media screen and (min-width: 960px) {
    body.dark-theme .t-store__card__textwrapper *,
    body.dark-theme .t-store__card__wrap_all .t-store__card__title {
      color: #777777 !important;
    }
}
@media screen and (max-width: 960px) {
    body.dark-theme .t-store__prod__quantity-input{
        color: #ffffff !important;
    }
}


