@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: Poppins, sans-serif;
}

a {
  text-decoration: none;
}

body * {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  padding-top: 70px;
  background: #fbf7f7;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
header .main-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .menu {
  display: flex;
}
header .menu a {
  display: block;
  width: 100%;
  padding: 0.8rem;
  height: 100%;
  color: #333;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
}
header .menu a.active {
  color: #f53e24;
  border-radius: 8px;
}
header .menu a:hover {
  background-color: rgba(240, 61, 48, 0.086);
  color: #f53e24;
  border-radius: 10px;
  transition: all 0.3s ease;
}
header form {
  display: flex;
  width: 248px;
  height: 40px;
  padding-left: 14px;
  margin-left: 12px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f6f6f6;
  position: relative;
  background: color(display-p3 0.9647 0.9647 0.9647);
}
header form input {
  border: none;
  outline: none;
  background: none;
  width: 95%;
  margin-left: 1.2rem;
  font-size: 14px;
}
header form button {
  width: 1.3rem;
  border: none;
  outline: none;
  background: url(../img/search.svg) no-repeat;
  background-size: cover;
  height: 1.3rem;
  display: block;
  position: absolute;
  top: 9px;
  left: 10px;
}
header form:active {
  background: white;
  border: 1px solid #f53e24;
}
header .logo img {
  width: 60px;
}
header .auth {
  display: flex;
  align-items: center;
}
header .auth > button:first-child {
  margin-right: 0.1rem;
}

button.secondary {
  cursor: pointer;
  display: flex;
  height: 38px;
  padding: 15px 19px;
  justify-content: center;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #ea3f2e;
  background: #fff;
  color: #ea3f2e;
  margin-left: 14px;
  font-weight: 700;
  text-shadow: none;
  transition: all 0.33s;
}
button.primary {
  display: flex;
  width: 100px;
  height: 38px;
  padding: 15px 19px;
  justify-content: center;
  align-items: center;
  border: none;
  flex-shrink: 0;
  border-radius: 10px;
  background: #ff6441;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  cursor: pointer;
  transition: all 0.33s;
  margin-left: 20px;
}

.featured h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 2rem;
}
.featured .featured-stores {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 24px;
}
.featured .featured-stores .feature-card {
  width: calc(20% - 24px);
  min-height: 220px;
  padding: 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  cursor: pointer;
}
.featured .featured-stores .feature-card .card-title {
  color: #000;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 600;
  margin: 0;
  text-align: center;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.featured .featured-stores .feature-card .card-coupons {
  align-self: stretch;
  height: 37px;
  padding: 8px 12px;
  background: #f6f6f6;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.featured .featured-stores .feature-card .card-coupons .card-coupon-text {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured .featured-stores .feature-card .card-footer {
  display: none;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.featured .featured-stores .feature-card .badge {
  display: flex;
  padding: 11px 13px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #181818;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  cursor: pointer;
  transition: all 0.33s;
  font-size: 12px;
  margin-top: 10px;
}
.featured .featured-stores .feature-card .image {
  align-self: stretch;
  height: 120px;
  position: relative;
}
.featured .featured-stores .feature-card .image img {
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

footer {
  background: white;
}
footer .menu {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 1rem 0;
}
footer .menu img {
  width: 24px;
  margin-right: 0.7em;
}
footer .menu h4 {
  font-weight: 700;
  color: #333;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0.7rem;
}
footer .menu a {
  color: #999;
  line-height: 50px;
  font-size: 14px;
  margin-bottom: 1rem;
}
footer .menu p {
  display: flex;
  align-items: center;
}
footer .chrome-app img {
  width: 238px;
  border-radius: 1rem;
}
footer .legal, footer .copyright {
  padding: 1rem 0;
  text-align: center;
}
footer .legal p, footer .copyright p {
  color: #999;
  line-height: 1.5;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
footer .legal {
  border-top: 1px solid #eeeeee;
}

.gdpr-banner {
  position: fixed;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 900px;
  padding: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  display: flex;
  border-radius: 10px;
  background: white;
  box-shadow: 30px 60px 107px 0px rgba(0, 0, 0, 0.1882352941);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
}

.gdpr-banner .gdpr-text p {
  color: #7a7a7a;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 0.75rem;
}
.gdpr-banner .gdpr-text p:first-child {
  margin-bottom: 5px;
}

.gdpr-banner .buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.gdpr-banner .buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
}

.gdpr-banner .buttons .accept-btn {
  background-color: #60a762;
  color: white;
  transition: all 0.5s ease;
}
.gdpr-banner .buttons .accept-btn:hover {
  background-color: #48944b;
  transition: all 0.5s linear;
}

.gdpr-banner .buttons .decline-btn {
  background-color: #f44336;
  color: white;
}

@media (min-width: 600px) {
  .gdpr-banner .buttons {
    margin-top: 0;
  }
}
/* Стили для слайдера категорий */
.categories-slider-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.categories-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  width: 100%;
}

.category-button {
  flex: 0 0 auto;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.category-button:hover {
  background-color: #dcdcdc;
}

.category-button.active {
  background-color: #17a2b8;
  color: white;
}

.scroll-button {
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0 10px;
}

/* Стили для магазинов */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  background-color: #17a2b8;
  color: white;
  margin-right: 5px;
}

.featured-stores, .all-stores-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.store-item {
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.store-item:hover {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.04), 0 16px 24px 2px rgba(0, 0, 0, 0.02), 0 6px 30px 5px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.store-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.store-item h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

.store-item p {
  margin: 5px 0;
}

.store-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #17a2b8;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.store-item a:hover {
  background-color: #138496;
}

/* Стили для индикатора загрузки */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Адаптивность */
@media (max-width: 1024px) {
  .store-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}
@media (max-width: 768px) {
  .store-item {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .store-item {
    flex: 1 1 100%;
  }
  .categories-slider-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-button {
    display: none;
  }
}
.all-stores-container {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.all-stores-container > a {
  color: #000;
  box-sizing: border-box;
  border-radius: 12px;
  line-height: 26px;
  display: flex;
  align-items: center;
  padding: 18px 14px;
}
.all-stores-container > a .ministore-full {
  color: #000;
  box-sizing: border-box;
  border-radius: 12px;
  line-height: 26px;
  display: flex;
  align-items: center;
}
.all-stores-container > a .ministore-full .ministore-img {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: 14px;
  background-color: #fff;
  flex: 0 0 88px;
  border: 1px solid #ececec;
  position: relative;
}
.all-stores-container > a .ministore-full .ministore-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.all-stores-container > a .ministore-full .ministore-info {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  box-sizing: border-box;
  overflow: hidden;
}
.all-stores-container > a .ministore-full .ministore-info .ministore-name {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.all-stores-container > a .ministore-full .ministore-info .ministore-count {
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  position: relative;
  color: #999;
  border-radius: 8px;
  width: fit-content;
  box-sizing: border-box;
  line-height: normal;
}

.main-page h1 {
  font-size: 42px;
  font-weight: 200;
  color: #363636;
  line-height: 1.125;
  margin-bottom: 24px;
}
.main-page h1 i {
  font-size: 48px;
  font-weight: 700;
  display: block;
}
.main-page .main-container {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-page .main-container > * {
  width: 50%;
}
.main-page .promo-main a {
  margin-bottom: 24px;
  background-color: #ff6441;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 0px 32px;
  line-height: 48px;
  height: unset;
  transition: all 0.5s linear;
}
.main-page .promo-main a:hover {
  background: #ff4015;
  transition: all 0.5s linear;
}
.main-page .star-rating {
  display: flex;
  gap: 5px;
  margin-right: 10px;
}
.main-page .star-rating img {
  width: 12px;
}
.main-page span {
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
.main-page span b {
  font-weight: 600;
}
.main-page .banner-rating {
  display: flex;
  align-items: center;
}
.main-page .promo-stores {
  display: flex;
  justify-content: space-between;
  padding-right: 100px;
  height: 560px;
}
.main-page .promo-stores > div {
  width: 150px;
  animation: technologiesSpin linear 40s infinite;
}
.main-page .promo-stores > div:nth-child(1) {
  margin-top: -10px;
}
.main-page .promo-stores > div:nth-child(2) {
  transform: translateY(-350px);
  animation: technologiesSpinBackward linear 40s infinite;
}
.main-page .promo-stores > div:nth-child(3) {
  margin-top: -30px;
  animation-duration: 40s;
}
.main-page .promo-stores > div > div {
  border-radius: 5px;
  width: 100%;
  transition: all 0.5s ease;
  height: 150px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: linear-gradient(45deg, rgba(241, 241, 241, 0.2117647059), white);
  border: 1px solid rgba(255, 255, 255, 0.7294117647);
  box-shadow: 30px 60px 107px 0px rgb(229, 229, 229);
  z-index: 9;
  box-sizing: border-box;
  backdrop-filter: blur(40px);
}
.main-page .promo-stores > div > div img {
  width: 100%;
}

@keyframes technologiesSpin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes technologiesSpinBackward {
  0% {
    transform: translateY(-350px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-350px);
  }
}
.promo-install .flexible.container {
  margin: 100px auto;
  flex-direction: column;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.promo-install h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 200;
  color: #363636;
  line-height: 1.125;
  margin-bottom: 24px;
}
.promo-install h2 i {
  font-size: 48px;
  font-weight: 700;
  display: block;
}
.promo-install a {
  background-color: #ff6441;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 0px 32px;
  line-height: 48px;
  margin: 0 auto 24px auto;
  height: unset;
  transition: all 0.5s linear;
}
.promo-install a:hover {
  background: #ff4015;
  transition: all 0.5s linear;
}
.promo-install .banner-rating {
  display: flex;
  align-items: center;
  margin: 0 auto 0 auto;
}
.promo-install .banner-rating .star-rating {
  display: flex;
  gap: 5px;
  margin-right: 10px;
}
.promo-install .banner-rating .star-rating img {
  width: 12px;
}
.promo-install .banner-rating span {
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
.promo-install .banner-rating span b {
  font-weight: 600;
}

.testimonials {
  padding-top: 50px;
}
.testimonials .container {
  text-align: center;
}
.testimonials .carousel {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-radius: 8px;
}
.testimonials .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  position: relative;
  will-change: transform;
}
.testimonials .slide {
  width: 300px;
  margin: 0 10px;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  height: 250px;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .slide.active {
  opacity: 1;
}
.testimonials .additional {
  font-weight: 400;
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.5;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 50px;
}
.testimonials .slide h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonials .slide h3 span {
  display: block;
  color: #1e1e1e;
  font-size: 0.9rem;
  margin-top: 4px;
}
.testimonials .slide p {
  font-size: 16px;
  line-height: 135%;
  color: #363636;
  display: block;
  margin: 0 auto 16px auto;
  text-align: inherit;
}
.testimonials h2 {
  font-size: 32px;
  margin-bottom: 16px !important;
  line-height: 1.4;
  font-weight: 500;
  color: #363636;
}
.testimonials .carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.testimonials .carousel-dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: rgb(239, 239, 239);
  cursor: pointer;
  transition: background-color 0.3s;
}
.testimonials .carousel-dot.active {
  background-color: rgb(255, 100, 65);
}
.testimonials .has-text-warning i {
  font-size: 14px;
  color: #ffb300;
}
.testimonials h5 {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 2px;
  color: #ff6441;
  margin-bottom: 16px;
  display: block;
  text-align: inherit;
}

.featured-shops {
  padding: 50px 0;
  background: #fdfbfb;
  text-align: center;
  /* -- "Трек", где лежат 2 слайда -- */
  /* -- Каждый слайд -- */
  /* -- "Карточка" одного бренда/логотипа -- */
  /* Можно добавить hover-эффект */
  /* -- Точки пагинации -- */
}
.featured-shops h5 {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 2px;
  color: #ff6441;
  margin-bottom: 16px;
  display: block;
  text-align: inherit;
}
.featured-shops h2 {
  font-size: 32px;
  margin-bottom: 16px !important;
  line-height: 1.4;
  font-weight: 500;
  color: #363636;
}
.featured-shops .additional {
  font-weight: 400;
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.5;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 50px;
}
.featured-shops .carousel-stores {
  max-width: 875px; /* или на ваше усмотрение */
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* чтобы скрывать выходящие слайды */
  border-radius: 8px;
}
.featured-shops .carousel-track {
  display: flex;
  transition: transform 0.5s ease; /* анимация переключения */
}
.featured-shops .slide {
  min-width: 100%; /* 2 слайда «линейно» по 100% ширины каждый */
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки */
  grid-gap: 10px; /* расстояние между «карточками» */
  justify-items: center; /* центрируем содержимое ячеек по горизонтали */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.featured-shops .brand-card {
  width: 180px; /* задаём фиксированную ширину (примерно) */
  height: 100px;
  background: #fcfcfc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.5s linear;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 4px rgba(54, 54, 54, 0.08);
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
}
.featured-shops .brand-card:hover {
  box-shadow: 0 2px 4px rgba(54, 54, 54, 0.04);
  transform: translateY(-5px);
  transition: all 0.5s linear;
}
.featured-shops .carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.featured-shops .carousel-dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}
.featured-shops .carousel-dot.active {
  background-color: #ff6633; /* выделяем активную «точку» */
}

/*# sourceMappingURL=public.css.map */
