:root{
  --accent:#ff7a00;
  --accent-2:#ff8f2a;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
  --bg-soft:#f6f7f9;
  --shadow:0 10px 30px rgba(17,24,39,.06);
  --r:18px;
}

body{
  color:var(--text);
  background:var(--bg);
}

.pill{ border-radius:999px; }

/* Top bar */
.topbar{ background:#fff; }
.topbar-city{ font-weight:600; }
.topbar-link{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}
.topbar-link:hover{ color:var(--text); }

/* Brand */
.brand{
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none;
  color:var(--text);
  font-size:22px;
}
.brand:hover{ color:var(--text); }

.site-header .btn-dark{
  background:var(--accent);
  border-color:var(--accent);
}
.site-header .btn-dark:hover{
  background:var(--accent-2);
  border-color:var(--accent-2);
}

/* Category pills row */
.category-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cat-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  transition:all .15s ease;
}
.cat-pill:hover{
  border-color:rgba(255,122,0,.45);
  box-shadow:0 6px 18px rgba(255,122,0,.12);
  color:var(--text);
}
.cat-pill-muted{
  color:var(--muted);
}

/* Layout */
.content-wrap{ padding-top:18px; }

/* Sections */
.section-title{
  font-weight:800;
  font-size:28px;
  margin:0 0 12px;
}
.section-subtitle{
  color:var(--muted);
  margin:0 0 18px;
}

/* Hero / promo */
.promo-wrap{
  position:relative;
}
.promo{
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:calc(var(--r) + 6px);
  overflow:hidden;
  min-height:260px;
}
.promo-slider-inner{
  position:relative;
}
.promo-slides{
  position:relative;
  width:100%;
}
.promo-slide{
  display:none;
}
.promo-slide.is-active{
  display:block;
}
.promo-slide.anim-from-right{
  animation: promoFromRight .35s ease both;
}
.promo-slide.anim-from-left{
  animation: promoFromLeft .35s ease both;
}
@keyframes promoFromRight{
  from{
    opacity:0;
    transform:translateX(40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}
@keyframes promoFromLeft{
  from{
    opacity:0;
    transform:translateX(-40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}
.promo-inner{ padding:22px; }
@media (min-width:768px){
  .promo-inner{ padding:32px; }
}
@media (min-width:992px){
  .promo{
    min-height:320px;
  }
}
.promo-kicker{
  color:var(--accent);
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
}
.promo-title{
  font-weight:900;
  font-size:34px;
  line-height:1.05;
  margin:10px 0 10px;
}
@media (min-width:992px){
  .promo-title{ font-size:42px; }
}
.promo-text{ color:var(--muted); font-size:16px; }
.promo-slide .col-lg-5{
  display:flex;
  align-items:stretch;
  overflow:hidden;
  position:relative;
}
.promo-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media (max-width:991.98px){
  .promo-slide .col-lg-5{
    min-height:220px;
    max-height:220px;
  }
}
@media (min-width:992px){
  .promo-slide .col-lg-5{
    min-height:320px;
    max-height:320px;
  }
}
.promo-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  color:var(--text);
  box-shadow:var(--shadow);
  cursor:pointer;
  z-index:5;
}
.promo-arrow-left{
  left:-22px;
}
.promo-arrow-right{
  right:-22px;
}
@media (max-width:767.98px){
  .promo-arrow{
    width:32px;
    height:32px;
    font-size:18px;
  }
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media (min-width:768px){
  .steps{ grid-template-columns:repeat(3, 1fr); }
}
.step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r);
  padding:18px;
  box-shadow:var(--shadow);
}
.step-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,122,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-weight:900;
  margin-bottom:10px;
}
.step-title{ font-weight:800; margin:0; }
.step-desc{ color:var(--muted); margin:6px 0 0; }

/* Product cards */
.product-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:calc(var(--r) + 2px);
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;
}
.product-card img{
  width:100%;
  aspect-ratio: 16/10;
  object-fit:cover;
}
.product-body{ padding:14px 14px 16px; }
.product-meta{ color:var(--muted); font-size:12px; }
.product-title{ font-weight:800; margin:6px 0 8px; }
.product-price{ font-weight:900; }
.product-city{ color:var(--muted); font-size:12px; }
.btn-book{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:#fff;
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
}
.btn-book:hover{
  background:rgba(255,122,0,.08);
  color:var(--accent);
}

.btn-accent{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  font-weight:900;
}
.btn-accent:hover{
  background:var(--accent-2);
  border-color:var(--accent-2);
  color:#fff;
}

/* FAQ */
.accordion-button{
  font-weight:700;
}

/* Timeline */
.timeline-wrap{ display:flex; gap:8px; overflow:auto; padding-bottom:8px; }
.timeline-day{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  flex:0 0 auto;
}

/* Catalog layout: ensure filters are above product list on mobile */
@media (max-width: 991.98px){
  /* На мобильных фильтры и товары идут своим порядком, но фильтры не должны "прилипать" к низу из-за align-items-end */
  .row.g-3.align-items-end > .col-12.col-lg-3{
    /* Filters column */
    order:-1;
  }
  .row.g-3.align-items-end > .col-12.col-lg-9{
    /* Products column */
    order:0;
  }
}

/* На странице каталога выравниваем колонки по верху, чтобы высота списка товаров не тянула фильтры вниз */
.row.g-3.align-items-end{
  align-items:flex-start !important;
}
