/* =========================
   Thai Fusion — FIXED CSS (2026)
   Цель: на 100% масштабе всё читаемо и НЕ гигантское.
   Вставь в: css/style.css
   ВАЖНО: удали/очисти inline <style> в HTML, иначе будут конфликты.
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --color-anthracite:#111213;
  --color-gold:#E1C36E;
  --color-gold-2:#C9A944;
  --color-emerald:#2AA36F;
  --glass-weak: rgba(17, 17, 17, 0.60);
  --muted: rgba(255,255,255,0.70);

  /* ✅ База под читаемость (не увеличиваем шрифты глобально) */
  --base-font: 16px;
  --lh: 1.6;

  /* ✅ Более спокойная типографика hero (на 100% выглядит современно, не «плакатно») */
  --fz-hero-title: clamp(32px, 3.2vw, 46px);
  --fz-hero-sub: clamp(16px, 1.45vw, 20px);
  --fz-hero-line: clamp(14px, 1.15vw, 16px);
  --fz-chip: clamp(13px, 1.05vw, 14px);
  --fz-promo: clamp(13px, 1.05vw, 14px);
  --fz-promo-discount: clamp(16px, 1.3vw, 20px);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 12px;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top: 80px; /* navbar */
  background:var(--color-anthracite);
}

@media (min-width: 1200px){
  html{
    scroll-padding-top: 90px; /* увеличенный navbar с логотипом */
  }
}

body,
body.bg-dark{
  background: var(--color-anthracite) !important;
  color:#fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: var(--base-font);
  line-height: var(--lh);
}

/* Gold text helper */
.text-warning{ color: white !important; }

.text-gold-gradient{
  color: white;
  font-weight:700;
}

/* =========================
   TOP BAR: Logo & Address
   ========================= */
.top-bar{
  background: linear-gradient(135deg, #FFE5D9 0%, #FFD4B3 100%);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
}

.top-bar-content{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.top-bar-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.network-text{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #5C4033;
  white-space: nowrap;
}

.top-bar-separator{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.separator-line{
  width: 1px;
  height: 20px;
  background: rgba(255, 140, 0, 0.4);
}

.separator-x{
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
}

.top-bar-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

.salon-logo{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
  overflow: hidden;
}

.salon-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.salon-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.salon-name{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5C4033;
  line-height: 1.2;
  white-space: nowrap;
}

.salon-address{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(92, 64, 51, 0.7);
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 991.98px){
  .top-bar{
    padding: 6px 0;
  }
  
  .top-bar-content{
    justify-content: center;
    gap: 6px;
  }
  
  .network-text{
    font-size: 10px;
  }
  
  .salon-name{
    font-size: 13px;
  }
  
  .salon-address{
    font-size: 11px;
  }
  
  .salon-logo{
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 575.98px){
  .top-bar-content{
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .network-text{
    font-size: 9px;
  }
  
  .separator-x{
    font-size: 10px;
  }
}

/* =========================
   NAVBAR
   ========================= */
.navbar{
  background-color: var(--glass-weak) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 70px;
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.navbar-with-topbar{
  top: 0;
  z-index: 1030;
}

@media (min-width: 1200px){
  .navbar{
    min-height: 80px;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}

.navbar .container,
.navbar .container-fluid{ 
  position: relative;
}

/* CSS Grid для идеального центрирования логотипа */
.navbar-container{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1199.98px){
  .navbar-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

/* Центрирование логотипа */
.navbar-brand-center{
  z-index: 5;
  pointer-events: none;
  position: relative;
  grid-column: 2;
  justify-self: center;
  margin: 0;
  padding: 0;
  width: fit-content;
  min-width: auto;
  max-width: none;
  transform: none;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.navbar-brand-center .navbar-brand-logo{
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  margin: 0;
  width: fit-content;
}

.navbar-logo-img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(225, 193, 110, 0.5);
  box-shadow: 0 4px 16px rgba(225, 193, 110, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar-logo-img:hover{
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(225, 193, 110, 0.3);
}

.navbar-left{
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
  flex-grow: 0;
  flex-basis: auto;
  flex-shrink: 1;
  transform: none;
  left: auto;
  right: auto;
  overflow: hidden;
}

.navbar-left > *{
  margin: 0;
}

.navbar-right{
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
  flex-grow: 0;
  flex-basis: auto;
  flex-shrink: 1;
  transform: none;
  left: auto;
  right: auto;
  overflow: visible;
}

.navbar-right > *{
  margin: 0;
}

/* На десктопе (XL и больше) показываем полное меню */
@media (min-width: 1200px){
  /* Показываем десктопное меню */
  .navbar-left.d-none.d-xl-flex,
  .navbar-right.d-none.d-xl-flex{
    display: flex !important;
  }
  
  .navbar-container{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Скрываем бургер-меню и мобильный логотип на десктопе */
  .navbar-toggler.d-xl-none,
  .navbar-brand-logo.d-xl-none{
    display: none !important;
  }
  
  /* Оптимизируем размеры элементов на десктопе */
  .navbar-right{
    gap: 0.6rem;
  }
  
  .navbar-right .nav-link{
    font-size: 1rem !important;
    padding: .3rem .45rem !important;
  }
  
  .navbar-right a.text-white{
    font-size: 0.95rem !important;
  }
  
  .navbar-right-contacts{
    gap: 0.4rem;
    padding-left: 0.6rem;
  }
  
  .navbar-left .nav-link{
    font-size: 1rem !important;
    padding: .3rem .45rem !important;
  }
  
  .navbar-left .d-flex.flex-column span{
    font-size: 0.95rem !important;
  }
  
  /* Уменьшаем размеры иконок соцсетей */
  .navbar-social-icon{
    width: 36px !important;
    height: 36px !important;
  }
  
  .navbar-social-icon svg{
    width: 16px !important;
    height: 16px !important;
  }
  
  .navbar-phone{
    font-size: 0.95rem !important;
  }
  
  .navbar-right-contacts{
    gap: 0.4rem;
    padding-left: 0.6rem;
  }
}

/* Дополнительные стили для средних разрешений (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px){
  .navbar-right{
    gap: 0.5rem;
  }
  
  .navbar-right .nav-link{
    font-size: 0.95rem !important;
    padding: .25rem .4rem !important;
  }
  
  .navbar-phone{
    font-size: 0.9rem !important;
  }
  
  .navbar-social-icon{
    width: 34px !important;
    height: 34px !important;
  }
  
  .navbar-social-icon svg{
    width: 15px !important;
    height: 15px !important;
  }
  
  .navbar-right-contacts{
    gap: 0.35rem;
    padding-left: 0.5rem;
  }
}

/* Для очень узких десктопных экранов (1200px - 1280px) */
@media (min-width: 1200px) and (max-width: 1279.98px){
  .navbar-container{
    gap: 0.3rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .navbar-right{
    gap: 0.4rem;
  }
  
  .navbar-right .nav-link{
    font-size: 0.9rem !important;
    padding: .2rem .35rem !important;
  }
  
  .navbar-phone{
    font-size: 0.85rem !important;
  }
  
  .navbar-social-icon{
    width: 32px !important;
    height: 32px !important;
  }
  
  .navbar-social-icon svg{
    width: 14px !important;
    height: 14px !important;
  }
  
  .navbar-right-contacts{
    gap: 0.3rem;
    padding-left: 0.4rem;
  }
  
  .navbar-left .nav-link{
    font-size: 0.9rem !important;
    padding: .2rem .35rem !important;
  }
  
  .navbar-left .d-flex.flex-column span{
    font-size: 0.85rem !important;
  }
}

/* На очень больших экранах ограничиваем максимальную ширину контейнера */
@media (min-width: 1400px){
  .navbar .container-fluid{
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-container{
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar .navbar-brand{
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  white-space: nowrap;
}

.navbar-nav{ 
  flex-wrap: nowrap !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  flex-shrink: 1;
}

.navbar-nav .nav-item{
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-link{
  color:#fff;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
  padding: .35rem .5rem;
  border-radius: 10px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Унифицированные отступы для правой части */
.navbar-right-contacts{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  padding-left: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* Стили для телефонного номера */
.navbar-phone{
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
}

/* Стили для иконок соцсетей */
.navbar-social-icon{
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-social-wa{
  background-color: #25D366;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.navbar-social-tg{
  background: linear-gradient(180deg, #f5d88a, #cfa441);
  box-shadow: 0 2px 8px rgba(207,164,65,0.3);
}

.navbar-social-max{
  background-color: #0066FF;
  box-shadow: 0 2px 8px rgba(0,102,255,0.3);
}

.navbar-social-icon svg{
  width: 18px;
  height: 18px;
}

.navbar-social-icon:hover{
  transform: scale(1.1);
}

.navbar-social-wa:hover{
  box-shadow: 0 4px 12px rgba(37,211,102,0.4) !important;
}

.navbar-social-tg:hover{
  box-shadow: 0 4px 12px rgba(207,164,65,0.4) !important;
}

.navbar-social-max:hover{
  box-shadow: 0 4px 12px rgba(0,102,255,0.4) !important;
}

.navbar-right-contacts > *{
  margin: 0;
}

/* Отступы в левой и правой частях теперь через gap, не через margin */

.navbar-nav .nav-link:hover{
  color: white;
  background-color: rgba(255,255,255,0.04);
}

.navbar .text-white.small{
  font-size: 1.25rem;
  white-space: nowrap;
}

/* Увеличенный шрифт для всех элементов навбара справа */
.navbar-right .nav-link{
  font-size: 1.05rem !important;
}

.navbar-right a.text-white{
  font-size: 1rem !important;
  font-weight: 500;
}

/* Выравнивание адреса и времени работы */
.navbar-left .d-flex.flex-column {
  align-items: flex-start;
}

/* Старые стили для кнопок соцсетей удалены - используются классы .navbar-social-icon */

@media (max-width: 1199.98px){
  /* Убеждаемся, что десктопное меню скрыто на всех экранах меньше XL */
  .navbar-left.d-none.d-xl-flex,
  .navbar-right.d-none.d-xl-flex{
    display: none !important;
  }
  
  .navbar-brand-center{
    position: static !important;
    transform: none !important;
    left: auto !important;
  }
  
  .navbar-left,
  .navbar-right{
    flex: none;
    padding: 0 !important;
  }
}

/* Специальные стили для диапазона 990px - 1200px */
@media (min-width: 992px) and (max-width: 1199.98px){
  /* Навбар - элементы должны быть скрыты через Bootstrap классы d-none d-xl-flex */
  /* Принудительно скрываем десктопное меню на планшетах */
  .navbar-left.d-none.d-xl-flex,
  .navbar-right.d-none.d-xl-flex{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  
  /* Навбар контейнер - используем flex для мобильных */
  .navbar-container{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  
  /* Скрываем десктопный логотип */
  .navbar-brand-center{
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Центрируем мобильный логотип */
  .navbar-brand-logo.d-xl-none{
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
    pointer-events: auto !important;
  }
  
  /* Размер мобильного логотипа для планшетов */
  .navbar-logo-img-mobile{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    padding: 10px;
    background-color: #000;
    border: 2px solid rgba(225, 193, 110, 0.4);
    box-shadow: 0 3px 12px rgba(225, 193, 110, 0.25);
  }
  
  /* Бургер меню слева */
  .navbar-toggler.d-xl-none{
    order: -1 !important;
    z-index: 1051 !important; /* Выше чем у offcanvas backdrop (1040) и offcanvas (1045) */
    flex-shrink: 0 !important;
    margin-right: auto !important;
    pointer-events: auto !important;
    position: relative !important;
    display: flex !important; /* Убеждаемся, что кнопка видна */
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Убеждаемся, что навбар не блокирует offcanvas */
  .navbar{
    overflow: visible !important; /* Изменено с hidden на visible */
    z-index: 1030 !important; /* Ниже чем offcanvas */
  }
  
  .navbar .container > *{
    flex-shrink: 0 !important;
  }
  
  /* Убеждаемся, что offcanvas может открываться */
  .offcanvas#mobileMenu{
    z-index: 1045 !important;
  }
  
  .offcanvas-backdrop{
    z-index: 1040 !important;
  }
}

@media (max-width: 991.98px){
  body{ padding-bottom: 70px; }
  .navbar{ padding-top:.85rem; padding-bottom:.85rem; min-height:90px; }
  .navbar-with-topbar{ top: 0; }
  
  /* На мобильных используем flex вместо grid */
  .navbar-container{
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  
  /* Скрываем десктопное меню на мобильных */
  .navbar-left.d-none.d-xl-flex,
  .navbar-right.d-none.d-xl-flex{
    display: none !important;
  }
  
  .navbar-brand-center{
    display: none !important;
  }
  
  .navbar-logo-img-mobile{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    padding: 10px;
    background-color: #000;
    border: 2px solid rgba(225, 193, 110, 0.4);
    box-shadow: 0 3px 12px rgba(225, 193, 110, 0.25);
  }
  
  /* Убеждаемся, что бургер-меню видно на мобильных */
  .navbar-toggler.d-xl-none{
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: -1 !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    z-index: 1051 !important;
    flex-shrink: 0 !important;
  }
  
  /* Логотип по центру на мобильных */
  .navbar-brand-logo.d-xl-none{
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
    pointer-events: auto !important;
  }
}

/* Кнопка бургера для мобильных */
.navbar-toggler{
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: background-color .2s ease, border-color .2s ease;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* На десктопе (XL и больше) бургер-меню должно быть скрыто */
@media (min-width: 1200px){
  .navbar-toggler.d-xl-none{
    display: none !important;
  }
}

.navbar-toggler:hover,
.navbar-toggler:focus{
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* =========================
   MOBILE MENU (OFFCANVAS)
   ========================= */
.offcanvas.text-white,
.offcanvas.bg-dark,
.offcanvas#mobileMenu{
  background-color: var(--color-anthracite) !important;
  color: #fff !important;
  border-left: 1px solid rgba(255,255,255,0.1);
  width: 320px !important;
  max-width: 85vw;
  z-index: 1045 !important; /* Bootstrap default для offcanvas */
  visibility: visible !important;
}

/* Убеждаемся, что offcanvas backdrop работает правильно */
.offcanvas-backdrop{
  z-index: 1040 !important; /* Bootstrap default для backdrop */
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Убеждаемся, что offcanvas может открываться */
.offcanvas.show,
.offcanvas.showing{
  visibility: visible !important;
  transform: translateX(0) !important;
}

/* Переопределение всех стилей для элементов внутри мобильного меню */
.offcanvas#mobileMenu,
.offcanvas#mobileMenu * {
  color: #fff !important;
}

.offcanvas#mobileMenu a {
  color: #fff !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: rgba(225,193,110,0.2);
}

.offcanvas-header{
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1.5rem 1.25rem;
  background-color: transparent;
}

.offcanvas-title{
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: inherit !important;
}

.offcanvas-sub{
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.4;
}

.btn-close-white{
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.btn-close-white:hover{
  opacity: 1;
}

.offcanvas-body{
  padding: 1.5rem;
  overflow-y: auto;
  background-color: transparent;
  color: #fff !important;
}

.mobile-nav{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Максимально специфичные стили для ссылок меню */
.offcanvas#mobileMenu .mobile-link,
.offcanvas#mobileMenu a.mobile-link,
.mobile-nav .mobile-link,
.mobile-nav a.mobile-link{
  display: block !important;
  padding: 1rem 1.25rem !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  border-radius: 12px !important;
  transition: background-color .2s ease, color .2s ease, transform .15s ease !important;
  -webkit-tap-highlight-color: rgba(225,193,110,0.2) !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.offcanvas#mobileMenu .mobile-link:link,
.offcanvas#mobileMenu .mobile-link:visited,
.offcanvas#mobileMenu .mobile-link:active,
.offcanvas#mobileMenu a.mobile-link:link,
.offcanvas#mobileMenu a.mobile-link:visited,
.offcanvas#mobileMenu a.mobile-link:active,
.mobile-nav .mobile-link:link,
.mobile-nav .mobile-link:visited,
.mobile-nav .mobile-link:active,
.mobile-nav a.mobile-link:link,
.mobile-nav a.mobile-link:visited,
.mobile-nav a.mobile-link:active{
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.offcanvas#mobileMenu .mobile-link:active,
.offcanvas#mobileMenu a.mobile-link:active,
.mobile-nav .mobile-link:active,
.mobile-nav a.mobile-link:active{
  transform: scale(0.98) !important;
  color: white !important;
  background-color: rgba(255,255,255,0.1) !important;
}

.offcanvas#mobileMenu .mobile-link:hover,
.offcanvas#mobileMenu .mobile-link:focus,
.offcanvas#mobileMenu a.mobile-link:hover,
.offcanvas#mobileMenu a.mobile-link:focus,
.mobile-nav .mobile-link:hover,
.mobile-nav .mobile-link:focus,
.mobile-nav a.mobile-link:hover,
.mobile-nav a.mobile-link:focus{
  background-color: rgba(255,255,255,0.1) !important;
  color: white !important;
  text-decoration: none !important;
  outline: none !important;
}

.mobile-actions{
  padding-top: 0.5rem;
}

.mobile-contacts{
  padding-top: 0.5rem;
}

/* Максимально специфичные стили для телефона */
.offcanvas#mobileMenu .mobile-phone,
.offcanvas#mobileMenu a.mobile-phone,
.mobile-contacts .mobile-phone,
.mobile-contacts a.mobile-phone{
  display: block !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: white !important;
  text-decoration: none !important;
  margin-bottom: 1rem !important;
  transition: color .2s ease !important;
  text-align: center !important;
  padding: 0.5rem 0 !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.offcanvas#mobileMenu .mobile-phone:link,
.offcanvas#mobileMenu .mobile-phone:visited,
.offcanvas#mobileMenu .mobile-phone:active,
.offcanvas#mobileMenu a.mobile-phone:link,
.offcanvas#mobileMenu a.mobile-phone:visited,
.offcanvas#mobileMenu a.mobile-phone:active,
.mobile-contacts .mobile-phone:link,
.mobile-contacts .mobile-phone:visited,
.mobile-contacts .mobile-phone:active,
.mobile-contacts a.mobile-phone:link,
.mobile-contacts a.mobile-phone:visited,
.mobile-contacts a.mobile-phone:active{
  color: white !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}

.offcanvas#mobileMenu .mobile-phone:hover,
.offcanvas#mobileMenu .mobile-phone:focus,
.offcanvas#mobileMenu a.mobile-phone:hover,
.offcanvas#mobileMenu a.mobile-phone:focus,
.mobile-contacts .mobile-phone:hover,
.mobile-contacts .mobile-phone:focus,
.mobile-contacts a.mobile-phone:hover,
.mobile-contacts a.mobile-phone:focus{
  color: white !important;
  outline: none !important;
  text-decoration: none !important;
}

.mobile-actions .btn,
.mobile-contacts .btn{
  font-weight: 600;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-actions .btn:link,
.mobile-actions .btn:visited,
.mobile-contacts .btn:link,
.mobile-contacts .btn:visited{
  text-decoration: none !important;
}

.mobile-actions .btn:active,
.mobile-contacts .btn:active{
  transform: scale(0.98);
}

.mobile-actions .btn-primary,
.mobile-contacts .btn-primary{
  background: linear-gradient(180deg, #f5d88a, #cfa441) !important;
  color: #1a1a1a !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(207,164,65,0.18), 0 2px 6px rgba(207,164,65,0.12);
}

.mobile-actions .btn-primary:hover,
.mobile-contacts .btn-primary:hover{
  background: linear-gradient(180deg, #f8df9a, #d4ad52) !important;
  color: #1a1a1a !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(207,164,65,0.22), 0 4px 8px rgba(207,164,65,0.15);
}

.mobile-actions .btn-success,
.mobile-contacts .btn-success{
  background-color: #28a745 !important;
  color: #fff !important;
  border: none !important;
}

.mobile-actions .btn-success:hover,
.mobile-contacts .btn-success:hover{
  background-color: #218838 !important;
  color: #fff !important;
}

/* Глобальное переопределение всех ссылок в мобильном меню */
.offcanvas#mobileMenu a,
.offcanvas#mobileMenu a:link,
.offcanvas#mobileMenu a:visited,
.offcanvas#mobileMenu a:active,
.offcanvas#mobileMenu a:hover,
.offcanvas#mobileMenu a:focus {
  text-decoration: none !important;
  -webkit-tap-highlight-color: rgba(225,193,110,0.2) !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Убираем подчеркивания для всех ссылок в меню */
.offcanvas#mobileMenu .mobile-nav a,
.offcanvas#mobileMenu .mobile-nav a:link,
.offcanvas#mobileMenu .mobile-nav a:visited,
.offcanvas#mobileMenu .mobile-nav a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  border: none !important;
}

/* Финальное переопределение для гарантии одинакового отображения на всех устройствах */
body .offcanvas#mobileMenu .mobile-nav a.mobile-link,
body .offcanvas#mobileMenu .mobile-nav .mobile-link,
body .offcanvas#mobileMenu .mobile-link {
  color: #ffffff !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border: none !important;
  outline: none !important;
}

body .offcanvas#mobileMenu .mobile-contacts a.mobile-phone,
body .offcanvas#mobileMenu .mobile-contacts .mobile-phone,
body .offcanvas#mobileMenu .mobile-phone {
  color: white !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border: none !important;
  outline: none !important;
}

@media (max-width: 575.98px){
  .offcanvas.text-white,
  .offcanvas.bg-dark,
  .offcanvas#mobileMenu{
    width: 100% !important;
    max-width: 100%;
  }
  
  body .offcanvas#mobileMenu .mobile-link,
  body .offcanvas#mobileMenu a.mobile-link {
    padding: 1.1rem 1.25rem !important;
    font-size: 1.1rem !important;
  }
  
  body .offcanvas#mobileMenu .mobile-phone,
  body .offcanvas#mobileMenu a.mobile-phone {
    font-size: 1.4rem !important;
  }
  
  .offcanvas-header{
    padding: 1.25rem 1.25rem 1rem;
  }
  
  .offcanvas-body{
    padding: 1.25rem;
  }
}

/* =========================
   BUTTONS
   ========================= */
.btn-warning{
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-2));
  color:#111;
  border:none;
  box-shadow: 0 6px 18px rgba(201,169,68,0.12);
}

.btn-outline-warning{
  color: white;
  border-color: rgba(225,195,110,0.35);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px !important;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #f5d88a, #cfa441);
  color: #1a1a1a;
  text-decoration:none;
  border:none;
  box-shadow:
    0 8px 24px rgba(207,164,65,0.18),
    0 2px 6px rgba(207,164,65,0.12),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform .25s cubic-bezier(0.4,0,0.2,1), box-shadow .25s cubic-bezier(0.4,0,0.2,1);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(207,164,65,0.22),
    0 4px 8px rgba(207,164,65,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-primary:active{
  transform: translateY(0);
  box-shadow:
    0 6px 16px rgba(207,164,65,0.15),
    0 2px 4px rgba(207,164,65,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* =========================
   HERO CTA BUTTONS (2026 Modern Design)
   ========================= */
.hero-cta-buttons {
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
}

.hero-btn-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.hero-btn-icon {
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-btn-arrow {
  font-size: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: 6px;
  display: inline-block;
  font-weight: 700;
}

/* Центральная кнопка - основной CTA - Современный дизайн 2026 */
.hero-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #f5d88a 25%, #cfa441 75%, #b8942f 100%);
  color: #1a1a1a;
  box-shadow: 
    0 0 0 0 rgba(255, 215, 0, 0.4),
    0 12px 48px rgba(207, 164, 65, 0.4),
    0 4px 16px rgba(207, 164, 65, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  min-width: 240px;
  flex-shrink: 0;
  flex-grow: 0;
  width: auto;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffd700, #f5d88a, #cfa441, #b8942f);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}

.hero-btn-primary:hover::before {
  opacity: 0.6;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 0 0 4px rgba(255, 215, 0, 0.2),
    0 20px 60px rgba(207, 164, 65, 0.5),
    0 8px 24px rgba(207, 164, 65, 0.35),
    inset 0 2px 6px rgba(255, 255, 255, 0.7),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffeb3b 0%, #ffd700 25%, #f5d88a 75%, #d4ad52 100%);
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(6px);
}

.hero-btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 
    0 0 0 2px rgba(255, 215, 0, 0.3),
    0 12px 40px rgba(207, 164, 65, 0.4),
    0 4px 12px rgba(207, 164, 65, 0.25);
}

/* Боковые кнопки - Современный glassmorphism 2026 */
.hero-btn-certificate,
.hero-btn-subscription {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(225, 193, 110, 0.08) 100%);
  border: 2px solid rgba(225, 193, 110, 0.4);
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 0 rgba(225, 193, 110, 0),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}


.hero-btn-certificate:hover,
.hero-btn-subscription:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(225, 193, 110, 0.12) 100%);
  border-color: rgba(225, 193, 110, 0.7);
  transform: translateY(-3px);
  box-shadow: 
    0 0 0 3px rgba(225, 193, 110, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(225, 193, 110, 0.2),
    inset 0 1px 3px rgba(255, 255, 255, 0.3),
    inset 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.hero-btn-certificate:active,
.hero-btn-subscription:active {
  transform: translateY(-1px);
  box-shadow: 
    0 0 0 2px rgba(225, 193, 110, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-btn-certificate::before,
.hero-btn-subscription::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.4), rgba(225, 193, 110, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-btn-certificate:hover,
.hero-btn-subscription:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(225, 193, 110, 0.5);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 20px rgba(225, 193, 110, 0.2);
  color: #fff;
}

.hero-btn-certificate:hover::before,
.hero-btn-subscription:hover::before {
  opacity: 1;
}

.hero-btn-certificate:hover .hero-btn-icon,
.hero-btn-subscription:hover .hero-btn-icon {
  transform: scale(1.15) rotate(5deg);
}

.hero-btn-certificate:active,
.hero-btn-subscription:active {
  transform: translateY(0);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 575.98px) {
  .hero-btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-btn-primary {
    padding: 16px 32px;
    font-size: 15px;
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-btn-icon {
    font-size: 16px;
  }
  
  .hero-btn-arrow {
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-btn {
    padding: 15px 28px;
    font-size: 14.5px;
  }
  
  .hero-btn-primary {
    padding: 17px 38px;
    font-size: 15.5px;
    min-width: 220px;
    flex-shrink: 0;
    flex-grow: 0;
  }
}

@media (min-width: 768px) {
  .hero-btn-primary {
    min-width: 240px;
    flex-shrink: 0;
    flex-grow: 0;
  }
}

/* =========================
   HERO + VIDEO
   ========================= */
#hero{
  position: relative;
  overflow:hidden;
}

.bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index:0;
  animation: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* затемнение под читабельность (аккуратно, по трендам) */
#hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,0.35), rgba(0,0,0,0.75) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.78));
  pointer-events:none;
}

.hero{
  position: relative;
  z-index: 1;
  width:100%;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 88px 0 40px;
}

/* Поднимаем контент выше на ПК */
@media (min-width: 992px){
  .hero{
    padding: 50px 0 40px;
    align-items: center;
  }
}

/* ✅ Главная правка размера: карточка уже, паддинги меньше */
.hero-card{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius-xl);
  isolation:isolate;

  width: min(94vw, 1240px);   /* было 1850px -> из-за этого «гигант» */
  margin: 0 auto;

  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.65);

  padding: clamp(34px, 3.2vw, 56px) clamp(20px, 3vw, 52px);
  text-shadow: 0 0 18px rgba(0,0,0,0.40);
}

.hero-card > *{ position:relative; z-index:2; }

/* Slow Luxury overlays */
.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image: url('../img/noise.png');
  background-repeat: repeat;
  background-size: 240px 240px;
  opacity: 0.030;
  mix-blend-mode: overlay;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:-35%;
  z-index:1;
  pointer-events:none;
  background: radial-gradient(circle at 30% 40%, rgba(255,200,90,0.16), rgba(0,0,0,0) 60%);
  filter: blur(28px);
  opacity: 0.85;
  animation: heroGlow 14s ease-in-out infinite alternate;
  transform: translate3d(0,0,0);
  mix-blend-mode: soft-light;
}

@keyframes heroGlow{
  0%   { transform: translate(-6%, -4%) scale(1.02); }
  100% { transform: translate( 6%,  4%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce){
  .hero-card::after{ animation:none; }
}

/* ✅ Side images: ограничиваем размер, чтобы не «съедали» hero */
.hero-side-img{
  max-height: 420px; /* естественная высота мандалы */
  max-width: 360px; /* было 320px */
  width:auto;
  height:100%;
  object-fit: contain;
  align-self:stretch; /* выравнивание по высоте контента */
  filter: drop-shadow(0 10px 20px rgba(225,193,110,0.10));
  transition: transform .25s ease, filter .25s ease;
}

.hero-side-img:hover{
  transform: scale(1.02) translateY(-3px);
  filter: drop-shadow(0 16px 30px rgba(225,193,110,0.18));
}

.hero-side-img-left{ margin-right: 28px; }
.hero-side-img-right{ margin-left: 28px; }

/* Hero typography */
.hero-title{
  font-family: "Playfair Display", serif;
  font-size: var(--fz-hero-title) !important;
  letter-spacing: 0.10em !important;
  line-height: 1.06 !important;
  margin-bottom: 10px !important;
}

.hero-subtitle{
  font-family: "Playfair Display", serif;
  font-size: var(--fz-hero-sub) !important;
  opacity: 0.90 !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

/* Feature lines in hero */
.hero-features{
  font-size: var(--fz-hero-line) !important;
  line-height: 1.75 !important;
}

.cta-text{
  color: rgba(255,255,255,0.90);
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.cta-text .text-warning{
  font-size: 1.15em;
  margin-right: .5rem;
  display:inline-block;
}

/* Stats */
.hero-stats{ margin-top: 1rem; margin-bottom: 1.1rem; }

.stat-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: .75rem 1.1rem;
  background: rgba(255,255,255,0.95); /* Светлый фон как на скриншоте */
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  min-width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,1);
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-rating{
  flex-direction: row !important;
  gap: 0.5rem;
  align-items: center;
}

.stars{
  color: white; /* Белый цвет для звезд */
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-text{
  font-size: 1.1rem;
  font-weight: 700;
  color: #000; /* Черный цвет для рейтинга на светлом фоне */
  line-height: 1;
}

.rating-count{
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6); /* Серый цвет для количества оценок */
  font-weight: 400;
  line-height: 1;
}


/* Promotions */
.promotions-hero{ margin-top: auto; margin-bottom: -1rem; padding-bottom: 0; }

.promotions-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 576px){
  .promotions-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px){
  .promotions-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.promotion-badge{
  background: linear-gradient(135deg, rgba(225,193,110,0.12) 0%, rgba(201,169,68,0.08) 100%);
  border: 1px solid rgba(225,193,110,0.28);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.promotion-badge::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(225,193,110,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promotion-badge:hover::before{
  opacity: 1;
}

.promotion-icon{
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(225,193,110,0.3));
}

.promotion-featured{
  background: linear-gradient(135deg, rgba(225,193,110,0.18) 0%, rgba(201,169,68,0.12) 100%);
  border-color: rgba(225,193,110,0.4);
  border-width: 1.5px;
}


.promotion-time{
  background: linear-gradient(135deg, rgba(225,193,110,0.10) 0%, rgba(201,169,68,0.06) 100%);
  border-color: rgba(225,193,110,0.25);
}

.promotion-birthday{
  background: linear-gradient(135deg, rgba(225,193,110,0.15) 0%, rgba(201,169,68,0.10) 100%);
  border-color: rgba(225,193,110,0.35);
}

@media (min-width: 992px){
  .promotion-badge{
    padding: 1.5rem 1.75rem;
    gap: 0.875rem;
  }
  
  .promotion-featured{
    grid-column: span 1;
  }
}

.promotion-badge:hover{
  border-color: rgba(225,193,110,0.6);
  background: linear-gradient(135deg, rgba(225,193,110,0.22) 0%, rgba(201,169,68,0.15) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(225,193,110,0.2),
    0 4px 12px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.promotion-text{
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.promotion-discount{
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f5d88a 0%, #cfa441 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(225,193,110,0.3);
  text-align: center;
  width: 100%;
}

@media (min-width: 992px){
  .promotion-text{
    font-size: 1.5rem;
  }
  
  .promotion-discount{
    font-size: 3rem;
  }
  
  .promotion-icon{
    font-size: 2rem;
  }
}

.promotion-text{
  color:#fff;
  font-size: var(--fz-promo);
  font-weight: 500;
  text-align:center;
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
}

.promotion-discount{
  color: white;
  font-size: var(--fz-promo-discount);
  font-weight: 800;
  text-align:center;
}

/* =========================
   ANIMATIONS (fade-in)
   ========================= */
.fade-in{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   CARDS (services + cosmetics)
   ========================= */
.card-equal{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:stretch;
  text-align:left;
  background-color:#0e0e0e;
  border: 1px solid rgba(225,193,110,0.35);
  border-radius: 8px;
  padding: 18px;
  height: 100%;
  box-shadow:
    inset 0 0 10px rgba(255,193,7,0.05),
    0 0 16px rgba(255,193,7,0.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
}

/* Специальные стили для карточек с изображениями SPA-программ */
.card-equal.card-spa{
  padding: 0;
}

.card-equal:hover{
  transform: translateY(-4px);
  border-color: rgba(225,193,110,0.6);
  box-shadow:
    inset 0 0 10px rgba(255,193,7,0.10),
    0 0 28px rgba(255,193,7,0.28);
}

.card-equal h5,
.card-equal h4{
  color:white;
  font-weight:600;
  margin-bottom:.5rem;
  text-align:center;
  width: 100%;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.card-equal p{
  text-align:left;
  width: 100%;
}

/* Padding для контента в карточках SPA-программ */
.card-equal.card-spa > div{
  padding: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  align-items: stretch;
}

.card-equal.card-spa h5,
.card-equal.card-spa h4{
  text-align: center;
  width: 100%;
}

.card-equal.card-spa p{
  text-align: left;
  width: 100%;
}

.card-equal img{
  border-radius: 12px;
  transition: transform .25s ease;
}
.card-equal img:hover{ transform: scale(1.02); }

/* Специальные стили для изображений SPA-программ */
.card-equal-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

/* Для карточек SPA - изображения со скруглением */
.card-spa .card-equal-img{
  border-radius: 12px;
}

/* Специальное позиционирование для spa_programma.png - лицо девушки полностью видно с воздухом над головой, средний масштаб, без черной рамки */
.card-spa img[src*="spa_programma.png"]{
  object-position: center 16%;
  object-fit: cover;
}

/* Специальное позиционирование для spa_programma2.png - лица гостей должны быть в центре, воздух над головой мужчины, руки в кадре, руки девушки полностью видны */
.card-spa img[src*="spa_programma2.png"]{
  object-position: center 48%;
  object-fit: cover;
}

/* Специальное позиционирование для slim_massazh.png - показать меньше нижней части */
.card-equal img[src*="slim_massazh.png"]{
  object-position: center 25%;
  object-fit: cover;
}

/* Специальное позиционирование для massage_oil.png - показать лицо клиента, женщину, руки массажиста, свечу справа и орхидеи */
.card-equal img[src*="massage_oil.png"]{
  object-position: center 55%;
  object-fit: cover;
}

.bg-dark-gradient{
  background: linear-gradient(180deg, var(--color-anthracite) 0%, #0f0f0f 100%) !important;
}

.shadow-gold{
  box-shadow:
    inset 0 0 10px rgba(255,193,7,0.05),
    0 0 16px rgba(255,193,7,0.10);
  border: 1px solid rgba(255,193,7,0.22);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shadow-gold:hover{
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 10px rgba(255,193,7,0.10),
    0 0 28px rgba(255,193,7,0.28);
}

.section-divider svg{
  display:block;
  width:100%;
  height:60px;
  margin:0;
  padding:0;
}

/* cosmetics catalog helpers */
#cosmetics-catalog .col-md-3,
#cosmetics-catalog .col-sm-6{ 
  display:flex !important; 
  max-width: 300px !important;
  margin: 0 auto;
  align-items: flex-start !important;
}
#cosmetics-catalog .card-equal{
  justify-content: space-between !important;
  flex: 1;
  padding: 16px !important;
  height: auto !important;
  align-items: center !important;
  align-self: flex-start !important;
}
#cosmetics-catalog .card-equal img{
  max-width: 400px !important;
  max-height: 400px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block !important;
  margin: 0 auto !important;
  margin-bottom: 1rem !important;
}
#cosmetics-catalog .card-equal h5{
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.4 !important;
}
#cosmetics-catalog .card-equal p{
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.4 !important;
}
#cosmetics-catalog .card-equal .rating{
  color:#e0e0e0 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.4 !important;
}
#cosmetics-catalog .card-equal .btn{
  font-size: 0.9rem !important;
  padding: 0.5rem 1rem !important;
  line-height: 1.4 !important;
}

/* Swiper images */
#cosmetics .swiper-slide img{
  max-width:100%;
  max-height:480px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

/* =========================
   SPA BOOKLET STYLES
   ========================= */
.spa-booklet-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  min-height: 600px;
}

.spa-booklet-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.spa-booklet {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  align-items: stretch;
}

.booklet-page {
  position: relative;
  display: flex;
}

.booklet-page-left {
  flex: 0 0 45%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.98) 100%);
  padding: 3rem 2.5rem 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 750px;
  padding-top: 3.5rem;
}

.booklet-page-right {
  flex: 0 0 55%;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  height: 750px;
}

.booklet-page-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(225, 193, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 68, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}

.booklet-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.booklet-decoration {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.2), rgba(201, 169, 68, 0.15));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
}

.booklet-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(225, 193, 110, 0.3);
  border-radius: 50%;
}

.booklet-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.booklet-subtitle {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  color: rgba(44, 44, 44, 0.7);
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  line-height: 1.5;
}

.booklet-description {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(44, 44, 44, 0.85);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.booklet-duration {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
  margin-top: auto;
  color: rgba(44, 44, 44, 0.8);
  font-size: 0.95rem;
}

.booklet-duration svg {
  flex-shrink: 0;
  color: rgba(225, 193, 110, 0.8);
  margin-top: 0.125rem;
}

.booklet-steps {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.booklet-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 80px;
}

.booklet-step span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.7);
  text-align: center;
  font-weight: 500;
}

.booklet-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(180deg, #f5d88a, #cfa441);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(207, 164, 65, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
}

.booklet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 164, 65, 0.4);
  background: linear-gradient(180deg, #f8df9a, #d4ad52);
  color: #1a1a1a;
  text-decoration: none;
}

.booklet-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
}

.booklet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  margin: 0;
  padding: 0;
}

.spa-booklet:hover .booklet-image {
  transform: scale(1.02);
}

.booklet-image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px 0 0 0;
  z-index: 2;
}

.overlay-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overlay-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overlay-subtitle {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(44, 44, 44, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation */
.spa-booklet-nav-next,
.spa-booklet-nav-prev {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(17, 18, 19, 0.7) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  margin-top: 0 !important;
}

.spa-booklet-nav-next:after,
.spa-booklet-nav-prev:after {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.spa-booklet-nav-next:hover,
.spa-booklet-nav-prev:hover {
  background: rgba(225, 193, 110, 0.3) !important;
  color: #fff !important;
  transform: scale(1.1) !important;
}

.spa-booklet-pagination {
  bottom: 20px !important;
  position: relative !important;
  margin-top: 2rem !important;
}

.spa-booklet-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.spa-booklet-pagination .swiper-pagination-bullet-active {
  background: rgba(225, 193, 110, 0.9) !important;
  width: 24px !important;
  border-radius: 5px !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .spa-booklet {
    flex-direction: column;
    max-width: 100%;
  }

  .booklet-page {
    min-height: auto;
  }

  .booklet-page-left {
    padding: 2.5rem 2rem;
    height: auto;
    min-height: 500px;
  }

  .booklet-page-right {
    height: auto;
    min-height: 400px;
  }

  .booklet-image {
    height: auto;
    min-height: 400px;
  }

  .booklet-title {
    font-size: 2rem;
  }

  .booklet-subtitle {
    font-size: 1rem;
  }

  .booklet-description {
    font-size: 0.95rem;
  }

  .booklet-steps {
    gap: 1rem;
  }

  .spa-booklet-nav-next,
  .spa-booklet-nav-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .spa-booklet-nav-next:after,
  .spa-booklet-nav-prev:after {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {
  .spa-booklet-wrapper {
    padding: 2rem 0.5rem;
  }

  .booklet-page-left {
    padding: 2rem 1.5rem;
    height: auto;
    min-height: 450px;
  }

  .booklet-page-right {
    height: auto;
    min-height: 350px;
  }

  .booklet-image {
    height: auto;
    min-height: 350px;
  }

  .booklet-title {
    font-size: 1.75rem;
  }

  .booklet-content {
    max-width: 100%;
  }

  .booklet-steps {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .booklet-step {
    min-width: 70px;
  }

  .booklet-step span {
    font-size: 0.85rem;
  }

  .booklet-image-overlay {
    padding: 1rem 1.5rem;
  }

  .overlay-title {
    font-size: 0.8rem;
  }

  .overlay-subtitle {
    font-size: 0.75rem;
  }
}

/* Gallery Swiper */
#gallery .swiper-slide {
  transition: transform 0.3s ease;
}

#gallery .swiper-slide:hover {
  transform: scale(1.02);
}

#gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

#gallery .swiper-slide:hover img {
  box-shadow: 0 12px 32px rgba(225, 193, 110, 0.2);
}

#gallery .swiper-button-next,
#gallery .swiper-button-prev {
  color: white;
  background: rgba(17, 18, 19, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

#gallery .swiper-button-next:after,
#gallery .swiper-button-prev:after {
  font-size: 20px;
}

#gallery .swiper-pagination-bullet {
  background: var(--color-gold);
  opacity: 0.5;
}

#gallery .swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================
   RESPONSIVE HERO
   ========================= */
@media (max-width: 1200px){
  .hero-card{ width: min(94vw, 1100px); }
  .hero-side-img{ 
    max-height: 380px;
    height: 100%;
    max-width: 320px; 
    align-self: stretch;
  }
}

/* Специальные стили для диапазона 990px - 1200px */
@media (min-width: 992px) and (max-width: 1199.98px){
  /* Hero секция - плавное уменьшение размеров */
  .hero-card{
    width: min(94vw, 1050px);
  }
  
  .hero-side-img{
    max-height: 340px;
    max-width: 280px;
  }
  
  /* Улучшаем промо-грид */
  .promotions-grid{
    gap: 1.1rem;
  }
}

@media (max-width: 991.98px){
  .hero{
    padding: 84px 0 62px;
    align-items: center;
  }

  .hero-card{
    width: min(94vw, 760px);
    padding: 42px 18px;
  }

  .hero-side-img{
    max-height: 260px;
    max-width: 260px;
    margin: 0 0 14px 0;
  }

  .hero-side-img-left,
  .hero-side-img-right{
    margin: 0 0 14px 0;
  }

  .promotion-badge{ 
    min-width: 210px;
    padding: .75rem 1.05rem;
  }
  
  .promotions-hero .d-flex{
    gap: 0.75rem !important;
  }
}

@media (max-width: 576px){
  .hero{ padding: 78px 0 56px; }
  .hero-card{ padding: 36px 16px; }

  .trust-text{ white-space: normal; text-align:center; }
  .promotion-text{ white-space: normal; }

  .btn-primary{ padding: 13px 24px; font-size: 15.5px !important; }
}

/* =========================
   ONLINE BOOKING SECTION
   ========================= */
#online-booking{
  scroll-margin-top: 92px;
}

.booking-card{
  background: rgba(14, 14, 14, 0.95) !important;
  border: 1px solid rgba(255, 193, 7, 0.22);
  box-shadow: 
    inset 0 0 10px rgba(255, 193, 7, 0.05),
    0 0 16px rgba(255, 193, 7, 0.10),
    0 18px 50px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}

.booking-logo-main{
  border: 2px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.discount-banner{
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0.06) 100%) !important;
  transition: all 0.25s ease;
}

.discount-banner:hover{
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0.10) 100%) !important;
  border-color: rgba(255, 193, 7, 0.4) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.booking-menu-item{
  transition: all 0.2s ease;
  background: rgba(14, 14, 14, 0.8) !important;
}

.booking-menu-item:hover{
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 193, 7, 0.35) !important;
  transform: translateX(4px);
}

.booking-menu-item:active{
  transform: translateX(2px);
  background: rgba(255, 193, 7, 0.08) !important;
}

.booking-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.yclients-logo{
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#yclients-widget-container{
  min-height: 100px;
}

#yclients-widget-container iframe{
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 7, 0.15);
}

@media (max-width: 768px){
  .booking-card{
    padding: 1.5rem !important;
  }
  
  .booking-logo-main{
    width: 60px !important;
    height: 60px !important;
  }
  
  .booking-menu-item{
    padding: 0.875rem !important;
  }
  
  .booking-menu-item span{
    font-size: 0.95rem;
  }
}

/* Scroll Indicator */
.scroll-indicator{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-down{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-down:hover{
  color: var(--color-gold);
  transform: translateY(5px);
}

.scroll-text{
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.scroll-arrow{
  animation: bounce 2s infinite;
  color: var(--color-gold);
  opacity: 0.8;
}

@keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    transform: translateY(0);
  }
  40%{
    transform: translateY(-8px);
  }
  60%{
    transform: translateY(-4px);
  }
}

@keyframes fadeInUp{
  from{
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 991.98px){
  .scroll-indicator{
    bottom: 15px;
  }
  
  .scroll-text{
    font-size: 0.75rem;
  }
  
  .scroll-arrow{
    width: 20px;
    height: 20px;
  }
}

/* =========================
   MASTERS SECTION - Современный дизайн 2026
   ========================= */
.masters-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 992px){
  .masters-grid{
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.master-card{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(225, 193, 110, 0.03) 100%);
  border: 1px solid rgba(225, 193, 110, 0.2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.master-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.master-card:hover::before{
  opacity: 1;
}

.master-card:hover{
  transform: translateY(-8px);
  border-color: rgba(225, 193, 110, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(225, 193, 110, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(225, 193, 110, 0.05) 100%);
}

.master-photo{
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.1) 0%, rgba(201, 169, 68, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.master-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
}

.master-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
}

/* Убеждаемся, что оба мастера на одном уровне */
.master-image-olli{
  object-position: center 60%;
}

/* Мастер Чомпу - увеличен и выше */
.master-image-chomp{
  object-position: center 55%;
  transform: scale(1.1);
}

.master-card:hover .master-image{
  transform: scale(1.08);
}

.master-image-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.master-experience-badge{
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.95) 0%, rgba(201, 169, 68, 0.9) 100%);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 
    0 4px 12px rgba(225, 193, 110, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
  backdrop-filter: blur(10px);
}

.master-content{
  padding: 2rem;
}

.master-body{
  flex: 1;
  display: flex;
  flex-direction: column;
}

.master-name-wrapper{
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(225, 193, 110, 0.2);
}

.master-name{
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.master-name-en{
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.master-description{
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  column-count: 1;
  column-gap: 2rem;
}

@media (min-width: 768px) {
  .master-description{
    column-count: 2;
  }
}

.master-specialty{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.specialty-tag{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.15) 0%, rgba(201, 169, 68, 0.1) 100%);
  border: 1px solid rgba(225, 193, 110, 0.3);
  border-radius: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
}

.master-card:hover .specialty-tag{
  background: linear-gradient(135deg, rgba(225, 193, 110, 0.25) 0%, rgba(201, 169, 68, 0.18) 100%);
  border-color: rgba(225, 193, 110, 0.5);
  transform: translateY(-2px);
}

@media (min-width: 992px){
  .master-card-left,
  .master-card-right{
    margin-top: 0;
  }
  
  .master-photo{
    height: 480px;
  }
  
  .master-content{
    padding: 2.5rem;
  }
  
  .master-name{
    font-size: 2rem;
  }
  
  .master-description{
    font-size: 1.2rem;
    column-count: 2;
  }
  
  .master-name-en{
    font-size: 1.15rem;
  }
  
  .specialty-tag{
    font-size: 1.05rem;
  }
}

@media (max-width: 991.98px){
  .master-card-right{
    margin-top: 0;
  }
  
  .master-photo{
    height: 400px;
  }
  
  .master-content{
    padding: 1.5rem;
  }
}

@media (max-width: 576px){
  .master-photo{
    height: 350px;
  }
}

/* =========================
   SERVICE PRICES
   ========================= */
.service-prices {
  margin-top: 0;
  margin-bottom: 0.5rem;
  width: 100%;
  flex-shrink: 0;
  min-height: 4.5rem;
}

/* Стили для раскрывающегося описания услуг */
.service-description-detail {
  animation: fadeIn 0.3s ease-in;
  margin-bottom: 0.75rem;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.service-description-detail p {
  margin-bottom: 0.75rem !important;
  line-height: 1.6;
  margin-top: 0;
}

.service-detail-toggle {
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-weight: 500;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  display: block;
  width: 100%;
  text-align: left;
  flex-shrink: 0;
}

.service-detail-toggle:hover {
  opacity: 0.8;
}

/* Выравнивание кнопки "Подробнее" и цен на одном уровне */
.card-equal > div[style*="padding"] {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Область с описанием и кнопкой - фиксированная минимальная высота */
.card-equal h5 {
  flex-shrink: 0;
}

/* Обертка для описания и кнопки - минимальная высота для выравнивания, расширяется при раскрытии */
.service-description-container {
  min-height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Когда описание раскрыто, контейнер расширяется */
.service-description-container:has(.service-description-detail[style*="display: block"]) {
  min-height: auto;
  justify-content: flex-start;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
  border-bottom: none;
}

.price-time {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.price-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: right;
}