/* ============================================================
   STAVEBNINY ZIMO — člen aliancie ASAS
   Dizajnový systém podľa formátu členských stránok ASAS
   (vzor: primastavebniny.sk — namerané hodnoty)
   ============================================================ */

/* ---------- Tokeny ---------- */
:root {
  --asas-main: #F15A29;        /* primárna oranžová ASAS */
  --asas-dark: #A43917;        /* tmavšia oranžová – hover/odkazy */
  --ink: #414042;              /* tmavý text / nadpisy */
  --ink-2: #555657;            /* sekundárny sivý text */
  --text: #323232;             /* bežný text */
  --bg-1: #F5F5F5;
  --bg-2: #F7F7F7;
  --bg-3: #EBEBEB;
  --bg-4: #F1F2F2;
  --white: #FFFFFF;
  --rail: #575759;             /* tmavé štvorce ikon */
  --muted: #D2D3D5;
  --grey-logo: #B9BABB;
  --ok: #41D941;
  --header-h: 180px;
  --font-main: 'Montserrat', sans-serif;
  --font-alt: 'Poppins', sans-serif;
  --tri-orange: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 24'%3E%3Cpath d='M17 0 34 24H0Z' fill='%23F15A29'/%3E%3C/svg%3E");
  --tri-outline: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 135'%3E%3Cpath d='M110 8 210 130H10Z' fill='none' stroke='%23F15A29' stroke-width='10'/%3E%3C/svg%3E");
  --arrow-next: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 30'%3E%3Cpath d='M0 15h56M44 3l14 12-14 12' fill='none' stroke='%23F15A29' stroke-width='5'/%3E%3C/svg%3E");
  --arrow-prev: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 30'%3E%3Cpath d='M68 15H12M24 3 10 15l14 12' fill='none' stroke='%23F15A29' stroke-width='5'/%3E%3C/svg%3E");
  --arrow-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 4v28M8 22l12 12 12-12' fill='none' stroke='%23F15A29' stroke-width='4'/%3E%3C/svg%3E");
  --pattern-tri: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M30 6 54 40H6Z' fill='none' stroke='%23000000' stroke-opacity='0.06' stroke-width='3'/%3E%3Cpath d='M90 58l24 34H66Z' fill='none' stroke='%23000000' stroke-opacity='0.045' stroke-width='3'/%3E%3C/svg%3E");
  --pattern-tri-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M30 6 54 40H6Z' fill='none' stroke='%23FFFFFF' stroke-opacity='0.10' stroke-width='3'/%3E%3Cpath d='M90 58l24 34H66Z' fill='none' stroke='%23FFFFFF' stroke-opacity='0.07' stroke-width='3'/%3E%3C/svg%3E");
}

/* ---------- Reset / základ ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-size: 17px;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  text-align: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; border: 0; }
a { color: inherit; text-decoration: none; transition: color .3s; }
a:hover { color: var(--asas-dark); }
p { margin: 10px 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 700; color: var(--ink); }
h2 { font-size: 66px; letter-spacing: 1px; margin: 0 0 20px; }
h3 { font-size: 19px; }
button { font-family: var(--font-main); }
::selection { background: var(--asas-main); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--asas-main); color: #fff; padding: 12px 24px; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--asas-main); outline-offset: 2px; }

/* ---------- Tlačidlá ---------- */
.btn {
  height: 50px; line-height: 50px; display: inline-block;
  padding: 0 60px; font-size: 14px; letter-spacing: 2px;
  color: #fff; background: var(--asas-main);
  text-align: center; text-transform: uppercase;
  position: relative; border: 0; cursor: pointer; transition: background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { background: var(--asas-dark); color: #fff; }
.btn--outline { background: transparent; box-shadow: inset 0 0 0 2px #fff; }
.btn--outline:hover { background: #fff; color: var(--ink); }
.btn--outline-dark { background: transparent; box-shadow: inset 0 0 0 2px var(--ink); color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: #fff; }

/* ============================================================
   HLAVIČKA (fixná, biela, 180 px = 140 + 2×20 padding)
   ============================================================ */
.header-ghost { height: var(--header-h); width: 100%; position: relative; z-index: -1; }

.site-header {
  height: 140px; width: 100%; padding: 20px 0; top: 0; left: 0;
  background: var(--white); position: fixed; z-index: 99; transition: all .4s;
}
.site-header.header-fix { padding: 0; box-shadow: 0 35px 35px -30px rgba(0,0,0,.3); }

.header-in {
  width: 98%; max-width: 1550px; height: 140px;
  margin: 0 auto; position: relative; z-index: 66;
}
.header-triangles {
  width: 800px; height: 140px; left: -320px; top: 0; bottom: 0; margin: auto;
  overflow: hidden; position: absolute; pointer-events: none;
  background: var(--pattern-tri); background-size: 120px 104px; opacity: .8;
}

/* logo */
.header-logo {
  width: 240px; height: 120px; left: 0; top: 0; bottom: 0; margin: auto;
  position: absolute; z-index: 11; transition: all .5s;
}
.header-logo a {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  width: 100%; height: 100%; gap: 8px;
}
.header-logo svg { width: 190px; height: 34px; display: block; flex: none; }
.header-logo-blue { display: block; height: 62px; width: auto; object-fit: contain; margin-left: 2px; }

/* hlavné menu s lomkami „/“ */
.main-menu {
  width: 65%; left: 0; right: 0; bottom: 40px; margin: auto;
  height: 60px; text-align: center; position: absolute;
}
.main-menu-in { height: 60px; display: inline-block; }
.menu-item { height: 60px; display: inline-block; float: left; position: relative; }
.menu-item > a {
  font-size: 17px; line-height: 30px; color: #000;
  padding: 15px; letter-spacing: 0; font-weight: 400; display: block;
}
.menu-item > a:hover, .menu-item.menu-active > a { color: rgb(22,22,22); }
/* lomka „/“ – zošikmená čiarka medzi položkami */
.menu-item::before {
  width: 1px; height: 30%; left: -1px; top: 0; bottom: 0; margin: auto;
  background: #000; transform: skewX(-18deg);
  position: absolute; content: ''; pointer-events: none;
}
.menu-item:first-child::before { display: none; }
/* oranžový trojuholník nad aktívnou položkou */
.menu-item::after {
  width: 34px; height: 24px; left: 0; right: 0; top: -20px; margin: auto;
  opacity: 0; transform: rotate(180deg);
  background: var(--tri-orange) no-repeat; background-size: contain;
  position: absolute; content: ''; transition: all .3s .05s; pointer-events: none;
}
.menu-item:hover::after, .menu-item.menu-active::after { top: -15px; opacity: 1; }

/* ---------- Mega-menu SORTIMENT ---------- */
.mega {
  width: 1000px; top: 120px; left: 0; right: 0; margin: auto;
  position: fixed; background: var(--asas-main); z-index: 22;
  opacity: 0; transform: scale(.98); transform-origin: top center;
  pointer-events: none; transition: all .4s; text-align: left;
}
.menu-item.mega-open .mega { opacity: 1; transform: scale(1); pointer-events: auto; box-shadow: 0 0 0 1px #fff; }
.header-fix .mega { top: 100px; }
.mega-in { width: 100%; position: relative; display: flex; max-height: max(420px, calc(100vh - 140px)); overflow-y: auto; }
.mega-list { width: 34%; padding: 14px 0 14px 3%; position: relative; }
.mega-list-item { width: 100%; color: #fff; display: block; position: relative; }
.mega-list-item a {
  display: flex; align-items: center; gap: 12px;
  padding: 3px 0; color: #fff; font-size: 15.5px; line-height: 30px;
}
.mega-list-item a i { width: 30px; font-size: 19px; text-align: center; flex: none; }
.mega-list-item a:hover, .mega-list-item.is-active a { font-weight: 600; color: #fff; }
.mega-panel-wrap { width: 63%; margin: 14px 2% 14px 0; background: #fff; position: relative; min-height: 100%; }
.mega-panel { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mega-panel.is-active { opacity: 1; pointer-events: auto; z-index: 9; }
.mega-panel-subs {
  width: 49%; height: 100%; left: 0; top: 0; overflow-y: auto;
  background: var(--bg-4); position: absolute; text-align: left; padding: 14px 0;
}
.mega-panel-subs-title { padding: 6px 8% 2px 10%; position: relative; }
.mega-panel-subs-title a { font-size: 17px; line-height: 22px; color: var(--asas-main); font-weight: 600; }
.mega-panel-subs-title a:hover { color: var(--asas-dark); }
.mega-panel-subs-item a {
  display: block; font-size: 14px; line-height: 20px;
  padding: 3px 6% 3px 13%; color: var(--asas-dark);
}
.mega-panel-subs-item a:hover { text-decoration: underline; }
.mega-panel-visual {
  width: 50%; height: 58%; top: 4%; right: 2%; position: absolute; overflow: hidden;
  background: var(--bg-2);
}
.mega-panel-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.mega-panel-text {
  width: 45%; font-size: 13px; line-height: 18px; letter-spacing: .5px;
  bottom: 5%; right: 3%; opacity: .75; text-align: justify; position: absolute;
  color: var(--text);
}

/* ---------- pravý klaster: sociálne siete + hotline ---------- */
.header-social {
  right: 84px; top: 10px; position: absolute; z-index: 6;
  display: flex; gap: 8px; align-items: center;
}
.header-social a {
  width: 27px; height: 27px; line-height: 27px; flex: none;
  display: block; border-radius: 50%;
  background: var(--asas-main); color: #fff; font-size: 14px; text-align: center;
  transition: background .3s, transform .3s;
}
.header-social a:hover { background: var(--asas-dark); color: #fff; transform: translateY(-2px); }

.header-phone { right: 84px; top: 48px; position: absolute; text-align: right; }
.header-phone-number a {
  font-size: 19px; font-weight: 800; letter-spacing: .5px; color: var(--asas-main); white-space: nowrap;
}
.header-phone-number a:hover { color: var(--asas-dark); }

/* badge „spoznaj ASAS“ */
.asas-badge {
  width: 70px; height: 92px; right: 0; top: -20px; position: absolute; z-index: 12;
  background: #1D1D1B; color: #fff; text-align: center; display: block;
  padding-top: 12px; transition: background .3s;
}
.asas-badge:hover { background: var(--asas-main); color: #fff; }
.asas-badge .asas-badge-mark {
  width: 0; height: 0; margin: 0 auto 6px;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-bottom: 22px solid var(--asas-main); transition: border-color .3s;
}
.asas-badge:hover .asas-badge-mark { border-bottom-color: #fff; }
.asas-badge span { display: block; font-size: 11px; font-weight: 300; line-height: 14px; }
.asas-badge strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: 1px; }

/* hamburger + mobilné menu (na desktope skryté) */
.menu-btn, .mobile-menu { display: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { width: 100%; margin: 0 auto; position: relative; z-index: 3; text-align: left; }
.hero-swiper { width: 100%; height: calc(100vh - 180px); min-height: 600px; max-height: 940px; }
.hero-slide { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hero-slide-bg { position: absolute; inset: 0; overflow: hidden; background: var(--bg-4); }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-slide-bg img.pos-left { object-position: left center; }
@media screen and (min-width: 901px) {
  .hero-slide-bg img.d-pos { object-position: var(--d-pos, center) center; }
}
.hero-slide-bg picture { display: contents; }
@media screen and (max-width: 900px) {
  /* štvorcové kampaňové vizuály na mobile — celý vizuál viditeľný */
  .hero-slide-bg--contain { background: var(--m-bg, var(--bg-4)); }
  .hero-slide-bg--contain img { object-fit: contain; object-position: center 24%; }
  /* Ken Burns: celý plagát s textom → plynulé priblíženie na Turčianske Teplice */
  .hero-slide-bg--contain img.m-zoom {
    animation: mapZoom 7.5s ease-in-out infinite alternate;
    will-change: transform;
  }
  /* okraje sa pri zoome rozplynú do oranžovej — žiadne tvrdo odrezané názvy miest */
  .hero-slide-bg--fade::before, .hero-slide-bg--fade::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 13%; z-index: 2; pointer-events: none;
  }
  .hero-slide-bg--fade::before { left: 0; background: linear-gradient(to right, #E7561F 12%, rgba(231,86,31,0)); }
  .hero-slide-bg--fade::after { right: 0; background: linear-gradient(to left, #D94E1F 12%, rgba(217,78,31,0)); }
  /* na slidoch so štvorcovým vizuálom je obsah dole pod obrázkom */
  .hero-slide-bg--contain + .hero-slide-data { top: auto; bottom: 11%; transform: none; }
  .hero-slide-bg--contain + .hero-slide-data .hero-slide-title { font-size: 27px; line-height: 33px; }
  .hero-slide-bg--contain + .hero-slide-data .hero-slide-sub { display: none; }
}

.hero-slide-data {
  width: 96%; max-width: 900px; left: 15%; top: 50%;
  transform: translateY(-50%); position: absolute; z-index: 5;
  opacity: 0; transition: all 1.2s .6s; text-align: left;
}
.swiper-slide-active .hero-slide-data { opacity: 1; }
.hero-slide-data--low { top: auto; bottom: 10%; transform: none; transition-delay: .4s; }
.swiper-slide-active .hero-slide-data--low { opacity: 1; }
.hero-slide-title {
  font-size: 70px; line-height: 80px; margin: 0 0 20px;
  letter-spacing: -.5px; font-weight: 800; pointer-events: none;
}
.hero-slide-sub {
  width: 40%; min-width: 340px; font-size: 16px; line-height: 22px;
  margin-left: -2px; letter-spacing: 1px; font-weight: 400; pointer-events: none;
}
.hh-black { color: var(--ink); text-shadow: 3px 3px 5px rgba(255,255,255,.7); }
.hh-white { color: #fff; text-shadow: 3px 3px 5px rgba(0,0,0,.35); }
.hero-slide-btns { margin-top: 35px; }
.hero-slide-btns .btn { margin-right: 15px; }

/* dekoratívny trojuholník vpravo dole */
.hero-triangle {
  width: 220px; height: 135px; right: 43px; bottom: -2px;
  position: absolute; z-index: 11; pointer-events: none;
  background: var(--tri-outline) no-repeat left bottom / contain;
}

/* pravý stĺpec: ikony + číslovaná paginácia */
.hero-controls { width: 40px; right: 50px; top: 40px; position: absolute; z-index: 11; }
.rail-social { width: 100%; text-align: center; }
.rail-social a {
  width: 40px; height: 40px; margin: 0 0 10px; display: block; border-radius: 6px;
  background: var(--rail); transition: background .4s; position: relative;
  color: #fff; font-size: 22px; line-height: 40px; text-align: center;
}
.rail-social a:hover { background: var(--asas-main); color: #fff; }
/* tooltipy pre rozlíšenie IG účtov */
[data-tip] { position: relative; }
[data-tip]:hover::after, [data-tip]:focus-visible::after {
  content: attr(data-tip);
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: 12px; font-family: var(--font-main);
  padding: 5px 10px; white-space: nowrap; z-index: 50; letter-spacing: .5px; line-height: 16px;
}
.hero-pagination {
  width: 100%; margin-top: 14px; text-align: center; position: static !important;
  background: rgba(255,255,255,.55); backdrop-filter: blur(3px); border-radius: 8px; padding: 4px 0;
}
.hero-pagination .swiper-pagination-bullet {
  width: 40px; height: 35px; font-size: 22px; line-height: 35px; margin: 0 0 2px;
  font-weight: 700; border: none; border-radius: 0; background: transparent; opacity: 1;
  color: var(--ink); display: block; cursor: pointer; transition: color .3s;
  text-shadow: 0 0 8px rgba(255,255,255,.85);
}
.hero-pagination .swiper-pagination-bullet-active { color: var(--asas-main); background: transparent; }

/* ============================================================
   RECENZIE (nahrádza sekciu Aktuality zo vzoru)
   ============================================================ */
.reviews { width: 100%; margin: 100px auto 0; padding: 15px 0 180px; position: relative; z-index: 9; overflow: hidden; }
.reviews-in { width: 98%; max-width: 1500px; margin: 0 auto; display: block; text-align: left; position: relative; }
.reviews-side { width: 350px; left: 0; top: 0; position: absolute; z-index: 9; }
.reviews-side h2 { margin: -14px 0 18px; white-space: nowrap; }
.reviews-score { display: flex; align-items: baseline; gap: 14px; }
.reviews-score-num { font-size: 88px; font-weight: 800; color: var(--asas-main); line-height: 1; }
.reviews-stars { color: var(--asas-main); font-size: 18px; letter-spacing: 2px; white-space: nowrap; }
.reviews-stars .star-off { color: var(--muted); }
.reviews-count { margin: 14px 0 4px; font-size: 17px; }
.reviews-count a { font-weight: 700; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.reviews-count a:hover { color: var(--asas-dark); }
.reviews-place { font-size: 14px; color: var(--ink-2); line-height: 20px; margin: 0 0 22px; }
.reviews-cta .btn { display: block; width: 100%; max-width: 320px; padding: 0; margin: 0 0 12px; }
.reviews-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.reviews-tags span {
  font-size: 13px; padding: 7px 12px; background: var(--bg-4); color: var(--ink);
  letter-spacing: .3px; white-space: nowrap;
}
.reviews-tags span i { color: var(--asas-main); margin-right: 6px; font-size: 11px; }

/* fotky priamo v kartách recenzií */
.review-card-photos { display: flex; gap: 8px; margin: 6px 0 10px; }
.review-card-photos img { width: 55%; max-width: 210px; aspect-ratio: 4/3; object-fit: cover; display: block; box-shadow: 0 4px 14px -6px rgba(0,0,0,.25); }
.review-card--has-photo .review-text { -webkit-line-clamp: 6; }
.review-list .review-card--has-photo .review-text { -webkit-line-clamp: unset; }
.review-avatar--photo { background: var(--ink); font-size: 18px; }
.review-photos-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 4px 0 12px; }
.review-photos-grid img { width: 100%; height: 140px; object-fit: cover; display: block; }
.review-photos-link { font-size: 13px; color: var(--asas-dark); font-weight: 600; letter-spacing: .3px; }
.review-photos-link i { font-size: 11px; margin-left: 4px; }

.reviews-track { height: 550px; margin: 0 0 0 400px; position: relative; }
/* biele prekrytie vľavo + fade vpravo — presne ako vzor */
.reviews-track::before {
  width: 40vw; height: 100%; top: 0; right: 100%; background: #fff;
  position: absolute; content: ''; z-index: 6; pointer-events: none;
}
.reviews-track::after {
  width: 10vw; height: 100%; top: 0; right: -11vw;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
  position: absolute; content: ''; z-index: 6; pointer-events: none;
}
#reviews-swiper { width: 100%; height: 550px; overflow: visible; }
#reviews-swiper .swiper-slide { height: 100%; }

.review-card {
  width: 100%; height: 500px; background: #fff; position: relative;
  box-shadow: 0 10px 35px -12px rgba(0,0,0,.18), 0 0 0 1px var(--bg-3);
  padding: 34px 30px 30px; display: flex; flex-direction: column; text-align: left;
}
.review-card-head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.review-avatar {
  width: 54px; height: 54px; flex: none; border-radius: 50%;
  background: var(--asas-main); color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-name { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 20px; }
.review-meta { font-size: 13px; color: var(--ink-2); line-height: 18px; }
.review-stars { color: var(--asas-main); font-size: 16px; letter-spacing: 3px; margin: 2px 0 14px; }
.review-stars .star-off { color: var(--muted); }
.review-text {
  font-size: 17px; line-height: 26px; color: var(--text); margin: 0; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 9; -webkit-box-orient: vertical;
}
.review-card::after {
  content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 28px; bottom: 20px; font-size: 44px; color: var(--bg-3);
  pointer-events: none;
}
.review-google { margin-top: auto; padding-top: 16px; font-size: 12px; color: var(--ink-2); letter-spacing: .3px; }
.review-google i { color: var(--asas-main); margin-right: 6px; }

.rev-btn {
  width: 68px; height: 30px; top: 104%; position: absolute; cursor: pointer;
  transition: opacity .4s, transform .3s; z-index: 8; background: no-repeat center / contain;
  border: 0; padding: 0;
}
.rev-btn:hover { transform: translateX(0) scale(1.08); }
.rev-btn-prev { left: 0; background-image: var(--arrow-prev); }
.rev-btn-next { left: 90px; background-image: var(--arrow-next); }
.rev-btn.swiper-button-disabled { opacity: .15; filter: grayscale(100%); cursor: default; }

/* ============================================================
   NÁŠ SORTIMENT
   ============================================================ */
.sortiment { width: 100%; margin: 0 auto; padding: 0 0 120px; position: relative; z-index: 9; overflow: hidden; }
.sortiment-band { width: 90%; max-width: 1300px; margin: 0 auto; position: relative; text-align: left; }
/* oranžový pás pokračuje až k ľavému okraju obrazovky */
.sortiment-band::before {
  width: 30vw; height: 100%; right: 100%; bottom: 0;
  background: var(--asas-main); z-index: 11; position: absolute; content: '';
}
.sortiment-band-in { height: 150px; padding: 0 100px 0 0; display: inline-block; position: relative; }
.sortiment-band-bg { position: absolute; inset: 0; background: var(--asas-main); overflow: hidden; z-index: 1; }
.sortiment-band-bg::before {
  width: 100px; height: 100px; right: -62px; bottom: -50px;
  background: #fff; transform: rotate(40deg); z-index: 11; position: absolute; content: '';
}
.sortiment-band-title { position: relative; z-index: 5; padding-left: 4px; }
.sortiment-band-title h2 {
  font-size: 40px; margin: 25px 0 0; padding: 0; letter-spacing: 1px;
  color: #fff; text-transform: uppercase; line-height: 48px;
}
.sortiment-band-title p { margin: 2px 0 0; color: #fff; opacity: .85; font-size: 15px; letter-spacing: 1px; }
.sortiment-band-triangle {
  width: 90px; height: 55px; right: -50px; bottom: -2px; position: absolute; z-index: 11;
  background: var(--tri-orange) no-repeat left bottom / contain;
}

.sortiment-grid-wrap { width: 90%; max-width: 1300px; margin: 50px auto 0; text-align: left; position: relative; }
#sortiment-swiper { width: 100%; height: 800px; }
#sortiment-swiper .swiper-slide { height: calc((100% - 50px) / 2); }

.cat-card { width: 100%; height: 100%; position: relative; cursor: pointer; display: block; }
.cat-card-img {
  position: absolute; left: 0; right: 0; top: 0; bottom: 104px; overflow: hidden;
  background: #fff; display: block; transition: all .5s;
}
.cat-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; transition: transform .6s;
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-brands {
  position: absolute; left: 0; right: 0; bottom: 0; text-align: center;
  font-size: 11.5px; letter-spacing: .6px; color: var(--ink); padding: 26px 10px 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: linear-gradient(to top, rgba(255,255,255,.95) 55%, rgba(255,255,255,0));
}
.cat-card-top { position: absolute; left: 0; right: 0; bottom: 56px; height: 44px; display: flex; align-items: center; gap: 10px; }
.cat-card-top i { font-size: 24px; color: var(--asas-main); flex: none; width: 30px; text-align: center; }
.cat-card-top h3 {
  font-size: 20px; margin: 0; letter-spacing: 1px; color: var(--ink);
  font-weight: 700; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-card-data { position: absolute; left: 0; right: 0; bottom: 0; height: 50px; }
.cat-card-text {
  width: 48%; height: 40px; left: 0; bottom: 0; position: absolute; overflow: hidden;
  font-size: 13px; line-height: 20px; color: var(--ink-2); text-align: left;
}
.cat-card-btn {
  width: 47%; height: 40px; font-size: 15px; line-height: 40px; right: 0; bottom: 0;
  background: #ECEDF1; transition: all .4s; text-align: center; position: absolute; color: var(--ink);
}
.cat-card:hover .cat-card-btn { background: var(--asas-main); color: #fff; }

.sort-btn {
  width: 80px; height: 40px; top: 47%; position: absolute; cursor: pointer;
  transition: opacity .4s, transform .3s; z-index: 8; background: no-repeat center / contain; border: 0; padding: 0;
}
.sort-btn:hover { transform: scale(1.08); }
.sort-btn-prev { left: -100px; background-image: var(--arrow-prev); }
.sort-btn-next { right: -100px; background-image: var(--arrow-next); }
.sort-btn.swiper-button-disabled { opacity: .15; filter: grayscale(100%); cursor: default; }

/* ============================================================
   SME PRIPRAVENÍ POMÔCŤ (tmavý pruh)
   ============================================================ */
.help { width: 100%; margin: 0 auto; position: relative; background: #000; z-index: 9; overflow: hidden; text-align: left; }
.help-bg { position: absolute; inset: 0; }
.help-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; opacity: .5; }
.help-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.8) 30%, rgba(0,0,0,.25)); }
.help-in { width: 90%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 6; padding: 90px 0 100px; }
.help-badge {
  width: 150px; height: 150px; position: relative; overflow: hidden; margin-bottom: 10px;
  background: linear-gradient(125deg, transparent 34%, var(--asas-main) 34%);
}
.help-badge i { position: absolute; z-index: 3; right: 14px; bottom: 44px; font-size: 34px; color: #fff; }
.help-badge span {
  width: 100%; font-size: 26px; left: 0; bottom: 6px; color: #fff; font-weight: 300;
  text-align: center; position: absolute; z-index: 3; letter-spacing: 2px;
}
.help-title { width: 100%; padding: 30px 0 20px; }
.help-title h3 {
  font-size: 56px; padding: 0; margin: 0; color: var(--asas-main);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 800; line-height: 1.15;
}
.help-text { width: 70%; line-height: 24px; letter-spacing: .5px; color: #fff; text-align: justify; }
.help-number { width: 100%; padding: 25px 0 0; }
.help-number a {
  font-size: 50px; color: #fff; letter-spacing: 3px; text-transform: uppercase;
  transition: color .6s; display: inline-block; font-weight: 800;
}
.help-number a:hover { color: var(--asas-main); }
.help-number small { display: block; font-size: 15px; color: var(--muted); letter-spacing: 1px; margin-top: 6px; }

/* ============================================================
   DOPRAVA PRIAMO NA STAVBU (oranžový pás)
   ============================================================ */
.delivery { width: 100%; background: var(--asas-main); position: relative; overflow: hidden; padding: 90px 0 100px; }
.delivery::after { content: ''; position: absolute; inset: 0; background: var(--pattern-tri-white); background-size: 120px 104px; pointer-events: none; }
.delivery-in { width: 90%; max-width: 900px; margin: 0 auto; position: relative; z-index: 3; text-align: center; }
.delivery-icon i { font-size: 56px; color: #fff; margin-bottom: 22px; }
.delivery h2 { font-size: 44px; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 22px; }
.delivery p { color: #fff; font-size: 18px; line-height: 30px; letter-spacing: .3px; margin: 0 0 34px; }

/* ============================================================
   3 CTA BOXY
   ============================================================ */
.cta { width: 100%; margin: 90px auto 0; position: relative; z-index: 9; overflow: hidden; }
.cta-in { width: 100%; max-width: 1500px; margin: 0 auto; background: var(--ink); position: relative; text-align: center; }
.cta-items { width: 100%; padding: 0 0 0 7vw; display: flex; text-align: left; }
.cta-item { width: 50%; padding: 110px 6% 95px 0; color: var(--muted); }
.cta-item-title { font-size: 21px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase; color: #fff; }
.cta-item-text { padding: 12px 0 25px; font-size: 15px; line-height: 21px; letter-spacing: .5px; }
.cta-item-btn { position: relative; }
.cta-item-btn::before {
  width: 40px; height: 40px; top: -5px; left: -3px;
  background: var(--arrow-down) no-repeat center / contain;
  display: block; content: ''; position: absolute;
}
.cta-item-btn a, .cta-item-btn button {
  font-size: 19px; padding: 10px 20px 10px 60px; color: var(--asas-main);
  display: inline-block; letter-spacing: 2px; text-transform: uppercase;
  background: none; border: 0; cursor: pointer; transition: color .3s;
}
.cta-item-btn a:hover, .cta-item-btn button:hover { color: #fff; }

/* ============================================================
   PARTNERI
   ============================================================ */
.partners { width: 100%; margin: 0 auto; padding: 60px 0 110px; position: relative; z-index: 9; overflow: hidden; }
.partners-title {
  width: 100%; font-size: 60px; padding: 0 0 30px; color: var(--asas-main);
  letter-spacing: 1px; font-weight: 800; text-align: center; margin: 0;
}
.partners-marquee { width: 100%; overflow: hidden; position: relative; padding: 20px 0; }
.partners-marquee::before, .partners-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 12vw; z-index: 5; pointer-events: none;
}
.partners-marquee::before { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.partners-marquee::after { right: 0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); }
.partners-row { display: flex; align-items: center; gap: 70px; width: max-content; animation: marquee 55s linear infinite; }
.partners-marquee:hover .partners-row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-logo {
  font-size: 26px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-logo); white-space: nowrap; transition: color .3s; cursor: default;
  font-family: var(--font-alt);
}
.partner-logo:hover { color: var(--asas-main); }
.partner-logo-wrap { display: flex; align-items: center; height: 80px; }
.partner-logo-img {
  height: 64px; width: auto; max-width: 190px; object-fit: contain; display: block;
  filter: grayscale(100%); opacity: .55; transition: filter .3s, opacity .3s;
}
.partner-logo-wrap:hover .partner-logo-img { filter: none; opacity: 1; }
.partners-btn-wrap { text-align: center; margin-top: 35px; }
.partners-btn {
  width: 28%; min-width: 300px; height: 54px; font-size: 20px; line-height: 54px;
  margin: 0 auto; color: #fff; word-spacing: 6px; letter-spacing: 1px;
  background: var(--asas-main); text-align: center; position: relative;
  display: inline-block; overflow: hidden; transition: background .3s;
}
.partners-btn::before {
  width: 80px; height: 80px; right: -67px; bottom: -50px;
  background: #fff; transform: rotate(40deg); z-index: 11; position: absolute; content: '';
}
.partners-btn:hover { background: var(--asas-dark); color: #fff; }

/* ============================================================
   INSTAGRAM — dva feedy (taby)
   ============================================================ */
.insta { width: 100%; margin: 0 auto; padding: 0 0 90px; position: relative; z-index: 9; overflow: hidden; }
.insta-in { width: 96%; max-width: 1300px; margin: 0 auto; text-align: left; position: relative; }
.insta-head { display: flex; align-items: center; gap: 26px; margin-bottom: 26px; flex-wrap: wrap; }
.insta-head > i { font-size: 54px; color: var(--ink); }
.insta-tabs { display: flex; gap: 6px; }
.insta-tab {
  font-size: 17px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 22px 10px; color: var(--ink-2); background: none; border: 0; cursor: pointer;
  border-bottom: 3px solid transparent; transition: color .3s, border-color .3s; font-family: var(--font-main);
}
.insta-tab:hover { color: var(--ink); }
.insta-tab.is-active { color: var(--asas-main); border-bottom-color: var(--asas-main); }
.insta-grid { display: none; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.insta-grid.is-active { display: grid; }
.insta-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; background: var(--bg-3); }
.insta-tile-bg { position: absolute; inset: 0; transition: transform .5s; }
.insta-tile-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insta-tile:hover .insta-tile-bg { transform: scale(1.06); }
.insta-tile-over {
  position: absolute; inset: 0; background: rgba(241,90,41,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s; z-index: 3;
}
.insta-tile-over i { font-size: 44px; color: #fff; }
.insta-tile:hover .insta-tile-over, .insta-tile:focus-visible .insta-tile-over { opacity: 1; }
.insta-follow { text-align: center; margin-top: 35px; }

/* ============================================================
   OTVÁRACIE HODINY + KONTAKT (oranžový blok ako vzor)
   ============================================================ */
.down { width: 100%; margin: 120px auto 0; background: var(--asas-main); position: relative; }
.down::before {
  content: ''; position: absolute; inset: 0;
  background: var(--pattern-tri-white); background-size: 120px 104px; opacity: .5; pointer-events: none;
}
.down-in {
  width: 92%; max-width: 1400px; padding: 100px 0 70px; margin: 0 auto;
  text-align: left; position: relative; z-index: 11; display: flex; flex-wrap: wrap;
}
.down-item { text-align: left; position: relative; padding-right: 3%; padding-left: 50px; }
.down-item:nth-child(1) { width: 40%; }
.down-item:nth-child(2) { width: 36%; }
.down-item:nth-child(3) { width: 24%; }
.down-item-title {
  font-size: 22px; padding: 0 0 28px; letter-spacing: 1px; font-weight: 700;
  color: #fff; position: relative; text-transform: uppercase;
}
.down-item-title i { font-size: 28px; left: -50px; top: -2px; position: absolute; }
.down-item-text { font-size: 17px; line-height: 30px; letter-spacing: .5px; color: #fff; }
.down-item-text p { margin: 0 0 20px; color: #fff; }
.down-item-text strong { font-weight: 600; }
.down-item-text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.down-item-text a:hover { color: var(--ink); }
.down-hours {
  width: 100%; max-width: 420px; background: #fff; padding: 10px 22px;
  box-shadow: 0 14px 40px -18px rgba(0,0,0,.35);
}
.down-hours-row {
  width: 100%; min-height: 48px; line-height: 48px; color: var(--ink);
  display: flex; align-items: center; position: relative; font-size: 18px;
  border-bottom: 1px solid var(--bg-3);
}
.down-hours-row:last-child { border-bottom: 0; }
.down-hours-day { flex: 1; letter-spacing: .5px; font-weight: 600; }
.down-hours-time { font-weight: 700; letter-spacing: 1px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.down-hours-row--closed .down-hours-time { color: var(--asas-dark); font-weight: 700; }
.down-hours-row.is-today { color: var(--asas-dark); }
.down-hours-row.is-today::before {
  content: ''; position: absolute; left: -22px; top: 4px; bottom: 4px; width: 5px; background: var(--asas-main);
}
.down-hours-row.is-today::after {
  content: 'DNES'; font-size: 11px; letter-spacing: 2px;
  margin-left: 12px; background: var(--asas-main); color: #fff; align-self: center;
  line-height: 22px; padding: 0 9px; font-weight: 700;
}
.down-social { margin-top: 18px; display: flex; gap: 12px; }
.down-social a {
  width: 40px; height: 40px; border-radius: 6px; background: rgba(0,0,0,.28);
  color: #fff; font-size: 22px; line-height: 40px; text-align: center; display: block;
  transition: background .3s;
}
.down-social a:hover { background: var(--ink); color: #fff; }

/* ============================================================
   FOOTER: mapa + copyright lišta
   ============================================================ */
.footer-map { width: 100%; height: 500px; background: #EAEAEA; text-align: center; position: relative; }
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(35%); }
.footer-map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 18px;
  align-items: center; justify-content: center; background: var(--bg-3);
  z-index: 3;
}
.footer-map-consent::before { content: ''; position: absolute; inset: 0; background: var(--pattern-tri); background-size: 120px 104px; }
.footer-map-consent i { font-size: 54px; color: var(--asas-main); position: relative; }
.footer-map-consent p { position: relative; margin: 0; color: var(--ink-2); font-size: 15px; max-width: 460px; padding: 0 20px; }

.footer-bar {
  font-size: 12px; padding: 24px 10%; font-weight: 300; color: #fff;
  letter-spacing: 1px; text-align: center; background: var(--asas-main);
  position: relative; z-index: 5; line-height: 22px;
}
.footer-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bar a:hover { color: var(--ink); }
.footer-bar button {
  background: none; border: 0; color: #fff; font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; padding: 0; letter-spacing: 1px;
}
.footer-bar button:hover { color: var(--ink); }
.footer-bar-social { display: inline-flex; gap: 10px; margin-left: 14px; vertical-align: middle; }
.footer-bar-social a {
  width: 26px; height: 26px; border-radius: 4px; background: rgba(0,0,0,.25);
  font-size: 13px; line-height: 26px; text-align: center; text-decoration: none;
}
.footer-bar-social a:hover { background: var(--ink); color: #fff; }
.footer-bar .sep { margin: 0 10px; opacity: .6; }

/* tlačidlo späť hore */
.to-top {
  width: 40px; height: 40px; right: 20px; bottom: 25px; font-size: 20px; line-height: 40px;
  background: var(--asas-main); color: #fff; box-shadow: 0 0 0 1px #fff;
  text-align: center; position: fixed; z-index: 98; border-radius: 50%; border: 0; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--asas-dark); }

/* ============================================================
   CENOVÁ PONUKA — plávajúce pill tlačidlo + panel
   ============================================================ */
.quote-btn { left: 20px; bottom: 25px; position: fixed; z-index: 97; transition: all .45s .2s; }
.quote-btn-in {
  height: 40px; padding: 0 18px; background: var(--asas-main);
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 0 0 1px #fff; border-radius: 40px; cursor: pointer; user-select: none;
  border: 0; transition: all .15s;
}
.quote-btn-in:hover { outline: 2px solid var(--asas-main); outline-offset: 4px; }
.quote-btn-in i { font-size: 19px; color: #fff; }
.quote-btn-in span { font-size: 16px; letter-spacing: .75px; text-transform: uppercase; color: #fff; font-family: var(--font-main); }

.quote-shadow {
  width: 100vw; height: 100vh; background: rgba(0,0,0,.85); left: 0; top: 0;
  opacity: 0; visibility: hidden; position: fixed; z-index: 100; cursor: pointer; transition: opacity .25s;
}
.quote-shadow.is-active { opacity: 1; visibility: visible; }
.quote-form {
  width: 96%; max-width: 600px; top: 50%; left: 0; right: 0;
  transform: scale(.9) translateY(-50%); opacity: 0; visibility: hidden; margin: auto;
  position: fixed; z-index: 101; transition: all .3s; transform-origin: center top;
}
.quote-form.is-active { transform: scale(1) translateY(-50%); opacity: 1; visibility: visible; }
.quote-form-in { width: 100%; background: #fff; position: relative; text-align: left; }
.quote-head { display: flex; align-items: center; background: var(--asas-main); }
.quote-head-title { padding-left: 20px; display: flex; gap: 16px; align-items: center; flex-grow: 1; color: #fff; }
.quote-head-title i { font-size: 24px; }
.quote-head-title span { font-size: 21px; letter-spacing: 1px; word-spacing: 3px; font-weight: 300; text-transform: uppercase; }
.quote-close {
  width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;
  background: rgba(0,0,0,.1); cursor: pointer; border: 0; color: #fff;
}
.quote-close i { font-size: 34px; transition: transform .3s; }
.quote-close:hover i { transform: rotate(90deg); }
.quote-body { width: 100%; max-height: calc(84vh - 140px); overflow-y: auto; scrollbar-width: thin; }
.quote-body-in { padding: 25px; }
.quote-inputs { display: flex; gap: 24px 5%; flex-wrap: wrap; }
.q-select { width: 100%; box-shadow: 0 0 0 1px var(--asas-main); position: relative; }
.q-select i, .q-input i {
  width: 45px; height: 100%; font-size: 20px; left: 0; top: 0; color: var(--asas-main);
  display: flex; justify-content: center; align-items: center; position: absolute; pointer-events: none;
}
.q-select select {
  width: 100%; height: 45px; padding: 0 12px 0 50px; font-size: 15px; letter-spacing: .5px;
  font-family: var(--font-alt); border: 0; background: rgba(241,90,41,.08); cursor: pointer;
  appearance: none; -webkit-appearance: none; color: var(--text);
}
.q-select::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--asas-main); font-size: 13px; pointer-events: none;
}
.q-input { width: 47.5%; box-shadow: 0 0 0 1px var(--asas-main); position: relative; }
.q-input input {
  width: 100%; height: 45px; padding: 0 10px 0 50px; font-size: 15px; letter-spacing: .5px;
  font-family: var(--font-alt); border: 0; color: var(--text); background: #fff;
}
.q-text { width: 100%; box-shadow: 0 0 0 1px var(--asas-main); position: relative; }
.q-text textarea {
  width: 100%; min-height: 110px; padding: 15px; font-size: 15px; letter-spacing: .5px;
  font-family: var(--font-alt); border: 0; resize: vertical; display: block; color: var(--text); background: #fff;
}
.q-agree { width: 100%; padding: 20px 0 0; }
.q-agree label { display: flex; gap: 10px; cursor: pointer; user-select: none; align-items: flex-start; }
.q-agree input { margin: 4px 0 0; accent-color: var(--asas-main); flex: none; width: 16px; height: 16px; }
.q-agree span { font-size: 14px; letter-spacing: .25px; line-height: 20px; }
.q-agree a { text-decoration: underline; }
.q-submit { padding: 20px 0 0; }
.q-submit button {
  width: 47.5%; height: 45px; background: var(--ok); border: 0; font-family: var(--font-alt);
  cursor: pointer; display: flex; gap: 15px; justify-content: center; align-items: center; color: #fff;
  transition: box-shadow .2s, filter .2s, opacity .2s;
}
.q-submit button span { font-size: 17px; letter-spacing: 2px; text-transform: uppercase; }
.q-submit button i { font-size: 20px; }
.q-submit button:hover:not(:disabled) { box-shadow: 0 0 0 7px rgba(65,217,65,.2); }
.q-submit button:disabled { filter: grayscale(100%); opacity: .5; cursor: default; }
.q-note { font-size: 12.5px; color: var(--ink-2); margin: 14px 0 0; line-height: 18px; }
.q-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   COOKIE LIŠTA + NASTAVENIA
   ============================================================ */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 20px; margin: auto; width: 96%; max-width: 720px;
  background: #fff; box-shadow: 0 12px 45px -10px rgba(0,0,0,.35); z-index: 120;
  padding: 22px 26px; text-align: left; display: none;
}
.cookie-bar.is-visible { display: block; }
.cookie-bar h4 { margin: 0 0 8px; font-size: 17px; color: var(--ink); }
.cookie-bar p { margin: 0 0 16px; font-size: 13.5px; line-height: 19px; color: var(--ink-2); }
.cookie-bar-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-accept {
  height: 42px; padding: 0 34px; background: var(--asas-main); color: #fff; border: 0;
  font-size: 14px; letter-spacing: 1px; cursor: pointer; font-weight: 600;
}
.cookie-accept:hover { background: var(--asas-dark); }
.cookie-custom {
  height: 42px; padding: 0 24px; background: var(--bg-3); color: var(--ink); border: 0;
  font-size: 14px; letter-spacing: 1px; cursor: pointer;
}
.cookie-custom:hover { background: var(--muted); }

.cookie-modal {
  position: fixed; inset: 0; z-index: 130; display: none;
  align-items: center; justify-content: center; background: rgba(0,0,0,.75);
}
.cookie-modal.is-visible { display: flex; }
.cookie-modal-in {
  width: 94%; max-width: 560px; background: #fff; text-align: left;
  max-height: 86vh; overflow-y: auto;
}
.cookie-modal-head { display: flex; align-items: center; background: var(--asas-main); color: #fff; }
.cookie-modal-head span { flex-grow: 1; padding: 16px 20px; font-size: 18px; letter-spacing: 1px; }
.cookie-modal-head button { width: 54px; height: 54px; background: rgba(0,0,0,.1); border: 0; color: #fff; font-size: 26px; cursor: pointer; }
.cookie-modal-body { padding: 22px 24px; }
.cookie-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--bg-3); }
.cookie-row:last-of-type { border-bottom: 0; }
.cookie-row input { margin-top: 4px; accent-color: var(--asas-main); width: 17px; height: 17px; flex: none; }
.cookie-row strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.cookie-row p { margin: 0; font-size: 13px; line-height: 18px; color: var(--ink-2); }
.cookie-modal-btns { padding: 6px 24px 24px; display: flex; gap: 12px; }

/* ============================================================
   PODSTRÁNKY
   ============================================================ */
.page-hero { width: 100%; position: relative; background: var(--asas-main); overflow: hidden; text-align: left; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: var(--pattern-tri-white); background-size: 120px 104px; pointer-events: none; }
.page-hero-in { width: 90%; max-width: 1300px; margin: 0 auto; padding: 70px 0 60px; position: relative; z-index: 3; }
.page-hero h1 { font-size: 56px; line-height: 1.1; margin: 0 0 10px; color: #fff; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }
.page-hero p { margin: 0; color: #fff; opacity: .9; font-size: 17px; letter-spacing: .5px; max-width: 700px; }
.breadcrumbs { font-size: 13px; letter-spacing: .5px; color: #fff; opacity: .85; margin-bottom: 22px; }
.breadcrumbs a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { margin: 0 8px; }

.page-content { width: 90%; max-width: 1300px; margin: 0 auto; padding: 70px 0 110px; text-align: left; }
.page-content h2 { font-size: 40px; color: var(--asas-main); margin: 40px 0 15px; font-weight: 800; letter-spacing: 1px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 26px; color: var(--ink); margin: 34px 0 12px; font-weight: 700; }
.page-content p { line-height: 28px; margin: 0 0 18px; }
.page-content ul { line-height: 28px; margin: 0 0 18px; padding-left: 24px; }
.page-content li { margin-bottom: 6px; }
.page-content li::marker { color: var(--asas-main); }
.lead { font-size: 19px; line-height: 30px; color: var(--ink); }

/* dvojstĺpec */
.cols-2 { display: flex; gap: 5%; flex-wrap: wrap; }
.cols-2 > div { width: 47.5%; }

/* karty podkategórií na stránke kategórie */
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 25px 0 10px; }
.sub-card { background: var(--bg-2); padding: 24px 22px; position: relative; transition: box-shadow .3s, transform .3s; text-align: left; }
.sub-card:hover { box-shadow: 0 14px 30px -14px rgba(0,0,0,.25); transform: translateY(-3px); }
.sub-card i { font-size: 26px; color: var(--asas-main); margin-bottom: 12px; display: block; }
.sub-card strong { display: block; font-size: 16px; color: var(--ink); letter-spacing: .5px; margin-bottom: 6px; text-transform: uppercase; }
.sub-card span { font-size: 13.5px; line-height: 19px; color: var(--ink-2); display: block; }

/* intro kategórie s fotografiou */
.cat-intro { display: flex; gap: 5%; align-items: flex-start; }
.cat-intro-text { flex: 1 1 55%; }
.cat-photo { flex: 0 0 40%; margin: 6px 0 10px; }
.cat-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; box-shadow: 0 14px 34px -16px rgba(0,0,0,.3); }
.cat-photo figcaption { font-size: 11px; color: var(--ink-2); margin-top: 6px; letter-spacing: .3px; }

/* pás značiek na stránke kategórie */
.brand-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 20px; }
.brand-strip span {
  font-size: 14px; letter-spacing: 1px; font-weight: 700; text-transform: uppercase;
  color: var(--ink-2); background: var(--bg-4); padding: 9px 16px;
}

/* CTA pruh na podstránkach */
.page-cta { background: var(--ink); margin-top: 70px; padding: 55px 5%; text-align: center; color: #fff; }
.page-cta h3 { color: #fff; font-size: 30px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.page-cta p { color: var(--muted); margin: 0 0 28px; }

/* karty služieb */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 10px; }
.service-card { background: var(--bg-2); padding: 34px 30px; text-align: left; position: relative; overflow: hidden; }
.service-card::after {
  width: 90px; height: 90px; right: -74px; bottom: -58px;
  background: var(--asas-main); transform: rotate(40deg); position: absolute; content: '';
}
.service-card i { font-size: 38px; color: var(--asas-main); margin-bottom: 16px; display: block; }
.service-card h3 { margin: 0 0 10px; font-size: 22px; text-transform: uppercase; letter-spacing: .5px; }
.service-card p { font-size: 15.5px; line-height: 24px; margin: 0; color: var(--text); }

/* výpis recenzií na podstránke Referencie */
.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 10px; }
.review-list .review-card { height: auto; min-height: 0; }
.review-list .review-text { -webkit-line-clamp: unset; display: block; overflow: visible; }

/* mriežka partnerov (O nás) — jednotné dlaždice */
.partner-tiles {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 18px 0 24px;
}
.partner-tile {
  background: #fff; border: 1px solid var(--bg-3); min-height: 92px;
  display: flex; align-items: center; justify-content: center; padding: 16px 14px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.partner-tile:hover { box-shadow: 0 12px 26px -14px rgba(0,0,0,.22); transform: translateY(-2px); border-color: var(--asas-main); }
.partner-tile img {
  max-height: 52px; max-width: 100%; object-fit: contain; display: block;
  filter: grayscale(100%); opacity: .6; transition: filter .3s, opacity .3s;
}
.partner-tile:hover img { filter: none; opacity: 1; }
.partner-tile--text span {
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey-logo); text-align: center; line-height: 20px; transition: color .3s;
  font-family: var(--font-alt);
}
.partner-tile--text:hover span { color: var(--asas-main); }

/* kontaktné boxy */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 10px 0 30px; }
.contact-card { background: var(--bg-2); padding: 30px 26px; text-align: left; }
.contact-card i { font-size: 30px; color: var(--asas-main); display: block; margin-bottom: 14px; }
.contact-card strong { display: block; color: var(--ink); font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.contact-card p { margin: 0; font-size: 15.5px; line-height: 24px; }
.contact-card a { color: var(--asas-dark); font-weight: 600; }

/* ---------- Scroll-reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
html.js .reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .partners-row { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ============================================================
   RESPONZIVITA
   ============================================================ */
@media screen and (max-width: 1700px) {
  .hero-controls { right: 30px; }
}

@media screen and (max-width: 1500px) {
  .sort-btn { top: 100%; margin-top: 18px; }
  .sort-btn-prev { left: 0; }
  .sort-btn-next { right: auto; left: 100px; }
  h2 { font-size: 56px; }
  .reviews-side h2 { font-size: 56px; }
  .hero-slide-title { font-size: 56px; line-height: 64px; }
}

@media screen and (max-width: 1240px) {
  .main-menu { width: 56%; }
  .menu-item > a { padding: 15px 10px; font-size: 16px; }
  .mega { width: 94vw; }
  .header-social { right: 70px; }
  .header-phone { right: 70px; }
  .reviews-side { position: static; width: 100%; margin-bottom: 40px; }
  .reviews-side h2 { white-space: normal; }
  .reviews-track { margin-left: 0; }
  .reviews-track::before { display: none; }
  .help-text { width: 90%; }
}

@media screen and (max-width: 1100px) {
  :root { --header-h: 70px; }
  .site-header { height: 70px; padding: 0; box-shadow: 0 10px 25px -18px rgba(0,0,0,.35); }
  .header-in { height: 70px; width: 94%; }
  .header-triangles { display: none; }
  .header-logo { width: 190px; height: 62px; top: 0; bottom: 0; }
  .header-logo a { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; }
  .header-logo svg { width: 100px; height: 18px; }
  .header-logo-blue { height: 40px; margin: 0; }
  .main-menu, .header-social, .header-phone, .asas-badge { display: none; }
  .hero-swiper { height: calc(100svh - 70px); }

  .menu-btn {
    width: 42px; height: 42px; right: 0; top: 14px; display: block; position: absolute; z-index: 33;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .menu-btn span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; transition: all .3s; }
  .menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-btn.is-open span:nth-child(2) { opacity: 0; }
  .menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    display: block; position: fixed; left: 0; right: 0; top: 70px; bottom: 0;
    background: rgba(36,35,36,.98); overflow-y: auto; z-index: 98;
    opacity: 0; visibility: hidden; transition: opacity .3s; text-align: left;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  .mobile-menu-in { width: 86%; max-width: 340px; margin: 25px auto 15%; color: #fff; }
  .mobile-menu-in > a {
    font-size: 20px; margin: 25px auto 15px; color: #fff; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 600; display: block;
  }
  .mobile-katalog { padding: 2px 0 10px 30px; position: relative; }
  .mobile-katalog i { position: absolute; left: -6px; top: 0; width: 30px; font-size: 18px; color: #fff; opacity: .9; text-align: center; }
  .mobile-katalog > a { font-size: 16px; letter-spacing: 1px; font-weight: 500; opacity: .85; color: #fff; display: block; padding-bottom: 8px; }
  .mobile-katalog-items { display: flex; flex-wrap: wrap; }
  .mobile-katalog-items a { width: 50%; font-size: 13px; padding: 0 2px 10px 0; opacity: .7; letter-spacing: .2px; color: #fff; }
  .mobile-menu-contact { margin-top: 35px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
  .mobile-menu-contact a { display: block; color: #fff; margin-bottom: 12px; font-size: 16px; }
  .mobile-menu-contact a i { width: 26px; color: var(--asas-main); }
  .mobile-menu-social { display: flex; gap: 12px; margin-top: 16px; }
  .mobile-menu-social a { width: 40px; height: 40px; border-radius: 6px; background: var(--rail); color: #fff; font-size: 20px; line-height: 40px; text-align: center; }
}

@media screen and (max-width: 900px) {
  body { font-size: 16px; }
  h2 { font-size: 38px; }
  .hero-swiper { height: calc(100svh - 70px); min-height: 480px; }
  .hero-slide-data { left: 6%; width: 88%; }
  .hero-slide-title { font-size: 38px; line-height: 46px; }
  .hero-slide-sub { width: 100%; min-width: 0; }
  .hero-slide-btns .btn { padding: 0 30px; margin-bottom: 10px; display: block; width: fit-content; }
  .hero-slide-data--low { bottom: 13%; }
  .hero-controls { right: 12px; top: auto; bottom: 20px; }
  .rail-social { display: none; }
  .hero-pagination .swiper-pagination-bullet { width: 30px; height: 26px; font-size: 15px; line-height: 26px; }
  .hero-triangle { width: 120px; height: 74px; right: 12px; }

  .reviews { margin-top: 60px; padding-bottom: 120px; }
  .reviews-in { width: 90%; }
  .reviews-track { height: auto; }
  #reviews-swiper { height: auto; }
  .review-card { height: auto; min-height: 420px; }
  .reviews-track::after { display: none; }
  .rev-btn { position: static; display: inline-block; margin: 25px 20px 0 0; }

  .sortiment-band-in { height: 110px; padding-right: 50px; }
  .sortiment-band-title h2 { font-size: 26px; line-height: 32px; margin-top: 18px; }
  .sortiment-band-title p { font-size: 12px; }
  .sortiment-band-triangle { width: 50px; height: 30px; right: -28px; }
  .sortiment-band-bg::before { width: 60px; height: 60px; right: -40px; bottom: -30px; }
  .sortiment-grid-wrap { margin-top: 30px; }
  /* na mobile sa slider mení na statický grid (JS pridáva .is-static) */
  #sortiment-swiper.is-static { height: auto; }
  #sortiment-swiper.is-static .swiper-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; transform: none !important; }
  #sortiment-swiper.is-static .swiper-slide { height: 330px; width: 100% !important; margin: 0 !important; }
  .sort-btn { display: none; }
  .cat-card-top h3 { font-size: 15px; }
  .cat-card-top { gap: 6px; bottom: 52px; }
  .cat-card-top i { font-size: 18px; width: 22px; }
  .cat-card-text { display: none; }
  .cat-card-btn { width: 100%; font-size: 13px; }
  .cat-card-img { bottom: 96px; }

  .help-title h3 { font-size: 30px; }
  .help-number a { font-size: 30px; letter-spacing: 1px; }
  .help-badge { width: 110px; height: 110px; }
  .help-badge span { font-size: 19px; }
  .help-badge i { font-size: 24px; bottom: 36px; }
  .help-in { padding: 60px 0 70px; }

  .delivery { padding: 60px 0 70px; }
  .delivery h2 { font-size: 28px; }
  .delivery p { font-size: 15.5px; line-height: 25px; }

  .cta-items { flex-direction: column; padding: 0 8%; }
  .cta-item { width: 100%; padding: 45px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .cta-item:last-child { border-bottom: 0; }

  .partners-title { font-size: 34px; }
  .partner-logo { font-size: 19px; }
  .partners-row { gap: 40px; }
  .partners-btn { width: 86%; min-width: 0; font-size: 16px; }

  .insta-head > i { font-size: 38px; }
  .insta-tab { font-size: 14px; padding: 10px 12px 8px; letter-spacing: 1px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .down-in { flex-direction: column; padding: 70px 0 40px; }
  .down-item { width: 100% !important; padding-right: 0; margin-bottom: 45px; }
  .down-hours { max-width: none; padding: 8px 18px; }
  .down-hours-row { line-height: 46px; min-height: 46px; font-size: 17px; }
  .down-hours-row.is-today::before { left: -18px; }

  .footer-map { height: 360px; }
  .footer-bar { padding: 20px 6%; }
  .footer-bar .sep { display: inline; }

  .quote-btn { bottom: 18px; left: 12px; }
  .q-input { width: 100%; }
  .q-submit button { width: 100%; }

  .page-hero h1 { font-size: 32px; }
  .cat-intro { flex-direction: column; gap: 0; }
  .cat-photo { flex: none; width: 100%; margin: 4px 0 18px; }
  .page-hero-in { padding: 45px 0 40px; }
  .page-content { padding: 45px 0 70px; }
  .page-content h2 { font-size: 28px; }
  .cols-2 > div { width: 100%; }
  .sub-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .partner-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partner-tile { min-height: 74px; padding: 12px 10px; }
  .partner-tile img { max-height: 42px; }
  .partner-tile--text span { font-size: 13px; letter-spacing: 1px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 560px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  #sortiment-swiper.is-static .swiper-wrapper { grid-template-columns: 1fr; }
  #sortiment-swiper.is-static .swiper-slide { height: 300px; }
  .hero-slide-title { font-size: 30px; line-height: 38px; }
  .reviews-score-num { font-size: 64px; }
}

@keyframes mapZoom {
  0%, 22% { transform: scale(1) translate(0, 0); }
  72%, 100% { transform: scale(3.1) translate(9.5%, -2%); }
}

/* ---------- Tlač ---------- */
@media print {
  .site-header, .quote-btn, .to-top, .cookie-bar, .hero-controls, .menu-btn { display: none !important; }
  .header-ghost { height: 0; }
}
