
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-color: #96D300;

  /* Светлая тема */
  --light-bg-color: #f5f5f5;
  --light-text-color: #333;

  /* Тёмная тема */
  --dark-bg-color: #171C21;
  --dark-text-color: #ccc;
}


@font-face {
    font-family: Roboto-Regular; 
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto-Medium; 
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: Roboto-Bold; 
    src: url(../fonts/Roboto-Bold.ttf);
}


/* Тело страницы подхватывает тему через классы */
body.light-theme {
  --bg-color: var(--light-bg-color);
  --text-color: var(--light-text-color);
  background-image: url('../image/bg/main-white.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  backdrop-filter: blur(30px);
}
body.dark-theme {
  --bg-color: var(--dark-bg-color);
  --text-color: var(--dark-text-color);
  background-image: url('../image/bg/main.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  backdrop-filter: blur(50px);
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
 
    body.light-theme {
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
    } 
        
    body.dark-theme {
      backdrop-filter: blur(50px);
      -webkit-backdrop-filter: blur(50px);
    }


}

@media(max-width: 500px){
 
body.dark-theme {
  background-size: contain;
  background-repeat: repeat;

} 
 
    
}


/* Применяем переменные */
body {
  font-family: Roboto-Regular; 
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==============================
   2) ОБЩИЙ МАКЕТ (HEADER, FOOTER)
   ============================== */

/* ====== HEADER ====== */
header {
  background-color: #fff; /* светлая шапка по умолчанию */
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
body.dark-theme header {
  background-color: #222222ba; /* в тёмной теме делаем шапку чуть темнее */
  border-bottom: 1px solid #333;
  backdrop-filter: blur(10px);
}


@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  header{
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px); 
  }
}


.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

body.dark-theme .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
}

body.dark-theme .miniTxtLogo{
  font-size: 13px;
  color: #98D500;
  font-family: Roboto-Regular;
  font-weight: normal;
}


body.light-theme .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
}

body.light-theme .miniTxtLogo{
  font-size: 13px;
  color: #33333391;
  font-family: Roboto-Regular;
  font-weight: normal;
}


.iconBrand img{
  width: 35px;
}

.iconBrand{
  margin-right: 10px;
}

.icon_moon{
  color: #000;
}

nav{
  display: flex;
  align-items: center;
}

/* Навигация в шапке */
nav ul {
  display: flex;
  gap: 1rem;
}
nav li {
  display: inline-block;
}
nav li a {
  padding: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
  border-radius: 4px;
}
nav li a:hover {
  background-color: #75A207DE;
  color: #fff;
}

.loader-page{
    background-color: #ffffffd6;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0%;
    z-index: 99;
    backdrop-filter: blur(10px);
}

body.dark-theme .loader-page{
    background-color: #143A70ED;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  header{
    -webkit-backdrop-filter: blur(10px); /* Для Safari */
    backdrop-filter: blur(10px); /* Стандартный синтаксис */
  }
}

.cont-spinner{
    margin: 0 auto;
    margin-top: 250px; 
    width: 350px;
    position: relative;
}

/* Если спиннер должен быть по центру родительского контейнера */
.spinnerLoading {
  width: 75px;                /* Ширина спиннера */
  height: 75px;               /* Высота спиннера */
  border: 3px solid #5b5a5a;     /* Серый фон для рамки */
  border-top-color: #86B909;  /* Цвет верхней части, который будет выделен и создавать эффект вращения */
  border-radius: 50%;         /* Делает элемент круглым */
  animation: spin 1s linear infinite;  
  margin: 0 auto;
  position: absolute;
  left: 50%;
  right: 50%;
}


body.dark-theme .spinnerLoading{
    border-top-color: #3498db;
}



/* Ключевые кадры анимации вращения */
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}


@media(max-width: 600px){
   .spinnerLoading {
        width: 45px;               
        height: 45px;     
        left: 45%;
   } 
}


@media(max-width: 600px){

    
    .cont-spinner{
        width: 100%;
    }
}

/* Блок переключателя темы */
.theme-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
}
.theme-toggle:hover {
  background-color: #ddd;
}
body.dark-theme .theme-toggle:hover {
  background-color: #333;
}
.theme-toggle i {
  font-size: 1.2rem;
  color: #666;
}
body.dark-theme .theme-toggle i {
  color: #ccc;
}
.theme-toggle span {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #666;
}
body.dark-theme .theme-toggle span {
  color: #ccc;
}

/* ====== FOOTER ====== */
footer {
  
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}


body.dark-theme footer{
  background-color: #222222ba;
}


body.light-theme footer{
  background-color: #000000de;
}



@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {

  footer{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
  }

}



.content-p{
  background-color: #2222226b;
  margin: 0 auto;
  width: 73%;
  padding: 20px;
  margin-top: 50px;
  border-radius: 10px;
  margin-bottom: 350px;
  font-size: 19px;
}

body.dark-theme .content-p{
  background-color: #2222226b;
}

body.light-theme .content-p{
  background-color: #22222212;
}

.content-p p{
  margin-bottom: 30px;
}

.content-p h4{
  margin-top: 40px;
}

.content-p a{
  color: #69920E;
}



.title-p{
  margin-bottom: 50px;
}

.info-c{
  margin-top: 10px;
}


.developer img{
  width: 150px;
  opacity: 0.6;
}

.developer img:hover{
  width: 150px;
  opacity: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 200px;
}
.footer-logo h2 {
  color: var(--brand-color);
  margin-bottom: 10px;
}
.footer-desc {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-nav, .footer-docs {
  flex: 1 1 150px;
}
.footer-nav h3, .footer-docs h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--brand-color);
}
.footer-nav ul, .footer-docs ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav a, .footer-docs a {
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-nav a:hover, .footer-docs a:hover {
  color: var(--brand-color);
}

.iconBtnAwesome{
  margin-right: 5px;
}

/* ==============================
   3) СПЕЦИФИЧЕСКИЕ БЛОКИ
   ============================== */

/* ----- Кнопки ----- */
.button,
.track-order-btn,
.buy-btn,
.pay-btn {
  display: inline-block;
  background-color: #75A207DE;
  color: #fff;
  padding: 10px 16px;
  font-family: Roboto-Medium;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 15px;
  box-shadow: 0px 0px 70px 0px #75A2076B;
  width: 100%;

}
.button:hover,
.track-order-btn:hover,
.buy-btn:hover,
.pay-btn:hover {
  opacity: 0.9;
}

/* ----- Слайдер (используем slick) ----- */
.slider {
  max-width: 1370px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
}
.slick-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.slick-list {
  margin: 0 -10px; /* Выравнивает первый слайд по левому краю и последний по правому */
}
.slick-slide {
  padding: 0 10px; /* Отступы между слайдами */
}

/* ----- Блок "Отследить выполнение заказа" ----- */
.track-order-btn-container {
  text-align: center;
  margin: 20px auto;
}

/* ----- Блок выбора игры ----- */
.game-selection {
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}


.helloCont{
  background-color: #bfbaba17;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

body.dark-theme .helloCont{
  background-color: #2222224f;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#iconFireHello{
  width: 70px;
  margin-right: 10px;
}

#iconFireHello2{
  width: 70px;
  margin-right: 10px;
}


.leftContHello{
  display: flex;
  align-items: center;
}

.rowMeanHello{
  display: flex;
  align-items: center;
  font-size: 20px;
}

.rowMeanHello i{
  color: #F8C435;
  margin-right: 3px;
  text-shadow: 0px 0px 20px #FFC43830;
}

.meanHello{
  font-size: 25px;
  margin-right: 10px;
  font-family: Roboto-Medium;
}

.totalFeedbacks{
  font-family: Roboto-Medium;
  font-size: 18px;
  opacity: 0.5;
}

.totalFeedbacks i{
  font-size: 13px;
  margin-left: 2px;
}


.totalFeedbacks:hover{
  text-decoration: underline;
}

.rightContHello{
  display: flex;
  align-items: center;
}

.nameTypePayments{
  font-family: Roboto-Medium;
}


.contTypePay{
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.iconPayments img{
  width: 40px;
  margin-right: 5px;
}



@media(max-width: 950px){
  .content-p{
    width: 95%;
    font-size: 17px;
    margin-bottom: 150px;
  }
}





/* ----- Карточки товаров (общая стилизация) ----- */
.product-card {
  background-color: #fff;
  width: 320px;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.product-card:hover {
  box-shadow: 0 2px 20px rgba(0,0,0,0.50);
}
body.dark-theme .product-card {
  background-color: #22222275;
  border: 1px solid #333;
}
.product-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9; /* сохранение пропорций 1280x720 */
  overflow: hidden;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.rowCats{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.cat-card {
  background-color: #fff;
  width: 330px;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

body.dark-theme .cat-card {
  background-color: #22222275;
  border: 1px solid #333;
}

.cat-img-wrapper {
  width: 330px;
  height: 200px;
  background-size: cover;
  border-radius: 5px;
  position: relative;
  background-position: center center;

}

.tag-cat{
  position: absolute;
  left: auto;
  right: 0;
  background-color: #F1312D;
  font-size: 14px;
  text-transform: uppercase;
  padding: 6px;
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  font-family: Roboto-Medium;
  color: #fff;
}



.cat-name {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8px;
  min-height: 40px; /* чтобы при переносе строки карточка не ломалась */
}


.bt-select-cat{
  display: inline-block;
  background-color: #75A207DE;
  color: #fff;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 15px;
  font-family: Roboto-Medium;
  box-shadow: 0px 0px 30px 0px #75A20773;

}
.bt-select-cat:hover {
  opacity: 0.9;
}

.supportBtn{
  background-color: #98D500;
  border-radius: 50%;
  padding: 10px;
  position: fixed;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.rowPriceCard{
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin-top: 20px; 
  margin-bottom: 20px;
}

.rowStars i{
  color: #FFC438;
  text-shadow: 0px 0px 20px #FFC4387D;
  margin-right: 3px;
}


.rowFilter{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.filterSelectStyles{
  padding: 5px;
}



body.dark-theme .filterSelectStyles{
  border: 2px solid #1A2533;
  background-color: #1A2533;
  color: #fff;
}


body.dark-theme .filterSelectStyles option{

}






.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.product-name {
  font-weight: bold;
  margin-bottom: 8px;
  min-height: 40px; /* чтобы при переносе строки карточка не ломалась */
}
.product-game {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #666;
}
body.dark-theme .product-game {
  color: #bbb;
}
.product-price {
  font-size: 1.1rem;
  font-weight: bold;
}

/* Сетка для отображения карточек товаров на главной */
.products-container {
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}


.products-container-page {
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ----- Лайв-лента: "Последние покупки" ----- */
.live-feed {
  max-width: 1380px;
  margin: 30px auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  padding: 15px;
}
body.dark-theme .live-feed {
  background-color: #2222223d;
  border: 1px solid #333;
}
.live-feed-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.live-feed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}
/* Карточки в лайв-ленте (те же стили, можно уменьшить или оставить) */
.live-feed-item {
  width: 250px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.live-feed-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#iconFeedLive{
  width: 30px;
  margin-right: 5px;
}

.emojiTitles{
  width: 30px;
  margin-right: 5px; 
}

#iconFeedbackProductTitle{
  width: 30px;
  margin-right: 5px;  
}

body.dark-theme .live-feed-item {
  background-color: #33333357;
  border: 1px solid #444;
}

/* ==============================
   4) АДАПТИВНАЯ ВЁРСТКА
   ============================== */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 15px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .products-container {
    justify-content: center;
    gap: 10px;
  }
   .products-container-page {
    justify-content: center;
    gap: 10px;
  } 
  .game-selection {
    justify-content: center;
  }
  .footer-container {
    flex-direction: column;
  }
  .live-feed-list {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .product-card {
    width: 100%;
    max-width: 340px;
  }
  .live-feed-item {
    width: 100%;
    max-width: 340px;
  }
}


.menu-btn{
  display: none;
}


/* ==============================
   2) ПОЛЗУНОК ДЛЯ ТЕМЫ
   ============================== */
.theme-toggle-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 150px;
  position: relative;
}
.theme-toggle-switch input[type="checkbox"] {
  display: none;
}
.switch-label {
  display: inline-block;
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}
.switch-inner {
  position: absolute;
  width: 155%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 0.9rem;
  transition: transform 0.3s;
  color: #fff;
}
.switch-inner i {
  pointer-events: none;
}
.switch-label::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: 0.3s;
}
input[type="checkbox"]:checked + .switch-label::after {
  transform: translateX(32px);
}
input[type="checkbox"]:checked ~ .switch-label .switch-inner {
  transform: translateX(-35%);
}

/* Учтите темную тему фона для бургер-меню при его открытии, если нужно 
   (другие стили темной/светлой темы у вас уже были) */

/* ==============================
   3) ПРОЧИЕ СТИЛИ (ТАБЛИЦЫ, БЛОКИ, ИКОНКИ)
   ============================== */


   .icon_sun{
    color: #97C735;
    text-shadow: 0px 0px 20px #97C735BA;
   }

/* Пример таблицы */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

body.dark-theme  .responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #222222ba;
}

.responsive-table th, .responsive-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
body.dark-theme .responsive-table th,
body.dark-theme .responsive-table td {
  border: 1px solid #333;
}
/* Адаптивность: при очень малых экранах можно делать видимость как карточки */
@media (max-width: 600px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    margin-bottom: 10px;
    display: block;
    border: 1px solid #ddd;
  }
  body.dark-theme .responsive-table tr {
    border: 1px solid #333;
    background-color: #22222282;
  }
  .responsive-table td {
    display: block;
    text-align: right;
    border: none;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 50%;
  }
  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: bold;
    text-align: left;
  }

body.dark-theme .responsive-table{
  background-color: transparent;
}




}


 .mobile-menu{
  position: fixed;
  left: 0;
  top: 0;
  margin-top: 61px;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
}

body.dark-theme .mobile-menu{
  background-color: #222222ba;
  backdrop-filter: blur(10px);
}

body.light-theme .mobile-menu{
  background-color: #FFFFFFD4;
  backdrop-filter: blur(10px);
}


@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {

  body.dark-theme .mobile-menu{
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
  }

  body.light-theme .mobile-menu{
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
  }  

}


.contFixedBottom{
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 100px;
  font-family: Roboto-Medium;
  
}

.helpSupport{
  background-color: #2BA2DE;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}

.helpSupport i{
  margin-right: 10px;
}



.contButtons{
  margin-top: 20px;
}

body.dark-theme .btnMenuMobile{
  background-color: #2226;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #2226;
}

body.light-theme .btnMenuMobile{
  background-color: #ffffff7d;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #00000045;
}


.btnMenuMobile i{
  margin-right: 7px;
}


.closedMenu{
  display: none;
}

/* Дополнительные блоки, стили для гарантий, профиля и т.д. */
.warranty-block {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  margin-bottom: 150px;
}

.warranty-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* Можно применять доп. классы col-md-6, но без Bootstrap – просто пример */
.col-md-6 {
  flex: 1 1 50%;
}
.warranty-block-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  min-height: 250px;
}
body.dark-theme .warranty-block-item {
  background-color: #2222226b;
  border: 1px solid #333;
}
.warranty-block-item-image {
  max-width: 80px;
  margin-bottom: 15px;
}
.warranty-block-item-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.warranty-block-item-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Пример стилей для профиля / вкладок */
.profile-container {
  max-width: 75%;
  margin: 20px auto;
  padding: 0 15px;
}
.profile-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}
.profile-tabs a {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: 0.3s;
  cursor: pointer;
}
.profile-tabs a.activeTabProfile {
  background-color: #699210;
  color: #fff;
}

body.dark-theme .profile-tabs a.activeTabProfile {
  border: 1px solid #699210;
  background-color: #699210;
  color: #fff;
}

#orders{
  min-height: 600px;
}


#history{
  min-height: 600px;
}

.addFeedback{
  background-color: #699210;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: 60%;
  cursor: pointer;
}

.addFeedback i{
  margin-right: 5px;
}

.infoProfile{
  margin-top: 10px;
}

.infoProfile span{
  opacity: 0.5;
}

.contAvatarInfo{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.moreInfoProfileUser{
  font-size: 18px;
}

.avatarUserProfile{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #699210;
  border-radius: 50%;
  font-size: 23px;
  font-weight: bold;
  margin-right: 10px;
  color: #fff;
}

.btnGoDeposit{
  background-color: #1D6BACC4;
  padding: 7px;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 50px;
  width: 200px;
  text-align: center;
  font-family: Roboto-Medium;
  cursor: pointer;
  color: #fff;
  box-shadow: 0px 0px 30px 0px #1D6BAC4A;
}

.btnGoDeposit i{
  margin-right: 5px;
}

.btnGoDeposit:hover{
  opacity: 0.9;
}

.changeTypePass{
  cursor: pointer;
}


.left-section-progress{
    margin-top: 30px;
}


.feedbackIsset{
  background-color: #3333335e;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: 60%;
  cursor: pointer;
}

.feedbackIsset i{
  margin-right: 5px;
}


.status_success{
  color: #699210;
}


.status_inprocess{
  color: #F07427;
}



.status_err{
  color: #FF5863;
}




body.dark-theme .profile-tabs a {
  background-color: #222222ba;
  border: 1px solid #333;
  color: #ccc;
  backdrop-filter: blur(10px);
}



.tab-link i{
  margin-right: 5px;
}

.line-block-progress {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
body.dark-theme .line-block-progress {
  background-color: #222222ba;
  border: 1px solid #333;
  backdrop-filter: blur(10px);
}
.line-external {
  width: 100%;
  background-color: #eee;
  height: 10px;
  border-radius: 5px;
  margin: 10px 0;
}
body.dark-theme .line-external {
  background-color: #333;
}
.line-inner {
  background-color: var(--brand-color);
  height: 10px;
  border-radius: 5px;
}
.form-block {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
}
body.dark-theme .form-block {
  background-color: #222222ba;
  border: 1px solid #333;
  backdrop-filter: blur(10px);
}


@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {

  body.dark-theme .profile-tabs a {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
  }

body.dark-theme .line-block-progress {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
}

body.dark-theme .form-block {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
}


}




.form-block label {
  display: block;
  margin-top: 10px;
}

#binding{
  border: 1px solid #333333;
  background-color: #fff;
  color: #333;
  outline: none;
  font-size: 16px;
  padding: 10px;
  margin-top: 7px;
  width: 250px;
}


body.dark-theme #binding{
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  outline: none;
  font-size: 16px;
  padding: 10px;
  margin-top: 7px;
  width: 250px;
}



body.light-theme .form-block input, .form-block select {
  border: 2px solid #33333330;
  background-color: #fff;
  color: #333;
  outline: none;
  font-size: 16px;
  padding: 10px;
  margin-top: 7px;
  width: 250px;
}




body.dark-theme .form-block input, .form-block select {
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  outline: none;
  font-size: 16px;
  padding: 10px;
  margin-top: 7px;
  width: 250px;
}


#info{
  width: 1000px;
  margin: 0 auto;
}

#profile-settings{
  width: 1000px;
  margin: 0 auto;
  min-height: 600px;
}


.services-cat{
  width: 300px;
  height: 110px;
  background-size: cover;
  position: relative;
  border-radius: 15px;
}

.iconServices img{
  width: 50px;
}

.bg-blur-cat{
  background-color: #00000054;
  backdrop-filter: blur(2px);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.content-cat{
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}

.name-cat{
  margin-left: 15px;
  font-size: 19px;
  font-family: Roboto-Bold; 
  text-shadow: 0px 0px 7px #000;
  text-transform: uppercase;
  color: #fff;
}

/* 
=========================================
1) Показываем mobile-layout только при ширине <= 880px,
   а desktop-layout только при > 880px
=========================================
*/
.mobile-layout {
  display: block; /* изначально показываем */
}
.desktop-layout {
  display: none;  /* изначально скрываем */
}


@media (min-width: 881px) {
  .mobile-layout {
    display: none;
  }
  .desktop-layout {
    display: block;
  }
}

/* 
=========================================
2) Двухколоночный макет: .main-content
   - Сайдбар слева
   - Контент (товары) справа
=========================================
*/
.main-content {
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  padding: 0 15px;
  align-items: flex-start; /* чтобы контент и сайдбар выровнялись по верхнему краю */
}

.sidebar {
  width: 300px;
  flex-shrink: 0; /* не сжимать сайдбар */
  /* Поставим фон, чтобы было видно, что сайдбар не "пропадает" */
  /* background-color: rgba(255, 0, 0, 0.05);  <- если хотите проверить визуально */
}

.sidebar-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: Roboto-Bold;
}

.sidebar-game-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-area {
  flex: 1;
}

.content-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: Roboto-Bold;
}

/* 
=========================================
3) Прилипание (sticky) для .sidebar
   при прокрутке
=========================================
*/
/* Работает только на desktop, так что уместно поместить в @media (min-width: 881px) */
@media (min-width: 881px) {
  .sidebar {
    position: -webkit-sticky; /* Для Safari */
    position: sticky;
    top: 20px; /* Отступ сверху, когда прилипает */
  }
}

/* 
  Всё. Теперь, когда пользователь прокручивает страницу,
  .sidebar будет "прилипать" внутри своего родительского контейнера .main-content
  и не даст товарам "залезать" на место сайдбара.
*/


@media(max-width: 600px){
  .addFeedback{
    padding: 3px;
    width: 100%;
  }


  .feedbackIsset{
    padding: 3px;
    width: 100%;    
  }


  .warranty-row{
    display: block;
  }

  .warranty-block-item{
    margin-bottom: 20px;
    min-height: auto;
  }

  .warranty-block-item-text{
    font-size: 14px;
  }


}

.btnOutProfile{
    background-color: #FF5863;
    padding: 7px;
    color: #fff;
    text-align: center;
    width: 200px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 15px;
}

.btnOutProfile i{
    margin-right: 5px;
}

#logout{
  min-height: 530px;
}

.confirmOutCont{
  margin-top: 50px;
}

.confirmOutCont a{
  margin-top: 10px;
}



.rowMethodsPayment{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.methodPayment{
  background-color: #1a19191f;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-family: Roboto-Medium;
  margin-right: 10px;
  color: #333;
  cursor: pointer;
}

.inactiveSelect{
    border: 2px solid transparent;
}

.activeSelect{
    border: 2px solid #68920E;
}



body.dark-theme .methodPayment{
  background-color: #1a191970;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-family: Roboto-Medium;
  margin-right: 10px;
  color: #fff;
}


.iconMethod img{
  width: 35px;
}

.iconMethod{
  margin-right: 5px;
}

#summDeposit{
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  width: 475px;
  padding: 15px;
}

.rowFastTab{
  display: flex;
  align-items: center;
  width: 470px;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 15px;
  font-family: Roboto-Medium;
}

.tabFastSumm{
  background-color: #1a19191f;
  padding: 10px;
  font-size: 14px;
  width: 23%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

}

body.dark-theme .tabFastSumm{
  background-color: #333333;
  padding: 10px;
  font-size: 14px;
  width: 23%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;  
}


.infoOrderFeedback{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  opacity: 0.6;
}

.rowSelectStars{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 250px;
}

/*.rowSelectStars i{*/
/*  font-size: 25px;*/
/*  color: #bfbfbf;*/

/*}*/


.valueFeedback{
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  width: 475px;
  padding: 15px;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 100px;
}


body.dark-theme .valueFeedback{
  border: 1px solid #333333;
  background-color: #333333;
  color: #fff;
  outline: none;
}

body.light-theme .valueFeedback{
  border: 2px solid #33333330;
  background-color: #fff;
  color: #333;
  outline: none;
}


.depositBalance{
  background-color: #699210;
  width: 470px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 13px;
  cursor: pointer;
}

.contCheckout{
  width: 1370px;
  padding: 20px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 170px;
  border-radius: 10px;
}

body.dark-theme .contCheckout{
  background-color: #2222224f;
}


body.light-theme .valueFeedback{
  background-color: #22222217;
}

.rowAuthSocials{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
}


.btnVK{
    background-color: #0861C8;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    width: 48%;
    cursor: pointer;
    font-family: Roboto-Medium;
}

.btnTG{
    background-color: #2BA2DE;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    width: 48%;
    cursor: pointer;
    font-family: Roboto-Medium;
}

.btnAnotherType{
    opacity: 1;
    transition: 0.3s;
}

.btnAnotherType:hover{
    opacity: 0.6;
    transition: 0.3s;
}

.iconSocial{
    margin-right: 5px;
}


.anotherAuth{
    text-align: center;
    margin-top: 20px;
    opacity: 0.6;
}

body.dark-theme .anotherAuth{
  color: #fff;
}


body.light-theme .anotherAuth{
  color: #151515;
}


.titleCheckout{
  font-family: Roboto-Medium;
  font-size: 20px;
}
.rowCheckout{
  margin-top: 20px;
  display: flex;

}

.lineHr{
  margin-left: 50px;
  margin-right: 50px;
  width: 1px;
  background-color: #ffffff1a;
}

.pathPages{
  width: 1370px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.6;
}


.arrowPages{
  font-size: 12px;
  margin-left: 10px;
  margin-right: 10px;
  transform: translateY(1px);
}

.helpDescription{
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 20px;
}

body.dark-theme .bgCheckoutForm{
  background-color: #22222285;
}


body.light-theme .bgCheckoutForm{
  background-color: #2222221c;
}


.totalTxt{
  margin-bottom: 20px;
  font-size: 18px;
}

.totalTxt span{
  color: #69920E;
}

.btnFinalCheckout{
  width: 250px;
  padding: 10px;
  border: 2px solid #75A207DE;
  background-color: #75A207DE;
  font-size: 16px; 
  color: #fff;
  border-radius: 5px;
  font-family: Roboto-Medium;
  box-shadow: 0px 0px 70px 0px #75A2076B;
  text-align: center;
  cursor: pointer;
}

.btnFinalCheckout:hover{
  opacity: 0.9;
}


.title-mobile{
  display: flex;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  font-family: Roboto-Medium;
  font-size: 18px;

  margin-top: 20px;
}


body.dark-theme .changeThemeMobile{
  border: 2px solid transparent;
  border-top-color: #ffffff17;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
}

body.light-theme .changeThemeMobile{
  border: 2px solid transparent;
  border-top-color: #0000001f;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
}


.switchMobile{
  margin-right: 20px;
}


.cats-services{
    width: 1370px;
    margin: 0 auto;
    margin-top: 10px;
}


.title-services-catalog{
    width: auto;
}

.catalogServicesCats{
    justify-content: normal;
    gap: 20px;
}


.overlay-p{
    background-color: #1869AFA8;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
}

.popup-p{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 100px;
    z-index: 30;
    padding: 20px;
    background-color: #fff;
    width: 600px;
    border-radius: 20px;
    text-align: center;
    display: none;
}

body.dark-theme .popup-p{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 100px;
    z-index: 30;
    padding: 20px;
    background-color: #1A2537;
    width: 600px;
    border-radius: 20px;
    text-align: center;
    display: none;
}

.closedPopup-p{
    position: absolute;
    left: auto;
    right: 0;
    margin-right: 20px;
    cursor: pointer;
}

.titleP{
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
}

.popup-p img{
    width: 95%;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 20px;
}

.description-p{
    text-align: center;
    margin-top: 10px;
}

.btn-p{
    background-color: #75A207DE;
    color: #fff;   
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    margin-top: 20px;
}


@media(max-width: 1400px){
 
 .slider{
  width: 95%;
 } 
 
 
 .cats-services{
    width: 100%; 
 }




 .products-container{
  width: 100%;
 }
 
 .products-container-page{
  width: 100%;
 } 

.pathPages{
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
 }

 .main-content{
  width: 95%;
  padding: 0px;
 }


.cat-card{
  width: 30%;
}

.cat-img-wrapper{
  width: 100%;
}


}




@media(max-width: 1230px){
  nav li a{
    padding: 10px;
  }

  .theme-toggle-switch{
    margin-right: 20px;
    margin-left: 50px;
  }

  #info{
  width: 100%;
 } 

 #profile-settings{
  width: 100%;
 }

 .profile-container{
  width: 95%;
  max-width: 95%;
 }


}


@media(max-width: 1100px){
 

 #iconFireHello{
  width: 50px;
 }

 .rowMeanHello{
  font-size: 16px;
 }

 .totalFeedbacks{
  font-size: 15px;
 }

 .iconPayments img{
  width: 25px;
 }



}

@media(max-width: 1050px){
  nav{
    display: none;
  }

  .menu-btn{
    display: block;
    font-size: 25px;
    cursor: pointer;
  }

  .theme-toggle-switch{
    margin-left: 0px;
    margin-right: 0px;
  }

  .profile-tabs{
    flex-wrap: wrap;
  }

}



@media(max-width: 880px){
    
    
    
    

body.dark-theme .helloCont{
  display: block;
  width: 95%;
  margin: 0 auto;
}



  body.light-theme .helloCont {
    display: block;
    width: 95%;
    margin: 0 auto;
  }


  #summDeposit{
    width: 100%;
  }

  .rowFastTab{
    width: 100%;
    flex-wrap: wrap;
  }

  .rowMethodsPayment{
    flex-wrap: wrap;
  }

  body.dark-theme .tabFastSumm{
    width: 100px;
    margin-bottom: 10px;
  }

  body.light-theme .tabFastSumm{
    width: 100px;
    margin-bottom: 10px;
  }

  body.dark-theme .methodPayment{
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0px;
  }

  body.light-theme .methodPayment{
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0px;
  }


  .depositBalance{
    width: 100%;
  }

.leftContHello{
  justify-content: space-between;
}


.iconPayments img{
  width: 20px;
}

.rightContHello{
  margin-top: 20px;
  font-size: 11px;
  justify-content: center;
}

.meanHello{
  font-size: 20px;
  margin-right: 5px;
}

.rowMeanHello{
  font-size: 12px;
}

.doubleLeftMobile{
  display: flex;
  align-items: center;
}


.doubleRightMobile{
  background-color: #69920E;
  padding: 7px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.game-selection{
  display: block;
  width: 95%;
  margin: 0 auto;
  margin-top: 10px;
}

.services-cat{
  width: 100%;
  margin-bottom: 10px;
  background-position: center center;
}


.rowCats{
  display: flex;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cat-card{
  width: 200px;
  margin-top: 20px;
}


.cat-img-wrapper{
  background-size: contain;
  background-repeat: no-repeat;
  height: 125px;
}


.tag-cat{
  font-size: 12px;
  padding: 4px;
}

.cat-name{
  min-height: 30px;
  margin-top: 10px;
}

.bt-select-cat{
  padding: 7px;
  font-size: 12px;
}

.products-container{
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  justify-content: space-between;
}

.products-container-page{
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  justify-content: space-between;
}



.product-card{
  width: 200px;
}

.product-info{
  padding: 7px;
}

.product-name{
  font-size: 14px;
}


.product-price{
  font-size: 15px;
}

.rowStars{
  font-size: 14px;
}

.rowFilter{
  width: 95%;
  margin: 0 auto;
  margin-top: 40px;
}

.content-title{
  font-size: 16px;
}

.filterCont{
  font-size: 13px;
}

.filterSelectStyles{
  font-size: 13px;
  padding: 2px;
}

.filterDoubleTitle{
  display: flex;
  align-items: center;
}

.titleTxtDouble{
  font-family: Roboto-Medium;
}


.live-feed{
  width: 95%;
}

.popup-p{
    width: 95%;
}



}


.btn-save-profile{
    width: 250px;
}



@media(max-width: 450px){

  body.dark-theme .tabFastSumm{
    width: 48%;
    margin-bottom: 10px;
  }

  body.light-theme .tabFastSumm{
    width: 48%;
    margin-bottom: 10px;
  }
  
.btn-save-profile{
    width: 100%;
}
  


  .product-card {
    width: 47%;
  }

  .pathPages{
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 11px;
 }


  .product-name {
    font-size: 12px;
    min-height: 30px;
  }

  .product-game{
    margin-bottom: 5px;
  } 

  .rowPriceCard{
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .product-price{
    font-size: 14px;
  }

  .rowStars{
    font-size: 10px;
  }

  .buy-btn{
    padding: 5px;
    font-size: 12px;
  }


.cat-card{
  width: 160px;
}

.cat-img-wrapper{
  height: 99px;
}

  .tag-cat {
    font-size: 11px;
    padding: 3px;
  }

  .cat-name{
    min-height: 30px;
    font-size: 14px;
    margin-bottom: 3px;
  }

  .last-cat-mobile{
    width: 100%;
  }

.last-cat-mobile  .cat-img-wrapper{
  background-size: cover;
  height: 140px;
}

body.dark-theme .miniTxtLogo{
  font-size: 11px;
}

body.light-theme .miniTxtLogo{
  font-size: 11px;
}

}
