:root {
  --brand-dark: #12271e;
  --brand: #1e4d38;
  --brand-light: #2f7a55;
  --accent: #7ec850;
  --bg: #f6f7f5;
  --surface: #ffffff;
  --text: #1b241e;
  --muted: #656f68;
  --border: #e2e6e1;
  --danger: #c0392b;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(18, 39, 30, 0.08);
  --font-heading: 'Poppins', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  --topbar-height: 150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -.01em; }
.btn { font-family: var(--font-heading); letter-spacing: .01em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Ticker */
.ticker {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 3px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  padding: 8px 0;
  animation: ticker-scroll 50s linear infinite;
}
.ticker-track span { padding-right: 60px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Header */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  padding-bottom: 5px;
}
header.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease;
}
.site-topbar.scrolled header.site-header { box-shadow: 0 10px 28px rgba(18, 39, 30, 0.16); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.logo { flex-shrink: 0; }
.logo img { height: 46px; width: auto; transition: height .25s ease; }
@media (max-width: 480px) {
  .logo img { height: 34px; }
}
.header-search { flex: 1; max-width: 320px; display: flex; }
.header-search input {
  flex: 1;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 999px 0 0 999px;
  padding: 9px 16px;
  font-size: 14px;
  min-width: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header-search input:focus { outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(126, 200, 80, 0.18); }
.header-search button {
  border: 1px solid var(--border);
  border-left: none;
  background: var(--bg);
  border-radius: 0 999px 999px 0;
  padding: 9px 16px;
  font-size: 15px;
  transition: background .2s ease, color .2s ease;
}
.header-search button:hover { background: var(--brand); color: #fff; }
.header-actions { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
@media (max-width: 760px) { .header-search { display: none; } }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.icon-btn:hover { border-color: var(--brand-light); color: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(18, 39, 30, 0.1); }
.icon-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-search button, .mobile-search button { display: flex; align-items: center; justify-content: center; }
.header-search button svg, .mobile-search button svg { width: 16px; height: 16px; }
.cart-count {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 7px;
  min-width: 18px;
  text-align: center;
  transition: transform .25s ease;
}
.icon-btn-cart:hover .cart-count { transform: scale(1.2); }
.hamburger {
  display: none;
  border: none;
  background: none;
  padding: 6px;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Overlay (mobile drawer backdrop) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 14, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 99;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* Nav */
nav.main-nav {
  background: var(--brand);
  color: #fff;
  position: relative;
  z-index: 1;
}
nav.main-nav .container { display: flex; }
.nav-mobile-head, .mobile-search { display: none; }
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  position: relative;
  color: #fff;
  transition: background .2s ease;
}
.nav-icon { display: flex; align-items: center; opacity: .9; }
.nav-icon svg { width: 17px; height: 17px; }
.mega-arrow { display: inline-flex; align-items: center; }
.mega-arrow svg { width: 14px; height: 14px; }
.nav-chevron { font-size: 10px; margin-left: 1px; opacity: .8; transition: transform .25s ease; }
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-list > li > a:hover::after, .nav-list > li.active > a::after { transform: scaleX(1); }
.nav-list > li > a:hover, .nav-list > li.active > a { background: rgba(255, 255, 255, 0.09); }

.mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--surface);
  color: var(--text);
  min-width: 340px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 44px rgba(18, 39, 30, 0.2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 18px 20px 14px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-list > li:hover .mega-panel,
.nav-list > li:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 3px 22px;
}
.mega-grid a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mega-grid a:hover { background: var(--bg); color: var(--brand); transform: translateX(3px); }
.mega-viewall {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
  transition: gap .2s ease;
}
.mega-viewall:hover { gap: 10px; }

/* Mobile nav — slide-in drawer */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .header-inner { flex-wrap: wrap; row-gap: 10px; }
  .logo { order: 1; }
  .hamburger { order: 2; }
  .header-actions { order: 3; flex: 0 0 100%; justify-content: center; }
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 86vw);
    background: var(--surface);
    color: var(--text);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    z-index: 5;
    box-shadow: -10px 0 32px rgba(0, 0, 0, 0.22);
  }
  nav.main-nav.open { transform: translateX(0); }
  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-title { font-weight: 800; font-size: 16px; color: var(--brand-dark); }
  .nav-close { border: none; background: none; font-size: 19px; color: var(--muted); padding: 4px 8px; }
  .mobile-search { display: flex; padding: 14px 18px; }
  .mobile-search input {
    flex: 1; border: 1px solid var(--border); border-right: none;
    border-radius: 999px 0 0 999px; padding: 9px 14px; font-size: 14px; min-width: 0;
  }
  .mobile-search button {
    border: 1px solid var(--border); border-left: none; background: var(--bg);
    border-radius: 0 999px 999px 0; padding: 9px 14px;
  }
  nav.main-nav .container { padding: 0 8px 24px; display: block; }
  .nav-list { flex-direction: column; }
  .nav-list > li > a { color: var(--text); padding: 13px 10px; }
  .nav-list > li > a::after { display: none; }
  .nav-list > li > a:hover, .nav-list > li.active > a { background: var(--bg); }
  .nav-list > li.open > a .nav-chevron { transform: rotate(180deg); }
  .mega-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    border-radius: 0;
    display: none;
    padding: 2px 0 8px 14px;
    min-width: 0;
  }
  .nav-list > li.open .mega-panel { display: block; }
  .mega-grid { grid-template-columns: 1fr; gap: 0; }
  .mega-grid a { padding: 10px 12px; font-size: 14px; }
  .mega-viewall { margin: 6px 0 4px 12px; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: center 30% / cover no-repeat;
  color: #fff;
  padding: 64px 0;
  margin-top: 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(11,46,29,0.88), rgba(20,92,58,0.78) 70%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -110px;
  right: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,80,0.38), rgba(126,200,80,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 { font-size: 40px; line-height: 1.14; margin: 10px 0 14px; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
.hero-text p { color: #d6ecdf; font-size: 16px; max-width: 480px; }
.hero-badges { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(2px);
}
.badge svg { width: 15px; height: 15px; flex-shrink: 0; }

.hero-text.anim-fade-up .eyebrow, .hero-text.anim-fade-up h1, .hero-text.anim-fade-up p, .hero-text.anim-fade-up .hero-badges, .hero-text.anim-fade-up .btn {
  opacity: 0;
  animation: heroFadeUp .7s ease forwards;
}
.hero-text.anim-slide-left .eyebrow, .hero-text.anim-slide-left h1, .hero-text.anim-slide-left p, .hero-text.anim-slide-left .hero-badges, .hero-text.anim-slide-left .btn {
  opacity: 0;
  animation: heroSlideLeft .7s ease forwards;
}
.hero-text.anim-zoom .eyebrow, .hero-text.anim-zoom h1, .hero-text.anim-zoom p, .hero-text.anim-zoom .hero-badges, .hero-text.anim-zoom .btn {
  opacity: 0;
  animation: heroZoomIn .7s ease forwards;
}
.hero-text .eyebrow { animation-delay: .05s; }
.hero-text h1 { animation-delay: .14s; }
.hero-text p { animation-delay: .23s; }
.hero-text .hero-badges { animation-delay: .32s; }
.hero-text .btn { animation-delay: .4s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-text .eyebrow, .hero-text h1, .hero-text p, .hero-text .hero-badges, .hero-text .btn { animation: none; opacity: 1; }
}

/* Baner główny (karuzela) */
.hero-slider { position: relative; width: 100%; overflow: hidden; aspect-ratio: 21/7; min-height: 260px; background: var(--brand-dark); margin-top: 20px; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  display: flex; align-items: center; opacity: 0; pointer-events: none; transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,46,29,0.82), rgba(11,46,29,0.2) 65%); }
.hero-slide-content { position: relative; z-index: 1; color: #fff; max-width: 560px; }
.hero-slide-content h1 { font-size: 34px; margin: 0 0 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hero-slide-content p { font-size: 15.5px; color: #eef4ef; margin: 0 0 18px; }
.hero-slide-content .btn { margin-top: 0; }
.hero-slide.active .hero-slide-content.anim-fade-up h1,
.hero-slide.active .hero-slide-content.anim-fade-up p,
.hero-slide.active .hero-slide-content.anim-fade-up .btn {
  opacity: 0;
  animation: heroFadeUp .7s ease forwards;
}
.hero-slide.active .hero-slide-content.anim-slide-left h1,
.hero-slide.active .hero-slide-content.anim-slide-left p,
.hero-slide.active .hero-slide-content.anim-slide-left .btn {
  opacity: 0;
  animation: heroSlideLeft .7s ease forwards;
}
.hero-slide.active .hero-slide-content.anim-zoom h1,
.hero-slide.active .hero-slide-content.anim-zoom p,
.hero-slide.active .hero-slide-content.anim-zoom .btn {
  opacity: 0;
  animation: heroZoomIn .7s ease forwards;
}
.hero-slide-content.anim-fade-up h1, .hero-slide-content.anim-slide-left h1, .hero-slide-content.anim-zoom h1 { animation-delay: .1s; }
.hero-slide-content.anim-fade-up p, .hero-slide-content.anim-slide-left p, .hero-slide-content.anim-zoom p { animation-delay: .2s; }
.hero-slide-content.anim-fade-up .btn, .hero-slide-content.anim-slide-left .btn, .hero-slide-content.anim-zoom .btn { animation-delay: .3s; }
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroZoomIn {
  from { opacity: 0; transform: scale(.88); }
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-content h1, .hero-slide-content p, .hero-slide-content .btn { animation: none; opacity: 1; }
}
.hero-slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.18); color: #fff;
  border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer; z-index: 2; line-height: 1;
}
.hero-slider-nav:hover { background: rgba(255,255,255,0.32); }
.hero-slider-nav.prev { left: 14px; }
.hero-slider-nav.next { right: 14px; }
.hero-slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; padding: 0; cursor: pointer; }
.hero-dot.active { background: #fff; }
@media (max-width: 700px) {
  .hero-slider { aspect-ratio: 4/3; }
  .hero-slide-content h1 { font-size: 24px; }
  .hero-text h1 { font-size: 28px; }
  .hero { padding: 44px 0; }
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 22px 0; text-align: center;
}
.trust-item .trust-number { font-size: 26px; font-weight: 800; color: var(--brand-dark); line-height: 1.1; }
.trust-item .trust-label { font-size: 13px; color: var(--muted); }

/* Pasek marek/producentów (karuzela) */
.brand-marquee { padding: 30px 0 36px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-marquee-track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.brand-marquee-track { display: inline-flex; align-items: center; gap: 56px; animation: brand-scroll 60s linear infinite; }
.brand-marquee-track:hover { animation-play-state: paused; }
.brand-logo { flex-shrink: 0; height: 44px; display: flex; align-items: center; }
.brand-logo img { height: 100%; width: auto; max-width: 140px; object-fit: contain; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  margin-top: 22px;
  font-size: 15px;
}
.btn:hover { filter: brightness(1.08); }
.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn.outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn.danger { background: var(--danger); color: #fff; }
.btn.block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Section titles */
.section { padding: 46px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  gap: 12px;
  flex-wrap: wrap;
}
.section-head h2 { margin: 0; font-size: 24px; }
.section-head .link { color: var(--brand); font-weight: 600; font-size: 14px; }
.eyebrow { color: var(--brand-light); text-transform: uppercase; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; }

/* Category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-tile {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  min-height: 260px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.cat-tile:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 16px 32px rgba(18,39,30,0.18); border-color: var(--brand-light); }
.cat-tile:not(.has-image):hover h3 { color: var(--brand); }
.cat-tile h3 { margin: 0 0 10px; font-size: 21px; color: var(--brand-dark); transition: color .2s ease; }
.cat-tile p { margin: 0; color: var(--muted); font-size: 14.5px; }

.cat-tile.has-image {
  padding: 0; aspect-ratio: 3 / 2; border-color: transparent;
  display: flex; align-items: flex-end;
}
.cat-tile-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.cat-tile.has-image:hover .cat-tile-bg { transform: scale(1.1); }
.cat-tile.has-image::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(11,46,29,0.1), rgba(11,46,29,0.88));
}
.cat-tile.has-image .cat-tile-body { position: relative; z-index: 1; padding: 24px 26px; align-self: flex-end; }
.cat-tile.has-image h3 { color: #fff; }
.cat-tile.has-image p { color: #dcefe3; }
.cat-tile.has-image.no-tile-text::before { content: none; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(18, 39, 30, 0.16);
  border-color: var(--brand-light);
}
.product-card:hover .product-info h3 a { color: var(--brand); }
.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #eef2ee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--accent);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(18,39,30,0.18);
}
.badge-new-inline {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 4px 0;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-thumb img { transform: scale(1.08); }
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #dcefe3;
  text-align: center;
  padding: 14px;
}
.thumb-placeholder .ball { font-size: 34px; margin-bottom: 6px; }
.thumb-placeholder span.label { font-size: 12px; opacity: .85; }
.product-info { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info h3 { font-size: 14.5px; margin: 0; font-weight: 600; min-height: 38px; }
.product-info h3 a { transition: color .2s ease; }
.product-info h3 a:hover { color: var(--brand); }
.product-price-row { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 2px 8px; }
.product-price { font-size: 17px; font-weight: 700; color: var(--brand-dark); display: flex; align-items: baseline; gap: 5px; }
.price-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.price-gross { font-size: 12px; color: var(--muted); }
.product-actions { display: flex; gap: 8px; margin-top: 6px; }
.add-btn {
  flex: 1;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 10px;
  font-weight: 600;
  font-size: 13px;
  transition: background .2s ease, transform .2s ease;
}
.add-btn:hover { background: var(--brand-light); transform: translateY(-1px); }
.view-btn {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  background: #fff;
  color: var(--text);
}
.view-btn:hover { border-color: var(--brand); color: var(--brand); }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brand); }

/* Category page chips */
.cat-desc { color: var(--muted); max-width: 700px; margin: 0 0 22px; font-size: 14.5px; line-height: 1.6; }
.cat-banner {
  position: relative;
  height: 238px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,46,29,0.6), rgba(11,46,29,0.45));
}
.cat-banner-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  padding: 20px 26px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  text-align: center;
  opacity: 0;
  animation: heroFadeUp .7s ease .1s forwards;
}
.cat-banner-text::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--accent);
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .cat-banner-text { animation: none; opacity: 1; }
}
@media (max-width: 640px) {
  .cat-banner { height: 140px; }
  .cat-banner-text { font-size: 21px; padding: 14px 18px; }
}
.cat-sticky-head {
  position: sticky;
  top: var(--topbar-height, 140px);
  z-index: 40;
  background: var(--bg);
  padding-top: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.subcat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  background: var(--surface);
}
.chip:hover, .chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.empty-state {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
}
.empty-state strong { display: block; color: var(--text); font-size: 16px; margin-bottom: 6px; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .product-detail { grid-template-columns: 1fr; } }
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; cursor: zoom-in; }
.gallery-main:hover img { transform: scale(1.08); }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 64px; height: 64px; border-radius: 8px; overflow: hidden; padding: 0;
  border: 2px solid var(--border); background: var(--surface); flex-shrink: 0; opacity: .7;
  transition: opacity .15s ease, border-color .15s ease;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active { border-color: var(--brand); opacity: 1; }
.pd-title { font-size: 26px; margin: 0 0 8px; }
.pd-price { font-size: 28px; font-weight: 800; color: var(--brand-dark); margin: 10px 0 18px; }
.pd-discount-hint { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.pd-discount-hint svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--brand-light); }
.pd-discount-hint a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.pd-desc { color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.pd-desc p, .pd-specs p { margin: 0 0 12px; }
.pd-desc p:last-child, .pd-specs p:last-child { margin-bottom: 0; }
.pd-desc ul, .pd-desc ol, .pd-specs ul, .pd-specs ol { margin: 0 0 12px; padding-left: 22px; }
.pd-desc h3, .pd-desc h4, .pd-specs h3, .pd-specs h4 { color: var(--text); margin: 16px 0 8px; }
.pd-desc a, .pd-specs a { color: var(--brand); text-decoration: underline; }
.pd-specs { color: var(--text); line-height: 1.6; }
.pd-selects { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-select-field { margin-bottom: 0; min-width: 160px; }
.pd-select-field select { cursor: pointer; }
.pd-variants { margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.pd-variant-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pd-variant-label { font-weight: 600; font-size: 13.5px; flex-shrink: 0; }
.pd-chip-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pd-chip-list .chip { padding: 4px 12px; font-size: 12.5px; cursor: default; }
.pd-chip-list .chip:hover { background: var(--surface); color: var(--text); border-color: var(--border); }
.color-chip { display: inline-flex; align-items: center; gap: 6px; }
.color-chip-dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.15); flex-shrink: 0; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-control button { background: var(--bg); border: none; width: 34px; height: 36px; font-size: 16px; }
.qty-control input { width: 48px; border: none; text-align: center; font-size: 15px; height: 36px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.roster-import { margin-top: 14px; }
.roster-import-panel {
  margin-top: 12px; padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); max-width: 440px;
}
.roster-import-panel select { padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; font-size: 13.5px; font-family: inherit; background: var(--surface); color: var(--text); }
.pd-note {
  margin-top: 26px;
  background: #eef6f0;
  border: 1px solid #cfe7d8;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--brand-dark);
}

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-table th { text-align: left; font-size: 12.5px; text-transform: uppercase; color: var(--muted); padding: 12px 14px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-name { display: flex; align-items: center; gap: 12px; }
.cart-item-thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: #eef2ee; flex-shrink: 0; display:flex; align-items:center; justify-content:center;}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-variant { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.remove-link { color: var(--danger); font-size: 13px; font-weight: 600; }
.cart-summary {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.cart-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 320px;
}
.cart-summary-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; font-size: 14.5px; }
.cart-summary-row.total { font-size: 19px; font-weight: 800; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.branding-select-group { display: flex; flex-direction: column; gap: 8px; min-width: 190px; }
.branding-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.branding-row select { padding: 7px 8px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-family: inherit; background: var(--surface); color: var(--text); }
.branding-remove { border: none; background: none; color: var(--danger); font-size: 14px; font-weight: 700; cursor: pointer; padding: 2px 4px; line-height: 1; }
.branding-add-btn { align-self: flex-start; border: 1px dashed var(--border); background: none; color: var(--brand-dark); font-size: 12.5px; font-weight: 600; padding: 6px 10px; border-radius: 8px; cursor: pointer; }
.branding-add-btn:hover { background: var(--bg); }
.branding-text-input { width: 100%; padding: 7px 8px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-family: inherit; background: var(--surface); color: var(--text); box-sizing: border-box; }

/* Wydruk oferty (PDF) */
.offer-print-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; border-bottom: 2px solid var(--border); padding-bottom: 18px; }
@page { size: A4; margin: 10mm; }
@media print {
  .site-header, .main-nav, .site-footer, .ticker, .toast, .lightbox, .no-print { display: none !important; }
  body, .section.container { margin: 0; padding: 0; }
  .cart-table { border: none; }
  .offer-print-head { padding-bottom: 10px; }
  .offer-print-head h2 { font-size: 17px; }
  .offer-print-head h3 { font-size: 14px; }
  .offer-print-head p { font-size: 11.5px; }
  .offer-print-table th, .offer-print-table td { padding: 5px 7px; font-size: 11.5px; }
  .offer-print-table th { font-size: 9.5px; }
  .cart-item-variant { font-size: 10.5px; }
  .cart-summary-box { padding: 10px 14px; min-width: 0; }
  .cart-summary-row { margin-bottom: 4px; font-size: 12px; }
  .cart-summary-row.total { font-size: 14px; padding-top: 6px; margin-top: 2px; }
  .offer-print p { font-size: 10px !important; margin-top: 10px !important; }
  .offer-print-inquiry { padding: 6px 9px !important; margin-top: 8px !important; font-size: 11px; }
}

/* Contact / inquiry page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.info-card h3 { margin-top: 0; }
.info-row { display: flex; gap: 10px; align-items: baseline; margin-bottom: 8px; font-size: 15px; }
.info-row .lbl { color: var(--muted); min-width: 70px; font-size: 13px; text-transform: uppercase; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.inquiry-list { list-style: none; padding: 0; margin: 0 0 14px; font-size: 13.5px; }
.inquiry-list li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--border); }

/* Club cards */
.club-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.club-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow); }
.club-card-image { width: 100%; aspect-ratio: 1 / 1; background-size: 50%; background-repeat: no-repeat; background-position: center; background-color: var(--surface); }
.club-card-body { padding: 22px; }
.club-card h3 { margin-top: 0; color: var(--brand-dark); }
.club-card .btn, .club-card .btn.outline { margin: 10px 8px 0 0; }
.club-card-clickable { cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.club-card-clickable:hover, .club-card-clickable:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(18,39,30,0.14); outline: none; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  max-width: 220px;
  transition: transform .15s ease, border-color .15s ease;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--brand-light); }
.blog-card-thumb { aspect-ratio: 16/10; background: #eef2ee; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb .thumb-placeholder { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); }
.blog-card-body { padding: 10px 12px 12px; }
.blog-card-body h3 { margin: 3px 0 5px; font-size: 13.5px; line-height: 1.3; color: var(--text); }
.blog-card-body p { margin: 0; color: var(--muted); font-size: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-date { color: var(--muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.blog-post-cover { border-radius: var(--radius); overflow: hidden; margin: 18px 0; aspect-ratio: 16/7; background: #eef2ee; }
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { font-size: 15.5px; line-height: 1.75; color: var(--text); margin: 18px 0; }
.blog-content p { margin: 0 0 16px; }
.blog-content ul, .blog-content ol { margin: 0 0 16px; padding-left: 22px; }
.blog-content h3, .blog-content h4 { color: var(--text); margin: 22px 0 10px; }
.blog-content a { color: var(--brand); text-decoration: underline; }
.blog-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 8px 0 18px; display: block; }
.blog-content blockquote { margin: 0 0 16px; padding: 10px 16px; border-left: 3px solid var(--brand-light); color: var(--muted); font-style: italic; }
.blog-share { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.blog-share span { font-weight: 600; font-size: 14px; }
.blog-share .btn { margin: 0; }

/* Realizacje */
.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.realizacja-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.realizacja-card:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(18,39,30,0.16); }
.realizacja-thumb { aspect-ratio: 4/3; background: #eef2ee; overflow: hidden; }
.realizacja-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .4s ease; }
.realizacja-card:hover .realizacja-thumb img { transform: scale(1.05); }
.realizacja-body { padding: 14px 16px; }
.realizacja-body h3 { margin: 0 0 6px; font-size: 16px; }
.realizacja-body p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* Opinie */
.opinie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.opinia-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.opinia-stars { color: var(--accent); display: flex; gap: 2px; margin-bottom: 10px; }
.opinia-stars svg { width: 16px; height: 16px; }
.opinia-content { font-size: 14.5px; line-height: 1.6; color: var(--text); margin: 0 0 14px; font-style: italic; }
.opinia-author { font-weight: 700; font-size: 13.5px; color: var(--brand-dark); }
.opinia-company { font-weight: 400; color: var(--muted); }

/* Footer */
footer.site-footer { background: var(--brand-dark); color: #cfe6d8; margin-top: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 44px 0 26px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 13.5px; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
  font-size: 12.5px;
  color: #9fbcac;
  text-align: center;
}
.footer-legal {
  padding: 0 20px 18px;
  font-size: 11.5px;
  color: #7a9788;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Social media */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  transition: transform .2s ease, background .2s ease;
}
.social-icon:hover { transform: translateY(-2px); background: rgba(255,255,255,0.22); }
.social-icon img { width: 20px; height: 20px; object-fit: contain; }

.footer-social { display: flex; justify-content: center; gap: 10px; padding: 14px 0 0; }

.social-header-bar {
  background: var(--brand-dark);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
}
.social-header-bar .social-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.1); }
.social-header-bar .social-icon img { width: 16px; height: 16px; }

.social-floating {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.social-floating.social-floating-left { left: 0; border-radius: 0 12px 12px 0; border-left: none; }
.social-floating.social-floating-right { right: 0; border-radius: 12px 0 0 12px; border-right: none; }
.social-floating .social-icon { background: var(--bg); }
.social-floating .social-icon:hover { background: var(--brand-light); }
@media (max-width: 700px) {
  .social-floating { display: none; }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,0.35); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 700px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Lightbox (powiększone zdjęcia produktu) */
.lightbox {
  position: fixed; inset: 0; background: rgba(10, 20, 15, 0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 500; padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,0.12); color: #fff;
  border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 18px; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); color: #fff;
  border: none; width: 52px; height: 52px; border-radius: 50%; font-size: 26px; cursor: pointer; line-height: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.12); color: #fff; font-size: 13px; padding: 5px 14px; border-radius: 999px;
}
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 20px; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--brand-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
