/* ========================================
   Skupisko 2026 — Concept Landing Page
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}

:root {
  --purple-deep: #2e1240;
  --purple-hero: #251038;
  --purple-brand: #7B2280;
  --purple-light: #a855f7;
  --purple-main: rgba(42, 16, 62, 0.88);
  --coral: #E8512D;
  --coral-light: #f97316;
  --gradient-brand: linear-gradient(135deg, #E8512D 0%, #f97316 50%, #fa8f15 100%);
  --gradient-brand-horizontal: linear-gradient(0, #E8512D 0%, #f97316 50%, #fa8f15 100%);
  --gradient-hero: linear-gradient(165deg, #1c0c2e 0%, #351654 40%, #451a6a 70%, #251038 100%);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: #fff;
}

input, textarea, select, button { font-family: inherit; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1,h2,h3,h4,h5 {
  font-weight: 500;
}

.color-danger {
  color: var(--coral);
}

.desc_catalog p {
  color: var(--gray-500);
  line-height: 1.8
}

.desc_catalog ul,
.desc_catalog ol {
  margin: 20px 40px;
}

.desc_catalog ul li,
.desc_catalog ol li {
  color: var(--gray-500);
  line-height: 1.8
}

.category-home-content h1 {
  margin-bottom: 40px;
  font-size: 32px;
}

h1.decor::before,
h2.decor::before,
.category-home-content h2::before,
.desc_catalog h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 5px;
  content: "";
  background-color: var(--coral);
  border-radius: 5px;
}

.section-header h1.decor::before,
h1.decor.text-center::before,
h2.decor.text-center::before,
.category-home-content h2.text-center::before,
.desc_catalog h2.text-center::before {
  left: 50%;
  transform: translateX(-50%);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(42, 16, 62, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .logo img {
  filter: none;
}
.navbar.scrolled .nav-links > a {
  color: var(--gray-600);
}
.navbar.scrolled .nav-links > a:hover {
  color: var(--gray-900);
}
.navbar.scrolled .btn-ghost {
  color: var(--gray-700);
}
.navbar.scrolled .btn-ghost:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

/* Light variant — white navbar from the start (used on catalog pages with hero bg) */
.navbar--light {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar--light .logo img {
  filter: none;
}
.navbar--light .nav-links > a {
  color: var(--gray-600);
}
.navbar--light .nav-links > a:hover {
  color: var(--gray-900);
}
.navbar--light .btn-ghost {
  color: var(--gray-700);
}
.navbar--light .btn-ghost:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}
.navbar--light .burger span {
  background: var(--gray-700);
}
.navbar--light ~ .mobile-menu {
  background: #fff;
}
.navbar--light ~ .mobile-menu .mobile-menu-links a {
  color: var(--gray-700);
  border-bottom-color: var(--gray-100);
}
.navbar--light ~ .mobile-menu .mobile-menu-links a:hover {
  color: var(--gray-900);
}
.navbar--light ~ .mobile-menu .mobile-menu-actions .btn-ghost {
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo img { height: 34px; filter: brightness(0) invert(1); transition: filter .3s; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 32px;
  margin-right: auto;
}
.nav-links > a {
  font-size: 14px;
  line-height: 34px; /* NEEDS TO BE CHECKED */
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .3s;
}
.nav-links > a:hover { color: #fff; }

/* --- Mega Menu --- */
.nav-categories {
  position: relative;
}

.nav-categories__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .3s, background .3s;
  cursor: pointer;
}
.nav-categories__trigger:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.nav-categories__chevron {
  transition: transform .2s;
  margin-left: 2px;
}
.nav-categories:hover .nav-categories__chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  z-index: 200;
}
.nav-categories:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__inner {
  display: flex;
  min-width: 680px;
  max-width: 820px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05);
  overflow: hidden;
}

.mega-menu__left {
  width: 260px;
  min-width: 260px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.mega-menu__categories {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.mega-menu__cat:hover,
.mega-menu__cat.active {
  background: #fff;
  color: var(--gray-900);
  box-shadow: var(--shadow-sm);
}
.mega-menu__cat.active {
  color: var(--coral);
}

.mega-menu__cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.mega-menu__cat-icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu__show-all {
  display: block;
  margin-top: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: var(--coral);
  border-radius: 8px;
  transition: opacity .2s;
  text-decoration: none;
}
.mega-menu__show-all:hover {
  opacity: .9;
  color: #fff;
}

.mega-menu__right {
  flex: 1;
  padding: 20px 24px;
  min-height: 280px;
  position: relative;
}

.mega-menu__subcategories {
  display: none;
}
.mega-menu__subcategories.active {
  display: block;
}

.mega-menu__sub-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.mega-menu__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.mega-menu__sub-link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--gray-600);
  transition: color .15s;
  text-decoration: none;
}
.mega-menu__sub-link:hover {
  color: var(--coral);
}

.mega-menu__show-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  text-decoration: none;
  transition: opacity .2s;
}
.mega-menu__show-more:hover {
  opacity: .75;
}

/* Mega menu — scrolled navbar variant */
.navbar.scrolled .nav-categories__trigger {
  color: var(--gray-600);
}
.navbar.scrolled .nav-categories__trigger:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

/* Mega menu — light navbar variant */
.navbar--light .nav-categories__trigger {
  color: var(--gray-600);
}
.navbar--light .nav-categories__trigger:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

/* Mega menu & nav search — hide on mobile */
@media (max-width: 768px) {
  .nav-categories {
    display: none;
  }
  .search-bar--nav {
    display: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .3s;
  white-space: nowrap;
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.08); }

.btn-primary-sm {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--gradient-brand);
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-primary-sm:hover { opacity: .9; }

/* Burger button */
.burger {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}
.navbar.scrolled .burger span {
  background: var(--gray-700);
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--purple-deep);
  padding: 32px 24px;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.navbar.scrolled ~ .mobile-menu {
  background: #fff;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-links a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-menu-links a:hover { color: #fff; }
.navbar.scrolled ~ .mobile-menu .mobile-menu-links a {
  color: var(--gray-700);
  border-bottom-color: var(--gray-100);
}
.navbar.scrolled ~ .mobile-menu .mobile-menu-links a:hover {
  color: var(--gray-900);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-actions .btn-ghost {
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
}
.navbar.scrolled ~ .mobile-menu .mobile-menu-actions .btn-ghost {
  color: var(--gray-700);
  border-color: var(--gray-200);
}
.mobile-menu-actions .btn-primary-sm {
  text-align: center;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
}

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,34,128,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 40%, rgba(232,81,45,.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,.5);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Search bar */
.search-bar {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 6px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  flex: 1;
  color: var(--gray-400);
}
.search-field input {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  width: 100%;
  background: transparent;
}
.search-field input::placeholder { color: var(--gray-400); }

.search-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: var(--gradient-brand);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-search:hover { opacity: .9; }

/* Compact search bar inside navbar */
.search-bar--nav {
  margin: 0;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.search-bar--nav .search-field {
  padding: 6px 10px;
  gap: 8px;
}
.search-bar--nav .search-field input {
  font-size: 13px;
}
.search-bar--nav .search-divider {
  height: 24px;
}
.search-bar--nav .btn-search {
  padding: 8px 10px;
  font-size: 0;
  border-radius: 8px;
}
.search-bar--nav .btn-search svg {
  flex-shrink: 0;
}

/* City autocomplete dropdown */
.search-city-ac { position: relative; }
.search-ac-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 250px;
  overflow-y: auto;
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.search-ac-dropdown.active { display: block; }
.search-ac-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-800);
  text-align: left;
}
.search-ac-item:hover { background: var(--gray-50); }
.search-ac-item .search-ac-region {
  color: var(--gray-400);
  font-size: 12px;
  margin-left: 4px;
}

.hero-popular {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
}
.hero-popular span:first-child { margin-right: 6px; }
.hero-popular a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.hero-popular a:hover { color: #fff; }
.hero-popular .dot { margin: 0 8px; color: rgba(255,255,255,.3); }

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon-yellow { background: rgba(250,204,21,.15); color: #facc15; }
.stat-icon-green  { background: rgba(34,197,94,.15);  color: #22c55e; }
.stat-icon-coral  { background: rgba(232,81,45,.15);  color: #E8512D; }

.stat-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.stat-item small {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}
.section-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray-500);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-header-row h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 4px;
}
.section-home .box {
  border: 0;
  padding: 20px 0 0;
  box-shadow: none;
}

/* --- Home About Hero --- */
.section-about-hero {
  background: var(--gradient-hero);
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.about-hero-text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}

.about-hero-text > p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-hero-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-hero-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-hero-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 2px;
}

.about-hero-feature span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Floating card visual */
.about-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--gray-800);
  box-shadow: 0 25px 50px rgba(0,0,0,.3);
  width: 100%;
}

.about-hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.about-hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,.5);
}

.about-hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.about-hero-card-item:last-of-type {
  border-bottom: none;
}

.about-hero-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-hero-card-info {
  flex: 1;
  min-width: 0;
}

.about-hero-card-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-hero-card-info small {
  font-size: 12px;
  color: var(--gray-400);
}

.about-hero-card-rating {
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-hero-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 24px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gray-400);
  background: #fff;
}

/* --- How it works (Steps) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: left;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
.step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Step cards (soft/column variant) --- */
.step-card-soft {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.step-card-soft:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.step-icon-soft {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.step-num-soft {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gray-800);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card-soft-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 3px;
}
.step-card-soft-text p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* --- Categories --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}
.category-card:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cat-blue   { background: #dbeafe; color: #2563eb; }
.cat-coral  { background: #fee2e2; color: #dc2626; }
.cat-green  { background: #dcfce7; color: #16a34a; }
.cat-yellow { background: #fef3c7; color: #d97706; }
.cat-purple { background: #f3e8ff; color: #9333ea; }
.cat-teal   { background: #ccfbf1; color: #0d9488; }
.cat-pink   { background: #fce7f3; color: #db2777; }
.cat-orange { background: #ffedd5; color: #ea580c; }

.category-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.category-card p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}
.cat-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

/* --- Provider cards --- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.provider-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
}
.provider-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.provider-img {
  height: 160px;
  position: relative;
}
.provider-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-green  { background: #009f81; border-color: #067761; color: #fff; }
.badge-premium { background: #f59e0b; color: #fff; }

.provider-available {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(22,163,74,.85);
  padding: 4px 10px;
  border-radius: 6px;
}
.provider-available::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-right: 5px;
  vertical-align: 1px;
}

.provider-body { padding: 16px; }
.provider-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.provider-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 4px 0 8px;
}
.provider-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.provider-rating { color: var(--gray-800); font-weight: 600; }
.provider-rating small { font-weight: 400; color: var(--gray-400); }

/* Friend recommendations on card */
.provider-friends {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--purple-brand);
  font-weight: 600;
}
.friend-avatars {
  display: flex;
}
.friend-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -6px;
}
.friend-avatar:first-child { margin-left: 0; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-quote-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  line-height: 1;
  color: var(--coral);
  opacity: .15;
  font-family: Georgia, serif;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-900);
}
.testimonial-author small {
  font-size: 13px;
  color: var(--gray-400);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big { }
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--purple-brand);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* --- Mission Section --- */
.section-mission {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(232, 81, 45, .08);
  color: var(--coral);
  margin-bottom: 24px;
}

.section-mission h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.mission-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
}

.mission-text p + p {
  margin-top: 12px;
}

/* --- CTA Section --- */
.section-cta {
  background: var(--gradient-hero);
  padding: 80px 0;
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.cta-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}
.cta-text > p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .9; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }

/* CTA Stats Card */
.cta-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--gray-800);
  box-shadow: 0 25px 50px rgba(0,0,0,.3);
}
.cta-card-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.cta-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cta-card-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
}
.cta-card-label {
  font-size: 14px;
  color: var(--gray-500);
}
.cta-card-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.cta-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
}
.cta-card-row:last-child { border-bottom: none; }
.cta-card-val {
  font-weight: 700;
  color: var(--gray-900);
}
.cta-card-val.coral { color: var(--coral); }
.cta-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.cta-card-author strong {
  display: block;
  font-size: 14px;
}
.cta-card-author small {
  font-size: 13px;
  color: var(--gray-400);
}

/* --- Footer --- */
.footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,.5);
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  margin-left: 24px;
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ========================================
   Legacy
   ======================================== */

.desc_catalog p{
  margin-bottom: 20px;
}
.desc_catalog h3 {
  padding-top: 10px;
}

h1.decor,
h2.decor {
  padding-bottom: 20px;
  position: relative;
}

.category-home-content h2,
.desc_catalog h2 {
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* ========================================
   Legacy Layout — Columns & Grid
   ======================================== */

.postcontent,
.sidebar,
.col_full,
.col_half,
.col_one_third,
.col_two_third,
.col_three_fourth,
.col_one_fourth,
.col_one_fifth,
.col_two_fifth,
.col_three_fifth,
.col_four_fifth,
.col_one_sixth,
.col_five_sixth {
  display: block;
  position: relative;
  margin-right: 4%;
  margin-bottom: 24px;
  float: left;
}

.col_full        { width: 100%; clear: both; float: none; margin-right: 0; }
.col_half        { width: 48%; }
.col_one_third   { width: 30.63%; }
.col_two_third   { width: 65.33%; }
.col_one_fourth  { width: 22%; }
.col_three_fourth { width: 74%; }
.col_one_fifth   { width: 16.8%; }
.col_two_fifth   { width: 37.6%; }
.col_three_fifth { width: 58.4%; }
.col_four_fifth  { width: 79.2%; }
.col_one_sixth   { width: 13.33%; }
.col_five_sixth  { width: 82.67%; }

.col_last {
  margin-right: 0 !important;
  float: right;
}

/* Clearfix for column containers */
.content-wrap .container::after {
  content: '';
  display: table;
  clear: both;
}

/* ========================================
   Legacy Layout — Content Area
   ======================================== */

#content {
  position: relative;
  background: var(--gray-50);
  padding-top: 48px;
}

.content-wrap {
  padding: 48px 0 64px;
}

/* ========================================
   Legacy Layout — Box
   ======================================== */

.box {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.box h1, .box h2, .box h3, .box h4, .box h5, .box h6 {
  color: var(--gray-900);
  margin-bottom: 12px;
}

.box p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.box a:not(.btn):not(.button) {
  color: var(--coral);
  font-weight: 500;
  transition: color .2s;
}
.box a:hover:not(.btn):not(.button) {
  color: var(--coral-light);
}

h2 > a,
h3 > a {
  color: var(--gray-800) !important;
}

h2 > a:hover,
h3 > a:hover {
  color: var(--coral) !important;
}

/* ========================================
   Legacy Layout — Breadcrumbs
   ======================================== */

ul.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 12px 0;
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--gray-400);
  background: transparent;
}

ul.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

ul.breadcrumb li + li::before {
  content: "/";
  padding: 0 8px;
  color: var(--gray-400);
  font-weight: 300;
}

ul.breadcrumb li a {
  color: var(--gray-500);
  font-weight: 500;
  transition: color .2s;
}

ul.breadcrumb li a:hover {
  color: var(--coral);
}

ul.breadcrumb li.last {
  color: var(--gray-800);
  font-weight: 600;
}

ul.breadcrumb li .first-node-name {
  display: inline;
}

ul.breadcrumb li.first a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

ul.breadcrumb li.first a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ========================================
   Legacy Layout — Categories Links
   (mirrors .categories-grid / .category-card)
   ======================================== */

.categories_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.categories_links .col-md-4,
.categories_links .col-md-2 {
  width: 100%;
  padding: 0;
}

/* Each column = category-card */
.categories_links .col-md-4 {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}

.categories_links .col-md-4:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Category heading = card title */
.categories_links h4.badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  background: none;
  padding: 0;
  margin: 0 0 4px;
  text-shadow: none;
  letter-spacing: -0.01em;
  border-radius: 0;
  line-height: 1.3;
}

.categories_links h4.button-lime,
.categories_links h4.button-white {
  background: none;
  color: var(--gray-900);
}

/* Subcategory list = card description */
.categories_links ul.iconlist {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.categories_links ul.iconlist li {
  display: inline;
}

.categories_links ul.iconlist li a {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  transition: color .2s;
}

.categories_links ul.iconlist li a:hover {
  color: var(--coral);
}

/* Comma separator between subcategories */
.categories_links ul.iconlist li + li::before {
  content: ", ";
  color: var(--gray-400);
  font-size: 13px;
}

/* Subcategory count (mimics .cat-count) */
.categories_links .col-md-4::after {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

.categories_links .cat-icon svg {
  color: #fff !important;
}

/* Quick links variant (flat link columns) */
#quick-links {
  padding: 48px 0;
}

#quick-links h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

#quick-links .categories_links {
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

#quick-links .categories_links .col-md-2 {
  padding: 0;
}

#quick-links .categories_links ul.iconlist {
  margin: 0;
}

#quick-links .categories_links ul.iconlist li {
  display: block;
}

#quick-links .categories_links ul.iconlist li + li::before {
  content: none;
}

#quick-links .categories_links ul.iconlist li a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: var(--gray-600);
}

#quick-links .categories_links ul.iconlist li a:hover {
  color: var(--coral);
}

/* ========================================
   Legacy Layout — Top Cities Grid
   ======================================== */

.top-cities-with-images-header {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.top-cities-with-images-header strong {
  color: var(--coral);
}

.top-cities-with-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.top-cities-with-images > a {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}

.top-cities-with-images > a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.top-cities-with-images > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-cities-with-images > a span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ========================================
   Legacy Layout — Voivodeship Buttons
   ======================================== */

.col_full > p.lead.center {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.col_full > .row .col-md-3 {
  width: 100%;
  padding: 0;
}

.col_full > .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
}

.button.button-rounded.button-white.button-light.btn-block {
  display: block;
  width: 100%;
  /* padding: 10px 16px; */
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}

.button.button-rounded.button-white.button-light.btn-block:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
  color: var(--gray-900);
}

/* ========================================
   Legacy Layout — City Links List
   ======================================== */

.service_cities_links .col-md-4 {
  width: 33.3%;
  float: left;
}

.service_cities_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.service_cities_links ul::after {
  display: none;
}

.service_cities_links ul li a {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
  transition: color .2s, background .2s;
  border-radius: 6px;
}

.service_cities_links ul li a:hover {
  color: var(--coral);
  background: var(--gray-50);
}

.service_cities_links ul li a strong {
  color: var(--gray-900);
  font-weight: 600;
}

.clear { clear: both; }

/* ========================================
   Legacy Layout — Call Ratings
   ======================================== */

.account-call-rating-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
}

.account-call-rating-wrapper .col-md-3,
.account-call-rating-wrapper .col-xs-12 {
  width: 100%;
  padding: 0;
  float: none;
}

.account-call-rating {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.account-call-rating p {
  margin: 0;
}

.account-call-rating p:first-child {
  font-size: 14px !important;
  color: var(--gray-500);
  margin-bottom: 12px !important;
}

.account-call-rating .feedback-score {
  color: var(--gray-700);
  font-weight: 700;
}

.account-call-rating .feedback-score--positive {
  color: var(--green);
}

.account-call-rating p i {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
}

.account-call-rating p:last-child {
  margin-top: auto !important;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
}

.account-call-rating p:last-child a {
  color: var(--gray-800);
  font-weight: 600;
  transition: color .2s;
}

.account-call-rating p:last-child a:hover {
  color: var(--coral);
}

.account-call-rating p:last-child small {
  color: var(--gray-400);
  font-size: 12px;
}

/* ========================================
   Legacy Layout — FAQ Accordion
   ======================================== */

.panel-group {
  margin-bottom: 24px;
}

.panel.panel-default {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) !important;
  margin-bottom: 8px;
  box-shadow: none;
  overflow: hidden;
}

.panel-heading {
  padding: 0;
  border: none;
  background: #fff !important;
}

.panel-title {
  margin: 0;
  font-size: 15px;
}

.panel-title a {
  display: block;
  padding: 16px 48px 16px 20px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color .2s;
  position: relative;
}

.panel-title a:hover {
  color: var(--coral);
}

/* Arrow indicator */
.panel-title a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s;
}

.panel-title a[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(-135deg);
}

.panel-title a[aria-expanded="true"] {
  color: var(--coral);
}

.panel-collapse {
  border-top: 1px solid var(--gray-100);
}

.panel-body {
  padding: 16px 20px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.panel-body p {
  margin-bottom: 8px;
}

/* Collapse animation */
.panel-collapse.collapse {
  display: none;
}

.panel-collapse.collapse.in {
  display: block;
}

.panel-collapse.collapsing {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

/* ========================================
   Legacy Layout — Utility Classes
   ======================================== */

.center { text-align: center; }
.text-center { text-align: center; }
.hidden-xs { }
.color-muted { color: var(--gray-400) !important; }

h2.text-center {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.flex-container {
  display: flex;
  gap: 16px;
}

/* ========================================
   Legacy Layout — Lazy Load Images
   ======================================== */

.image-lazy-load {
  opacity: 0;
  transition: opacity .4s ease;
}

.image-lazy-load.loaded {
  opacity: 1;
}

/* ========================================
   Legacy Layout — Featured News (ipost)
   ======================================== */

.category-featured-news .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
}

.category-featured-news .col-md-3,
.category-featured-news .col-sm-6 {
  width: 100% !important;
  padding: 0 !important;
  float: none !important;
}

.ipost.entry-ipost {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
}

.ipost.entry-ipost:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.entry-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
  padding: 10px;
}

.entry-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.entry-container {
  padding: 16px;
}

.entry-title h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0 0 15px;
}

.entry-title h3 a {
  color: var(--gray-900);
  transition: color .2s;
}

.entry-title h3 a:hover {
  color: var(--coral);
}

ul.entry-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

ul.entry-meta li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.entry-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .categories-grid,
  .providers-grid,
  .steps-grid,
  .category-featured-news .row { grid-template-columns: repeat(2, 1fr); }
  .about-hero-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .categories_links { grid-template-columns: repeat(2, 1fr); }
  #quick-links .categories_links { grid-template-columns: repeat(3, 1fr); }
  .categories_links ul.iconlist li { display: inline; }
  .top-cities-with-images { grid-template-columns: repeat(2, 1fr); }
  .col_full > .row { grid-template-columns: repeat(3, 1fr); }
  .account-call-rating-wrapper { grid-template-columns: repeat(2, 1fr); }

  /* Legacy columns — stack on tablet */
  .col_one_fourth,
  .col_three_fourth {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .col_last {
    float: none;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: stretch; }
  .hero-stats .stat-item { justify-content: flex-start; }
  .search-bar { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; }
  .search-field input { font-size: 14px; }
  .btn-search { width: 100%; justify-content: center; }
  .categories-grid,
  .providers-grid,
  .category-featured-news .row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .section-header-row { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .about-hero-text h2 { font-size: 28px; }
  .section-about-hero { padding: 56px 0; }
  .section-mission { padding: 56px 0; }
  .mission-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .section-mission h2 { font-size: 24px; }
  .about-hero-card { max-width: 360px; margin: 0 auto; }
  .categories_links { grid-template-columns: 1fr; }
  #quick-links .categories_links { grid-template-columns: repeat(2, 1fr); }
  .categories_links ul.iconlist li { display: inline; }
  .top-cities-with-images { grid-template-columns: repeat(2, 1fr); }
  .col_full > .row { grid-template-columns: repeat(2, 1fr); }
  .account-call-rating-wrapper { grid-template-columns: 1fr; }
  .service_cities_links ul { grid-template-columns: repeat(2, 1fr); }
  .hidden-xs { display: none; }

  /* Legacy columns — full width on mobile */
  .col_half,
  .col_one_third,
  .col_two_third,
  .col_one_fifth,
  .col_two_fifth,
  .col_three_fifth,
  .col_four_fifth,
  .col_one_sixth,
  .col_five_sixth {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .box { padding: 20px; }
  .content-wrap { padding: 24px 0 40px; }
}

/* ========================================
   Inline SVG Icons
   ======================================== */

.catalog-card svg,
.catalog-card-col-actions svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.catalog-card-location svg {
  color: var(--gray-400);
}

.catalog-card-eta-info {
  cursor: help;
  color: var(--gray-400);
}

.catalog-card-eta-info svg {
  top: 0;
}

.catalog-card-trophy svg {
  color: #d97706;
}

.catalog-card-activity-item svg {
  color: var(--gray-400);
}

.catalog-card-col-actions .catalog-card-btn svg {
  color: inherit;
  top: 0;
}

.catalog-card-hours svg {
  color: rgba(255,255,255,.5);
}

/* ========================================
   Catalog List 2026
   ======================================== */

.catalog-2026 {
  max-width: 100%;
}

.catalog-list-2026 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* --- Catalog Card --- */
.catalog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

.catalog-card:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
}

.catalog-card--featured {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px rgba(245,158,11,.12);
}

.catalog-card--featured:hover {
  border-color: #f59e0b;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245,158,11,.2);
}

/* --- Card body: content | actions (full height) --- */
.catalog-card-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  min-height: 0;
}

/* --- Heading above columns (name + rating) --- */
.catalog-card-heading {
  padding: 20px 20px 0;
}

.catalog-card-heading .catalog-card-name {
  margin-bottom: 4px;
}

.catalog-card-heading .catalog-card-rating {
  margin-bottom: 0;
}

/* --- 2-Column Grid (photo | data) --- */
.catalog-card-columns {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 0;
}

/* --- Column 1: Photo + services --- */
.catalog-card-col-photo {
  padding: 20px;
  text-align: center;
}

.catalog-card-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* Services under photo */
.catalog-card-services {
  text-align: left;
}

.catalog-card-service {
  padding: 4px 0;
}

.catalog-card-service strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.catalog-card-service span {
  font-size: 12px;
  color: var(--gray-500);
}

/* --- Column 2: Data --- */
.catalog-card-col-data {
  padding: 12px 24px 20px;
  border-left: 1px solid var(--gray-100);
  min-width: 0;
}

/* Name */
.catalog-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 6px;
  line-height: 1.3;
}

.catalog-card-name a {
  color: var(--gray-900);
  transition: color .2s;
}

.catalog-card-name a:hover {
  color: var(--coral);
}

.catalog-card-badge-featured {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #dc2626;
  padding: 3px 10px;
  border-radius: 6px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  letter-spacing: .02em;
}

/* Categories under name */
.catalog-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.catalog-card-cat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 5px;
  transition: all .2s;
}

.catalog-card-cat-tag:hover {
  color: var(--coral);
  background: var(--gray-200);
}

.catalog-card-cat-tag--disabled {
  color: var(--gray-400);
  cursor: default;
}

.catalog-card-cat-tag--disabled:hover {
  color: var(--gray-400);
  background: var(--gray-100);
}

/* Rating under name — stars from production */
.catalog-card-rating {
  margin-bottom: 10px;
}

.catalog-card-rating .account-reviews-avg {
  font-size: 14px;
  color: var(--gray-600);
}

.account-reviews-avg .icon-star3 {
  font-size: 15px;
}

.account-reviews-avg .star-positive {
  color: #f59e0b;
}

.account-reviews-avg .star-muted {
  color: var(--gray-200);
}

.account-reviews-avg .middot {
  margin: 0 4px;
  color: var(--gray-300);
}

.catalog-card-rating .feedback-score {
  font-size: 14px;
}

.catalog-card-rating .feedback-score--positive {
  color: var(--green);
}

.catalog-card-rating .feedback-score .icon-thumbs-up {
  margin-right: 2px;
}

.catalog-card-rating .feedback-score .middot {
  margin: 0 4px;
  color: var(--gray-300);
}

/* Location block */
.catalog-card-location {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.catalog-card-location i {
  color: var(--gray-400);
  margin-right: 4px;
}

.catalog-card-eta {
  margin-bottom: 4px;
}

.catalog-card-eta strong {
  color: var(--green);
}

.catalog-card-eta .icon-info-sign {
  font-size: 12px;
  color: var(--gray-400);
  cursor: help;
  position: relative;
  top: 1px;
  margin-left: 2px;
}

/* Attributes */
.catalog-card-attrs {
  margin-bottom: 10px;
}

.catalog-card-attrs .account-labeled-attrs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.catalog-card-attrs .account-attr-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-700);
}

.catalog-card-attrs .account-attr-value--available .icon-line-check {
  color: var(--green);
}

.catalog-card-attrs .account-attr-value--not-available {
  color: var(--gray-400);
  border-color: var(--gray-100);
}

.catalog-card-attrs .account-attr-value--not-available .icon-line-cross {
  color: var(--gray-400);
}

.catalog-card-attrs .table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
  margin-bottom: 0;
}

.catalog-card-attrs .table td {
  padding: 5px 10px;
  border: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.catalog-card-attrs .table td strong {
  color: var(--gray-800);
  font-weight: 600;
}

.catalog-card-attrs .table tr:nth-child(even) {
  background: var(--gray-50);
}

/* Description */
.catalog-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 10px;
}

/* Activity / last contact */
.catalog-card-activity {
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}

.catalog-card-trophy {
  font-size: 16px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 4px;
}

.catalog-card-trophy .icon-trophy {
  margin-right: 4px;
}

.catalog-card-activity-item {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
}

.catalog-card-activity-item i {
  margin-right: 4px;
}

/* --- Actions column (full height right side) --- */
.catalog-card-col-actions {
  background: var(--gray-50);
  border-left: 1px solid var(--gray-100);
  padding: 24px 20px;
  display: flex;
  color: var(--gray-600);
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.catalog-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  color: var(--gray-800);
}

.catalog-card-btn--offer {
  background: var(--purple-main);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 16px;
}

.catalog-card-btn--offer:hover {
  background: var(--purple-brand);
}

.catalog-card-btn--phone {
  background: var(--gray-200);
  color: var(--purple-brand);
  border: 1px solid rgba(255,255,255,.25);
}

.catalog-card-btn--phone:hover {
  background: rgba(255,255,255,.25);
}

.catalog-card-btn--msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.catalog-card-btn--msg:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.catalog-card-hours {
  font-size: 13px;
  color: var(--gray-500);
  padding: 2px 0;
  text-align: center;
}

.catalog-card-hours i {
  margin-right: 4px;
}

.catalog-card-link-info {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 6px 0;
  transition: color .2s;
}

.catalog-card-link-info:hover {
  color: var(--gray-800);
}

/* --- Responsive: tablet --- */
@media (max-width: 1024px) {
  .catalog-card-body {
    grid-template-columns: 1fr 200px;
  }

  .catalog-card-columns {
    grid-template-columns: 200px 1fr;
  }

  .catalog-card-photo {
    height: 160px;
  }
}

/* --- Responsive: mobile --- */
@media (max-width: 768px) {
  .catalog-card-body {
    grid-template-columns: 1fr;
  }

  .catalog-card-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-card-col-photo {
    padding: 16px 16px 0;
    text-align: center;
  }

  .catalog-card-photo {
    height: auto;
    max-height: 220px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 12px;
  }

  .catalog-card-col-data {
    padding: 16px;
    border-left: none;
    border-top: 1px solid var(--gray-100);
  }

  .catalog-card-col-actions {
    padding: 16px;
    border-left: none;
    border-top: 1px solid var(--gray-100);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    flex-direction: column;
  }
}

/* ========================================
   Tables (Bootstrap-compatible classes)
   ======================================== */

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--gray-200);
}

.table thead th {
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  border-top: none;
  white-space: nowrap;
}

.table tbody tr:hover {
  background: var(--gray-50);
}

/* .table-striped */
.table-striped tbody tr:nth-child(odd) {
  background: var(--gray-50);
}

.table-striped tbody tr:nth-child(odd):hover {
  background: var(--gray-100);
}

.table-striped tbody tr:nth-child(even):hover {
  background: var(--gray-50);
}

/* .table-bordered */
.table-bordered {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--gray-200);
}

/* .table-condensed */
.table-condensed th,
.table-condensed td {
  padding: 6px 10px;
  font-size: 13px;
}

/* ========================================
   Offers Grid 2026
   ======================================== */

.offers-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.offer-card__photo {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.offer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}

.offer-card__body {
  padding: 14px 16px 18px;
}

.offer-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gray-800);
  margin-bottom: 6px;
  min-height: 40px;
}

.offer-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 8px;
}

.offer-card__meta {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .offers-grid-2026 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .offers-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 479px) {
  .offers-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .offer-card__photo {
    height: 140px;
  }

  .offer-card__body {
    padding: 10px 12px 14px;
  }
}

.container--form-offer-add h1,
.container--form-offer-add p {
  margin-bottom: 15px;
}

.container--form-offer-add h3 {
  margin-bottom: 0 !important;
}

/* ========================================
   Offer Show 2026
   ======================================== */

.offer-show {
  padding-top: 48px;
  padding-bottom: 40px;
}

.offer-show__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.offer-show__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.offer-show__meta {
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.offer-show__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 4px;
}

.offer-show__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
  flex-shrink: 0;
}

.offer-show__vat {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  text-align: right;
}

/* Gallery + Contact layout */
.offer-show__main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Photo gallery */
.offer-show__gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  min-height: 400px;
}

.offer-show__gallery:not(:has(.offer-show__thumbs)) {
  grid-template-columns: 1fr;
}

/* Thumbnail column */
.offer-show__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}

.offer-show__thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  flex-shrink: 0;
  transition: border-color .2s, opacity .2s;
  opacity: .6;
}

.offer-show__thumb:hover {
  opacity: .85;
}

.offer-show__thumb.active {
  border-color: var(--coral);
  opacity: 1;
}

.offer-show__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main photo area */
.offer-show__photo {
  position: relative;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.offer-show__photo--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 15px;
  background: #fff;
}

.offer-show__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gray-50);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.offer-show__photo-img.active {
  opacity: 1;
  pointer-events: auto;
}

.offer-show__photo-prev,
.offer-show__photo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  box-shadow: var(--shadow);
  transition: background .2s;
  z-index: 2;
  padding: 0;
}

.offer-show__photo-prev:hover,
.offer-show__photo-next:hover {
  background: #fff;
}

.offer-show__photo-prev { left: 10px; }
.offer-show__photo-next { right: 10px; }

.offer-show__photo-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,.5);
  border-radius: 6px;
  z-index: 2;
}

/* Contact card */
.offer-show__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-show__contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 24px;
}

.offer-show__contact-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.offer-show__seller {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.offer-show__seller-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  flex-shrink: 0;
}

.offer-show__seller-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

/* Buttons in contact card */
.offer-show__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: center;
}

.offer-show__btn--phone {
  background: #22c55e;
  color: #fff;
  margin-bottom: 10px;
}

.offer-show__btn--phone:hover {
  background: #16a34a;
  color: #fff;
}

.offer-show__btn--message {
  background: var(--gray-100);
  color: var(--gray-700);
  list-style: none;
}

.offer-show__btn--message::-webkit-details-marker {
  display: none;
}

.offer-show__btn--message:hover {
  background: var(--gray-200);
}

.offer-show__btn--submit {
  background: var(--coral);
  color: #fff;
  width: 100%;
}

.offer-show__btn--submit:hover {
  background: #d4461f;
}

.offer-show__btn--share {
  background: #1877f2;
  color: #fff;
  border-radius: 10px;
}

.offer-show__btn--share:hover {
  background: #1565c0;
  color: #fff;
}

.offer-show__message-toggle {
  margin-bottom: 0;
}

.offer-show__message-form {
  padding-top: 14px;
}

.offer-show__message-form .form-group {
  margin-bottom: 10px;
}

.offer-show__privacy {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 8px;
}

.offer-show__privacy a {
  color: var(--coral);
  text-decoration: underline;
}

.offer-show__safety {
  font-size: 13px;
  color: var(--gray-500);
  padding: 0 4px;
}

.offer-show__safety a {
  font-weight: 600;
  color: var(--gray-700);
}

.offer-show__safety a:hover {
  color: var(--coral);
}

/* Description section */
.offer-show__description {
  max-width: 800px;
  padding: 30px 0 10px;
}

.offer-show__description h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--gray-800);
}

.offer-show__desc-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.offer-show__item-title {
  padding-top: 16px;
  border-top: 1px dashed var(--gray-200);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .offer-show__main {
    grid-template-columns: 1fr;
  }

  .offer-show__gallery {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .col-md-4 {
    width: 100% !important;
  }

  .stat-number {
    font-size: 28px;
  }

  .first-node-name {
    display: none !important;
  }

  .offer-show__header {
    flex-direction: column;
    gap: 8px;
  }

  .offer-show__price {
    font-size: 24px;
  }

  .offer-show__title {
    font-size: 22px;
  }

  .offer-show__gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .offer-show__thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
    padding-bottom: 4px;
  }

  .offer-show__thumb {
    width: 60px;
    height: 45px;
    flex-shrink: 0;
  }

  .offer-show__photo {
    order: 1;
  }

  .offer-show__contact-card {
    padding: 18px;
  }
}

.section-accounts-calls-ratings {
  padding-bottom: 0;
}