/* ============================================================
   FONTS & RESET
   ============================================================ */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('/wp-content/themes/Flow/fonts/Ubuntu-Regular.woff2') format('woff2'),
       url('/wp-content/themes/Flow/fonts/Ubuntu-Regular.woff') format('woff');
}
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('/wp-content/themes/Flow/fonts/Ubuntu-Medium.woff2') format('woff2'),
       url('/wp-content/themes/Flow/fonts/Ubuntu-Medium.woff') format('woff');
}
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('/wp-content/themes/Flow/fonts/Ubuntu-Bold.woff2') format('woff2'),
       url('/wp-content/themes/Flow/fonts/Ubuntu-Bold.woff') format('woff');
}
* {
    -webkit-tap-highlight-color: transparent;
}
* { box-sizing: border-box; margin: 0; }

/* Для WebKit браузеров (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Для Firefox */
* {
    scrollbar-width: none;
}

/* Для IE и Edge (старые версии) */
* {
    -ms-overflow-style: none;
}

body {
  font-family: 'Ubuntu', sans-serif !important;
  font-size: 18px;
  line-height: 1.4;
  color: #5c5e6e;
  background: #fff;
  scroll-behavior: smooth;
}

a { color: #5c5e6e; text-decoration: none; }
a:hover { color: #7eca1d; }
img { max-width: 100%; display: block; height: auto; }
p { color: #5c5e6e; font-size: 18px; }

/* ============================================================
   CONTAINERS & HELPERS
   ============================================================ */
.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.login-remember label {
	display:none
}

.button-primary{
	margin-top:20px;
	display: inline-block;
    padding: 12px 32px;
    border: 0;
    border-radius: 32px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
	background: #7eca1d;
	color:#fff
}

@media (min-width: 1330px) { .container { width: 1330px; } }
.container--sm { max-width: 960px; }

/* Text */
.text-center { text-align: center; }
.type--white { color: #fff; }
.type--mark { color: #7eca1d; }
.type--secondary { color: #9699a8; }
.type--w700 { font-weight: 700; }
.type--w500 { font-weight: 500; }
.type--lgx { font-size: 44px; line-height: 1.2; }
.type--md { font-size: 20px; }
.type--sm { font-size: 14px; }

/* Flex & Grid */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.grid { display: grid; }

/* Spacing */
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-100 { margin-bottom: 100px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.p-20 { padding: 20px; }
.p-32 { padding: 32px; }

/* Borders */
.br-8 { border-radius: 8px; }
.br-12 { border-radius: 12px; }
.br-16 { border-radius: 16px; }
.br-24 { border-radius: 24px; }

/* Backgrounds */
.bg-white { background: #fff; }
.bg--greenDark,
.bg--greenPrimary { background: #7eca1d; }
.bg--navy { background: #001970; }
.bg--pink { background: #ff6889; }
.bg--violet { background: #6b33b2; }
.bg--coral { background: #ff4f4f; }
.bg--sea { background: #1dd0c7; }
.bg--gradient {
  background: linear-gradient(98.95deg, #e3eeff, #e4f6e4 52.6%, #ffeee4);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 32px;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  padding: 17px 48px;
}

.btn--mark { background: #7eca1d; color: #fff; font-size: 24px; }
.btn--mark:hover { background: #65a217; }

.btn--white { background: #fff; color: #5c5e6e; }
.btn--white:hover { background: #f0f0f0; }

.btn--light {
  background: #fff;
  border: 1px solid #dcdfe8;
  color: #7eca1d;
}
.btn--light:hover {
  background: #f3f8ed;
  border-color: #7eca1d;
}

.btn--sm { padding: 12px 30px; font-weight: 500; font-size: 20px; }
.btn--md { padding: 17px 20px; font-weight: 700; font-size: 20px; }
.btn--full { display: block; width: 100%; }

.btn--empty {
  background: transparent;
  border: 1px solid #dcdfe8;
  color: #7eca1d;
}
.btn--empty:hover {
  background: #f3f8ed;
  border-color: #7eca1d;
}

.link--mark { color: #7eca1d; }
.link--mark:hover { color: #65a217; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.input {
  background: #f1f2f6;
  border: 1px solid #dcdfe8;
  border-radius: 4px;
  padding: 12px 20px;
  width: 100%;
  font-family: inherit;
  transition: 0.3s;
}
.input:focus {
  background: #fff;
  border-color: #7eca1d;
  outline: none;
}
.input-row { margin-bottom: 20px; }

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 6px;
}
.checkbox input { display: none; }
.checkbox__mark {
  width: 24px;
  height: 24px;
  border: 2px solid #dcdfe8;
  border-radius: 4px;
  flex-shrink: 0;
  transition: 0.3s;
  position: relative;
}
.checkbox input:checked + .checkbox__mark {
  background: #7eca1d;
  border-color: #7eca1d;
}
.checkbox input:checked + .checkbox__mark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Radio */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid #dcdfe8;
  border-radius: 12px;
  transition: 0.3s;
  flex: 1;
  min-width: 120px;
}
.radio-group label.active {
  border-color: #7eca1d;
  background: #f3f8ed;
}
.radio-group input { display: none; }
.radio-group .radio__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #dcdfe8;
  flex-shrink: 0;
  transition: 0.3s;
}
.radio-group input:checked + .radio__dot {
  border-color: #7eca1d;
  background: #7eca1d;
  box-shadow: inset 0 0 0 4px #fff;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #dcdfe8;
  border-radius: 24px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.tag:hover { background: #f3f8ed; border-color: #7eca1d; }
.tag--active {
  background: #7eca1d;
  border-color: #7eca1d;
  color: #fff;
}
.tag--orange { color: #ff7b27; }
.tag--orange:hover { background: #fff5ee; border-color: #ff7b27; }
.tag--orange.tag--active {
  background: #ff7b27;
  color: #fff;
}

/* Slider controls */
.slider-control {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s;
  border: 0;
}
.slider-control:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.slider-control--light {
  background: transparent;
  border: 1px solid #dcdfe8;
}
.slider-control--light:hover { background: #fff; border-color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 50px 0; }
.section-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-slide {
  padding: 60px 0;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-slide__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-slide__content { flex: 1; min-width: 280px; }
.hero-slide__title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-slide__subtitle {
  font-size: 22px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 500px;
}
.hero-slide__image { flex: 1; min-width: 200px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.how-it-works__item {
  background: #fff;
  border: 1px solid #dcdfe8;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}
.how-it-works__item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.how-it-works__image { max-width: 180px; margin: 0 auto 16px; }
.how-it-works__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.how-it-works__text { color: #5c5e6e; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-categories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
}
.program-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #f1f2f6;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}
.program-category.active {
  background: #7eca1d;
  color: #fff;
  border-color: #7eca1d;
}
.program-category svg { width: 24px; height: 24px; fill: currentColor; }

.program-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.program-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dcdfe8;
  transition: 0.3s;
  background: #fff;
}
.program-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.program-card__header {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 140px;
}
.program-card__icon { width: 80px; height: auto; }
.program-card__info { flex: 1; }
.program-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.program-card__kcal {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: block;
}
.program-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  margin-top: 8px;
}
.program-card__actions {
  display: flex;
  border-top: 1px solid #dcdfe8;
}
.program-card__actions > * {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 500;
  transition: 0.3s;
  border-right: 1px solid #dcdfe8;
}
.program-card__actions > *:last-child { border-right: 0; }
.program-card__link { color: #9699a8; }
.program-card__link:hover { color: #7eca1d; }
.program-card__order { color: #7eca1d; }
.program-card__order:hover { background: #f3f8ed; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dcdfe8;
}
.review-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.review-card__image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.review-card__image { width: 100%; height: 120px; object-fit: cover; }
.review-card__label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}
.review-card__name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.review-card__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.review-card__stats > div {
  background: #f3f8ed;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.review-card__stat-label { color: #5c5e6e; margin-right: 4px; }
.review-card__text {
  color: #5c5e6e;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.comparison__column {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dcdfe8;
}
.comparison__title {
  font-size: 24px;
  font-weight: 700;
  padding: 24px 32px;
}
.comparison__title--gray { background: #f1f2f6; }
.comparison__title--green { background: #7eca1d; color: #fff; }
.comparison__item {
  padding: 20px 32px;
  display: flex;
  gap: 16px;
  border-bottom: 1px dashed #f1f2f6;
}
.comparison__item:last-child { border-bottom: 0; }
.comparison__icon { font-size: 24px; flex-shrink: 0; }
.comparison__icon--error { color: #d00025; }
.comparison__icon--success { color: #7eca1d; }
.comparison__label {
  display: block;
  font-size: 14px;
  color: #9699a8;
  margin-bottom: 4px;
}
.comparison__value { font-weight: 500; }

/* ============================================================
   ORDER FORM
   ============================================================ */
.order-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.order-card__header {
  padding: 32px 48px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.order-card__title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  line-height: 50px;
}
.order-card__badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
}
.order-card__image {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 220px;
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.order-card__body { padding: 32px 48px; }

.order-duration__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
      align-items: center;
}
.order-duration__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #dcdfe8;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.order-duration__option.active {
  border-color: #7eca1d;
  background: #f3f8ed;
}
.order-duration__option input { display: none; }
.order-duration__discount {
  color: #7eca1d;
  font-weight: 700;
  margin-left: auto;
}

.order-payment-type {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid #dcdfe8;
  margin-top: 12px;
}
.order-payment-type__label { font-weight: 700; }
.order-payment-type__info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff7b27;
  font-size: 14px;
}

.order-divider {
  border: 0;
  border-top: 1px solid #dcdfe8;
  margin: 24px 0;
}
.order-total {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}
.order-total__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #dcdfe8;
}
.order-total__row:last-child { border-bottom: 0; }
.order-total__row--total { font-weight: 700; font-size: 20px; }
.order-total__value--mark { color: #7eca1d; }

.order-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    border-top: 1px solid #dcdfe8;
    padding-top: 24px;
    justify-content: center;
}
.slotLabel{
	color: #5c5e6e; font-size: 14px;
}
.order-footer__text {
  flex: 1;
  font-size: 14px;
  color: #5c5e6e;
  min-width: 200px;
  text-align:center
}
.order-12{
	grid-template-columns: 1fr 1fr;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dcdfe8;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7eca1d;
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature__text { color: #5c5e6e; line-height: 1.6; }

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.promotion-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dcdfe8;
  transition: 0.3s;
  background: #fff;
}
.promotion-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.promotion-card__image { width: 100%; height: 260px; object-fit: cover; }
.promotion-card__content { padding: 16px; }
.promotion-card__text { margin-bottom: 12px; font-size: 20px; }
.promotion-card__link { color: #7eca1d; font-weight: 500; font-size: 18px; }

/* ============================================================
   HELP BANNER
   ============================================================ */
.help-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #f3f8ed;
  border-radius: 24px;
  padding: 40px;
}
.help-banner__image img { max-width: 300px; margin: 0 auto; }
.help-banner__title { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.help-banner__text { color: #5c5e6e; margin-bottom: 20px; }
.help-banner__form { display: flex; gap: 16px; flex-wrap: wrap; }
.help-banner__form .input { flex: 1; min-width: 200px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-categories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.faq-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #f1f2f6;
  border: 0;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}
.faq-category.active {
  background: #7eca1d;
  color: #fff;
}
.faq-category svg { width: 24px; height: 24px; fill: currentColor; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid #dcdfe8;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  font-size: 24px;
}
.faq-item__header:hover { background: #f8f9fa; }
.faq-item__toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  background: #5c5e6e;
  transition: 0.3s;
}
.faq-item__toggle::before {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item__toggle::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-item.active .faq-item__toggle::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item__body {
  padding: 0 24px 20px;
  display: none;
  color: #5c5e6e;
  line-height: 1.6;
}
.faq-item.active .faq-item__body { display: block; font-size: 18px; }

/* ============================================================
   DELIVERY
   ============================================================ */
.delivery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.delivery-info__text {
  color: #5c5e6e;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 18px;
}
.delivery-info__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-top: 16px;
}
.delivery-info__feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7eca1d;
}
.delivery-map img { border-radius: 16px; width: 100%; height: auto; }

/* ============================================================
   SEO TEXT
   ============================================================ */
.seo-text p { color: #5c5e6e; line-height: 1.8; margin-bottom: 16px; }
.seo-text__toggle { margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #383941;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}
.footer a:hover { color: #7eca1d; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-phone {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}
.footer-worktime { margin-bottom: 16px; }
.footer-programs { margin-bottom: 16px; }
.footer-programs a { color: rgba(255,255,255,0.6); }
.footer-programs a:hover { color: #7eca1d; }

.footer-social { display: flex; gap: 16px; }
.footer-social__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-social__item:hover { background: rgba(255,255,255,0.2); }
.footer-social__item svg { fill: #fff; width: 24px; height: 24px; }

.footer-address__text { margin-top: 8px; }
.footer-email { color: #7eca1d; }

.footer-scroll-top {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.footer-scroll-top:hover { background: rgba(255,255,255,0.2); }
.footer-scroll-top svg { fill: #fff; width: 32px; height: 32px; }

.footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-menu__title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}
.footer-menu__link {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-size: 14px;
}
.footer-menu__link:hover { color: #7eca1d; }

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-apps a { display: block; }
.footer-apps img { height: 40px; width: auto; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom__info { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom__info p { font-size: 14px; }

.footer-payments {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-payments svg { opacity: 0.4; transition: 0.3s; }
.footer-payments svg:hover { opacity: 1; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: #FF4F4F;
  position: relative;
  overflow: hidden;
}
.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  position: relative;
  z-index: 1;
}
.promo-banner__image {
  flex-shrink: 0;
  width: 120px;
  height: 70px;
  overflow: hidden;
}
.promo-banner__image:hover { transform: scale(1.05); }
.promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-banner__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.promo-banner__text {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.3px;
}
.promo-banner__code {
  color: #fff;
  font-weight: 700;
  padding: 6px 20px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.promo-banner__code:hover { background: rgba(255,255,255,0.25); }
.promo-banner__btn {
  display: inline-block;
  padding: 8px 28px;
  background: #fff;
  color: #ee5a24;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.promo-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  background: #fff;
  color: #ee5a24;
}

/* ============================================================
   LANGUAGE SWITCH
   ============================================================ */
.language-switch {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.lang-label {
  font-weight: 500;
  color: #1a1a2e;
  font-size: 15px;
}
.lang-circles { display: flex; gap: 8px; }
.lang-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d0d7de;
  background: transparent;
  color: #57606a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-circle:hover { border-color: #8b949e; color: #1a1a2e; }
.lang-circle.active {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff;
}
.lang-circle.active:hover {
  background: #1557b0;
  border-color: #1557b0;
}

/* ============================================================
   PROGRAM GROUP CARDS (горизонтальный скролл)
   ============================================================ */
.program-group-wrap-cards .main-cont {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.program-group-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.program-group-cards::-webkit-scrollbar { display: none; }

/* КАРТОЧКИ — теперь занимают полную ширину */
.program-group-cards > div {
  flex: 0 0 calc(33.333% - 14px); /* 3 карточки */
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Остальные стили остаются без изменений */
.program-group-cards .br-16 {
  background: #fff;
  border-radius: 16px !important;
  border: 1px solid #e8ecf0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.program-group-cards .pt-20 {
  padding: 16px 16px 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  border-radius: 16px 16px 0 0;
  min-height: 100px;
}
.program-group-cards .w40 {
  width: 56px !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.program-group-cards .w40 img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}
.program-group-cards .w60 {
  width: auto !important;
  flex: 1;
}
.program-group-cards .type--24 {
  font-size: 18px !important;
  line-height: 1.2;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}
.program-group-cards .type--16 {
  font-size: 14px !important;
  opacity: 0.85;
  margin-bottom: 6px !important;
}
.program-group-cards .br-12 {
  background: rgba(255,255,255,0.2) !important;
  border-radius: 20px !important;
  padding: 4px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: inline-block;
  width: auto !important;
}
.program-group-cards .sm__show { display: none !important; }

/* Полоса-индикатор */
.program-group-cards .br-16::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 16px 16px;
  background: transparent;
  transition: background 0.3s ease;
}

.program-group__el-name {
  font-size: 24px;
  color: #5c5e6e;
  font-weight: 700;
}

/* Цвета полос */
.program-group-cards > div[sort="10"] .br-16::after { background: #2d9b4e; }
.program-group-cards > div[sort="20"] .br-16::after { background: #1a3a5c; }
.program-group-cards > div[sort="30"] .br-16::after { background: #2d9b4e; }
.program-group-cards > div[sort="40"] .br-16::after { background: #1a3a5c; }
.program-group-cards > div[sort="50"] .br-16::after { background: #d4698a; }

/* Активное состояние */
.program-group-cards > div.active .br-16 {
  border-color: #2d9b4e;
  box-shadow: 0 8px 24px rgba(45,155,78,0.15);
}
.program-group-cards > div.active .br-16::after {
  height: 4px;
  opacity: 1;
}
.program-group-cards > div:not(.active) .br-16::after { opacity: 0.3; }
.program-group-cards > div:not(.active):hover .br-16::after { opacity: 0.7; }

.program-group__el {
  position: relative;
  cursor: pointer;
  padding-bottom: 10px;
}
.program-group__el::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}
.program-group__el.active::after { background: #7eca1d; }
.program-group__el:not(.active):hover::after { background: #dcdfe8; }

/* ============================================================
   REVIEWS SCROLL (горизонтальный с драгом)
   ============================================================ */
.section--gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
}

.reviews-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 10px 5px 25px 5px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}
.reviews-scroll:active { cursor: grabbing; }
.reviews-scroll::-webkit-scrollbar { display: none; }

/* Карточки отзывов в горизонтальном скролле */
.reviews-scroll .review-card {
  flex: 0 0 340px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.reviews-scroll .review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.reviews-scroll .review-card__user {
  display: flex;
  flex-direction: column;
}
.reviews-scroll .review-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
}
.reviews-scroll .review-card__location {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 2px;
}
.reviews-scroll .review-card__rating {
  display: flex;
  gap: 2px;
  font-size: 1.3rem;
  color: #ffb800;
  white-space: nowrap;
}
.reviews-scroll .review-card__text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #2d2d3f;
  margin: 0 0 16px 0;
  flex-grow: 1;
  font-style: italic;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.reviews-scroll .review-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.reviews-scroll .tag {
  background: #f1f3f5;
  color: #495057;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 30px;
  border: 1px solid #e9ecef;
  white-space: nowrap;
}

.review-note {
  text-align: center;
  font-size: 0.85rem;
  color: #868e96;
  margin-top: 20px;
}

/* ============================================================
   SWIPER (для демо)
   ============================================================ */
.swiper-wrapper { display: flex; }
.swiper-slide { flex-shrink: 0; width: 100%; }

.disabled {
	color: #7ECA1D;
	cursor: default;
}
/* ============================================================
   ПЕРЕКЛЮЧЕНИЕ ПРОГРАММ (ДОПОЛНИТЕЛЬНЫЕ СТИЛИ)
   ============================================================ */

/* Стили для групп планов */
.plan-group {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 16px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.plan-group::-webkit-scrollbar {
    display: none;
}

.plan-group[style*="display: none"] {
    display: none !important;
}

.plan-group .program-card-wrapper {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 280px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.2s ease;
}


/* Активная категория - подчеркивание */
.program-category {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border-bottom: 3px solid transparent;
    padding-bottom: 8px;
}

.program-category.active {
    background: #7eca1d;
    color: #fff;
    border-color: #7eca1d;
}

.program-category:not(.active):hover {
    background: #e8eaf0;
    border-color: #7eca1d;
}

/* ============================================================
   СТИЛИ МОДАЛЬНОГО ОКНА ДЛЯ БЛЮДА
   ============================================================ */

.dish-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    animation: dishModalFadeIn 0.3s ease;
}

.dish-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.dish-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 580px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dishModalSlideUp 0.3s ease;
}

.dish-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dish-modal-close:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dish-detail__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.dish-modal .modal-content {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.dish-modal .p-20 {
    padding: 24px 28px 28px;
}

.dish-modal .f {
    display: flex;
}

.dish-modal .f-between {
    justify-content: space-between;
    align-items: center;
}

.dish-modal .f-grow {
    flex: 1;
}

.dish-modal .type--sm {
    font-size: 14px;
}

.dish-modal .type--secondary {
    color: #9699a8;
}

.dish-modal .type--w700 {
    font-weight: 700;
}

.dish-modal .type--main {
    color: #5c5e6e;
}

.dish-modal .type--center {
    text-align: center;
}

.dish-modal .mb-8 {
    margin-bottom: 8px;
}

.dish-modal .mb-16 {
    margin-bottom: 16px;
}

.oko {
	display: flex; gap: 20px; margin-bottom: 20px;
}
.dishesContainer{
	display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}

.deckkal {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dcdfe8;
    padding: 20px 20px;
    /* Добавляем для правильного отображения на мобильных */
    width: 100%;
    box-sizing: border-box;
}


.dishName{
	font-weight: 500; margin-bottom: 8px; min-height: 44px;
}

.dish-modal .mb-24 {
    margin-bottom: 24px;
}

.dish-modal .mt-12 {
    margin-top: 12px;
}

.dish-modal .w100 {
    width: 100%;
}

.dish-modal .pr-16 {
    padding-right: 16px;
}

.dish-modal .psh-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.dish-modal .pl-16 {
    padding-left: 16px;
}

.dish-modal .bor {
    border-color: #dcdfe8;
}

.dish-modal .bor-r {
    border-right: 1px solid #dcdfe8;
}


.dish-modal .btn--light {
    background: #fff;
    border: 1px solid #dcdfe8;
    color: #7eca1d;
    padding: 14px 24px;
    border-radius: 32px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.dish-modal .btn--light:hover {
    background: #f3f8ed;
    border-color: #7eca1d;
}

.dish-modal .btn--mark {
    background: #7eca1d;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.dish-modal .btn--mark:hover {
    background: #65a217;
}

.dish-modal .btn--md {
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================================
   СТИЛИ МОДАЛЬНОГО ОКНА ДЛЯ "О ПРОГРАММЕ"
   ============================================================ */

.program-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    animation: dishModalFadeIn 0.3s ease;
}

.program-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.program-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 820px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dishModalSlideUp 0.3s ease;
}

.program-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-modal-close:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.program-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.program-modal-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.program-modal-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.program-modal-info {
    padding: 32px 36px 36px;
    display: flex;
    flex-direction: column;
}

.program-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #5c5e6e;
    margin: 0 0 16px 0;
}

.program-modal-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #3d4a3d;
    overflow-y: auto;
    max-height: 400px;
    padding-right: 8px;
}

.program-modal-text p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #3d4a3d;
}

.program-modal-text ul,
.program-modal-text ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

.program-modal-text li {
    margin-bottom: 6px;
}

.program-modal-text h2,
.program-modal-text h3,
.program-modal-text h4 {
    margin: 20px 0 12px 0;
    color: #5c5e6e;
}

.program-modal .btn--mark {
    background: #7eca1d;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    align-self: flex-start;
}

.program-modal .btn--mark:hover {
    background: #65a217;
}

/* Анимации */
@keyframes dishModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes dishModalSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .dish-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .dish-detail__image {
        height: 200px;
    }

    .dish-modal .p-20 {
        padding: 16px 18px 18px;
    }

    .dish-modal .f.w100 {
        flex-wrap: wrap;
        gap: 8px 0;
    }

    .dish-modal .f.w100 > div {
        flex: 1;
        min-width: 50px;
        padding: 4px 8px !important;
        border: none !important;
    }

    .dish-modal .f.w100 > div:not(:last-child) {
        border-right: 1px solid #dcdfe8 !important;
    }

    .dish-modal .f.w100 > div:last-child {
        border-right: none !important;
    }

    .dish-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .dish-modal .btn--md {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Программа модалка */
    .program-modal-body {
        grid-template-columns: 1fr;
    }

    .program-modal-image-wrap {
        min-height: 200px;
        max-height: 250px;
    }

    .program-modal-image {
        min-height: 200px;
    }

    .program-modal-info {
        padding: 24px 20px 28px;
    }

    .program-modal-title {
        font-size: 22px;
    }

    .program-modal-text {
        max-height: 300px;
        font-size: 15px;
    }

    .program-modal .btn--mark {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .program-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .program-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dish-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        height: 100vh;
        max-height: 100vh;
    }
	

    .dish-detail__image {
        height: 180px;
    }

    .dish-modal .p-20 {
        padding: 14px 16px 16px;
    }

    .dish-modal .f.w100 > div {
        min-width: 40px;
        padding: 2px 4px !important;
    }

    .dish-modal .type--sm {
        font-size: 12px;
    }

    .dish-modal .type--w700 {
        font-size: 14px;
    }

    /* Программа модалка */
    .program-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        height: 100vh;
        max-height: 100vh;
    }

    .program-modal-image-wrap {
        min-height: 150px;
        max-height: 180px;
    }

    .program-modal-image {
        min-height: 150px;
    }

    .program-modal-info {
        padding: 16px 16px 20px;
    }

    .program-modal-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .program-modal-text {
        max-height: 250px;
        font-size: 14px;
    }
}

/* Стили для карточек блюд */
.dish-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   СОЦИАЛЬНЫЕ ИКОНКИ
   ============================================================ */
.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    color: #5c5e6e;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #7eca1d;
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .social-icon {
        width: 16px;
        height: 16px;
    }
}

.toggle-switch {
  --width: 65px;
  --height: 40px;
  --padding: 2px;
  --handle-size: calc(var(--height) - var(--padding) * 2);
  
  display: inline-block;
  outline-width: 0;
}

.toggle-switch > input {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
}

label {
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 30px;
  cursor: pointer;
}

user-menu-block { 
display: flex; align-items: center; gap: 8px; margin-left: auto;
}

.area {
  padding: 4px;
  margin: -4px;
}

.toggle-switch :active {
  outline-width: 0;
}

.background,
.handle {
  transition: all 0.1s ease;
}

.background {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  width: var(--width);
  height: var(--height);
  border-radius: var(--height);
  padding: 0 var(--padding);
  vertical-align: text-bottom;
  user-select: none;
  background-color: #d0d7de;
  overflow: hidden;
  transition: background-color .15s ease;
}

.toggle-switch:focus .area {
  outline: 1px dotted gray;  
}

.toggle-switch:active .area {
  outline-width: 0;
}

.toggle-switch:focus .background,
.area:hover .background {
  background-color: #d0d7de;
}

.handle {
  width: var(--handle-size);
  height: var(--handle-size);
  background-color: white;
  border-radius: 50%;
}

.handle:hover {
  background-color: white;
}

input:checked + label .area .background {
  background-color: #7eca1d;
}

input:checked + label .area .handle {
  background-color: white;
  transform: translateX(calc(var(--width) - var(--handle-size)));
}


@media (min-width: 640px) {
  body {
    margin-top: 40px;
  }
}