/*
Theme Name: VitaInSilica
Version: 2.0.0
*/

/* ═══ TOKENS ═══════════════════════════════════════════════ */
:root {
  --ink:        #111827;
  --ink-mid:    #374151;
  --ink-soft:   #6b7280;
  --ink-ghost:  #9ca3af;
  --canvas:     #f9fafb;
  --surface:    #ffffff;
  --border:     #e5e7eb;
  --border-mid: #d1d5db;

  --blue:       #1d4ed8;
  --blue-dark:  #1e3a8a;
  --blue-light: #3b82f6;
  --green:      #16a34a;
  --green-light:#22c55e;
  --red:        #dc2626;
  --amber:      #d97706;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
}

/* ═══ RESET ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ═══ TYPOGRAPHY ═════════════════════════════════════════ */
h1 { font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.2rem, 3vw, 1.6rem);  font-weight: 700; color: var(--ink); line-height: 1.25; letter-spacing: -.01em; }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
p  { line-height: 1.7; margin-bottom: 1em; color: var(--ink-mid); }
p:last-child { margin-bottom: 0; }

/* ═══ LAYOUT ═════════════════════════════════════════════ */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ════════════════════════════════════════════ */
/* Top utility bar */
.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.header-topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: .78rem;
  padding: 5px 24px;
}
.header-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left { display: flex; gap: 20px; opacity: .9; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right a { color: #93c5fd; font-weight: 600; transition: color .15s; }
.topbar-right a:hover { color: #fff; }

/* Main nav row */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 62px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { line-height: 1; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--blue-dark); letter-spacing: -.02em; }
.logo-text small  { display: block; font-size: .68rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .02em; text-transform: uppercase; }

/* Nav links */
.main-navigation { margin-left: auto; }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu li a {
  display: block; padding: 7px 13px;
  font-size: .86rem; font-weight: 600; color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-menu li a:hover, .nav-menu li.current-menu-item > a {
  background: #eff6ff; color: var(--blue);
}
.nav-menu li.menu-sklep > a {
  background: var(--blue); color: #fff;
  border-radius: 20px; padding: 7px 18px;
}
.nav-menu li.menu-sklep > a:hover { background: var(--blue-dark); color: #fff; }
.menu-toggle {
  display: none;
  background: none; border: 1.5px solid var(--border);
  padding: 7px 10px; border-radius: var(--radius-sm);
  font-size: 1.1rem; color: var(--ink);
  margin-left: auto;
}
.header-phone { font-size: .8rem; color: var(--ink-soft); white-space: nowrap; display: flex; align-items: center; gap: 5px; }

/* ═══ BREADCRUMBS ════════════════════════════════════════ */
.breadcrumb-wrap { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumbs-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 24px;
  font-size: .8rem; color: var(--ink-ghost); display: flex; flex-wrap: wrap; gap: 2px; align-items: center;
}
.breadcrumbs-inner a { color: var(--ink-soft); transition: color .15s; }
.breadcrumbs-inner a:hover { color: var(--blue); }
.sep { margin: 0 4px; color: var(--border-mid); font-size: .9em; }

/* ═══ HOMEPAGE ═══════════════════════════════════════════ */
.home-hero {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 72px;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(59,130,246,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(34,197,94,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
  position: relative;
}
.hero-content h1 { color: #fff; font-size: clamp(2rem,5vw,3rem); margin-bottom: 16px; }
.hero-content h1 em { font-style: normal; color: #86efac; }
.hero-subtitle { font-size: 1.05rem; color: #bfdbfe; line-height: 1.65; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: none; font-weight: 700; cursor: pointer; transition: all .18s; white-space: nowrap; }
.btn-lg { padding: 13px 28px; font-size: .95rem; border-radius: 30px; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,.35); }
.btn-green:hover { background: #15803d; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(22,163,74,.45); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.5); }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: #93c5fd; }
.hero-badge strong { color: #dbeafe; }

/* Hero right — stats card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-stat { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1; margin-bottom: 2px; }
.hero-stat-label { font-size: .78rem; color: #93c5fd; font-weight: 500; }

/* ═══ SECTIONS ════════════════════════════════════════════ */
.section { padding: 64px 24px; }
.section-white { background: var(--surface); }
.section-head { margin-bottom: 40px; }
.section-head h2 { margin-bottom: 6px; }
.section-head p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.section-head.center { text-align: center; }
.section-head .tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: #eff6ff; color: var(--blue); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}

/* ═══ CATEGORIES ══════════════════════════════════════════ */
.cats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 14px 18px;
  text-align: center;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--blue-light); box-shadow: 0 0 0 3px #dbeafe;
  transform: translateY(-3px);
}
.cat-card .icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.cat-card .name { font-size: .85rem; font-weight: 700; color: var(--ink); display: block; }
.cat-card .cnt  { font-size: .75rem; color: var(--ink-ghost); margin-top: 3px; display: block; }

/* ═══ TRUST BAR ══════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.trust-bar-item:first-child { padding-left: 0; }
.trust-bar-item:last-child  { border: none; }
.trust-bar-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-bar-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--ink); }
.trust-bar-text span   { font-size: .78rem; color: var(--ink-soft); }

/* ═══ PRODUCT CARDS ══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .2s;
  position: relative;
}
.product-card:hover {
  border-color: var(--blue-light); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pc-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 9px; border-radius: 20px; z-index: 1;
}
.pc-img {
  background: #f3f4f6;
  aspect-ratio: 1; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pc-img img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  transition: transform .3s;
}
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pc-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--blue); }
.pc-name { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pc-name a:hover { color: var(--blue); }
.pc-stars { display: flex; align-items: center; gap: 5px; }
.stars { color: #f59e0b; font-size: .82rem; letter-spacing: 1px; }
.rating-count { font-size: .75rem; color: var(--ink-ghost); }
.pc-price {
  font-size: 1.35rem; font-weight: 900; color: var(--red); line-height: 1;
  margin-top: auto; padding-top: 8px;
}
.pc-price-note { font-size: .73rem; color: var(--ink-ghost); font-weight: 400; margin-left: 2px; }
.pc-actions { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.btn-buy {
  display: block; width: 100%; padding: 11px;
  background: var(--green); color: #fff; text-align: center;
  border-radius: 30px; font-weight: 700; font-size: .84rem;
  transition: background .18s, transform .15s;
}
.btn-buy:hover { background: #15803d; color: #fff; transform: translateY(-1px); }
.btn-review {
  display: block; width: 100%; padding: 9px;
  text-align: center; border-radius: 30px;
  font-weight: 600; font-size: .8rem; color: var(--blue);
  border: 1.5px solid #bfdbfe; background: #eff6ff;
  transition: all .18s;
}
.btn-review:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ═══ SHOP HEADER ════════════════════════════════════════ */
.shop-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1d4ed8 100%);
  padding: 44px 24px 36px;
}
.shop-header-inner { max-width: 1200px; margin: 0 auto; }
.shop-header h1 { color: #fff; font-size: 1.8rem; margin-bottom: 6px; }
.shop-header p  { color: #bfdbfe; font-size: .9rem; margin-bottom: 20px; }
.shop-search-bar {
  display: flex; max-width: 460px;
  border-radius: 30px; overflow: hidden;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.shop-search-bar input {
  flex: 1; padding: 13px 20px; border: none; outline: none;
  font-size: .92rem; color: var(--ink);
}
.shop-search-bar button {
  padding: 13px 22px; background: var(--green); color: #fff;
  border: none; font-weight: 700; font-size: .88rem;
  transition: background .18s;
}
.shop-search-bar button:hover { background: #15803d; }

/* Category filter bar */
.cat-filter-bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.cat-filter-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; gap: 8px;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--ink-mid); font-size: .8rem; font-weight: 600;
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: all .15s;
  flex-shrink: 0;
}
.cat-pill:hover, .cat-pill.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Products wrapper */
.products-wrap {
  max-width: 1200px; margin: 0 auto; padding: 28px 24px 48px;
}
.products-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.products-count { font-size: .83rem; color: var(--ink-soft); }

/* ═══ PRODUCT PAGE ════════════════════════════════════════ */
.product-page { max-width: 1200px; margin: 0 auto; padding: 28px 24px 56px; }

/* Hero */
.product-hero {
  display: grid; grid-template-columns: 480px 1fr; gap: 44px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.product-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: #f9fafb; border-radius: var(--radius-lg); padding: 24px;
}
.p-cat-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: 8px; }
.product-info h1 { font-size: clamp(1.4rem,3vw,1.9rem); color: var(--ink); margin-bottom: 14px; }
.p-rating-row {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border);
}
.p-rating-row .stars { font-size: 1.1rem; }
.p-score { font-weight: 800; font-size: .95rem; }
.p-rcount { font-size: .8rem; color: var(--ink-soft); }
.p-price-wrap { margin-bottom: 22px; }
.p-price-label { font-size: .75rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.p-price {
  font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1;
  letter-spacing: -.02em;
}
.p-price .cur { font-size: 1.1rem; vertical-align: super; }
.p-cod { font-size: .82rem; color: var(--green); font-weight: 600; margin-top: 5px; display: flex; align-items: center; gap: 5px; }

.btn-order {
  display: flex; width: 100%; align-items: center; justify-content: center;
  gap: 8px; padding: 17px 24px;
  background: var(--red); color: #fff;
  border: none; border-radius: 30px;
  font-weight: 800; font-size: 1.05rem;
  transition: all .18s; box-shadow: 0 4px 20px rgba(220,38,38,.3);
  margin-bottom: 14px;
}
.btn-order:hover {
  background: #b91c1c; color: #fff;
  box-shadow: 0 6px 28px rgba(220,38,38,.4);
  transform: translateY(-1px);
}
.btn-order-note { font-size: .75rem; opacity: .8; font-weight: 400; }

/* Trust grid */
.p-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0;
}
.p-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 11px; background: #f9fafb;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .78rem; color: var(--ink-mid); font-weight: 500;
}
.p-trust-item .ico { font-size: .95rem; flex-shrink: 0; }
.p-short-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.65; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.p-affiliate-note {
  font-size: .75rem; color: var(--ink-ghost); display: flex; align-items: flex-start; gap: 5px;
  background: #f9fafb; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 11px; margin-top: 10px;
}

/* Product content */
.product-content-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-xs); margin-bottom: 28px;
}
.product-content-wrap h1 { font-size: 1.5rem; margin-bottom: 1rem; }
.product-content-wrap h2 {
  font-size: 1.18rem; color: var(--blue-dark); margin: 1.8rem 0 .8rem;
  padding-bottom: 8px; border-bottom: 2px solid #dbeafe;
}
.product-content-wrap h3 { font-size: 1rem; margin: 1.2rem 0 .5rem; }
.product-content-wrap p  { font-size: .92rem; color: var(--ink-mid); line-height: 1.75; }
.product-content-wrap ul { padding-left: 1.4rem; list-style: disc; margin: .5rem 0 1rem; }
.product-content-wrap ul li { font-size: .92rem; color: var(--ink-mid); margin-bottom: .4rem; }
.product-content-wrap ol { padding-left: 1.4rem; margin: .5rem 0 1rem; }
.product-content-wrap ol li { font-size: .92rem; color: var(--ink-mid); margin-bottom: .4rem; }
.product-content-wrap table {
  width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .88rem;
}
.product-content-wrap th { background: var(--blue-dark); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.product-content-wrap td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--ink-mid); }
.product-content-wrap tr:nth-child(even) td { background: #f9fafb; }
.product-content-wrap details {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden;
}
.product-content-wrap summary {
  padding: 13px 16px; background: #f9fafb; cursor: pointer;
  font-weight: 600; font-size: .9rem; color: var(--ink);
  list-style: none; display: flex; align-items: center; gap: 8px;
}
.product-content-wrap summary::-webkit-details-marker { display: none; }
.product-content-wrap summary::before { content: '＋'; color: var(--blue); font-weight: 900; font-size: .9rem; }
.product-content-wrap details[open] summary::before { content: '－'; }
.product-content-wrap summary:hover { background: #eff6ff; }
.product-content-wrap details[open] summary { color: var(--blue); background: #eff6ff; }
.product-content-wrap details > *:not(summary) { padding: 16px 20px; }
.product-content-wrap aside {
  background: #fffbeb; border-left: 4px solid var(--amber);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0; font-size: .86rem; color: var(--ink-mid);
}
.product-content-wrap dl { margin: 1rem 0; }
.product-content-wrap dt { font-weight: 700; color: var(--blue-dark); margin-top: .8rem; font-size: .9rem; }
.product-content-wrap dd { padding-left: 1rem; font-size: .9rem; color: var(--ink-mid); }

/* Related */
.related-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-xs);
}
.related-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ═══ STATIC PAGES ════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--blue-dark), #1e40af);
  padding: 48px 24px; color: #fff;
}
.page-banner h1 { color: #fff; }
.page-banner p  { color: #bfdbfe; margin: 6px 0 0; }

.prose-page { max-width: 820px; margin: 40px auto 64px; padding: 0 24px; }
.prose-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-xs);
}
.prose-box h2 { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 1.15rem; }
.prose-box h2:first-child { margin-top: 0; padding-top: 0; border: none; }
.prose-box p, .prose-box ul { font-size: .92rem; color: var(--ink-mid); margin-bottom: .9rem; }
.prose-box ul { padding-left: 1.5rem; list-style: disc; }
.prose-box ul li { margin-bottom: .4rem; }
.lead { font-size: 1.08rem !important; color: var(--ink-mid) !important; line-height: 1.75 !important; }

/* About specifics */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 16px; margin: 1.5rem 0; }
.val-card { background: #f9fafb; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; }
.val-card .ico { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.val-card h3 { font-size: .9rem; margin-bottom: 4px; }
.val-card p  { font-size: .8rem; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 16px; margin: 1.5rem 0; }
.team-card { background: #f9fafb; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 16px; text-align: center; }
.team-av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--blue-dark),var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 10px; }
.team-name { font-weight: 700; font-size: .88rem; }
.team-role { font-size: .75rem; color: var(--ink-soft); margin-top: 2px; }

/* Contact */
.contact-page { max-width: 900px; margin: 40px auto 64px; padding: 0 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-xs); }
.contact-card h2 { margin-bottom: 20px; font-size: 1.1rem; }
.contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .9rem; color: var(--ink-mid); }
.contact-row .ico { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; color: var(--ink);
  outline: none; transition: border-color .15s; background: var(--surface);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px #dbeafe; }
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 13px; border: none; border-radius: 30px;
  background: var(--blue); color: #fff; font-size: .92rem; font-weight: 700;
  transition: background .18s; cursor: pointer;
}
.btn-submit:hover { background: var(--blue-dark); }

/* ═══ FOOTER ══════════════════════════════════════════════ */
.site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-body {
  max-width: 1200px; margin: 0 auto; padding: 52px 24px 36px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px;
}
.footer-brand .logo-foot { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-mark { background: linear-gradient(135deg,#1e3a8a,#2563eb); width: 32px; height: 32px; }
.footer-brand strong { color: #fff; font-size: .95rem; font-weight: 800; }
.footer-brand p { font-size: .83rem; color: #64748b; line-height: 1.65; margin-bottom: 16px; }
.ft-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.ft-badge {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: #64748b; font-size: .72rem; padding: 4px 10px; border-radius: 20px; font-weight: 600;
}
.footer-col h4 { color: #94a3b8; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .84rem; color: #475569; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: .84rem; color: #475569; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 7px; }
.footer-col address a { color: #475569; transition: color .15s; }
.footer-col address a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: #334155; margin: 0; }
.footer-disclaimer { font-size: .74rem; color: #1e293b; max-width: 700px; line-height: 1.55; }

/* ═══ MISC ════════════════════════════════════════════════ */
.affiliate-notice {
  font-size: .75rem; color: var(--ink-ghost); background: #f9fafb;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 12px; display: flex; gap: 6px;
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-hero { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .product-gallery img { max-height: 300px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-bar-item { border: none; padding: 8px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { display: none; }
}
@media (max-width: 768px) {
  .header-topbar { display: none; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 10px; }
  .main-navigation { order: 4; width: 100%; display: none; margin-left: 0; }
  .main-navigation.is-open { display: block; }
  .nav-menu { flex-direction: column; padding: 4px 0; }
  .nav-menu li a { padding: 10px 12px; }
  .nav-menu li.menu-sklep > a { border-radius: 8px; }
  .menu-toggle { display: block; }
  .home-hero { padding: 52px 20px 44px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .p-trust-grid { grid-template-columns: 1fr; }
  .product-content-wrap { padding: 22px; }
  .footer-body { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .cats-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .cat-card { padding: 16px 10px 14px; }
  .cat-card .icon { font-size: 1.5rem; }
  .trust-bar-inner { grid-template-columns: 1fr; }
}
