/* ========================================
   EKOE.LT - Modern Design System v4
   ======================================== */

/* --- Variables --- */
:root {
  --primary: #ff8400;
  --primary-hover: #e67700;
  --primary-light: #fff7ed;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #f0fdf4;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-warm: #faf5ec;
  --text: #0f172a;
  --text-secondary: #64748b;
  --text-inverse: #ffffff;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --error: #dc2626;

  --font-heading: 'Rubik', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);

  --ease: 200ms ease;
  --ease-slow: 300ms ease;
  --max-w: 1200px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

p { margin-bottom: 12px; }

/* --- Screen reader only --- */
.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;
}

/* --- Focus --- */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text-inverse);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top var(--ease);
}
.skip-link:focus {
  top: 16px;
  color: var(--text-inverse);
}

/* --- Selection --- */
::selection { background: var(--primary); color: var(--text-inverse); }

/* --- Container --- */
.cnt {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* === TOP BAR === */
#top {
  width: 100%;
  background: var(--bg-alt);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
#top .cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#top a {
  text-transform: uppercase;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
#top a:hover { color: var(--primary); }

#top select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2364748b" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>') no-repeat right 10px center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  padding: 6px 32px 6px 12px;
  cursor: pointer;
  transition: border-color var(--ease);
  font-family: var(--font-body);
  min-height: 36px;
}
#top select:hover { border-color: var(--primary); }
#top select::-ms-expand { display: none; }

/* === HEADER === */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

#head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  transition: padding var(--ease-slow);
}

#head a.logo img {
  height: 48px;
  width: auto;
  transition: height var(--ease-slow);
}

.head-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  transition: max-height var(--ease-slow), opacity var(--ease);
  max-height: 80px;
  overflow: hidden;
}

/* --- Scrolled: compact single-row header --- */
.site-header.scrolled .cnt {
  display: flex;
  align-items: center;
}
.site-header.scrolled #head {
  padding: 8px 0;
  flex-shrink: 0;
}
.site-header.scrolled #head a.logo img {
  height: 32px;
}
.site-header.scrolled .head-contacts {
  max-height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.site-header.scrolled nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.site-header.scrolled #meniu {
  padding: 0;
  gap: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
  border-top: none;
}
.site-header.scrolled #meniu li a {
  font-size: 11px;
  padding: 8px 10px;
  white-space: nowrap;
}

#head .head-contacts span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
#head .head-contacts span svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
}
#head .head-contacts span.dtime {
  font-size: 13px;
}
#head .head-contacts span.dtime span {
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  gap: 0;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--ease), background var(--ease);
}
.navbar-toggle:hover,
.navbar-toggle:focus-visible {
  border-color: var(--primary);
  background: var(--primary-light);
}
.navbar-toggle svg {
  color: var(--text);
}
.navbar-toggle .close-icon { display: none; }
.navbar-toggle.active .menu-icon { display: none; }
.navbar-toggle.active .close-icon { display: block; }

/* === NAVIGATION === */
#meniu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
#meniu li { margin: 0; }
#meniu li a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  padding: 12px 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--ease), box-shadow var(--ease);
  border: none;
  border-radius: 0;
  position: relative;
}
#meniu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--ease);
}
#meniu li a:hover {
  color: var(--primary);
  background: none;
}
#meniu li a:hover::after {
  transform: scaleX(1);
}
#meniu li a.on {
  color: var(--primary);
  background: none;
}
#meniu li a.on::after {
  transform: scaleX(1);
}
#meniu li.l { margin-right: 0; }

/* === HERO - Homepage === */
#header {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 0;
  overflow: hidden;
  background: var(--text);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
#header ul {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}
#header ul li {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
#header ul li.active { opacity: 1; }
#header ul li:first-child { opacity: 1; }

#header > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-inverse);
  font-size: clamp(26px, 4.5vw, 48px);
  text-transform: uppercase;
  line-height: 1.15;
  padding: 0;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}
.hero-title br {
  display: block;
}

/* Hero layout: content left, bubbles right */
#header > span > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  max-width: 600px;
  flex-shrink: 0;
}
.hero-bubbles {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Stat bubbles */
.bub_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-inverse);
  text-transform: none !important;
  padding: 0 !important;
  float: none;
  margin: 0;
}
.bub_block span.x {
  width: 68px !important;
  height: 68px !important;
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.bub_block span.a {
  font-size: 17px !important;
  color: var(--text-inverse) !important;
  font-weight: 700 !important;
  display: block !important;
}

/* === HERO - Inner Pages === */
#header2 {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
#header2 div.img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#header2 > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 100%);
}
#header2 span .cnt { padding-top: 0; }
#header2 span .cnt h1,
#header2 h1 {
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  text-transform: uppercase;
  padding-bottom: 0;
  margin: 0;
  letter-spacing: 0.02em;
}

/* === CONTENT === */
#content {
  margin-top: 48px;
  margin-bottom: 48px;
}

.text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 75ch;
}
.text img { border-radius: var(--radius-sm); margin: 8px 0; }
.text ul { margin-left: 20px; margin-bottom: 16px; }
.text a { text-decoration: underline; text-underline-offset: 2px; }
.text a:hover { text-decoration: none; }

h1 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text);
  font-weight: 700;
  padding-bottom: 16px;
  width: 100%;
}
h1.line, h1.line2 {
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  padding-bottom: 16px;
  text-transform: none;
  background: none;
}
h1.line2 { text-transform: uppercase; }

h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

p { padding-bottom: 8px; }

/* === PRODUCT LISTING === */
.kollist {
  margin-bottom: 48px;
}
.kollist h1 { display: inline-block; }

/* Carousel arrows */
.left, .right {
  display: none;
}

/* Product grid - #similar on homepage, .list on listing page */
#similar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#similar li {
  display: contents;
}

.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

/* === PRODUCT CARD === */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease-slow), transform var(--ease-slow), border-color var(--ease);
  background: var(--bg);
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}

/* Card image */
.product-card .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  padding: 24px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.product-card .card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--ease-slow);
}
.product-card:hover .card-img img {
  transform: scale(1.05);
}

/* Price badge */
.product-card .card-img .price {
  position: absolute;
  z-index: 10;
  top: 16px;
  right: 0;
  background: var(--primary);
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border: none;
  margin: 0;
  display: block;
}

/* Card body */
.product-card .card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--border);
}

/* Card title */
.product-card .card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  transition: color var(--ease);
}
.product-card:hover .card-title {
  color: var(--primary);
}

/* Card CTA */
.product-card .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--ease);
}
.product-card .card-btn svg {
  transition: transform var(--ease);
}
.product-card:hover .card-btn {
  gap: 10px;
}
.product-card:hover .card-btn svg {
  transform: translateX(2px);
}

/* === SIDEBAR === */
.lside {
  width: 260px;
  float: left;
}
.rside {
  width: calc(100% - 290px);
  float: right;
}

.lmeniu {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-inverse);
  font-weight: 600;
  background: var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-md);
}
.lmeniu ul {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.lmeniu ul li a {
  font-size: 14px;
  color: var(--text-inverse);
  text-decoration: none;
  display: block;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
  transition: padding-left var(--ease);
}
.lmeniu ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: background var(--ease);
}
.lmeniu ul li a:hover,
.lmeniu ul li a.on {
  padding-left: 20px;
}
.lmeniu ul li a:hover::before,
.lmeniu ul li a.on::before {
  background: var(--text-inverse);
}

/* === PRODUCT DETAIL === */
.foto {
  width: 48%;
  float: left;
  padding-right: 24px;
  padding-bottom: 24px;
}
.foto a.bgft {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 0.95;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
}
.foto a.bgft img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.foto a.smft {
  width: 80px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 8px 0 0;
  overflow: hidden;
  transition: border-color var(--ease);
}
.foto a.smft img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.foto a:hover { border-color: var(--primary); }

.prinfo { float: right; width: 48%; }

.price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
  display: block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pprek {
  width: 100%;
  margin-top: 48px;
  clear: both;
}
.pprek #similar {
  grid-template-columns: repeat(3, 1fr);
}

/* === CTA BUTTON === */
.suzk, button.suzk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-inverse);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  width: auto;
}
.suzk:hover, button.suzk:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--text-inverse);
}
.suzk:active, button.suzk:active {
  transform: translateY(0);
}

/* === NEWS / ARTICLES === */
.newslist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: auto;
  width: 100%;
  margin: 0;
  float: none;
  transition: box-shadow var(--ease), transform var(--ease);
}
.news:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.news:nth-child(2n) { float: none; }
.news img {
  width: 200px;
  min-height: 100%;
  object-fit: cover;
  margin: 0;
  flex-shrink: 0;
}
.news a.pav {
  display: block;
  width: auto;
  padding: 20px 20px 8px;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  float: none;
}
.news a.pav:hover { color: var(--primary); }
.news span {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 20px;
  width: auto;
  float: none;
  margin: 0;
}
.news a.skp {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 20px;
  margin: 0;
  transition: color var(--ease);
}
.news a.skp:hover { color: var(--primary-hover); }

/* === GALLERY === */
.gall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gall a {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  float: none;
  margin: 0;
  transition: transform var(--ease), box-shadow var(--ease);
}
.gall a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: none;
}
.gall a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.gall a:hover img {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
}

/* === FAQ === */
.duklist div {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.duklist div:hover { border-color: var(--border-hover); }
.duklist div span.duk_kl {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
}
.duklist div span.duk_kl::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-secondary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.duklist div span.duk_kl:hover { color: var(--primary); }
.duklist div span.duk_kl:hover::after {
  background: var(--primary-light);
  color: var(--primary);
}

.duklist div span.duk_at {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 12px;
  display: none;
}

.duklist div.openas {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.duklist div span.duk_klon {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  background: none;
}
.duklist div span.duk_klon::after {
  content: '−';
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
}

/* === CONTACT === */
.lcont {
  float: left;
  width: 45%;
}
.rcont {
  float: right;
  width: 50%;
  overflow: hidden;
}
.rcont iframe {
  border-radius: var(--radius-md);
  width: 100%;
}

/* === STATS BAR === */
#like {
  background: linear-gradient(180deg, #ff9a1f 0%, var(--primary) 50%, #e06800 100%);
  padding: 56px 0;
  height: auto;
  margin-top: 0;
  position: relative;
}
#like::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 50' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 50h1440V25C1320 5 1200 0 1080 12 960 25 840 45 720 45 600 45 480 25 360 12 240 0 120 5 0 25z' fill='%23ff9a1f'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}
#like > div {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  width: 100%;
}
#like span {
  color: var(--text-inverse);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
}
#like span:first-child {
  background: none;
  padding: 0;
  border: none;
  margin: 0;
}
#like span:nth-child(2) {
  background: none;
}

/* === SECTIONS === */
#pink {
  background: var(--bg-warm);
  padding: 48px 0;
  margin-top: 48px;
}

.mintxt {
  width: 48% !important;
  float: left;
  margin-top: 16px;
}
.mintxt:nth-child(even) {
  float: right;
}

.txt {
  padding: 40px 0;
}
.txt img {
  border-radius: var(--radius-sm);
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

#foottop {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
#foottop span {
  display: block;
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
  width: auto;
  height: auto;
  float: none;
  border: none;
  padding: 0;
}
#foottop span:first-child { border: 0; padding: 0; height: auto; }
#foottop span:last-child { text-align: right; float: none; border: 0; display: flex; flex-direction: column; align-items: flex-end; }
#foottop span:last-child a {
  display: inline-block;
  margin-left: 12px;
  transition: opacity var(--ease);
}
#foottop span:last-child a:hover { opacity: 0.7; }
#foottop span:last-child a img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
#foottop span:nth-child(3) { width: auto; border: none; }
#foottop span a { text-decoration: none; }
#foottop span a:hover { text-decoration: underline; }

#footer {
  padding: 24px 0;
  margin-top: 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer a { color: var(--primary); font-weight: 600; text-decoration: none; }
#footer a:hover { text-decoration: underline; }
#footer span { float: none; }

/* === MODAL / POPUP === */
#hider {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: none;
  cursor: pointer;
}

#kl_inf {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 440px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: none;
  margin: 0;
  color: var(--text);
  font-size: 15px;
}
#kl_inf h3, #kl_inf strong {
  font-family: var(--font-heading);
}
#kl_inf input,
#kl_inf textarea {
  border: 1px solid var(--border);
  padding: 14px 16px;
  display: block;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  width: 100%;
  box-shadow: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  box-sizing: border-box;
}
#kl_inf input:hover,
#kl_inf textarea:hover {
  border-color: var(--border-hover);
}
#kl_inf input:focus,
#kl_inf textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}
#kl_inf input[type=submit] {
  border: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-inverse);
  background: var(--primary);
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease);
  margin-top: 4px;
}
#kl_inf input[type=submit]:hover { background: var(--primary-hover); }

/* === PAGINATION === */
#pager {
  padding: 16px;
  background: var(--bg-alt);
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
#pager a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin: 0;
  transition: background var(--ease), color var(--ease);
}
#pager a:hover {
  background: var(--bg);
  color: var(--primary);
}
#pager a.on {
  background: var(--primary);
  color: var(--text-inverse);
}
#pager span {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: var(--text-inverse);
  font-weight: 600;
  padding: 4px 12px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  margin: 0;
}

/* === FB WIDGET === */
.fb-page { border-radius: var(--radius-md); overflow: hidden; }

/* === UTILITIES === */
.clearfix::after { content: ''; display: table; clear: both; }

/* Stamp / badge */
.stamp { display: none; }

/* === ENHANCED HERO === */
.hero-content {
  max-width: 640px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
  line-height: 1.5;
  text-transform: none;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--text-inverse);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  text-transform: none;
  letter-spacing: 0;
}
.hero-cta:hover {
  background: var(--primary);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--ease);
}
.hero-cta:hover svg { transform: translateX(3px); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-inverse);
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.hero-badge svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

/* === BENEFITS SECTION === */
.benefits {
  padding: 64px 0;
  background: var(--bg);
  position: relative;
}
.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--ease-slow);
}
.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  color: var(--primary);
  transition: all var(--ease);
}
.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: var(--text-inverse);
  transform: scale(1.1);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: none;
}
.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
}
.section-header .accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* === CAROUSEL === */
.carousel-wrap {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track .product-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 240px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: all var(--ease);
}
.carousel-arrow:hover {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

/* "View all" button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--ease);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-inverse);
}
.btn-outline svg {
  transition: transform var(--ease);
}
.btn-outline:hover svg {
  transform: translateX(3px);
}

/* === ENHANCED STATS BAR === */
#like .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
#like .stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
#like .stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-inverse);
}
#like .stat-text {
  display: flex;
  flex-direction: column;
}
#like .stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-inverse);
}
#like .stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* === ENHANCED FOOTER === */
.footer-brand {
  margin-bottom: 16px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  display: inline-block;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--ease);
}
.footer-brand img:hover { filter: none; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--primary); }

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-top: 8px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--ease);
  width: fit-content;
}
.social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.social-links a svg {
  width: 18px;
  height: 18px;
  color: #1877F2;
  flex-shrink: 0;
}
.footer-social-text {
  text-align: right;
}
.footer-social-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.4;
}

/* === DECORATIVE DIVIDERS === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  border: none;
}

/* Gradient accent on section hover */
.kollist {
  position: relative;
}

/* === CONTENT TEXT SECTIONS === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}
.content-grid .text {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.content-grid .text h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE - Mobile First Overrides
   ======================================== */

/* --- Tablet & below (< 960px) --- */
@media (max-width: 959px) {
  .lside {
    width: 100%;
    float: none;
    margin-top: 32px;
  }
  .rside {
    width: 100%;
    float: none;
  }
  .lmeniu {
    text-align: center;
    margin-bottom: 24px;
  }
  .lside .fb-page { display: none; }

  .foto { width: 50%; }
  .prinfo { width: 48%; }

  .list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  #similar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pprek #similar { grid-template-columns: repeat(2, 1fr); }

  .mintxt { width: 100% !important; float: none !important; }

  .newslist { grid-template-columns: 1fr; }

  .gall { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  #foottop { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  #foottop span:last-child { text-align: left; }

  .lcont { float: none; width: 100%; }
  .rcont { float: none; width: 100%; margin-top: 24px; overflow: hidden; }

  #header { height: 360px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .content-grid { grid-template-columns: 1fr; }
  .carousel-track .product-card { flex: 0 0 calc(33.33% - 16px); }
  .carousel-prev { left: -16px; }
  .carousel-next { right: -16px; }
}

/* --- Mobile (< 640px) --- */
@media (max-width: 639px) {
  .cnt { padding: 0 24px; }

  /* Header */
  #head {
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .head-contacts { display: none; }
  #head span.nr,
  #head span.mail,
  #head span.dtime { display: none; }

  .navbar-toggle { display: flex !important; }

  /* Mobile nav - dropdown below header */
  .site-header { position: sticky; overflow: visible !important; }
  .site-header .cnt { display: block !important; position: relative !important; }
  .site-header nav,
  .site-header.scrolled nav {
    display: block !important;
    flex: unset !important;
    position: static !important;
  }
  #meniu {
    display: none !important;
  }
  #meniu.open {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: #fff !important;
    border-top: 2px solid var(--primary) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
  }
  #meniu.open li { width: 100% !important; }
  #meniu.open li a {
    display: block !important;
    padding: 14px 32px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border) !important;
    font-size: 15px !important;
    white-space: normal !important;
    text-align: left !important;
    color: var(--text) !important;
    background: none !important;
  }
  #meniu.open li a.on { color: var(--primary) !important; }
  #meniu.open li a:hover { color: var(--primary) !important; background: var(--primary-light) !important; }
  #meniu.open li a::after { display: none !important; }
  #meniu.open li:last-child a { border-bottom: none !important; }
  .navbar-toggle { z-index: 10 !important; }

  /* Hero */
  #header {
    height: 280px;
    border-radius: 0;
  }
  #header2 {
    height: 140px;
    border-radius: 0;
  }
  .hero-content { max-width: 100%; }
  .hero-bubbles { display: none; }
  .bub_block { display: none; }
  .hero-badge { display: none; }
  #header > span > div { flex-direction: column; gap: 0; }
  .hero-title { font-size: 24px; }
  .benefits { padding: 40px 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit-card { padding: 24px 16px; }
  .benefit-icon { width: 48px; height: 48px; }
  .benefit-icon svg { width: 24px; height: 24px; }

  #like::before { height: 30px; top: -30px; }

  /* Content */
  #content { margin-top: 32px; margin-bottom: 32px; }

  h1 { font-size: 22px; }
  h1.line, h1.line2 { margin-bottom: 20px; }

  /* Products */
  .list { grid-template-columns: 1fr 1fr; gap: 12px; }
  #similar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pprek #similar { grid-template-columns: 1fr 1fr; }

  .product-card .card-img { height: 160px; padding: 16px; }
  .product-card .card-body { padding: 12px 14px 16px; }
  .product-card .card-title { font-size: 13px; margin-bottom: 8px; }
  .carousel-track .product-card { flex: 0 0 calc(50% - 12px); min-width: 200px; }
  .carousel-arrow { display: none; }
  .carousel-track { gap: 12px; }

  /* Product detail */
  .foto {
    width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 24px;
  }
  .prinfo { width: 100%; float: none; }
  .foto a.smft {
    width: 45%;
    height: auto;
    aspect-ratio: 4/3;
    margin-right: 4% !important;
  }
  .foto a.smft:nth-child(2n+1) { margin-right: 0 !important; }

  /* Stats */
  #like { padding: 32px 0; }
  #like > div {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #like .stat-item { gap: 12px; }
  #like .stat-icon { width: 44px; height: 44px; }
  #like .stat-icon svg { width: 22px; height: 22px; }
  #like .stat-number { font-size: 28px; }
  .stats-wave { height: 28px; }
  .stats-wave svg { height: 28px; }

  /* Gallery */
  .gall { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Footer */
  #foottop {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 24px;
  }
  #foottop span:last-child { display: block; text-align: left; }
  #footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  #footer span { display: block; float: none; }

  /* FAQ */
  .duklist div { padding: 16px 20px; }
  .duklist div span.duk_kl { font-size: 15px; }

  /* Modal */
  #kl_inf {
    width: 94%;
    padding: 24px 20px;
  }

  /* Sections & text content */
  #pink { padding: 32px 0; margin-top: 32px; }
  .txt { padding: 24px 8px; }
  .text { padding: 0 8px; }
  .duklist { padding: 0 8px; }
  .gall { padding: 0 8px; }
  .newslist { padding: 0 8px; }
}

/* --- Very small screens (< 380px) --- */
@media (max-width: 379px) {
  .list { grid-template-columns: 1fr; }
  #similar { grid-template-columns: 1fr; }
  .pprek #similar { grid-template-columns: 1fr; }
  .gall { grid-template-columns: 1fr 1fr; }
  #header { height: 240px; }
}

/* === PRINT === */
@media print {
  .site-header, #top, #like, #foottop, .navbar-toggle,
  .suzk, #hider, #kl_inf, .fb-page { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .cnt { max-width: 100%; }
}
