/* =======================Fonts======================= */
@font-face{
  font-family: "Jura";
  src: url("./components/fonts/Jura/Jura.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Ethnocentric rus-lat";
  src: url("./components/fonts/Ethnocentric rus-lat/Ethnocentric rus-lat extra-expanded Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Inter";
  src: url("./components/fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "FingerPaint-Regular";
  src: url("./components/fonts/FingerPaint/FingerPaint-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* =======================Base======================= */
:root{
  --page-bg: #000000;
  --header-radius: 26px;
  --glass: rgba(0,0,0,.55);
  --glass-2: rgba(0,0,0,.35);
  --text: rgba(255,255,255,.85);
  --text-dim: rgba(255,255,255,.72);
  --accent: #39ff14;
}
*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--page-bg);
  color: #fff;
  overflow-x: hidden;
}
a{ color:inherit; }

/* ==============================================Header============================================== */

:root{ --menu-fs: 30px; }
.site-header{
  position: fixed; 
  top: 10px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 52px;
  pointer-events: none;   /* важно */
}

.header-bar{
  height: 76px;
  border-radius: var(--header-radius);
  background:
    radial-gradient(120% 220% at 50% 0%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.52));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  pointer-events: auto;   /* клики работают */
}

.nav{
  display:flex;
  align-items:center;
  gap: 220px;
  min-width: 380px;
}
.nav.right{ justify-content: flex-end; }
.nav.left{ justify-content: flex-start; }

.nav-link,
.nav-btn{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: color .18s ease;
}

.nav-link:hover,
.nav-btn:hover{ color: #01FF01; }
/* активный пункт меню */
.nav-link.is-active{
  color: #01FF01;
}

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.logo img{
  height: 52px;
  width:auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
}

/* ===== CONTACTS (только hover) ===== */
.contacts{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* триггер */
.contacts__trigger{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: color .18s ease;
}

/* Контакты: зелёный на hover */
.contacts:hover .contacts__trigger{
  color: #01FF01;
}

/* ===== CSS-стрелка вместо SVG ===== Цвет берётся из currentColor (т.е. как цвет "Контакты") */
.contacts__arrow{
  display: inline-block;

  width: calc(var(--menu-fs) * 0.33);
  height: calc(var(--menu-fs) * 0.33);

  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;

  transform: rotate(45deg);          /* вниз */
  transform-origin: 50% 50%;
  transition: transform .18s ease, border-color .18s ease;
  opacity: .95;
}


/* "противоположное направление" при hover (вверх) */
.contacts:hover .contacts__arrow{
  transform: rotate(-135deg);        /* вверх */
}

/* текст внутри (чтобы был Jura 30) */
.contacts__trigger .nav-link{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: .06em;
  line-height: 1;
}

/* ===== Плашка contacts_hint ===== */
.contacts__hint{
  position: absolute;
  top: calc(100% + 34px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 380px;
  padding: 16px 18px;
  border-radius: 20px;

  background: rgba(0,0,0,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s linear .18s;
}

/* Показ только при наведении */
.contacts:hover .contacts__hint{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s;
}

/* Заголовок "Апрель → Октябрь" */
.contacts__season{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;              /* Jura 30 */
  letter-spacing: .06em;
  line-height: 1.1;
  color: rgba(255,255,255,.9);
  margin-bottom: 15px;
  text-align: center;
}

/* Строки */
.contacts__row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.contacts__row:last-child{ margin-bottom: 0; }


/* Зеленые бейджи "Пн" / "Вт–Вс" */
.contacts__badge{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;              /* Jura 30 */
  letter-spacing: .04em;
  line-height: 1;

  padding: 6px 16px;
  border-radius: 999px;

  background: #01FF01;
  color: #000;
}

/* Значения справа */
.contacts__value{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  font-size: 20px;              /* Jura 30 */
  letter-spacing: .04em;
  line-height: 1.1;
  color: rgba(255,255,255,.9);
}

/* ========== Бургер кнопка ========== */
.burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.burger span{
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* активное состояние */
body.menu-open .burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ========== Мобильное меню (оверлей) ========== */
.mnav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .18s;
  z-index: 2000;
}

body.menu-open .mnav{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .18s ease, visibility 0s;
}

.mnav__panel{
  height: 100%;
  width: 100%;
  background: rgba(15,15,15,.95);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
  position: relative;
  padding: 22px 18px;
}

.mnav__close{
  position: absolute;
  right: 14px;
  top: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

/* сетка как в примере: 2 колонки на телефоне можно оставить 1 */
.mnav__grid{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

/* шрифт везде Jura */
.mnav a,
.mnav__phone,
.mnav__work-title,
.mnav__address,
.mnav__work-row span{
  font-family: "Jura", sans-serif;
  font-weight: 500;
  letter-spacing: .06em;
}

.mnav__col a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  padding: 10px 0;
  transition: color .15s ease;
}

.mnav__col a:hover{
  color: #01FF01;
}

/* телефон */
.mnav__phone{
  font-size: 22px;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
}

/* соц кружки (можешь заменить на svg/иконки) */
.mnav__social{
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.mnav__soc{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #01FF01;
  color: #000;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: "Jura", sans-serif;
  font-weight: 500;
}

/* блок времени работы */
.mnav__work-title{
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

.mnav__work-row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mnav__badge{
  background: #01FF01;
  color: #000;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
}

.mnav__address{
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
/* Кнопка наверх */
.hero__to-top{
  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
  text-decoration: none;
  z-index: 900;
  transition: transform .15s ease;
}
.hero__to-top:hover{ 
  transform: translateY(-5px); 
}
.hero__to-top img{
  width: 48px;
  height: 48px;
  display: block;
}

:root{
  --green:#01FF01;
  --muted:#B1B1B1;
}

/* активная ссылка "Акции" */
.page-sales .nav-link.is-active{
  color: var(--green);
}

/* контейнер страницы как в правилах */
.sales{
  width: min(1180px, calc(100% - 120px));
  padding-top: 120px;
  margin: 0 auto 100px;
}
@media (max-width: 900px){
  .sales{ width: calc(100% - 24px); }
}

/* pill */
.sales__pill{
  width: fit-content;
  margin: 0 auto 26px;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(0,0,0,.45);
  border: 1px solid rgba(1,255,1,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);

  color: var(--green);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.sales__pill img{ width:18px; height:18px; opacity:.95; }
/* ===== HOT CARD ===== */
.hot{
  border-radius: 26px;
  border: 2px solid rgba(1,255,1,.55);
  background:
    radial-gradient(120% 140% at 30% 20%, rgba(1,255,1,.10) 0%, rgba(0,0,0,0) 55%),
    rgba(10,18,16,.55);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
}

.hot__wrap{
  padding: 26px 28px 24px;
}

.hot__chip{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.hot__tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(1,255,1,.14);
  border: 1px solid rgba(1,255,1,.26);

  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(1,255,1,.92);
}

.hot__dot{
  width: 10px; height:10px;
  border-radius: 999px;
  background: rgba(1,255,1,.85);
  box-shadow: 0 0 18px rgba(1,255,1,.35);
}

.hot__title{
  margin: 8px 0 10px;
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 34px;
  color:#fff;
}

.hot__text{
  margin: 0 0 18px;
  max-width: 820px;
  color: rgba(255,255,255,.78);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
}

.hot__sub{
  color: rgba(255,255,255,.55);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 12px;
}

/* timer */
.hot__timer{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tbox{
  width: 82px;
  border-radius: 14px;
  padding: 12px 10px;
  background: rgba(10,18,26,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  text-align:center;
}
.tbox__num{
  color: var(--green);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.tbox__label{
  margin-top: 4px;
  color: rgba(255,255,255,.55);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
}

.hot__bottom{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.hot__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--green);
  color:#000;
  text-decoration:none;

  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;

  box-shadow: 0 22px 55px rgba(1,255,1,.18);
}

.hot__used{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
}
.hot__used img{ width:16px; height:16px; }

/* ===== OFFERS ===== */
.offers{
  margin-top: 26px;
}
.offers__title{
  margin: 0;
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color:#fff;
}
.offers__subtitle{
  margin-top: 8px;
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

.offers__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px){
  .offers__grid{ grid-template-columns: 1fr; }
}

.offer-card{
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,255,1,.08), rgba(0,0,0,0) 50%),
    rgba(22,27,26,.78);
  border: 1px solid rgba(1,255,1,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  padding: 18px 18px 16px;
}

.offer-card__head{
  display:grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items:start;
}

.offer-card__icon{
  width: 52px; height:52px;
  border-radius: 16px;
  background: rgba(0,255,1,.12);
  border: 1px solid rgba(1,255,1,.25);
  display:grid;
  place-items:center;
}
.offer-card__icon img{ width:26px; height:26px; }

.offer-card__title{
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color:#fff;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.offer-card__big{
  margin-top: 6px;
  color: var(--green);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 30px;
}

.badge{
  padding: 4px 10px;
  border-radius: 999px;
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .06em;
}
.badge--soft{
  background: rgba(1,255,1,.14);
  border: 1px solid rgba(1,255,1,.26);
  color: rgba(1,255,1,.92);
}

.offer-card__desc{
  margin-top: 12px;
  color: rgba(255,255,255,.70);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.45;
}

.offer-card__list{
  margin: 12px 0 14px;
  padding-left: 16px;
  color: rgba(255,255,255,.70);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
}
.offer-card__list li::marker{ color: var(--green); }

.offer-card__btn{
  display:block;
  text-align:center;
  height: 44px;
  line-height: 44px;
  border-radius: 14px;
  text-decoration:none;

  border: 1px solid rgba(1,255,1,.55);
  color: var(--green);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;

  background: rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.offer-card__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.offer-card__btn--fill{
  background: var(--green);
  color:#000;
  border-color: transparent;
}

/* ===== LOYALTY ===== */
.loyalty{
  margin-top: 18px;
}
.loyalty__wrap{
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,255,1,.08), rgba(0,0,0,0) 50%),
    rgba(22,27,26,.78);
  border: 1px solid rgba(1,255,1,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 980px){
  .loyalty__wrap{ grid-template-columns: 1fr; }
}

.loyalty__head{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.loyalty__head img{ width: 28px; height:28px; }

.loyalty__title{
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color:#fff;
}
.loyalty__sub{
  margin-top: 6px;
  color: rgba(255,255,255,.70);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.45;
}

.loyalty__stats{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 700px){
  .loyalty__stats{ grid-template-columns: 1fr; }
}

.lstat{
  border-radius: 16px;
  background: rgba(10,18,26,.55);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px 12px;
  text-align:center;
}
.lstat__num{
  color: var(--green);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.lstat__txt{
  margin-top: 6px;
  color: rgba(255,255,255,.60);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
}

.loyalty__btn{
  margin-top: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--green);
  color:#000;
  text-decoration:none;
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 22px 55px rgba(1,255,1,.18);
}

.loyalty__box{
  border-radius: 18px;
  background: rgba(10,18,26,.55);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.loyalty__box-title{
  color: rgba(255,255,255,.75);
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 10px;
}
.loyalty__box-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  margin: 10px 0;
  color: rgba(255,255,255,.70);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
}
.loyalty__box-row b{
  color: var(--green);
  font-weight: 500;
}
.loyalty__box-note{
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.45;
}

/* ===== CONDITIONS ===== */
.cond{
  margin-top: 18px;
  padding-bottom: 30px;
}

.cond__title{
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color:#fff;
  margin: 0 0 12px;
}

.cond__box{
  border-radius: 18px;
  background: rgba(10,18,26,.55);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px 18px;
}
.cond__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.65);
  font-family:"Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
}
/* ==============================================Footer============================================== */
/* ===== Footer ===== */
.footer{
  margin-top: 100px;              /* отступ от предыдущей секции */
  background: #D9D9D9;
  color:#000;
  padding: 48px 0 22px;
}

.footer__inner{
  margin: 0 100px;                /* как просил: немного уже */
  display:grid;
  grid-template-columns: 1.15fr 0.9fr 1.35fr 0.9fr;
  gap: 60px;
  align-items:start;
}

.footer__title{
  margin: 0 0 22px;
  font-family:"Inter", sans-serif;
  font-weight:500;                 /* Medium */
  font-size:26px;
  color:#000;
}

.footer__text{
  font-family:"Inter", sans-serif;
  font-weight:300;                 /* Light */
  font-size:14px;
  color:#000;
  line-height:1.35;
}

.footer__brand .footer__text{
  margin: 10px 0 22px;
}

.footer__logo{
  width: 210px;
  height:auto;
  display:block;
}

.footer__item{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  margin: 14px 0;
}

.footer__item--top{ margin-top: 8px; }

.footer__ico{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display:block;
  margin-top: 2px;
}

.footer__link{
  text-decoration:none;
  color:inherit;
}

.footer__link:hover .footer__text{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.footer__socials{
  display:flex;
  gap: 18px;
  margin-top: 18px;
}

.footer__social{
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background:#2F2F2F;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.footer__social img{
  width: 34px;
  height: 34px;
  display:block;
  filter: brightness(100);
}

.footer__social:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

.footer__line{
  height: 2px;
  background:#000;
  margin: 34px 100px 12px;
  opacity: .85;
}

.footer__copy{
  text-align:center;
  font-family:"Inter", sans-serif;
  font-weight:300;
  font-size:20px;
  color:#000;
  margin: 0 100px;
}
