.cc-bottom {
  color: var(--black) !important;
}

/* header */

.lk__user-placeholder {
    border: 1px solid black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 16px;
    align-content: center;
}


.lk__user-placeholder-big {
    border: 1px solid black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 36px;
    align-content: center;
    text-align: center;
}


.button-auto-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk__user-img-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lk__user-img-inner img {
  width: 22px;
  height: 22px;
  border-radius: 100%;
}

.header {
  position: relative;
}

.header__pc {
  position: relative;
  padding: 39px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-index-3);
}

.header__mob {
  display: none;
  gap: 18px;
  padding: 24px 0 20px;
  flex-direction: column;
  z-index: var(--z-index-3);
  position: relative;
}

.header__mob-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header__catalog {
  display: flex;
  gap: 11px;
  align-items: center;
  border-radius: 3px;
  padding: 12px;
  color: var(--white);
  transition: var(--transition);
  background: var(--shop-burnt-sienna);
}

.header__search-inner:hover,
.header__catalog:hover,
.hero__left-btn:hover,
.tile__all-btn:hover,
.cookie-accept:hover {
  background: #558955;
}

.header__mob .header__catalog {
  padding: 10px 16px;
}

.header__mob .header__catalog:focus {
  background: var(--shop-burnt-sienna);
}

.header__search-inner {
  width: 70%;
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 3px;
  transition: var(--transition);
  background: var(--shop-burnt-sienna);
}


.header__mob .header__search-inner {
  width: 100%;
}

.header__search-inner label {
  width: 100%;
}

.header__search-input {
    width: 100%;
    border-radius: 3px;
    padding: 0 15px;
    background: var(--white);
    line-height: 12px;
    height: 41px;
    display: flex;
    font-size: 14px;
}

.header__mob .header__search-input {
  padding: 8px 18px;
}

.header__search-input::placeholder {
  font-size: 14px;
  color: #d1d1d6;
}

.header__mob .header__search-input::placeholder {
  font-size: 12px;
}

.header__search-btn {
  display: flex;
  padding-right: 24px;
  padding-left: 24px;
}

.header__mob .header__search-btn {
  display: flex;
  padding-right: 16px;
  padding-left: 16px;
}




  .search-label {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .search-label svg {
    position: absolute;
    width: 25px;
    cursor: pointer;
    right: 15px;
    opacity: 0.5;
  }

  .search-label svg:hover {
    opacity: 1;
  }

  .thumbnail {
      margin-left: 8px;
      width: 28px;
      height: 28px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid #ccc;
      cursor: pointer;
      position: absolute;
      right: 15px;

  }

.header__search-inner #search-form {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}



.header__left {
  display: flex;
  gap: 49px;
  align-items: center;
}

.header__logo {
  height: 50px;
  width: 155px;
  display: flex;
  align-items: center;
}

.header__mob .header__logo {
  width: 100px;
  height: 34px;
}

.header__mob .header__logo img {
  width: 100px;
}

.header__middle {
  width: 75%;
  display: flex;
  gap: 11px;
}


.currency-dropdown {
  position: relative;
  display: inline-block;
}
.currency-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.currency-dropdown-btn:hover {
  border-color: #558955;
}
.currency-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  margin-top: 4px;
}
.currency-dropdown.open .currency-dropdown-menu {
  display: block;
}
.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}
.currency-option:hover {
  background: var(--white);
}
.currency-option.active {
    background: var(--white);
    color: #558955;
}
.currency-option:first-child {
  border-radius: 4px 4px 0 0;
}
.currency-option:last-child {
  border-radius: 0 0 4px 4px;
}
.currency-symbol {
  font-weight: 600;
  min-width: 16px;
}
.currency-name {
  font-size: 13px;
}

@media (max-width: 1024px) {

  /* header mob */

  .header__pc {
    display: none;
  }

  .header__mob {
    display: flex;
  }

  /* -------- */
}

body {
  cursor: default;
}

::selection {
  background: rgba(0, 91, 255, 0.8);
  color: white;
}

::-moz-selection {
  background: rgba(0, 91, 255, 0.8);
  color: white;
}

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  cursor: pointer;
  display: none;
  z-index: var(--z-index-2);
  transition: opacity 0.3s ease;
  opacity: 0.8;
}

.scroll-to-top:hover {
  opacity: 1;
}


.right-col .button-white {
  height: 45px;
  text-align: center;
  font-size: 18px;
  width: 280px;
  margin-bottom: -10px;
}

.text-white {
  color: #ffffff;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* menu popup */

.menu__popup-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.menu__popup {
  padding: 127px 20px 33px;
  display: flex;
  gap: 33px;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  z-index: var(--z-index-2);
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--transition);

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.menu__popup--active {
  opacity: 1;
  transform: translateY(0);
}

.menu__aside {
  width: 20%;
}

.menu__aside-item {
  cursor: pointer;
  padding: 3px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 10px;
  transition: var(--transition);
}

.menu__aside-item--active {
  background: #f2f2f7;
}

.menu__aside-name {
  font-size: 14px;
  font-weight: 400;
  text-wrap: balance;
  color: var(--black);
}

.menu__blocks {
  width: 80%;
  display: none;
  gap: 19px;
  flex-direction: column;
}

.menu__blocks--visibly {
  display: flex;
}

.menu__name {
  display: flex;
  gap: 7px;
  align-items: center;
}

.menu__name svg,
.menu__name .menu__aside-icon {
  display: none;
}

.menu__name svg {
  cursor: pointer;
}

.menu__name .menu__aside-icon {
  height: 31px;
  width: 31px;
}

.menu__name h6 {
  font-size: 20px;
  font-weight: 400;
  color: var(--shop-bright-blue);
}

.menu__block {
  /* width: 20%; */
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.menu__block-title a {
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  transition: var(--transition);
}

.menu__items-inner {
  display: flex;
  gap: 55px 73px;
  flex-wrap: wrap;
}

.menu__items {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.menu__item a {
  cursor: pointer;
  font-size: 12px;
  color: #36343b;
  transition: var(--transition);
}

.menu__block-title a:hover,
.menu__item a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--shop-burnt-sienna);
}

@media (max-width: 1024px) {
  .menu__popup {
    padding: 150px 20px 33px;
  }

  .menu__aside {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu__aside--none {
    display: none;
  }

  .menu__aside-item {
    width: 47%;
    padding: 0;
  }

  .menu__aside-icon {
    width: 50px;
    height: 50px;
  }

  .menu__blocks {
    width: 100%;
  }

  .menu__name {
    border-radius: 10px;
    padding: 3px 9px;
    background: var(--shop-light-ice);
  }

  .menu__name h6 {
    font-size: 14px;
    color: var(--black);
  }

  .menu__name svg,
  .menu__name .menu__aside-icon {
    display: block;
  }
}


/* скроллбар страницы */

/* Общий контейнер скроллбара */
::-webkit-scrollbar {
  width: 14px;
  /* ширина вертикального */
  /* height: 8px; */
  /* высота горизонтального */
}

/* Полоса прокрутки */
::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 10px;
}

/* Бегунок */
::-webkit-scrollbar-thumb {
  background: var(--shop-bright-blue);
  border-radius: 10px;
}

/* Firefox */

/* Цвет бегунка и трека */
html {
  scrollbar-color: var(--shop-bright-blue) var(--white);
  /* бегунок, трек */
  scrollbar-width: thin;
  /* auto | thin | none */
}


@media (max-width: 600px) {

  .menu__block {
    width: 47%;
    display: flex;
    gap: 12px;
    flex-direction: column;
  }

  .menu__items-inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: scroll;
    height: 60vh;
  }
}