/* ============================================
   ELITE COLLECTION — STYLE.CSS
   Open Sans · #d52b1e červená · čierna/biela
   ============================================ */

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', system-ui, -apple-system, sans-serif; color: #1a1a1a; background: #ffffff; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.3px; }

/* ============================================
   GLOBÁLNY CONTAINER — drží obsah v strede
   max-width 1400px aby na veľkých monitoroch
   obsah nebol roztiahnutý od okraja po okraj
   ============================================ */
.ec-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

/* CSS VARIABLES */
:root {
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ============================================
   HEADER
   ============================================ */
.ec-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.ec-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.ec-logo { display: block; }
.ec-logo img { height: 76px; width: auto; }
.ec-header-right { font-size: 14px; display: flex; align-items: center; gap: 28px; }
.ec-header-right a { color: #1a1a1a; letter-spacing: 0.3px; transition: color 0.2s; }
.ec-header-right a:hover { color: #d52b1e; }

/* JAZYKOVÝ PREPÍNAČ */
.ec-lang-switch {
  display: inline-flex;
  align-items: center;
  border: 0.5px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.ec-lang-switch a, .ec-lang-switch span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  color: #888;
  transition: background 0.15s, color 0.15s;
  margin: 0 !important;
  cursor: pointer;
}
.ec-lang-switch a:hover { color: #1a1a1a; }
.ec-lang-switch .active {
  background: #1a1a1a;
  color: #fff;
}
.ec-lang-switch .active:hover { color: #fff; }
.ec-lang-switch .disabled {
  color: #bbb;
  cursor: not-allowed;
  position: relative;
}
.ec-lang-switch .disabled:hover { color: #bbb; }
.ec-lang-switch .disabled::after {
  content: 'Pripravujeme';
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.ec-lang-switch .disabled:hover::after { opacity: 1; }

/* BREADCRUMB */
.ec-breadcrumb-wrap { max-width: 1400px; margin: 0 auto; padding: 24px 40px 0; }
.ec-breadcrumb { font-size: 12px; color: #888; letter-spacing: 0.5px; }
.ec-breadcrumb a { color: #888; transition: color 0.2s; }
.ec-breadcrumb a:hover { color: #d52b1e; }
.ec-breadcrumb span { margin: 0 8px; }

/* ============================================
   HOMEPAGE
   ============================================ */

.ec-home-hero { max-width: 1400px; margin: 0 auto; padding: 100px 40px 70px; text-align: center; }
.ec-home-hero-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 20px; }
.ec-home-hero h1 { font-size: 48px; font-weight: 300; line-height: 1.1; margin-bottom: 24px; }
.ec-home-hero h1 strong { font-weight: 700; }
.ec-home-hero p { font-size: 16px; color: #555; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.ec-home-hero-hint { margin-top: 50px; font-size: 11px; letter-spacing: 2px; color: #aaa; text-transform: uppercase; }
.ec-home-hero-hint::after { content: ' ↓'; }

.ec-home-collections { max-width: 1400px; margin: 0 auto; padding: 40px 40px 80px; }
.ec-home-collections-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.ec-coll-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  background: #f5f5f5;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ec-coll-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.ec-coll-card img { width: 100%; height: 100%; object-fit: cover; }
.ec-coll-card .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 1px; }
.ec-coll-card .placeholder.tenacity { background: linear-gradient(180deg, #d4c9b8 0%, #a89880 100%); }
.ec-coll-card .placeholder.showhome { background: linear-gradient(180deg, #e8dfd0 0%, #c9b89a 100%); }
.ec-coll-card .placeholder.spotlight { background: linear-gradient(180deg, #4a3f35 0%, #1f1a16 100%); }
.ec-coll-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.65) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; }
.ec-coll-name { font-size: 28px; font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.ec-coll-desc { font-size: 13px; opacity: 0.9; margin-bottom: 16px; line-height: 1.5; }
.ec-coll-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 700; }
.ec-coll-link::after { content: ' →'; }

.ec-info-band-wrap { background: #f6f6f6;}
.ec-info-band { max-width: 1400px; margin: 0 auto; padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.ec-info-item { text-align: center; }
.ec-info-icon { font-size: 28px; color: #d52b1e; margin-bottom: 12px; }
.ec-info-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.ec-info-text { font-size: 13px; color: #666; line-height: 1.6; }

.ec-downloads-wrap { background: #fafafa; }
.ec-downloads { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }
.ec-section-title { font-size: 32px; font-weight: 300; margin-bottom: 12px; letter-spacing: -0.3px; }
.ec-section-sub { font-size: 14px; color: #777; margin-bottom: 40px; }
.ec-dl-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.ec-dl-card {
  background: #fff; border: 0.5px solid rgba(0,0,0,0.1); padding: 24px;
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ec-dl-card:hover { border-color: #d52b1e; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.ec-dl-icon { font-size: 28px; color: #d52b1e; }
.ec-dl-info { flex: 1; }
.ec-dl-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ec-dl-meta { font-size: 12px; color: #888; }
.ec-dl-arrow { font-size: 18px; color: #d52b1e; }

.ec-contact-wrap { background: #1a1a1a; color: #fff; }
.ec-contact { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }
.ec-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ec-contact-title { font-size: 32px; font-weight: 300; margin-bottom: 16px; }
.ec-contact-sub { font-size: 15px; opacity: 0.7; line-height: 1.7; margin-bottom: 24px; }
.ec-contact-list { font-size: 14px; line-height: 2; opacity: 0.85; }
.ec-contact-list strong { color: #fff; }
.ec-rep-section-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; opacity: 0.7; }
.ec-reps-scroll { max-height: 420px; overflow-y: auto; padding-right: 8px; }
.ec-reps-scroll::-webkit-scrollbar { width: 6px; }
.ec-reps-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
.ec-reps-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.ec-reps-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }
.ec-rep-group { margin-bottom: 20px; }
.ec-rep-group-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #d52b1e; margin-bottom: 10px; padding-left: 4px; }
.ec-rep-card {
  background: rgba(255,255,255,0.05);
  padding: 16px 20px; margin-bottom: 6px;
  border-left: 2px solid #d52b1e;
  border-radius: var(--radius-md);
}
.ec-rep-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ec-rep-region { font-size: 12px; color: #aaa; margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.ec-rep-contact { font-size: 13px; color: #ddd; }
.ec-rep-contact a { color: #ddd; text-decoration: none; }
.ec-rep-contact a:hover { color: #d52b1e; }

/* ============================================
   PODSTRÁNKA KOLEKCIE
   ============================================ */

.ec-coll-hero { max-width: 1400px; margin: 0 auto; padding: 60px 40px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ec-doc-hero { max-width: 1400px; margin: 0 auto; padding: 60px 40px 60px; }
.ec-doc-hero h1 { font-size: 52px; font-weight: 700; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.ec-doc-hero p { font-size: 16px; color: #555; line-height: 1.7; max-width: 720px; }
.ec-doc-hero .ec-breadcrumb { margin-bottom: 24px; }
.ec-doc-hero .ec-coll-hero-eyebrow { font-size: 13px; font-weight: 700; color: #d52b1e; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.ec-coll-hero-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #d52b1e; font-weight: 700; margin-bottom: 16px; }
.ec-coll-hero h1 { font-size: 52px; font-weight: 700; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.ec-coll-hero p { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 32px; }
.ec-coll-hero-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ec-spec { padding: 12px 0; border-top: 0.5px solid rgba(0,0,0,0.1); }
.ec-spec-label { color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ec-spec-value { color: #1a1a1a; font-weight: 700; font-size: 13px; }
.ec-coll-hero-img { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); }
.ec-coll-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.ec-coll-hero-img .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 1px; }
.ec-coll-hero-img .placeholder.tenacity { background: linear-gradient(135deg, #d4c9b8 0%, #a89880 100%); }
.ec-coll-hero-img .placeholder.showhome { background: linear-gradient(135deg, #e8dfd0 0%, #c9b89a 100%); }
.ec-coll-hero-img .placeholder.spotlight { background: linear-gradient(135deg, #4a3f35 0%, #1f1a16 100%); }

/* JUMP BAND */
.ec-jump-band-wrap { background: #f6f6f6; position: sticky; top: 120px; z-index: 999; border-bottom: 0.5px solid rgba(0,0,0,0.06); }
.ec-jump-band {
  max-width: 1400px; margin: 0 auto; padding: 20px 40px;
  display: flex; justify-content: center; gap: 40px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.ec-jump-band a { color: #555; font-weight: 700; padding: 8px 16px; border-radius: var(--radius-sm); transition: all 0.2s; }
.ec-jump-band a:hover { color: #d52b1e; background: rgba(213,43,30,0.08); }
.ec-jump-count { color: #999; font-weight: 400; margin-left: 6px; }

/* SECTION */
.ec-section { max-width: 1400px; margin: 0 auto; padding: 80px 40px 60px; }
.ec-section-head { margin-bottom: 48px; max-width: 700px; }
.ec-section-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #d52b1e; font-weight: 700; margin-bottom: 12px; }
.ec-section-title-big { font-size: 36px; font-weight: 300; margin-bottom: 12px; letter-spacing: -0.5px; }
.ec-section-sub-big { font-size: 14px; color: #777; line-height: 1.7; }

.ec-section-pdf {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: #1a1a1a; color: #fff;
  margin-top: 24px; font-size: 13px; letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
}
.ec-section-pdf:hover { background: #d52b1e; transform: translateY(-1px); }
.ec-pdf-icon { font-size: 20px; }
.ec-pdf-meta { opacity: 0.6; margin-left: 8px; font-size: 12px; }
.ec-section-pdfs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ec-section-pdfs .ec-section-pdf { margin-top: 0; }

/* DEKÓR — VEĽKÝ FORMÁT */
.ec-decor-big { margin-bottom: 80px; }
.ec-decor-big-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ec-decor-sample, .ec-decor-interior {
  aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius-lg);
}
.ec-decor-sample img, .ec-decor-interior img { width: 100%; height: 100%; object-fit: cover; }
.ec-decor-sample .placeholder, .ec-decor-interior .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 12px; letter-spacing: 1px; color: rgba(0,0,0,0.4); background: #ebe5dc; }
.ec-decor-interior .placeholder { background: linear-gradient(135deg, #8b7d6b 0%, #5a4f42 100%); color: rgba(255,255,255,0.7); }
.ec-decor-info {
  padding: 28px 4px 0; display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px; align-items: center;
  border-top: none;
}
.ec-decor-name { font-size: 18px; font-weight: 700; letter-spacing: 0.3px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ec-decor-code { font-size: 12px; color: #888; margin-top: 4px; letter-spacing: 0.5px; }
.ec-decor-badge {
  display: inline-block; background: #d52b1e; color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 8px;
  border-radius: 999px;
}
.ec-decor-meta-label { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ec-decor-meta-value { font-size: 13px; font-weight: 700; }

.ec-divider-wrap { max-width: 1400px; margin: 0 auto; padding: 60px 40px; }
.ec-divider-inner { border-top: 0.5px solid rgba(0,0,0,0.1); }

/* TECHNICKÉ INFO */
.ec-tech-wrap { background: #fafafa; }
.ec-tech { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }
.ec-tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.ec-tech-item { padding: 20px 0; border-top: 1px solid #1a1a1a; }
.ec-tech-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ec-tech-value { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; }
.ec-tech-unit { font-size: 13px; color: #888; font-weight: 400; margin-left: 4px; }

/* NA STIAHNUTIE — TMAVÝ BLOK */
.ec-downloads-box-wrap { background: #1a1a1a; color: #fff; }
.ec-downloads-box { max-width: 1400px; margin: 0 auto; padding: 60px 40px; }
.ec-downloads-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ec-downloads-title { font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.ec-downloads-sub { font-size: 14px; opacity: 0.7; line-height: 1.7; }
.ec-dl-list { display: grid; gap: 8px; }
.ec-dl-row {
  background: rgba(255,255,255,0.06);
  padding: 18px 22px; display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
}
.ec-dl-row:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.ec-dl-row-icon { font-size: 22px; }
.ec-dl-row-info { flex: 1; }
.ec-dl-row-name { font-size: 14px; font-weight: 700; }
.ec-dl-row-meta { font-size: 12px; opacity: 0.6; margin-top: 2px; }
.ec-dl-row-arrow { color: #d52b1e; font-size: 18px; }

/* ĎALŠIE KOLEKCIE */
.ec-other-collections { max-width: 1400px; margin: 0 auto; padding: 100px 40px; }
.ec-other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.ec-other-card {
  position: relative; aspect-ratio: 5/3; overflow: hidden; cursor: pointer;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ec-other-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.ec-other-card img { width: 100%; height: 100%; object-fit: cover; }
.ec-other-card .placeholder { width: 100%; height: 100%; }
.ec-other-card .placeholder.tenacity { background: linear-gradient(180deg, #d4c9b8 0%, #a89880 100%); }
.ec-other-card .placeholder.showhome { background: linear-gradient(180deg, #e8dfd0 0%, #c9b89a 100%); }
.ec-other-card .placeholder.spotlight { background: linear-gradient(180deg, #4a3f35 0%, #1f1a16 100%); }
.ec-other-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; }
.ec-other-name { font-size: 24px; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.ec-other-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; font-weight: 700; }
.ec-other-link::after { content: ' →'; }

/* FOOTER */
.ec-footer-wrap { background: #0a0a0a; color: #aaa; }
.ec-footer { max-width: 1400px; margin: 0 auto; padding: 60px 40px 30px; font-size: 13px; }
.ec-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ec-footer-logo {
  margin-bottom: 16px;
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.ec-footer-logo img { height: 36px; width: auto; display: block; }
.ec-footer h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.ec-footer p, .ec-footer a { color: #aaa; line-height: 1.9; }
.ec-footer a:hover { color: #fff; }
.ec-footer-bottom { border-top: 1px solid #222; padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: #666; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   MOBILE — HAMBURGER MENU TOGGLE
   ============================================ */

.ec-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #1a1a1a;
  padding: 6px;
  margin-right: 4px;
  line-height: 1;
  z-index: 1002;
}
.ec-menu-toggle:hover { color: #d52b1e; }
.ec-menu-toggle .ti { display: block; }

/* ============================================
   TABLET (≤ 900px)
   ============================================ */

@media (max-width: 900px) {
  .ec-header-inner { padding: 14px 20px; }
  .ec-logo img { height: 44px; }
  .ec-header-right { gap: 16px; }
  .ec-breadcrumb-wrap { padding: 16px 20px 0; }
  .ec-home-hero { padding: 60px 20px 40px; }
  .ec-home-hero h1 { font-size: 32px; }
  .ec-home-collections { padding: 20px 20px 60px; }
  .ec-home-collections-grid { grid-template-columns: 1fr; }
  .ec-info-band { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .ec-downloads, .ec-section, .ec-tech, .ec-other-collections { padding: 60px 20px; }
  .ec-dl-grid { grid-template-columns: 1fr; }
  .ec-contact { padding: 60px 20px; }
  .ec-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .ec-coll-hero { padding: 40px 20px 60px; grid-template-columns: 1fr; gap: 40px; }
  .ec-coll-hero h1 { font-size: 36px; }
  .ec-jump-band { padding: 14px 20px; gap: 12px; overflow-x: auto; justify-content: flex-start; }
  .ec-jump-band a { white-space: nowrap; padding: 8px 12px; }
  .ec-decor-big-grid { grid-template-columns: 1fr; }
  .ec-decor-info { grid-template-columns: 1fr; gap: 12px; }
  .ec-tech-grid { grid-template-columns: 1fr 1fr; }
  .ec-downloads-box { padding: 50px 20px; }
  .ec-downloads-inner { grid-template-columns: 1fr; gap: 32px; }
  .ec-other-grid { grid-template-columns: 1fr; }
  .ec-footer { padding: 50px 20px 24px; }
  .ec-footer-grid { grid-template-columns: 1fr 1fr; }
  .ec-divider-wrap { padding: 40px 20px; }
  .ec-doc-hero { padding: 40px 20px 40px; }
  .ec-doc-hero h1 { font-size: 36px; }
}

/* ============================================
   MOBILE (≤ 640px) — HAMBURGER MENU + STACKING
   ============================================ */

@media (max-width: 640px) {
  /* Header & hamburger */
  .ec-menu-toggle { display: inline-flex; align-items: center; }
  .ec-header-inner { padding: 12px 16px; position: relative; }
  .ec-logo { flex: 1; text-align: center; }
  .ec-logo img { height: 36px; }

  /* Header-right ako overlay panel */
  .ec-header-right {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 70px 24px 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    max-height: 100vh;
    overflow-y: auto;
  }
  body.menu-open .ec-header-right {
    transform: translateY(0);
  }
  .ec-header-right > a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .ec-header-right > a:last-of-type { border-bottom: none; }
  .ec-lang-switch { margin-top: 16px; align-self: flex-start; }

  /* Body lock keď je menu otvorené — zabráni scrollovaniu pod overlay */
  body.menu-open { overflow: hidden; }

  /* Toggle icon — zmena na X keď otvorené */
  body.menu-open .ec-menu-toggle .ti-menu-2::before { content: "\ea0f"; } /* x */

  /* Hero homepage */
  .ec-home-hero { padding: 40px 16px 20px; }
  .ec-home-hero h1 { font-size: 26px; line-height: 1.1; }
  .ec-home-hero p { font-size: 14px; }

  /* Karty kolekcií — len menší overlay padding, kartu nechávame ako desktop */
  .ec-home-collections { padding: 10px 16px 40px; }
  .ec-coll-overlay { padding: 24px 20px; }
  .ec-coll-name { font-size: 22px; }

  /* Info band */
  .ec-info-band { padding: 32px 16px; gap: 24px; }
  .ec-info-block h3 { font-size: 14px; }

  /* Sekcie všeobecne */
  .ec-downloads, .ec-section, .ec-tech, .ec-other-collections, .ec-divider-wrap, .ec-predajne {
    padding: 40px 16px !important;
  }
  .ec-section-eyebrow { font-size: 11px; }
  .ec-section-title-big { font-size: 26px; line-height: 1.15; }
  .ec-section-sub-big { font-size: 14px; }

  /* Coll hero */
  .ec-coll-hero { padding: 30px 16px 40px; gap: 28px; }
  .ec-coll-hero h1 { font-size: 28px; }
  .ec-coll-hero p { font-size: 14px; }
  .ec-coll-hero-eyebrow { font-size: 12px; }
  .ec-doc-hero { padding: 30px 16px 30px; }
  .ec-doc-hero h1 { font-size: 28px; }
  .ec-doc-hero p { font-size: 14px; }

  /* Sticky lišta — menšia výška */
  .ec-jump-band { padding: 12px 16px; font-size: 12px; }
  .ec-jump-band a { padding: 6px 10px; }
  .ec-jump-band-wrap { top: 60px; }  /* po zmenšení header */

  /* Decor block */
  .ec-decor-big { margin-bottom: 40px; padding-bottom: 40px; }
  .ec-decor-name { font-size: 18px; }
  .ec-decor-meta-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Ceny */
  .ec-decor-price-new { font-size: 18px; }
  .ec-decor-price-old { font-size: 12px; }
  .ec-decor-badge { font-size: 10px; padding: 3px 8px; }

  /* TL boxy */
  .ec-section-pdf { padding: 12px 16px; font-size: 12px; }
  .ec-section-pdfs { gap: 8px; }

  /* Tech grid */
  .ec-tech-grid { grid-template-columns: 1fr; gap: 12px; }
  .ec-tech-item { padding: 16px; }

  /* Download cards */
  .ec-dl-row { padding: 12px 14px; gap: 12px; }
  .ec-dl-row-name { font-size: 13px; }
  .ec-dl-row-meta { font-size: 11px; }

  /* Kontakt */
  .ec-contact { padding: 50px 16px; }
  .ec-contact-title { font-size: 28px; }
  .ec-contact-sub { font-size: 14px; }
  .ec-reps-scroll { max-height: 360px; }

  /* Predajne */
  .ec-predajne-head h2 { font-size: 24px; }
  .ec-predajne-head p { font-size: 13px; }
  .ec-predajne-map { height: 320px; }
  .ec-predajne-list-wrap { height: 380px; }
  .ec-predajne-search input { font-size: 14px; padding: 12px 14px 12px 40px; }

  /* Footer */
  .ec-footer { padding: 40px 16px 20px; }
  .ec-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ec-footer h4 { font-size: 13px; }
  .ec-footer p { font-size: 13px; }
  .ec-footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }

  /* Breadcrumb */
  .ec-breadcrumb { font-size: 12px; }

  /* "Ďalšie kolekcie" karty */
  .ec-other-name { font-size: 22px; }
  .ec-other-overlay { padding: 20px; }
}

/* Veľmi malé telefóny (≤ 380px) */
@media (max-width: 380px) {
  .ec-home-hero h1 { font-size: 22px; }
  .ec-section-title-big, .ec-coll-hero h1, .ec-doc-hero h1 { font-size: 24px; }
  .ec-jump-band { font-size: 11px; }
  .ec-decor-meta-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SEKCIA PREDAJNE — MAPA + ZOZNAM
   ============================================ */

.ec-predajne-wrap { background: #fafafa; }
.ec-predajne { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }

.ec-predajne-head { max-width: 700px; margin-bottom: 40px; }
.ec-predajne-head h2 { font-size: 32px; font-weight: 300; margin-bottom: 12px; letter-spacing: -0.3px; }
.ec-predajne-head h2 strong { font-weight: 700; }
.ec-predajne-head p { font-size: 14px; color: #555; line-height: 1.7; }

.ec-predajne-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* MAPA */
.ec-predajne-map {
  position: relative;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8e6e0;
  border: 0.5px solid rgba(0,0,0,0.08);
  z-index: 1;
}
.ec-predajne-map .leaflet-container { height: 100%; width: 100%; font-family: 'Open Sans', sans-serif; }

/* Vlastné štýly Leaflet popupu aby sedeli s brandom */
.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 4px;
}
.leaflet-popup-content {
  margin: 12px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #1a1a1a;
}
.leaflet-popup-content .popup-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}
.leaflet-popup-content .popup-addr {
  color: #555;
  margin-bottom: 8px;
}
.leaflet-popup-content .popup-meta {
  font-size: 12px;
  color: #666;
  padding-top: 8px;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  line-height: 1.7;
}
.leaflet-popup-content .popup-meta a { color: #d52b1e; text-decoration: none; font-weight: 700; }
.leaflet-popup-content .popup-tag {
  display: inline-block;
  background: #d52b1e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* Vlastný marker (červený pin v brand farbe) */
.ec-marker {
  width: 28px; height: 28px;
  background: #d52b1e;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.ec-marker:hover { transform: rotate(-45deg) scale(1.15); }

/* ZOZNAM */
.ec-predajne-list-wrap {
  display: flex;
  flex-direction: column;
  height: 580px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 0.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.ec-predajne-search {
  padding: 16px 20px;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  position: relative;
}
.ec-predajne-search input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fafafa;
  padding: 10px 14px 10px 38px;
  font-family: inherit;
  font-size: 14px;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ec-predajne-search input:focus { border-color: #d52b1e; background: #fff; }
.ec-predajne-search .search-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  pointer-events: none;
}
.ec-predajne-count {
  padding: 10px 20px 0;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ec-predajne-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px 12px;
}
.ec-predajne-list::-webkit-scrollbar { width: 6px; }
.ec-predajne-list::-webkit-scrollbar-track { background: transparent; }
.ec-predajne-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.ec-predajne-list::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

.ec-predajna-item {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s ease;
  border-left: 2px solid transparent;
}
.ec-predajna-item:hover { background: #fafafa; }
.ec-predajna-item.active { background: #fafafa; border-left-color: #d52b1e; }
.ec-predajna-item .p-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ec-predajna-item .p-addr { font-size: 12px; color: #666; line-height: 1.4; }
.ec-predajna-item .p-flag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1px;
  margin-left: 6px;
  vertical-align: middle;
}

.ec-predajne-empty {
  padding: 40px 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ec-predajne { padding: 60px 20px; }
  .ec-predajne-layout { grid-template-columns: 1fr; }
  .ec-predajne-map { height: 380px; }
  .ec-predajne-list-wrap { height: 480px; }
}

/* ============================================
   CENY PRI DEKÓROCH
   ============================================ */
.ec-decor-info { grid-template-columns: 2fr 1fr 1fr auto !important; }

.ec-decor-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 0;
}
.ec-decor-price-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ec-decor-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ec-decor-price-old {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.ec-decor-price-new {
  font-size: 20px;
  font-weight: 800;
  color: #d52b1e;
  letter-spacing: -0.5px;
  line-height: 1;
}
.ec-decor-price-current {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1;
}
.ec-decor-price-unit {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  margin-left: 2px;
}
.ec-decor-price-sale-badge {
  display: inline-block;
  background: #d52b1e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  margin-top: 6px;
}
.ec-decor-price-variants {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.ec-decor-price-variant {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ec-decor-price-variant-label {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 40px;
  text-align: right;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .ec-decor-info { grid-template-columns: 1fr !important; }
  .ec-decor-price { align-items: flex-start; text-align: left; }
  .ec-decor-price-row { justify-content: flex-start; }
  .ec-decor-price-variants { align-items: flex-start; }
  .ec-decor-price-variant-label { text-align: left; }
}
