/* ============================================================
   apple-white — iLuxe theme
   Light minimal Apple-inspired design
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg2:       #f5f5f7;
  --bg3:       #fbfbfd;
  --border:    #d2d2d7;
  --border-l:  #e8e8ed;
  --black:     #1d1d1f;
  --gray:      #6e6e73;
  --gray-l:    #86868b;
  --blue:      #0071e3;
  --r:         14px;
  --r-lg:      20px;
  --max:       1100px;
  --pad:       40px;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* ── HEADER ── */
.aw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.aw-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 52px;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 16px;
}
.aw-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.02em;
}
.aw-logo svg { width: 18px; height: 18px; fill: var(--black); stroke: none; }

.aw-nav {
  display: flex;
  justify-content: center;
  gap: 0;
}
.aw-nav a {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  padding: 6px 12px;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .15s;
  position: relative;
}
.aw-nav a:hover { color: var(--black); }
.aw-nav a.active {
  color: var(--black);
  font-weight: 600;
}
.aw-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 12px; right: 12px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

.aw-header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.aw-header__icons a {
  color: var(--gray);
  display: flex;
  align-items: center;
  transition: color .15s;
}
.aw-header__icons a:hover { color: var(--black); }
.aw-header__icons svg { width: 20px; height: 20px; }
.aw-cart-icon { position: relative; }
.aw-cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* ── BREADCRUMBS ── */
.aw-breadcrumbs-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
}
.aw-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-l);
  flex-wrap: wrap;
}
.aw-breadcrumbs a { color: var(--gray-l); transition: color .15s; }
.aw-breadcrumbs a:hover { color: var(--black); }
.aw-bc-sep { color: var(--border); }

/* ── WRAP ── */
.aw-w {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── BUTTONS ── */
.aw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.aw-btn-black {
  background: var(--black);
  color: #fff;
}
.aw-btn-black:hover { background: #333; }
.aw-btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.aw-btn-outline:hover { background: var(--bg2); }
.aw-btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }
.aw-btn-full { width: 100%; justify-content: center; }
.aw-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── ICON CIRCLE ── */
.ico {
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ico svg { stroke: var(--black); }
.ico-64 { width: 64px; height: 64px; }
.ico-64 svg { width: 28px; height: 28px; }
.ico-56 { width: 56px; height: 56px; }
.ico-56 svg { width: 24px; height: 24px; }
.ico-48 { width: 48px; height: 48px; }
.ico-48 svg { width: 22px; height: 22px; }
.ico-80 { width: 80px; height: 80px; }
.ico-80 svg { width: 34px; height: 34px; }

/* ── EYEBROW + HEADING ── */
.aw-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-l);
  text-align: center;
  margin-bottom: 12px;
}
.aw-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-align: center;
  color: var(--black);
}
.aw-divider {
  width: 40px; height: 2px;
  background: var(--border);
  margin: 16px auto 48px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   HOME PAGE
══════════════════════════════════════ */
/* ── HERO CAROUSEL ── */
.hero-carousel {
  background: var(--bg);
  padding: 24px 0 32px;
}
.hero-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.hero-carousel__track::-webkit-scrollbar { display: none; }

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a6dff 0%, #2378ff 60%, #4a90ff 100%);
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide__text {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 560px;
  color: #fff;
}
.hero-slide__text h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-slide__text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: .92;
  margin-bottom: 28px;
}
.hero-slide__text .aw-btn {
  background: #fff;
  color: var(--black);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 26px;
}
.hero-slide__text .aw-btn:hover { background: #f0f0f5; }

.hero-slide--empty {
  background: var(--bg2);
}
.hero-slide--empty .hero-slide__text { color: var(--black); }
.hero-slide--empty .hero-slide__text p { color: var(--gray); }

.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.hero-dot.is-active {
  background: var(--black);
  width: 36px;
}
.hero-dot:hover { background: var(--gray-l); }

@media (max-width: 640px) {
  .hero-slide { min-height: 320px; border-radius: 18px; }
  .hero-slide__text { padding: 32px 24px; }
  .hero-slide__text h1 { font-size: 24px; }
  .hero-slide__text p { font-size: 14px; }
}

/* why-us */
.why-us { padding: 80px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 48px;
}
.why-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin: 16px 0 8px;
}
.why-item__desc {
  font-size: 12px;
  color: var(--gray-l);
  line-height: 1.55;
}

/* products section */
.home-products {
  background: var(--bg2);
  border-top: 1px solid var(--border-l);
  padding: 80px 0;
}
.home-sale {
  background: var(--bg);
  border-top: 1px solid var(--border-l);
  padding: 80px 0;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.prod-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--border);
}
.home-sale .prod-card { background: var(--bg2); }
.prod-card--sale:hover { box-shadow: 0 8px 32px rgba(220,38,38,.12); }

.prod-card__thumb {
  aspect-ratio: 1/1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-l);
}
.prod-card__thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Fallback SVG icon — показывается только когда нет фото */
.prod-card__thumb-icon {
  width: 64px;
  height: 64px;
  color: var(--gray-l);
  stroke: currentColor;
}
.prod-card:hover .prod-card__thumb-icon { color: var(--black); transition: color .25s; }

.prod-card__sale-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(220,38,38,.3);
}

.prod-card__body { padding: 14px 16px 18px; }
.prod-card__name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 3px; line-height: 1.3; }
.prod-card__sub  { font-size: 12px; color: var(--gray-l); margin-bottom: 6px; }
.prod-card__price { font-size: 13px; color: var(--gray-l); display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.prod-card__price strong { color: var(--black); font-weight: 700; font-size: 14px; }
.prod-card__price-sale { color: #dc2626 !important; font-weight: 800 !important; font-size: 15px !important; }
.prod-card__price-old { color: var(--gray-l); text-decoration: line-through; font-size: 12px; }

/* ══════════════════════════════════════
   SKLEP PAGE
══════════════════════════════════════ */
.sklep-hero {
  padding: 48px 0 40px;
}
.sklep-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sklep-hero__h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
  color: var(--black);
  margin-bottom: 20px;
}
.sklep-hero__sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sklep-hero__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sklep-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* Category icons row */
.cat-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 48px 0;
  text-align: center;
}
.cat-icon-item { text-decoration: none; color: inherit; }
.cat-icon-item__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: border-color .2s, box-shadow .2s;
}
.cat-icon-item__circle svg { width: 32px; height: 32px; stroke: var(--black); }
.cat-icon-item:hover .cat-icon-item__circle {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.cat-icon-item__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

/* Category tiles */
.cat-tiles-row1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.cat-tiles-row2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-bottom: 48px;
}
.cat-tile {
  background: var(--bg2);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-l);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
  min-height: 320px;
}
.cat-tile:hover {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.cat-tile__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 12px;
}
.cat-tile__list {
  list-style: none;
  margin-bottom: auto;
}
.cat-tile__list li {
  font-size: 12px;
  padding: 1px 0;
}
.cat-tile__list li::before {
  content: '· ';
  color: var(--gray-l);
}
.cat-tile__list li a {
  color: var(--gray-l);
  text-decoration: none;
  transition: color .15s;
  padding: 2px 0;
  display: inline-block;
}
.cat-tile__list li a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cat-tile__img {
  margin-top: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cat-tile__img img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}
/* Spacer для плиток без статичной картинки — занимает место чтобы кнопка прижалась к низу */
.cat-tile__spacer {
  flex: 1;
  min-height: 40px;
}
.cat-tile__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  margin-top: 16px;
  width: fit-content;
}
.cat-tile__btn:hover { background: var(--bg2); }
.cat-tile__btn svg { width: 14px; height: 14px; }

/* ===== Product detail page (PDP) gallery ===== */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 24px 0 72px;
  align-items: start;
}
.pdp-gallery { position: sticky; top: 88px; }
.pdp-stage {
  position: relative;
  background: var(--bg2);
  border-radius: var(--r-lg);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.pdp-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.pdp-stage:hover img { transform: scale(1.06); }
.pdp-stage__empty { font-size: 6rem; opacity: .2; }
.pdp-zoom-hint {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border-l);
  border-radius: 50%;
  color: var(--gray);
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.pdp-zoom-hint svg { width: 18px; height: 18px; }
.pdp-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-thumb {
  width: 64px; height: 64px;
  background: var(--bg2);
  border: 1.5px solid var(--border-l);
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb.is-active { border-color: var(--black); }
.pdp-lightbox {
  position: fixed; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.92);
  z-index: 4000;
  padding: 32px;
}
.pdp-lightbox.is-open { display: flex; }
.pdp-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: zoom-out;
  user-select: none;
}
.pdp-lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  font-size: 24px; line-height: 1;
}
.pdp-lightbox__close:hover { background: rgba(255,255,255,.25); }
.pdp-lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
}
.pdp-lightbox__nav:hover { background: rgba(255,255,255,.25); }
.pdp-lightbox__nav svg { width: 24px; height: 24px; }
.pdp-lightbox__prev { left: 24px; }
.pdp-lightbox__next { right: 24px; }
@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { position: static; }
  .pdp-lightbox__nav { width: 40px; height: 40px; }
  .pdp-lightbox__prev { left: 8px; }
  .pdp-lightbox__next { right: 8px; }
}
/* product detail in sklep */
.sklep-feature {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 12px;
}
.sklep-feature__gallery { padding: 24px; }
.sklep-feature__main-img {
  background: var(--bg);
  border-radius: var(--r);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}
.sklep-feature__main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.sklep-feature__thumbs {
  display: flex;
  gap: 8px;
}
.sklep-feature__thumb {
  width: 52px; height: 52px;
  background: var(--bg);
  border: 1.5px solid var(--border-l);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.sklep-feature__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.sklep-feature__body { padding: 40px 32px; }
.sklep-feature__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.sklep-feature__sub { font-size: 14px; color: var(--gray-l); margin-bottom: 24px; }
.sklep-feature__items { display: flex; flex-direction: column; gap: 16px; }
.sklep-feature__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sklep-feature__item-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.sklep-feature__item-desc { font-size: 13px; color: var(--gray-l); line-height: 1.5; }

/* ── PERKS STRIP ── */
.perks-strip {
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
  background: var(--bg2);
  padding: 40px 0;
}
.perks-grid {
  display: grid;
  gap: 24px;
}
.perks-grid-4 { grid-template-columns: repeat(4, 1fr); }
.perks-grid-5 { grid-template-columns: repeat(5, 1fr); }
.perks-grid-3 { grid-template-columns: repeat(3, 1fr); }
.perk { display: flex; align-items: center; gap: 14px; }
.perk--v { flex-direction: column; text-align: center; gap: 12px; }
.perk__title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.perk__sub   { font-size: 12px; color: var(--gray-l); line-height: 1.4; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  background: var(--bg2);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat__val { font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: var(--black); }
.stat__label { font-size: 13px; color: var(--gray-l); margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter__text h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.newsletter__text p  { font-size: 14px; color: var(--gray-l); max-width: 360px; }
.newsletter__form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 280px;
}
.newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: 14px var(--sans);
  color: var(--black);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}
.newsletter__input:focus { border-color: var(--black); }

/* ══════════════════════════════════════
   O NAS PAGE
══════════════════════════════════════ */
.onas-hero {
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.onas-hero__h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
  color: var(--black);
  margin-bottom: 24px;
}
.onas-hero__p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 480px;
}
.onas-hero__img {
  background: var(--bg2);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onas-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* features 4-col */
.features-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 56px 0;
}
.feature-v__title { font-size: 14px; font-weight: 700; margin: 16px 0 8px; }
.feature-v__desc  { font-size: 13px; color: var(--gray-l); line-height: 1.55; }

/* jak działamy split */
.jak-split {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin: 0 0 56px;
}
.jak-split__img {
  background: var(--bg2);
  min-height: 360px;
  overflow: hidden;
}
.jak-split__img img { width: 100%; height: 100%; object-fit: cover; }
.jak-split__body { padding: 48px 40px; }
.jak-split__h2 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 32px; }
.jak-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-l);
}
.jak-step:last-child { border-bottom: none; }
.jak-step__num { font-size: 13px; font-weight: 700; color: var(--gray-l); min-width: 28px; flex-shrink: 0; }
.jak-step__text { font-size: 14px; color: var(--black); line-height: 1.5; }

/* ══════════════════════════════════════
   DOSTAWA PAGE
══════════════════════════════════════ */
.dostawa-hero {
  padding: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.dostawa-hero__h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
  margin-bottom: 14px;
}
.dostawa-hero__sub { font-size: 15px; color: var(--gray); margin-bottom: 32px; }
.dostawa-hero__features { display: flex; flex-direction: column; gap: 20px; }
.dostawa-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dostawa-feature__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.dostawa-feature__desc  { font-size: 13px; color: var(--gray-l); line-height: 1.5; }
.dostawa-hero__img {
  background: var(--bg2);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dostawa-hero__img img { width: 100%; height: 100%; object-fit: cover; }

/* Steps row */
.steps-row {
  padding: 72px 0 64px;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border-l);
  z-index: 0;
}
.step-item__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  letter-spacing: .02em;
}
.step-item__ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-item__ico svg { width: 28px; height: 28px; stroke: var(--black); }
.step-item__title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.step-item__desc  { font-size: 12px; color: var(--gray-l); line-height: 1.5; }

/* Partners */
.partners { padding: 48px 0 64px; text-align: center; }
.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.partner-logo {
  background: var(--bg);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  transition: border-color .2s, box-shadow .2s;
}
.partner-logo:hover {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.partner-logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════
   PŁATNOŚĆ I ZWROT PAGE
══════════════════════════════════════ */
.platnosc-hero { padding: 48px 0 40px; }
.platnosc-hero__h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.platnosc-hero__sub { font-size: 16px; color: var(--gray); max-width: 540px; line-height: 1.6; }

.big-feature {
  background: var(--bg2);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--border-l);
}
.big-feature--reverse { direction: rtl; }
.big-feature--reverse > * { direction: ltr; }
.big-feature__body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.big-feature__h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 20px; }
.big-feature__p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.big-feature__img {
  background: var(--bg2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.big-feature__img img { width: 100%; height: 100%; object-fit: cover; }

.zwrot-points { display: flex; flex-direction: column; gap: 20px; }
.zwrot-point { display: flex; gap: 16px; align-items: flex-start; }
.zwrot-point__text { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* CTA Banner */
.cta-banner {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 16px 0 64px;
}
.cta-banner__text { font-size: 14px; color: var(--gray); margin-top: 4px; }
.cta-banner h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cta-banner__left { display: flex; gap: 16px; align-items: center; }

/* ══════════════════════════════════════
   KONTAKT PAGE
══════════════════════════════════════ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.kontakt-channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.kontakt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.kontakt-card:hover { border-color: var(--border); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.kontakt-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-l); margin-bottom: 2px; }
.kontakt-card__val   { font-size: 15px; font-weight: 700; color: var(--black); }
.kontakt-card__note  { font-size: 12px; color: var(--gray-l); margin-top: 2px; }

.hours-box {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 20px;
}
.hours-box__title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gray-l); margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-l);
  font-size: 13px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; }
.hours-row span:last-child  { color: var(--gray-l); }

/* form */
.contact-form-box {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-form-box h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.cf { display: flex; flex-direction: column; gap: 14px; }
.cf__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-l); display: block; margin-bottom: 6px; }
.cf__input,
.cf__select,
.cf__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: 14px var(--sans);
  color: var(--black);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.cf__input:focus, .cf__select:focus, .cf__textarea:focus { border-color: var(--black); }
.cf__textarea { resize: vertical; }
.cf__success {
  padding: 13px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  font-size: 14px;
  color: #15803d;
  display: none;
}

/* ══════════════════════════════════════
   POLITYKA PAGE
══════════════════════════════════════ */
.polityka-hero {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.polityka-hero__h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.polityka-hero__sub { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 400px; }
.polityka-hero__img {
  background: var(--bg2);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.polityka-hero__img img { width: 100%; height: 100%; object-fit: cover; }

.policy-section {
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 10px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.policy-section__body { flex: 1; }
.policy-section__h2 { font-size: 19px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.policy-section__p  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.policy-section__p:last-child { margin-bottom: 0; }
.policy-items { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.policy-item { display: flex; gap: 12px; align-items: center; font-size: 14px; }

/* ── FOOTER ── */
.aw-footer { background: var(--bg2); border-top: 1px solid var(--border-l); margin-top: 64px; }
.aw-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px var(--pad) 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.aw-footer__brand {}
.aw-footer__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.aw-footer__logo svg { width: 18px; height: 18px; fill: var(--black); stroke: none; }
.aw-footer__tagline { font-size: 13px; color: var(--gray-l); line-height: 1.6; max-width: 230px; margin-bottom: 18px; }
.aw-footer__socials { display: flex; gap: 10px; }
.aw-footer__socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: color .2s, border-color .2s;
}
.aw-footer__socials a:hover { color: var(--black); border-color: var(--border); }
.aw-footer__socials svg { width: 15px; height: 15px; }
.aw-footer__col h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.aw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aw-footer__col li a { font-size: 13px; color: var(--gray-l); transition: color .15s; }
.aw-footer__col li a:hover { color: var(--black); }
.aw-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.aw-footer__contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-l);
}
.aw-footer__contact-row svg { width: 14px; height: 14px; stroke: var(--gray-l); flex-shrink: 0; }
.aw-footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  border-top: 1px solid var(--border-l);
  font-size: 12px;
  color: var(--gray-l);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  .home-hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 24px; }
  .home-hero__left { padding: 48px 0 0; max-width: 100%; }
  .home-hero__right { height: 320px; }
  .onas-hero, .dostawa-hero, .sklep-hero__grid,
  .big-feature, .jak-split, .polityka-hero { grid-template-columns: 1fr; }
  .big-feature--reverse { direction: ltr; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .cat-tiles-row1 { grid-template-columns: repeat(2,1fr); }
  .cat-tiles-row2 { grid-template-columns: 1fr; }
  .cat-icons { grid-template-columns: repeat(4,1fr); }
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .features-4, .steps-grid, .perks-grid-5 { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .aw-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partners-logos { grid-template-columns: repeat(2,1fr); }
}

/* ─── Tablet portrait & mobile ─── */
@media (max-width: 768px) {
  .aw-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  /* hamburger button shown */
  .aw-burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    color: var(--gray);
    cursor: pointer;
    background: none;
    border: none;
  }
  .aw-burger svg { width: 22px; height: 22px; stroke: currentColor; }

  /* Header fully opaque on mobile */
  .aw-header { background: #ffffff !important; }

  /* nav as full-screen off-canvas overlay */
  .aw-nav {
    display: flex !important;
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 56px) !important;
    max-height: calc(100vh - 56px);
    background: #ffffff !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 8px var(--pad) 32px !important;
    gap: 0 !important;
    transform: translateX(-100%);
    transition: transform .25s ease;
    z-index: 999;
    border-top: 1px solid var(--border-l);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .aw-nav.is-open {
    transform: translateX(0) !important;
  }
  .aw-nav a {
    display: block !important;
    width: 100% !important;
    padding: 18px 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--black) !important;
    border-bottom: 1px solid var(--border-l) !important;
    text-align: left !important;
    background: transparent !important;
  }
  .aw-nav a.active::after { display: none !important; }
  .aw-nav a.active {
    color: var(--blue) !important;
    font-weight: 600 !important;
  }

  /* lock body scroll when menu open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }

  /* Header */
  .aw-header__inner { height: 56px; }
  .aw-logo { font-size: 16px; }
  .aw-header__icons { gap: 10px; }
  .aw-header__icons svg { width: 22px; height: 22px; }

  /* Typography — smaller on mobile */
  .home-hero__h1 { font-size: 38px !important; line-height: 1.05; }
  .home-hero__left { padding: 32px 0 0; }
  .home-hero__sub { font-size: 15px; }
  .home-hero__right { height: 260px; }

  .sklep-hero__h1, .onas-hero__h1, .dostawa-hero__h1 {
    font-size: 44px !important;
  }
  .platnosc-hero__h1, .polityka-hero__h1 {
    font-size: 34px !important;
  }
  .aw-heading { font-size: 24px; }
  .big-feature__h2 { font-size: 22px; }

  /* Layout — single column for most grids */
  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .features-4 { grid-template-columns: 1fr; }
  .perks-grid-4, .perks-grid-5 { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .perks-grid-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .aw-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--pad) 28px; }
  .cat-tiles-row1, .cat-tiles-row2 { grid-template-columns: 1fr; }
  .cat-icons { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .cat-icon-item__circle { width: 64px; height: 64px; }
  .cat-icon-item__circle svg { width: 28px; height: 28px; }

  /* Padding adjustments */
  .why-us { padding: 56px 0; }
  .home-products { padding: 56px 0; }
  .home-sale { padding: 56px 0; }
  .steps-row { padding: 56px 0 48px; }
  .partners { padding: 40px 0 56px; }
  .kontakt-layout { padding: 32px 0 56px; gap: 32px; }
  .big-feature__body { padding: 32px 24px; }
  .jak-split__body { padding: 32px 24px; }
  .policy-section { padding: 24px; gap: 20px; flex-direction: column; }

  /* Buttons — full width by default on mobile */
  .aw-btn { padding: 14px 22px; font-size: 14px; }

  /* Touch targets */
  .aw-header__icons a {
    padding: 4px;
    min-width: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer cleanup */
  .aw-footer__tagline { max-width: 100%; }

  /* Hero kontakt — smaller */
  .kontakt-card { padding: 14px 16px; }
  .kontakt-card__val { font-size: 14px; }
  .hours-box { padding: 16px; }
  .contact-form-box { padding: 24px 20px; }

  /* CTA banner stacks */
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cta-banner__left { width: 100%; }
  .cta-banner .aw-btn { width: 100%; justify-content: center; }

  /* Newsletter stacks */
  .newsletter { flex-direction: column; padding: 28px 24px; align-items: flex-start; }
  .newsletter__form { width: 100%; min-width: 0; flex-direction: column; }
  .newsletter__input { width: 100%; }
  .newsletter__form .aw-btn { width: 100%; justify-content: center; }

  /* Breadcrumbs — smaller */
  .aw-breadcrumbs-wrap { padding: 12px var(--pad); }
  .aw-breadcrumbs { font-size: 11px; }

  /* Hide hamburger default state for older browsers */
  .aw-burger { display: flex; }
}

/* burger hidden by default on desktop */
.aw-burger { display: none; }

/* ── WHY SCROLL ── */
.why-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 8px 0 12px;
  margin: 0 calc(var(--pad) * -1);
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.why-scroll::-webkit-scrollbar { display: none; }
.why-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--bg2);
  border: 1px solid var(--border-l);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.why-item__ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.why-item__ico svg { width: 28px; height: 28px; stroke: var(--black); }
