

/* Start:/local/assets/newyear.effects/css/effects.css?17663926835906*/
/**
 * Новогодние эффекты - CSS стили
 * Модуль: newyear.effects
 */

/* ========================================
   СНЕГ
   ======================================== */

.newyear-snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.newyear-snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    user-select: none;
    pointer-events: none;
    animation: newyear-snowfall linear infinite;
}

@keyframes newyear-snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes newyear-sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

/* ========================================
   ГИРЛЯНДА
   ======================================== */

.newyear-garland-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    pointer-events: none;
    z-index: 9998;
    overflow: visible;
}

.newyear-garland-wrapper {
    position: relative;
}

.newyear-garland-wire {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.newyear-garland-wire svg {
    width: 100%;
    height: 30px;
}

.newyear-garland-wire path {
    fill: none;
    stroke: #2a2a2a;
    stroke-width: 2;
}

.newyear-bulb {
    position: absolute;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    transform: translateX(-50%);
}

.newyear-bulb::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 5px;
    background: #555;
    border-radius: 2px 2px 0 0;
}

.newyear-bulb.lit {
    box-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

/* ========================================
   УКРАШЕНИЯ
   ======================================== */

.newyear-decoration-wrapper {
    position: relative;
    display: inline-block;
}

/* Новогодняя шапка */
.newyear-decoration-hat {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 40px;
    height: 30px;
    pointer-events: none;
    z-index: 100;
    transform: rotate(15deg);
}

.newyear-decoration-hat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 4px;
}

.newyear-decoration-hat::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 5px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #cc0000;
}

.newyear-decoration-hat .pompom {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

/* Ёлочный шар */
.newyear-decoration-ball {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #c0392b 100%);
    border-radius: 50%;
    box-shadow: 
        inset -5px -5px 10px rgba(0,0,0,0.3),
        inset 5px 5px 10px rgba(255,255,255,0.3);
    z-index: 100;
    pointer-events: none;
}

.newyear-decoration-ball::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
}

.newyear-decoration-ball::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

/* Звезда */
.newyear-decoration-star {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 30px;
    height: 30px;
    z-index: 100;
    pointer-events: none;
    animation: newyear-star-glow 1.5s ease-in-out infinite alternate;
}

.newyear-decoration-star svg {
    width: 100%;
    height: 100%;
    fill: #ffd700;
    filter: drop-shadow(0 0 5px #ffd700);
}

@keyframes newyear-star-glow {
    0% {
        filter: drop-shadow(0 0 5px #ffd700);
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 15px #ffd700);
        transform: scale(1.1);
    }
}

/* Леденец */
.newyear-decoration-candy {
    position: absolute;
    top: -25px;
    right: -5px;
    width: 25px;
    height: 40px;
    z-index: 100;
    pointer-events: none;
    transform: rotate(-30deg);
}

.newyear-decoration-candy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 4px solid transparent;
    border-top-color: #ff0000;
    border-right-color: #fff;
    border-radius: 50%;
}

.newyear-decoration-candy::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 25px;
    background: repeating-linear-gradient(
        0deg,
        #ff0000 0px,
        #ff0000 4px,
        #fff 4px,
        #fff 8px
    );
    border-radius: 3px;
}

/* ========================================
   АНИМАЦИИ ДЛЯ УКРАШЕНИЙ
   ======================================== */

.newyear-decoration-swing {
    animation: newyear-swing 3s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes newyear-swing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}


/* End */


/* Start:/local/templates/next-auto/assets/scss/main.css?178291221435470*/
@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  min-width: 320px;
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.page__main {
  overflow: hidden;
}

section {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.section-head {
  margin-bottom: 40px;
}
.section-head--row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-head--row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}
.section-head__title {
  margin: 0 0 10px;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.section-head__subtitle {
  margin: 0;
  max-width: 560px;
  color: #a3a3a3;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.section-head__link {
  color: #c59d5f;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.section-head__link:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn:focus-visible {
  outline: 2px solid #c59d5f;
  outline-offset: 3px;
}
.btn--primary {
  background: linear-gradient(90deg, #c59d5f 0%, #8e6d45 100%);
  color: #0a0a0a;
}
.btn--primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.btn--outline {
  border-color: rgba(197, 157, 95, 0.55);
  color: #ffffff;
  background: transparent;
}
.btn--outline:hover {
  border-color: #c59d5f;
  background: rgba(197, 157, 95, 0.08);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: #a3a3a3;
  min-height: 44px;
  font-size: 0.8125rem;
}
.btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(197, 157, 95, 0.35);
}
.btn--block {
  width: 100%;
}

.glass-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.slider-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 157, 95, 0.4);
  border-radius: 50%;
  background: #1a1a1a;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.slider-nav:focus-visible {
  outline: 2px solid #c59d5f;
  outline-offset: 3px;
}
.slider-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #c59d5f;
  border-right: 1.5px solid #c59d5f;
}
.slider-nav--prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.slider-nav--next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}
.slider-nav:hover {
  background: rgba(197, 157, 95, 0.1);
  border-color: #c59d5f;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0 14px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(16px);
}
.header--scrolled {
  background: rgba(10, 10, 10, 0.7);
  border-color: rgba(255, 255, 255, 0.06);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .header__inner {
    grid-template-columns: 220px 1fr auto;
  }
}
.header__logo {
  display: flex;
  flex-direction: column;
}
.header__logo-title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}
.header__logo-title span {
  color: #c59d5f;
}
.header__logo-subtitle {
  color: #737373;
  font-size: 0.6875rem;
  line-height: 1.3;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #1a1a1a;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin-inline: auto;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__nav {
  position: fixed;
  inset: 68px 16px auto;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header__nav--open {
  display: flex;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: 0;
  }
}
.header__link {
  padding: 8px 0;
  color: #a3a3a3;
  font-size: 0.875rem;
  font-weight: 500;
}
.header__link:hover {
  color: #ffffff;
}
.header__contacts {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .header__contacts {
    display: flex;
  }
}
.header__social {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #c59d5f;
}
.header__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.header__social:hover {
  color: #ffffff;
}
.header__phone-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.header__phone {
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}
.header__hours {
  color: #737373;
  font-size: 0.6875rem;
}

.site-footer {
  padding: 56px 0 24px;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.1fr 0.9fr 1fr 1.1fr;
  }
}
.site-footer__logo {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c59d5f;
}
.site-footer__text, .site-footer__contact {
  display: block;
  margin-top: 12px;
  color: #a3a3a3;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.6;
}
.site-footer__nav, .site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__link {
  color: #a3a3a3;
  font-size: 0.875rem;
}
.site-footer__link:hover {
  color: #c59d5f;
}
.site-footer__map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}
.site-footer__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  opacity: 0.85;
}
.site-footer__map-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.85);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #737373;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer__bottom-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .site-footer__bottom-links {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    text-align: right;
  }
}
.site-footer__dev {
  color: #737373;
}
.site-footer__dev:hover {
  color: #c59d5f;
}
.site-footer__legal:hover {
  color: #c59d5f;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 135px;
  padding-bottom: 120px;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video, .hero__poster {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
.hero__content {
  max-width: 680px;
}
.hero__title {
  margin: 0 0 20px;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.875rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero__title-accent {
  color: #c59d5f;
  font-weight: 700;
}
.hero__subtitle {
  margin: 0 0 32px;
  max-width: 520px;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero__trust {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  padding: 18px;
}
.hero__trust-inner {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .hero__trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .hero__trust-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  .hero__trust-item {
    border-bottom: 0;
    border-right: 1px solid #a3a3a3;
  }
  .hero__trust-item:last-child {
    border-right: 0;
  }
}
.hero__trust-text {
  color: #a3a3a3;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.hero__trust-icon-bg {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(0deg, #211A15 77%, #8e6d45 126%);
}
.hero__trust-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
}

.work-steps {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .work-steps {
    padding: 88px 0;
  }
}
@media (min-width: 1440px) {
  .work-steps {
    padding: 96px 0;
  }
}
.work-steps {
  background: #0a0a0a;
}
.work-steps__timeline {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .work-steps__timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    position: relative;
  }
  .work-steps__timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    border-top: 1px dashed rgba(197, 157, 95, 0.35);
    z-index: 0;
  }
}
.work-steps__item {
  position: relative;
  z-index: 1;
  padding: 12px;
  text-align: left;
  border-radius: 16px;
  background: linear-gradient(-10deg, #110d0b 83%, #957348 129%);
  backdrop-filter: blur(12px);
}
.work-steps__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(0deg, #211A15 77%, #8e6d45 126%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-steps__icon img {
  width: 28px;
  height: 28px;
}
@media (min-width: 1024px) {
  .work-steps__icon {
    margin: 0 auto 16px 0;
  }
}
.work-steps__number {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  margin-bottom: 8px;
  color: #c59d5f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.work-steps__title {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}
.work-steps__text {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.8125rem;
  line-height: 1.55;
}
@media (min-width: 1024px) {
  .work-steps__text {
    max-width: 180px;
    margin-inline: auto;
  }
}

.catalog {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .catalog {
    padding: 88px 0;
  }
}
@media (min-width: 1440px) {
  .catalog {
    padding: 96px 0;
  }
}
.catalog {
  background: #0a0a0a;
}
.catalog__filters {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: #1a1a1a;
}
@media (min-width: 768px) {
  .catalog__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .catalog__filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {
  .catalog__filters {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.catalog__filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #737373;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.catalog__filter select,
.catalog__filter input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: 0;
}
.catalog__reset {
  align-self: end;
}
.catalog__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {
  .catalog__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease;
}
.catalog-card:hover {
  border-color: rgba(197, 157, 95, 0.35);
}
.catalog-card--hidden {
  display: none;
}
.catalog-card__media {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.catalog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}
.catalog-card__favorite::before {
  content: "♡";
  color: #c59d5f;
  font-size: 0.875rem;
}
.catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.catalog-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}
.catalog-card__specs {
  margin: 0 0 12px;
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.5;
}
.catalog-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}
.catalog-card__price-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.catalog-card__price-label {
  color: #737373;
  font-size: 0.6875rem;
}
.catalog-card .btn {
  min-height: 42px;
  font-size: 0.8125rem;
}

.delivered,
.testimonials {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .delivered,
  .testimonials {
    padding: 88px 0;
  }
}
@media (min-width: 1440px) {
  .delivered,
  .testimonials {
    padding: 96px 0;
  }
}
.delivered,
.testimonials {
  background: #0a0a0a;
}

.delivered__slider,
.testimonials__slider {
  position: relative;
  padding-bottom: 52px;
}

.delivered-card,
.testimonial-card {
  height: auto;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.delivered-card__media {
  overflow: hidden;
  background: #0a0a0a;
}
.delivered-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.delivered-card__body {
  padding: 16px;
}
.delivered-card__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
}
.delivered-card__meta {
  margin: 0 0 10px;
  color: #737373;
  font-size: 0.75rem;
}
.delivered-card__price {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 700;
}
.delivered-card__specs {
  display: block;
  margin: 0 0 12px;
  color: #737373;
  font-size: 0.75rem;
}
.delivered-card__video {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c59d5f;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}
.delivered-card__video::before {
  content: "▶";
  font-size: 0.625rem;
}
.delivered-card__video:hover:not(:disabled) {
  color: #ffffff;
}
.delivered-card__video:disabled {
  opacity: 0.45;
  cursor: default;
}

.testimonial-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #0a0a0a;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.testimonial-card__media:disabled {
  cursor: default;
}
.testimonial-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(197, 157, 95, 0.55);
}
.testimonial-card__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #c59d5f;
  transform: translateX(2px);
}
.testimonial-card__body {
  padding: 14px 16px 18px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(197, 157, 95, 0.45);
}
.testimonial-card__rating {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.testimonial-card__rating span {
  width: 12px;
  height: 12px;
  background: #c59d5f;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-card__name {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.testimonial-card__meta {
  margin: 0;
  color: #737373;
  font-size: 0.75rem;
}

.delivered__nav,
.testimonials__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.86);
  backdrop-filter: blur(6px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.video-modal__close:hover {
  background: rgba(197, 157, 95, 0.25);
}
.video-modal__frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 50vh;
}

body.video-modal-open {
  overflow: hidden;
}

.stats {
  padding: 40px 0;
  background: #241D18;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.stats__inner {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .stats__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stats__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  text-align: center;
  padding: 20px;
  align-items: center;
  height: fit-content;
}
.stats__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184, 135, 70, 0.12);
  border: 1px solid rgba(184, 135, 70, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: 1/1/3/2;
}
.stats__icon img {
  width: 42px;
  height: 42px;
}
.stats__value {
  font-size: clamp(2rem, 4vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.stats__label {
  margin: 0;
  color: #a3a3a3;
}

.delivery-map,
.team,
.savings,
.lead-form,
.trust {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .delivery-map,
  .team,
  .savings,
  .lead-form,
  .trust {
    padding: 88px 0;
  }
}
@media (min-width: 1440px) {
  .delivery-map,
  .team,
  .savings,
  .lead-form,
  .trust {
    padding: 96px 0;
  }
}

.team__grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 1024px) {
  .team__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
.team__text {
  margin: 16px 0 0;
  color: #a3a3a3;
  max-width: 620px;
}
.team__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.team__list-item {
  position: relative;
  padding-left: 22px;
  color: #a3a3a3;
  line-height: 1.45;
}
.team__list-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(184, 135, 70, 0.18);
  border: 1px solid rgba(184, 135, 70, 0.45);
  box-shadow: 0 0 0 6px rgba(197, 157, 95, 0.08);
  transform: translateY(-50%);
}
.team__visual {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16/10;
}
.team__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.28) 52%, transparent 100%), radial-gradient(700px 380px at 100% 0%, rgba(197, 157, 95, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform: scale(1.02);
}

.advantages {
  padding: 24px 0;
}
.advantages__grid {
  position: relative;
  display: grid;
  gap: 24px;
  border-radius: 16px;
  background: #241D18;
  padding: 20px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .advantages__grid {
    grid-template-columns: 10fr 5fr;
    align-items: stretch;
  }
}
.advantages__grid:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #241D18 58%, rgba(36, 29, 24, 0.1882352941) 81%, transparent 100%);
}
.advantages__cards {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .advantages__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.advantages__content {
  position: relative;
  z-index: 3;
}
.advantages-card {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(-10deg, #110d0b 83%, #957348 129%);
  backdrop-filter: blur(12px);
}
.advantages-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(184, 135, 70, 0.12);
  border: 1px solid rgba(184, 135, 70, 0.35);
}
.advantages-card__icon img {
  width: 20px;
  height: 20px;
}
.advantages-card__title {
  margin: 0 0 8px;
  font-size: 14px;
}
.advantages-card__text {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.9rem;
}
.advantages__feature {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.advantages__bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 1;
}
.advantages__feature-body {
  position: relative;
  z-index: 2;
}
.advantages__feature-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.advantages__feature-text {
  margin: 0 0 18px;
  color: #ffffff;
}

.delivery-map__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .delivery-map__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
.delivery-map__list {
  margin: 24px 0 0;
  padding-left: 18px;
  color: #a3a3a3;
}
.delivery-map__list li + li {
  margin-top: 8px;
}
.delivery-map__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.delivery-map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.delivery-map__point {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #c59d5f;
  box-shadow: 0 0 0 8px rgba(214, 161, 95, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pulse 2s infinite;
}
.delivery-map__tooltip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid rgba(184, 135, 70, 0.35);
  font-size: 0.875rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 161, 95, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(214, 161, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 161, 95, 0);
  }
}
.savings__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .savings__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
.savings__text {
  margin: 16px 0 0;
  color: #a3a3a3;
  max-width: 560px;
}
.savings__visual {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(900px 420px at 100% 0%, rgba(197, 157, 95, 0.18) 0%, transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (min-width: 768px) {
  .savings__visual {
    padding: 22px;
  }
}
.savings__cards {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
@media (min-width: 520px) {
  .savings__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
  }
}
.savings-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 168px;
  padding: 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 13, 11, 0.72);
}
@media (min-width: 768px) {
  .savings-card {
    min-height: 190px;
    padding: 18px 18px 20px;
  }
}
.savings-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.savings-card__label {
  color: #a3a3a3;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.savings-card__chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(184, 135, 70, 0.35);
  background: rgba(184, 135, 70, 0.12);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}
.savings-card__price {
  margin-top: auto;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}
.savings-card__currency {
  opacity: 0.92;
  font-weight: 800;
}
.savings-card__sub {
  color: #a3a3a3;
  font-size: 0.875rem;
  line-height: 1.4;
}
.savings-card--import {
  border-color: rgba(184, 135, 70, 0.35);
  background: linear-gradient(-10deg, #110d0b 83%, rgba(149, 115, 72, 0.85) 129%);
  box-shadow: 0 8px 32px rgba(197, 157, 95, 0.15);
}
.savings__delta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(184, 135, 70, 0.35);
  background: rgba(184, 135, 70, 0.1);
  margin-bottom: 14px;
}
.savings__delta-label {
  color: #a3a3a3;
  font-size: 0.9rem;
}
.savings__delta-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}
.savings__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.savings__list-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a3a3a3;
}
.savings__list-item strong {
  color: #ffffff;
  white-space: nowrap;
}
.savings__list-item--accent {
  color: #ffffff;
}
.savings__list-item--accent strong {
  color: #c59d5f;
}

.lead-form {
  position: relative;
  background: url("/local/templates/next-auto/assets/images/lead-form-bg.png") no-repeat top right/contain;
  padding: 48px 0;
}
.lead-form:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #020202 50%, rgba(2, 2, 2, 0.3137254902) 60%, transparent 66%);
  z-index: 1;
}
.lead-form__grid {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: stretch;
  z-index: 2;
}
@media (min-width: 1024px) {
  .lead-form__grid {
    grid-template-columns: 2fr 0.95fr;
    gap: 40px;
  }
}
.lead-form__text {
  margin: 0 0 28px;
  color: #a3a3a3;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 480px;
}
.lead-form__fields {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .lead-form__fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.lead-form__form {
  display: grid;
  gap: 16px;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #737373;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .lead-form__field--full {
    grid-column: 1/-2;
  }
}
.lead-form__field input,
.lead-form__field select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.875rem;
}
.lead-form__field input::placeholder,
.lead-form__field select::placeholder {
  color: #737373;
}
.lead-form__policy {
  margin: 0;
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.5;
}
.lead-form__policy a {
  color: #c59d5f;
}
.lead-form__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.35);
  color: #ffb4b4;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.lead-form__media {
  position: absolute;
  top: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
  min-height: 320px;
}
.lead-form__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lead-modal[hidden] {
  display: none;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.78);
  backdrop-filter: blur(4px);
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}
.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #737373;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lead-modal__close:hover {
  color: #ffffff;
}
.lead-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(197, 157, 95, 0.45);
  background: rgba(197, 157, 95, 0.12);
  position: relative;
}
.lead-modal__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 18px;
  border-right: 2px solid #c59d5f;
  border-bottom: 2px solid #c59d5f;
  transform: rotate(45deg) translate(-2px, -1px);
}
.lead-modal__icon--error::before {
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  content: "!";
  color: #ff8f8f;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 56px;
}
.lead-modal__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
}
.lead-modal__text {
  margin: 0 0 20px;
  color: #a3a3a3;
  font-size: 0.875rem;
  line-height: 1.55;
}

body.lead-modal-open {
  overflow: hidden;
}

.trust {
  padding: 72px 0;
}
@media (min-width: 768px) {
  .trust {
    padding: 88px 0;
  }
}
@media (min-width: 1440px) {
  .trust {
    padding: 96px 0;
  }
}
.trust {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.faq__list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq__item--active .faq__answer {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
}
.faq__item--active .faq__icon::after {
  opacity: 0;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #c59d5f;
  transition: opacity 0.25s ease;
}
.faq__icon::before {
  width: 12px;
  height: 1.5px;
}
.faq__icon::after {
  width: 1.5px;
  height: 12px;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq__answer p {
  overflow: hidden;
  margin: 0;
  padding-right: 24px;
  color: #737373;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.guarantees__grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .guarantees__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guarantee-card {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guarantee-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 157, 95, 0.35);
  border-radius: 50%;
  background: rgba(197, 157, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-card__icon img {
  width: 18px;
  height: 18px;
}
.guarantee-card__title {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
}
.guarantee-card__text {
  margin: 0;
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.5;
}

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

/* End */
/* /local/assets/newyear.effects/css/effects.css?17663926835906 */
/* /local/templates/next-auto/assets/scss/main.css?178291221435470 */
