/* =====================================================================
   Per-page styles — wszystkie podstrony w jednym pliku dla cache i prostoty.
   ===================================================================== */

/* ============== MOBILE OVERRIDES (zbiorcze poprawki) ============== */
@media (max-width: 720px) {
  /* Hero CTAs układane w pion na wąskich. */
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
  .hero-stats .stat-num { font-size: 30px; }

  /* Sekcje — mniejszy spacing wewnętrzny. */
  .section { padding: 56px 16px; }
  .sec-head { margin-bottom: 32px; }
  .sec-head h2 { font-size: clamp(28px, 9vw, 40px); }

  /* Checkout steps — wrap zamiast overflow. */
  .steps { flex-wrap: wrap; gap: 14px 18px; }
  .step { font-size: 10px; }

  /* Catalog hero — tighter padding. */
  .cat-hero, .cal-hero, .sh-hero, .faq-hero { padding-left: 16px; padding-right: 16px; }
  .cat-hero h1, .cal-hero h1, .sh-hero h1, .faq-hero h1 { font-size: clamp(36px, 11vw, 56px); }

  /* Filters jako pełna szerokość na mobile, nad katalogiem. */
  .quick-filters { padding: 18px 14px; overflow-x: auto; }
  .quick-filters .qf-row { flex-wrap: nowrap; min-width: max-content; }

  /* Product page — gallery + details. */
  .product-page { padding: 18px 16px 60px; gap: 32px; }
  .gallery .main { aspect-ratio: 3/4; }
  .gallery .thumbs { grid-template-columns: repeat(4, 1fr); }

  /* Calendar months — ciaśniejsze. */
  .month { padding: 18px; }
  .month-title { font-size: 18px; }
  .day { font-size: 13px; border-radius: 6px; }

  /* Summary — full width pod kalendarzem. */
  .summary { padding: 22px; position: static; }

  /* Cart — mniej padded. */
  .ck-head { padding: 18px 16px 0; }
  .checkout { padding: 28px 16px 60px; gap: 24px; }
  .cart-item { padding: 14px; gap: 12px; }
  .cart-item h3 { font-size: 22px; }

  /* Showroom — mniejsze obrazki + odstępy. */
  .showrooms { padding: 56px 16px; gap: 56px; }
  .sh-hero { padding: 40px 16px 56px; }
  .sh-img-grid { aspect-ratio: 1; }
  .showroom .actions { gap: 8px; }
  .showroom .actions .btn { flex: 1 1 100%; }

  /* FAQ — tighter. */
  .faq-layout { padding: 32px 16px 56px; }
  .faq-content section { margin-bottom: 36px; }
  .faq-content h2 { font-size: 28px; }

  /* Promo countdown — wrap. */
  .countdown { flex-wrap: wrap; gap: 10px; }
  .countdown .cd { min-width: 72px; padding: 14px 16px; flex: 1; }
  .countdown .cd-num { font-size: 28px; }
  .promo { padding: 40px 24px; gap: 28px; }
  .promo h3 { font-size: clamp(28px, 8vw, 40px); }

  /* Footer — tighter padding na bardzo wąskich. */
  footer { padding: 56px 16px 24px; }
  footer .footer-grid { gap: 28px; grid-template-columns: 1fr 1fr; }
  footer .footer-bottom { flex-direction: column; gap: 12px; }

  /* CTA strip — mniejszy h3 i p. */
  .cta-strip { padding: 56px 16px; }
  .cta-strip h3 { font-size: clamp(32px, 9vw, 56px); }
}

/* Bardzo wąskie (telefony portrait <420px) */
@media (max-width: 420px) {
  footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats > div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .hero-stats > div:last-child { border-bottom: 0; }
  .gallery .thumbs { grid-template-columns: repeat(3, 1fr); }
}


/* ============== HERO (home) ============== */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 60px var(--pad-x) 80px;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(245,218,211,0.55), transparent 70%),
    linear-gradient(180deg, #FAF6F1 0%, #F2E8DC 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
}
.hero-copy { max-width: 640px; }
.hero-eyebrow { display: inline-flex; gap: 14px; align-items: center; margin-bottom: 24px; }
.hero-eyebrow .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 999px; }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero p.lead {
  margin-top: 28px;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 36px;
  margin-top: 60px; padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-stats .stat-num { font-family: var(--display); font-size: 40px; font-weight: 500; line-height: 1; }
.hero-stats .stat-lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

.hero-visual { position: relative; aspect-ratio: 4/5; max-height: 76vh; }
.hero-visual .img-main {
  position: absolute; inset: 0 10% 10% 0;
  border-radius: 280px 280px 8px 8px;
  overflow: hidden; background: var(--blush);
  box-shadow: var(--shadow-soft);
}
.hero-visual .img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .img-secondary {
  position: absolute; left: 30%; bottom: 0; width: 38%; aspect-ratio: 3/4;
  border-radius: 8px; overflow: hidden;
  background: var(--bg-3); box-shadow: var(--shadow-soft);
  border: 6px solid var(--bg);
}
.hero-visual .img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .price-badge {
  position: absolute; top: 36%; left: -8%;
  width: 130px; height: 130px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  font-family: var(--display);
  box-shadow: var(--shadow-soft);
}
.hero-visual .price-badge .pb-num { font-size: 28px; line-height: 1; }
.hero-visual .price-badge .pb-lbl { font-family: var(--sans); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 4px; }
.hero-visual .price-badge .pb-from { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; opacity: 0.7; }
@media (max-width: 900px) {
  .hero-visual { max-height: none; aspect-ratio: 3/4; margin-top: 24px; }
  .hero-visual .price-badge { left: 4%; width: 100px; height: 100px; }
  .hero-visual .price-badge .pb-num { font-size: 22px; }
}

/* marquee */
.marquee {
  background: var(--ink); color: var(--bg);
  padding: 16px 0;
  overflow: hidden; white-space: nowrap;
  font-family: var(--display); font-size: 26px; font-style: italic;
}
.marquee-track { display: inline-flex; gap: 60px; animation: scroll 50s linear infinite; padding-left: 60px; }
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot { width: 6px; height: 6px; background: var(--blush-2); border-radius: 999px; }
@keyframes scroll { from { transform: none; } to { transform: translateX(-50%); } }

/* categories */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1000px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .cats { grid-template-columns: repeat(2, 1fr); } }
.cat {
  position: relative; aspect-ratio: 3/4;
  border-radius: 6px; overflow: hidden;
  background: var(--bg-3);
  display: flex; align-items: flex-end;
  padding: 22px;
  color: var(--bg);
  transition: transform .35s ease;
  isolation: isolate;
}
.cat::before { content: ''; position: absolute; inset: 0; background: var(--blush); z-index: -2; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cat::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.cat:hover { transform: translateY(-4px); }
.cat .cat-name { font-family: var(--display); font-size: 32px; font-weight: 500; line-height: 1; }
.cat .cat-count { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; opacity: 0.8; }
.cat .cat-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.sec-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 56px; }
.sec-head h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 72px); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
.sec-head h2 em { font-style: italic; color: var(--accent); }
.sec-head .right { display: flex; gap: 10px; }
@media (max-width: 720px) { .sec-head { grid-template-columns: 1fr; } }

/* split */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--blush);
  border-radius: 8px; overflow: hidden;
  align-items: stretch;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .split-img { background: var(--bg-3); min-height: 520px; position: relative; overflow: hidden;}
.split .split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .split-copy { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.split .split-copy .eyebrow { color: var(--accent); }
.split .split-copy h3 {
  font-family: var(--display); font-weight: 500; font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05; margin: 20px 0 24px; letter-spacing: -0.01em;
}
.split .split-copy h3 em { font-style: italic; }
.split .split-copy p { color: var(--ink); font-size: 16px; line-height: 1.6; max-width: 460px; }
.split .split-copy .actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* lookbook */
.lookbook { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .lookbook { grid-template-columns: repeat(2, 1fr); } }
.lookbook .lb {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 4px; background: var(--bg-2);
}
.lookbook .lb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.lookbook .lb:hover img { transform: scale(1.04); }
.lookbook .lb span {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(250,246,241,0.92); padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px;
}

/* promo */
.promo {
  background: var(--ink); color: var(--bg);
  border-radius: 8px;
  padding: clamp(50px, 7vw, 100px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: center;
  position: relative; overflow: hidden;
}
.promo::before {
  content: ''; position: absolute; right: -20%; top: -20%;
  width: 60%; height: 140%; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,160,153,0.4), transparent 70%);
}
@media (max-width: 860px) { .promo { grid-template-columns: 1fr; } }
.promo h3 { font-family: var(--display); font-size: clamp(34px, 4vw, 56px); font-weight: 500; line-height: 1.1; }
.promo h3 em { font-style: italic; color: var(--blush-2); }
.promo p { margin-top: 22px; color: rgba(250,246,241,0.7); max-width: 520px; line-height: 1.7; font-size: 16px; }
.promo .code-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 28px; text-align: center;
}
.promo .code-card .lbl { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.promo .code-card .code { font-family: var(--display); font-size: 56px; font-weight: 500; letter-spacing: 0.04em; margin: 16px 0 8px; color: var(--blush-2); }
.promo .code-card .pct { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8);}

.countdown { display: flex; gap: 14px; margin-top: 36px; }
.countdown .cd {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px 22px; border-radius: 6px;
  min-width: 84px; text-align: center;
  position: relative; z-index: 1;
}
.countdown .cd-num { font-family: var(--display); font-size: 38px; font-weight: 500; line-height: 1; }
.countdown .cd-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,246,241,0.6); margin-top: 8px; }

/* why us */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-img { aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: var(--bg-2); position: relative; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img .since {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--bg); padding: 14px 18px; border-radius: 999px;
  font-family: var(--display); font-size: 14px; letter-spacing: 0.04em;
}
.why-img .since em { color: var(--accent); font-style: italic; }
.why-pillars { display: grid; gap: 0; }
.why-pillar {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start;
}
.why-pillar:last-child { border-bottom: 0; }
.why-pillar .num { font-family: var(--display); font-size: 32px; color: var(--accent); font-weight: 500; line-height: 1; }
.why-pillar h4 { font-family: var(--display); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.why-pillar p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* timeline */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 24px; left: 0; right: 0; height: 1px;
  background: var(--line-2);
  background-image: linear-gradient(90deg, var(--line-2) 50%, transparent 50%);
  background-size: 12px 1px;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } .timeline::before { display: none; } }
.tl-step { position: relative; padding-top: 60px; }
.tl-step .dot {
  position: absolute; top: 16px; left: 0;
  width: 16px; height: 16px; border-radius: 999px;
  background: var(--bg); border: 2px solid var(--accent);
}
.tl-step.active .dot { background: var(--accent); }
.tl-step .date { font-family: var(--display); font-size: 30px; font-weight: 500; }
.tl-step h4 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin: 10px 0 8px; }
.tl-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* services */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services { grid-template-columns: 1fr; } }
.service {
  padding: 28px; background: var(--bg-2);
  border-radius: 6px; transition: background .25s;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px; justify-content: space-between;
}
.service:hover { background: var(--blush); }
.service h4 { font-family: var(--display); font-size: 24px; font-weight: 500; }
.service p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.service .arr { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }

/* showroom hours block */
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 780px) { .hours { grid-template-columns: 1fr; } }
.showroom-card { padding: 36px 0; }
.showroom-card h3 { font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 1.1; }
.showroom-card .addr { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.showroom-card ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.showroom-card li {
  display: grid; grid-template-columns: 1fr auto; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.showroom-card li:last-child { border-bottom: 0; }
.showroom-card li span:first-child { color: var(--ink-soft); letter-spacing: 0.04em; }
.showroom-card li span:last-child { font-variant-numeric: tabular-nums; }
.showroom-card .note { margin-top: 18px; font-size: 13px; color: var(--ink-soft); font-style: italic; }

/* CTA */
.cta-strip {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  background: var(--blush);
  position: relative; overflow: hidden;
}
.cta-strip h3 { font-family: var(--display); font-size: clamp(40px, 6vw, 84px); font-weight: 500; line-height: 1.0; letter-spacing: -0.01em; }
.cta-strip h3 em { font-style: italic; }
.cta-strip p { max-width: 540px; margin: 24px auto 36px; color: var(--ink); font-size: 16px; line-height: 1.6; }

/* Logo-mark w CTA strip — różowe tło webp zlewa się z var(--blush) sekcji */
.cta-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.cta-logo img {
  display: block;
  height: clamp(96px, 13vw, 160px);
  width: auto;
  max-width: 90%;
  object-fit: contain;
  border-radius: 6px;
}

/* ============== CATALOG ============== */
.cat-hero {
  padding: 80px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
}
.cat-hero h1 { font-family: var(--display); font-size: clamp(48px, 6vw, 88px); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
.cat-hero h1 em { font-style: italic; color: var(--accent); }
.cat-hero .crumbs { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px;}
.cat-hero .meta { font-size: 13px; color: var(--ink-soft); }
.cat-hero .meta strong { color: var(--ink); }
@media (max-width: 720px) { .cat-hero { grid-template-columns: 1fr; } }

.quick-filters { padding: 24px var(--pad-x); border-bottom: 1px solid var(--line); }
.quick-filters .qf-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
  max-width: 1440px; margin: 0 auto;
}
.quick-filters .qf-row .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-right: 12px; }

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 48px var(--pad-x) 100px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; gap: 24px; }
  .filters { position: static !important; }
}

.filters { position: sticky; top: 100px; align-self: start; }
.filters .group { padding: 18px 0; border-bottom: 1px solid var(--line); }
.filters .group:first-child { padding-top: 0; }
.filters .group h4 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 14px; font-weight: 500;
}
.filters .group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.filters .group li label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink); cursor: pointer;
}
.filters .group li label .count { color: var(--ink-faint); font-size: 12px; }
.filters input[type=checkbox] { accent-color: var(--accent); }
.filters .swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.filters .swatch {
  aspect-ratio: 1; border-radius: 999px;
  border: 1px solid var(--line-2);
  cursor: pointer; position: relative;
}
.filters .swatch.active { box-shadow: 0 0 0 2px var(--ink); border-color: transparent; }
.filters .sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.filters .size-btn {
  min-width: 42px; height: 42px; padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent;
  font-size: 12px; letter-spacing: 0.06em; font-family: var(--sans);
  color: var(--ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.filters .size-btn:hover, .filters .size-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filters .price-range { display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.filters .price-range input {
  width: 100%; padding: 10px; border: 1px solid var(--line-2); border-radius: 4px;
  font-family: var(--sans); font-size: 13px; background: transparent;
}

/* ----- Kalendarz V2 (single-product) ---------------------------------- */
.wcv2 {
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 18px;
  background: var(--bg);
  font-family: var(--sans);
}
.wcv2-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.wcv2-title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.wcv2-nav {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--bg);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.wcv2-nav:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.wcv2-modes {
  display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap;
}
.wcv2-mode {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.wcv2-mode.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.wcv2-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 4px;
}
.wcv2-weekdays > div {
  text-align: center; font-size: 11px; color: var(--ink-faint);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 0;
}

.wcv2-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  position: relative;
}
.wcv2-grid.wcv2-loading { opacity: 0.5; pointer-events: none; }

.wcv2-day {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.wcv2-day .wcv2-num { position: relative; z-index: 2; }
.wcv2-day:not(.wcv2-disabled):hover { transform: translateY(-1px); border-color: var(--ink); }

.wcv2-outside { background: transparent; border-color: transparent; cursor: default; pointer-events: none; }
.wcv2-empty   { background: transparent; border-color: transparent; cursor: default; pointer-events: none; color: var(--ink-faint); opacity: 0.4; }

.wcv2-disabled {
  cursor: not-allowed; color: var(--ink-faint);
  background: var(--bg-2);
}
.wcv2-disabled:not(.wcv2-outside):not(.wcv2-empty) {
  opacity: 0.55;
}
.wcv2-past { text-decoration: line-through; }
.wcv2-busy {
  background: repeating-linear-gradient(45deg, transparent 0 6px, rgba(200,115,106,0.18) 6px 12px);
  color: var(--ink-faint);
}

.wcv2-free { background: var(--bg); }
.wcv2-free:hover { background: var(--blush); }

.wcv2-in-range {
  background: var(--blush);
  border-color: var(--blush-2);
  color: var(--ink);
}
.wcv2-event, .wcv2-event-end {
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-color: var(--ink);
  font-weight: 600;
}

.wcv2-badge {
  position: absolute; top: 2px; right: 3px;
  font-size: 9px; line-height: 1;
  color: var(--accent);
  z-index: 2;
  letter-spacing: 0;
}
.wcv2-event .wcv2-badge, .wcv2-in-range .wcv2-badge { color: inherit; opacity: 0.85; }

.wcv2-hint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
}

.wcv2-legend {
  margin-top: 12px; display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 11px; color: var(--ink-faint);
}
.wcv2-legend > span { display: inline-flex; align-items: center; gap: 6px; }
.wcv2-sw { width: 12px; height: 12px; border-radius: 3px; border: 1px solid var(--line-2); display: inline-block; }
.wcv2-sw-free { background: var(--bg); }
.wcv2-sw-busy { background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(200,115,106,0.18) 3px 6px); }
.wcv2-sw-range { background: var(--ink); border-color: var(--ink); }

/* Sumaryka pod kalendarzem V2 */
.wcv2-summary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 16px; padding: 16px; border: 1px solid var(--line-2); border-radius: 8px;
  background: var(--bg-2);
}
.wcv2-summary .lbl { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.wcv2-summary .val { font-family: var(--display); font-size: 18px; color: var(--ink); }
.wcv2-summary .val.muted { color: var(--ink-faint); font-family: var(--sans); font-size: 13px; }
.wcv2-summary .detail { font-size: 12px; color: var(--ink-faint); margin-top: 4px; line-height: 1.5; }
.wcv2-summary .total { font-size: 26px; color: var(--ink); }
.wcv2-summary .surcharge-note { font-size: 11px; color: var(--accent); margin-top: 2px; }

/* ----- Wyszukiwarka (page-kalendarz) ----- */
.wsr-search-form,
.wsr-search-info,
.wsr-search-results,
.wsr-search-loadmore {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
/* Hero zostaje na pełną szerokość (różowe tło) — treść wewnątrz scentrowana w 1180px */
.cal-hero > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.wsr-search-form {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 18px;
  margin: 28px auto 20px;
}
.wsr-search-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
}
.wsr-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.wsr-field label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); font-family: var(--sans);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wsr-field input, .wsr-field select {
  padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 4px;
  font-family: var(--sans); font-size: 14px; background: var(--bg);
  color: var(--ink); width: 100%; box-sizing: border-box;
}
.wsr-field.wsr-submit { justify-content: flex-end; }
.wsr-field.wsr-submit .btn { width: 100%; padding-top: 12px; padding-bottom: 12px; }

@media (max-width: 1024px) {
  .wsr-search-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wsr-search-row { grid-template-columns: 1fr 1fr; }
  .wsr-field.wsr-submit { grid-column: 1 / -1; }
  .wsr-search-form { padding: 14px; }
}
@media (max-width: 380px) {
  .wsr-search-row { grid-template-columns: 1fr; }
}

.wsr-search-info {
  text-align: center;
  margin: 12px auto 24px;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 12px 20px;
}
.wsr-search-info strong { color: var(--ink); }

.wsr-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .wsr-search-results { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wsr-card-name { font-size: 16px; }
  .wsr-card-price { font-size: 18px; }
  .wsr-card-body { padding: 10px; }
}
@media (max-width: 380px) {
  .wsr-search-results { grid-template-columns: 1fr; }
}
.wsr-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.wsr-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.wsr-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-2); }
.wsr-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.wsr-card:hover .wsr-card-img img { transform: scale(1.04); }
.wsr-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.wsr-card-cat { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.wsr-card-name { font-family: var(--display); font-size: 18px; color: var(--ink); line-height: 1.2; }
.wsr-card-size {
  display: inline-block; margin-left: 6px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.05em;
  padding: 2px 8px; background: var(--bg-2); border-radius: 99px;
  color: var(--ink-faint);
}
.wsr-card-price { font-family: var(--display); font-size: 20px; color: var(--ink); margin-top: 4px; }
.wsr-card-surch { font-size: 12px; color: var(--accent); }
.wsr-card-stock { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.wsr-card-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
  opacity: 0; transition: opacity .2s;
}
.wsr-card:hover .wsr-card-arrow { opacity: 1; }

.wsr-search-loadmore { text-align: center; margin: 16px 0 60px; }

/* ----- /Wyszukiwarka ----- */

.wsr-cta-hint {
  margin: 12px 0 6px;
  padding: 10px 12px;
  background: var(--blush);
  border: 1px solid var(--blush-2);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}

.wsr-add-to-cart[disabled], .wsr-add-to-cart.wsr-disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* ----- /Kalendarz V2 ----------------------------------- */

.subcats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.subcat-card {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; border: 1px solid var(--line-2); border-radius: 8px;
  text-decoration: none; color: var(--ink); background: var(--bg);
  transition: border-color .2s, transform .2s;
}
.subcat-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.subcat-card img {
  width: 64px; height: 80px; object-fit: cover; border-radius: 4px; flex: none;
}
.subcat-card .subcat-meta { flex: 1; }
.subcat-card .subcat-name { font-family: var(--display); font-size: 18px; }
.subcat-card .subcat-count { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.subcat-card .arrow { font-size: 18px; color: var(--ink-faint); }

.catalog-main .results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.results-bar .count { font-family: var(--display); font-size: 22px; }
.results-bar .right { display: flex; align-items: center; gap: 16px; }
.sort-select {
  border: 1px solid var(--line-2); background: transparent;
  padding: 10px 36px 10px 14px;
  font-family: var(--sans); font-size: 13px;
  border-radius: 999px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232a201c' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 10px;
  color: var(--ink);
}
.view-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.view-toggle button { background: none; border: none; padding: 6px 12px; border-radius: 999px; font-size: 12px; }
.view-toggle button.active { background: var(--ink); color: var(--bg); }

.pagination { display: flex; justify-content: center; gap: 10px; align-items: center; margin-top: 60px; }
.pagination a, .pagination span {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent;
  color: var(--ink); font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pagination .current { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pagination .nav { width: auto; padding: 0 18px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-chip {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--blush); padding: 6px 12px 6px 14px;
  border-radius: 999px; font-size: 12px;
}
.active-chip button { background: none; border: none; padding: 0; font-size: 14px; line-height: 1; cursor: pointer; }

/* ============== PRODUCT ============== */
.product-page {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 36px var(--pad-x) 80px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 980px) { .product-page { grid-template-columns: 1fr; } }
.crumbs {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 18px;
  padding: 24px var(--pad-x) 0; max-width: 1440px;
  margin-left: auto; margin-right: auto;
}
.crumbs a { color: var(--ink-soft); }

.gallery { position: sticky; top: 100px; align-self: start; }
.gallery .main {
  aspect-ratio: 3/4; background: var(--bg-2);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 12px; position: relative;
}
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main .badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; flex-direction: column; }
.gallery .main .badge {
  background: rgba(250,246,241,0.95); padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px;
}
.gallery .main .badge.blush { background: var(--blush-2); }
.gallery .thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.gallery .thumbs .th {
  aspect-ratio: 3/4; background: var(--bg-2); border-radius: 4px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
}
.gallery .thumbs .th img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs .th.active { border-color: var(--ink); }

.details h1 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.details h1 em { font-style: italic; color: var(--accent); }
.details .brand { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.details .rating { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-size: 13px; color: var(--ink-soft); }
.details .rating .stars { color: var(--accent); letter-spacing: 0.05em; }

.price-block {
  margin: 28px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.price-block .price { font-family: var(--display); font-size: 44px; font-weight: 500; line-height: 1; }
.price-block .price-meta { color: var(--ink-soft); font-size: 13px; }
.price-block .discount { background: var(--blush); padding: 4px 10px; border-radius: 999px; font-size: 12px; color: var(--ink); margin-left: auto; }

.option-group { margin-bottom: 22px; }
.option-group .lbl { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.option-group .lbl .helper { color: var(--accent); font-size: 11px; letter-spacing: 0.1em; text-transform: none;}
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; }
.opt {
  padding: 12px 18px; border: 1px solid var(--line-2); border-radius: 999px;
  background: transparent; cursor: pointer; font-family: var(--sans); font-size: 13px;
  color: var(--ink); position: relative;
}
.opt.unavail { color: var(--ink-faint); text-decoration: line-through; cursor: not-allowed; }
.opt.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.opt-swatch {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-2);
  cursor: pointer; position: relative;
}
.opt-swatch.active { box-shadow: 0 0 0 2px var(--ink); }

.date-summary {
  background: var(--blush);
  border-radius: 8px;
  padding: 22px;
  margin: 24px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
}
.date-summary .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.date-summary .dates { font-family: var(--display); font-size: 24px; font-weight: 500; margin-top: 4px; }
.date-summary .days { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.date-summary a, .date-summary button { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); white-space: nowrap; background: none; border: 0; cursor: pointer; }

.ctas { display: flex; gap: 10px; margin: 28px 0 20px; }
.ctas .btn { flex: 1; }

.quick-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.qi { border: 1px solid var(--line); border-radius: 6px; padding: 16px; font-size: 13px; }
.qi h5 { font-family: var(--display); font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.qi p { color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

.desc-block { margin: 60px 0; max-width: 720px; }
.desc-block h3 { font-family: var(--display); font-size: 28px; font-weight: 500; margin-bottom: 16px; }
.desc-block p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table td { padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--ink-soft); width: 200px; }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.accordion summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; font-family: var(--display); font-size: 22px; font-weight: 500; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 24px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary::after { content: '–'; }
.accordion .acc-content { padding-top: 16px; color: var(--ink-soft); line-height: 1.7; font-size: 14px; }

.related { padding: 80px var(--pad-x) 100px; max-width: 1440px; margin: 0 auto; }

/* ============== CALENDAR PAGE ============== */
.cal-hero {
  padding: 64px 0 32px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
}
.cal-hero .crumbs { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; padding: 0; }
.cal-hero h1 { font-family: var(--display); font-size: clamp(46px, 6vw, 88px); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; max-width: 920px; }
.cal-hero h1 em { font-style: italic; color: var(--accent); }
.cal-hero p { max-width: 640px; color: var(--ink-soft); margin-top: 18px; font-size: 16px; }

.variant-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: var(--bg-2); border-radius: 999px;
  max-width: max-content;
  margin: 32px var(--pad-x) 0;
}
.variant-tabs button {
  background: none; border: none; padding: 12px 22px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; color: var(--ink-soft);
  font-family: var(--sans); font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.variant-tabs button.active { background: var(--ink); color: var(--bg); }
.variant-meta {
  padding: 14px var(--pad-x) 0;
  font-size: 13px; color: var(--ink-soft);
  max-width: 720px;
}
.variant-meta strong { color: var(--ink); }

.cal-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  padding: 48px var(--pad-x) 80px;
  max-width: 1440px; margin: 0 auto;
  align-items: start;
}
@media (max-width: 1000px) { .cal-layout { grid-template-columns: 1fr; } }

.month {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}
.months { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .months { grid-template-columns: 1fr; } }

.month-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.month-head .nav-btns { display: flex; gap: 6px; }
.month-head .nav-btns button {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line-2); background: transparent;
  font-size: 14px; color: var(--ink); cursor: pointer;
}
.month-head .nav-btns button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.month-title { font-family: var(--display); font-size: 22px; font-weight: 500; }
.month-title small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-soft); margin-left: 8px; text-transform: uppercase; }

.weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.weekdays div { text-align: center; padding: 6px 0; }

.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-family: var(--sans);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background .15s;
  color: var(--ink);
}
.day:hover:not(.busy):not(.disabled):not(.outside) { background: var(--bg-2); }
.day.outside { color: var(--ink-faint); cursor: default; opacity: 0.4; }
.day.disabled { color: var(--ink-faint); cursor: not-allowed; text-decoration: line-through; }
.day.busy { background: rgba(200,115,106,0.16); color: #963c34; cursor: not-allowed; }
.day.busy::after { content:''; position:absolute; right:6px; top:6px; width:5px; height:5px; border-radius:999px; background:var(--busy); }
.day.today { font-weight: 600; outline: 1px solid var(--accent); outline-offset: -2px; }
.day.selected { background: var(--ink); color: var(--bg); }
.day.in-range { background: var(--blush); color: var(--ink); border-radius: 0; }
.day.start { background: var(--ink); color: var(--bg); border-radius: 999px 0 0 999px; }
.day.end { background: var(--ink); color: var(--bg); border-radius: 0 999px 999px 0; }
.day.start.end { border-radius: 999px; }
.day.suggested { background: rgba(184,150,104,0.18); color: var(--ink); }
.day.event { background: var(--accent); color: #fff; border-radius: 999px; font-weight: 600; }

.legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 12px; color: var(--ink-soft); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend .sw { width: 14px; height: 14px; border-radius: 4px; }

.summary {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 32px;
  position: sticky; top: 100px;
}
.summary h3 { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1.1; }
.summary .dress {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.summary .dress .thumb { aspect-ratio: 3/4; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.summary .dress .thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary .dress h4 { font-family: var(--display); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.summary .dress .m { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.summary .dress .change { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: 8px; display: inline-block; }

.summary .rows { display: grid; gap: 10px; padding: 8px 0; }
.summary .row { display: grid; grid-template-columns: 1fr auto; align-items: center; font-size: 14px; }
.summary .row .k { color: var(--ink-soft); }
.summary .row .v { font-family: var(--sans); font-weight: 500; }
.summary hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
.summary .total-row .k { font-family: var(--display); font-size: 18px; }
.summary .total-row .v { font-family: var(--display); font-size: 28px; font-weight: 500; }

.pickup-options { display: grid; gap: 10px; margin: 10px 0; }
.pickup-option {
  border: 1px solid var(--line-2); border-radius: 6px;
  padding: 14px 16px;
  cursor: pointer;
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  transition: border-color .2s, background .2s;
}
.pickup-option .radio {
  width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.pickup-option .radio::after { content:''; width:10px; height:10px; border-radius:999px; background: var(--accent); transform: scale(0); transition: transform .2s; }
.pickup-option.active { border-color: var(--ink); background: var(--bg); }
.pickup-option.active .radio { border-color: var(--accent); }
.pickup-option.active .radio::after { transform: scale(1); }
.pickup-option h5 { font-size: 14px; font-weight: 500; margin: 0; }
.pickup-option p { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.pickup-option .price { font-size: 13px; font-weight: 500; }

.coupon { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 8px 0; }
.coupon input {
  padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  font-family: var(--sans); font-size: 13px; background: var(--bg);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.coupon button {
  padding: 12px 18px; border: none; background: var(--ink); color: var(--bg);
  border-radius: 999px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer;
}
.coupon-applied {
  background: var(--blush); padding: 10px 16px; border-radius: 999px;
  font-size: 12px; display: flex; justify-content: space-between; align-items: center;
  margin: 10px 0;
}
.coupon-applied strong { letter-spacing: 0.1em; }
.coupon-applied button { background: none; border: none; cursor: pointer; font-size: 14px; }

.alt-card {
  background: var(--bg);
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  padding: 22px;
  margin-top: 24px;
}
.alt-card h4 { font-family: var(--display); font-size: 22px; font-weight: 500; }
.alt-card p { font-size: 13px; color: var(--ink-soft); margin: 6px 0 16px; line-height: 1.5; }
.alt-dates { display: flex; gap: 8px; flex-wrap: wrap; }
.alt-dates button {
  border: 1px solid var(--line-2); background: var(--bg-2);
  padding: 10px 14px; border-radius: 6px;
  font-family: var(--sans); font-size: 13px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.alt-dates button:hover { background: var(--blush); border-color: var(--blush-2); }

.event-input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.event-input label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.event-input input {
  width: 100%; padding: 18px 20px;
  border: 1px solid var(--line-2); border-radius: 6px;
  font-family: var(--display); font-size: 28px; font-weight: 500;
  background: var(--bg-2); color: var(--ink);
}
.event-input .quick { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.event-input .quick button {
  background: transparent; border: 1px solid var(--line-2);
  padding: 8px 14px; border-radius: 999px; font-size: 12px;
  color: var(--ink-soft); cursor: pointer;
}
.event-input .quick button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.timeline-mini {
  background: var(--blush); border-radius: 8px; padding: 28px;
  margin-top: 24px;
}
.timeline-mini h4 { font-family: var(--display); font-size: 22px; font-weight: 500; margin-bottom: 18px;}
.tl-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative;}
.tl-mini-grid::before { content:''; position: absolute; top: 18px; left: 8%; right: 8%; height: 1px; background: rgba(42,32,28,0.2); background-image: linear-gradient(90deg, rgba(42,32,28,0.3) 50%, transparent 50%); background-size: 8px 1px; }
.tl-mini { position: relative; padding-top: 36px; text-align: center; }
.tl-mini .dot { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 999px; background: var(--bg); border: 2px solid var(--ink); }
.tl-mini.event .dot { background: var(--accent); border-color: var(--accent); width: 18px; height: 18px; top: 8px; }
.tl-mini .d { font-family: var(--display); font-size: 22px; font-weight: 500; }
.tl-mini .lbl { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 720px) { .tl-mini-grid { grid-template-columns: 1fr 1fr; } .tl-mini-grid::before { display: none; } }

.compare-strip {
  display: flex; gap: 12px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  overflow-x: auto;
}
.compare-card {
  flex: 0 0 auto;
  display: grid; grid-template-columns: 56px 1fr; gap: 12px;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 8px;
  padding: 10px 16px 10px 10px;
  min-width: 220px;
  align-items: center;
}
.compare-card .t { aspect-ratio: 3/4; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.compare-card .t img { width: 100%; height: 100%; object-fit: cover; }
.compare-card h5 { font-family: var(--display); font-size: 18px; font-weight: 500; margin: 0; }
.compare-card .sw { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.compare-card .m { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 2px; display: flex; gap: 6px; align-items: center; }
.compare-add {
  flex: 0 0 auto;
  border: 1px dashed var(--line-2);
  border-radius: 8px;
  padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ink-soft); cursor: pointer;
  min-width: 130px; font-size: 12px;
  background: transparent; text-align: center;
  line-height: 1.3;
}

.day.multi-busy { background: rgba(200,115,106,0.10); color: var(--ink); }
.day-stripes { position: absolute; left: 4px; right: 4px; bottom: 4px; display: flex; gap: 2px; pointer-events: none;}
.day-stripes span { flex: 1; height: 3px; border-radius: 999px; opacity: 0.95; }
.all-available {
  background: var(--ok); color: #fff; border-radius: 999px;
  font-size: 11px; padding: 3px 8px;
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  letter-spacing: 0.04em;
}

/* ============== CHECKOUT ============== */
.checkout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  padding: 60px var(--pad-x) 100px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; gap: 32px; } }

.ck-head { padding: 24px var(--pad-x) 0; max-width: 1440px; margin: 0 auto;}
.ck-head .crumbs { padding: 0; margin-bottom: 14px;}
.ck-head h1 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
.ck-head h1 em { font-style: italic; color: var(--accent); }

.steps {
  display: flex; gap: 28px;
  padding: 24px var(--pad-x) 0;
  max-width: 1440px; margin: 0 auto;
}
.step {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-faint);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.step .n {
  width: 28px; height: 28px; border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 14px;
}
.step.active { color: var(--ink); }
.step.active .n { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.step.done .n { background: var(--blush); border-color: var(--blush-2); color: var(--ink); }

.cart-items { background: var(--bg-2); border-radius: 8px; padding: 6px; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 20px;
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: 6px;
}
.cart-item:last-child { margin-bottom: 0; }
.cart-item .thumb { aspect-ratio: 3/4; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h3 { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 1.1; }
.cart-item .m { font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 6px; }
.cart-item .term {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blush);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}
.cart-item .term a { color: var(--accent); margin-left: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;}
.cart-item .actions { display: flex; gap: 14px; margin-top: 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);}
.cart-item .actions a { cursor: pointer; }
.cart-item .actions a:hover { color: var(--accent); }
.cart-item .price { text-align: right; font-family: var(--display); font-size: 28px; font-weight: 500; }
.cart-item .price small { display: block; font-family: var(--sans); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.08em; }
@media (max-width: 640px) { .cart-item { grid-template-columns: 80px 1fr; } .cart-item .price { grid-column: 1 / -1; text-align: left; } }

.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  margin-top: 24px;
}
.form-card h3 { font-family: var(--display); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.form-card p.sub { color: var(--ink-soft); font-size: 13px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: transparent;
  font-family: var(--sans); font-size: 14px;
  color: var(--ink);
}
.input:focus { outline: none; border-color: var(--ink); }
.field-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; display: block; }

.delivery-options { display: grid; gap: 10px; margin-top: 6px; }
.delivery-option {
  border: 1px solid var(--line-2); border-radius: 6px;
  padding: 16px 18px;
  cursor: pointer;
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center;
  transition: border-color .2s, background .2s;
}
.delivery-option .radio { width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; }
.delivery-option .radio::after { content:''; width:10px; height:10px; border-radius:999px; background: var(--accent); transform: scale(0); transition: transform .2s; }
.delivery-option.active { border-color: var(--ink); background: var(--bg-2); }
.delivery-option.active .radio::after { transform: scale(1); }
.delivery-option.active .radio { border-color: var(--accent); }

.upsell { background: var(--blush); border-radius: 8px; padding: 22px; margin-top: 24px; }
.upsell h4 { font-family: var(--display); font-size: 22px; font-weight: 500; }
.upsell .row2 { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; margin-top: 14px; padding: 10px; background: var(--bg); border-radius: 6px; }
.upsell .row2 .t { aspect-ratio: 1; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.upsell .row2 .t img { width: 100%; height: 100%; object-fit: cover; }
.upsell .row2 h5 { font-family: var(--display); font-size: 17px; font-weight: 500; }
.upsell .row2 button { background: var(--ink); color: var(--bg); border: none; padding: 8px 14px; border-radius: 999px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }

.reassure { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.reassure .r { padding: 14px; background: var(--bg-2); border-radius: 6px; font-size: 13px; }
.reassure .r h5 { font-family: var(--display); font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.reassure .r p { color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

/* ============== SHOWROOM ============== */
.sh-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 60px var(--pad-x) 80px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
  align-items: center;
}
@media (max-width: 900px) { .sh-hero { grid-template-columns: 1fr; } }
.sh-hero .crumbs { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; padding: 0; }
.sh-hero h1 { font-family: var(--display); font-size: clamp(50px, 7vw, 96px); font-weight: 500; line-height: 1; letter-spacing: -0.01em;}
.sh-hero h1 em { font-style: italic; color: var(--accent); }
.sh-hero p { color: var(--ink-soft); margin-top: 22px; font-size: 17px; line-height: 1.7; max-width: 480px; }
.sh-hero .visual { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: var(--bg-3); }
.sh-hero .visual img { width: 100%; height: 100%; object-fit: cover; }

.showrooms { padding: var(--section-y) var(--pad-x); max-width: 1440px; margin: 0 auto; display: grid; gap: 80px; }
.showroom { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showroom.reverse { direction: rtl; }
.showroom.reverse > * { direction: ltr; }
@media (max-width: 900px) { .showroom, .showroom.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr;} }

.sh-img-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; aspect-ratio: 4/5; }
.sh-img-grid > div { border-radius: 6px; overflow: hidden; background: var(--bg-3); }
.sh-img-grid > div img { width: 100%; height: 100%; object-fit: cover; }
.sh-img-grid .col { display: grid; grid-template-rows: 1fr 1fr; gap: 8px;}

.sh-info h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.sh-info h2 em { font-style: italic; color: var(--accent); }
.sh-info .addr-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 28px 0;
  padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.sh-info .ai .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.sh-info .ai .val { font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1.3; }
.sh-info ul.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sh-info ul.hours li { display: grid; grid-template-columns: 1fr auto; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.sh-info ul.hours li:last-child { border-bottom: 0; }
.sh-info ul.hours li span:first-child { color: var(--ink-soft); }
.sh-info ul.hours li span:last-child { font-variant-numeric: tabular-nums; font-weight: 500; }
.sh-info ul.hours li.closed span:last-child { color: var(--ink-faint); font-weight: 400; }
.sh-info .note { margin-top: 18px; font-size: 13px; color: var(--ink-soft); font-style: italic; }
.sh-info .actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.visit { padding: var(--section-y) var(--pad-x); background: var(--bg-2); }
.visit .grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .visit .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .visit .grid { grid-template-columns: 1fr; } }
.visit-step { background: var(--bg); padding: 32px; border-radius: 6px; min-height: 240px; display: flex; flex-direction: column; gap: 12px; }
.visit-step .n { font-family: var(--display); font-size: 48px; color: var(--accent); line-height: 1; }
.visit-step h4 { font-family: var(--display); font-size: 22px; font-weight: 500; }
.visit-step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.book { padding: var(--section-y) var(--pad-x); max-width: 1080px; margin: 0 auto; text-align: center; }
.book h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.05; }
.book h2 em { font-style: italic; color: var(--accent); }
.book p { color: var(--ink-soft); margin-top: 18px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 16px; line-height: 1.6;}
.book-form { margin-top: 36px; background: var(--bg-2); border-radius: 8px; padding: 32px; text-align: left; }
.book-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;}
.book-form .row.full { grid-template-columns: 1fr; }
.book-form input, .book-form select, .book-form textarea {
  width: 100%; padding: 16px 18px;
  border: 1px solid var(--line-2); border-radius: 6px;
  background: var(--bg); font-family: var(--sans); font-size: 14px;
  color: var(--ink);
}
.book-form label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; display: block; }

/* ============== FAQ ============== */
.faq-hero {
  padding: 64px var(--pad-x) 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
}
@media (max-width: 800px) { .faq-hero { grid-template-columns: 1fr; } }
.faq-hero .crumbs { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; padding: 0;}
.faq-hero h1 { font-family: var(--display); font-size: clamp(52px, 7vw, 96px); font-weight: 500; line-height: 1; letter-spacing: -0.01em;}
.faq-hero h1 em { font-style: italic; color: var(--accent); }
.faq-hero .search {
  background: var(--bg); border-radius: 999px;
  padding: 6px 6px 6px 24px;
  display: grid; grid-template-columns: 18px 1fr auto; align-items: center;
  gap: 14px;
  border: 1px solid var(--line-2);
  margin-top: 18px;
}
.faq-hero .search input { border: none; background: transparent; padding: 16px 0; font-family: var(--sans); font-size: 15px; outline: none; }
.faq-hero .search button {
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 999px;
  padding: 14px 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
}
.faq-hero .quick-tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap;}
.faq-hero .quick-tags a {
  background: rgba(250,246,241,0.7);
  border: 1px solid var(--line-2);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; color: var(--ink); letter-spacing: 0.04em;
}
.faq-hero .quick-tags a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 60px var(--pad-x) 80px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } .faq-nav { position: static !important; } }
.faq-nav { position: sticky; top: 100px; align-self: start; }
.faq-nav h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500;}
.faq-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.faq-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
}
.faq-nav a:hover, .faq-nav a.active { color: var(--ink); background: var(--bg-2); border-left-color: var(--accent); }

.faq-content section { margin-bottom: 64px; scroll-margin-top: 100px; }
.faq-content h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 48px); font-weight: 500; margin-bottom: 8px; }
.faq-content h2 em { font-style: italic; color: var(--accent); }
.faq-content .sec-sub { color: var(--ink-soft); margin-bottom: 24px; font-size: 15px;}

.faq-content details {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 10px;
  background: var(--bg);
  transition: background .2s;
}
.faq-content details[open] { background: var(--bg-2); border-color: var(--line-2); }
.faq-content summary {
  cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 1fr 24px; gap: 14px; align-items: center;
  font-size: 17px; font-weight: 500;
}
.faq-content summary::-webkit-details-marker { display: none; }
.faq-content summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--accent); justify-self: end; }
.faq-content details[open] summary::after { content: '–'; }
.faq-content .a { padding-top: 14px; color: var(--ink-soft); line-height: 1.7; font-size: 15px; }
.faq-content .a a { color: var(--accent); text-decoration: underline; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.cc {
  background: var(--bg-2);
  padding: 28px;
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 6px;
}
.cc .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.cc .v { font-family: var(--display); font-size: 24px; font-weight: 500; }
.cc .v.sm { font-size: 18px; }
.cc .meta { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

.help-cta {
  background: var(--ink); color: var(--bg);
  padding: 80px var(--pad-x);
  text-align: center;
}
.help-cta h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 64px); font-weight: 500; line-height: 1.1; }
.help-cta h2 em { font-style: italic; color: var(--blush-2); }
.help-cta p { color: rgba(250,246,241,0.7); margin: 18px auto 32px; max-width: 540px; font-size: 16px; line-height: 1.6;}
.help-cta .btn { background: var(--blush-2); border-color: var(--blush-2); color: var(--ink); }
.help-cta .btn:hover { background: var(--blush); border-color: var(--blush); }

/* WC notice tweaks */
.woocommerce-notices-wrapper { padding: 0 var(--pad-x); max-width: 1440px; margin: 0 auto; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: var(--blush); color: var(--ink); border-radius: 8px;
  padding: 16px 20px; margin-bottom: 16px; list-style: none;
  border-left: 3px solid var(--accent);
}
.woocommerce-error { background: rgba(200,115,106,0.18); }

/* ============== CART DRAWER (slide-in z prawej) ============== */
.wsr-no-scroll { overflow: hidden; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }

.cart-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(42,32,28,0.45);
  opacity: 0;
  transition: opacity .25s ease;
  cursor: pointer;
}
.cart-drawer.is-open .cart-drawer-overlay { opacity: 1; }

.cart-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  display: flex; flex-direction: column;
  box-shadow: -16px 0 50px -20px rgba(80,40,30,0.35);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.cart-drawer-close {
  width: 36px; height: 36px;
  background: none; border: none;
  border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .15s;
}
.cart-drawer-close:hover { background: var(--bg-2); }

.cart-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 22px 24px;
}

/* Styling dla WooCommerce mini-cart inside drawer */
.cart-drawer .woocommerce-mini-cart {
  list-style: none !important;
  padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.cart-drawer .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  list-style: none !important;
  position: relative;
}
.cart-drawer .woocommerce-mini-cart-item img {
  width: 64px; height: 80px; object-fit: cover; border-radius: 4px;
}
.cart-drawer .woocommerce-mini-cart-item a:not(.remove) {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  color: var(--ink); line-height: 1.2;
  display: block;
  text-decoration: none;
}
.cart-drawer .woocommerce-mini-cart-item .quantity {
  font-size: 12px; color: var(--ink-soft);
  display: block; margin-top: 4px;
  letter-spacing: 0.04em;
}
.cart-drawer .woocommerce-mini-cart-item .variation,
.cart-drawer .woocommerce-mini-cart-item dl {
  font-size: 11px; color: var(--ink-soft);
  margin: 4px 0 0; padding: 0;
}
.cart-drawer .woocommerce-mini-cart-item .variation dt,
.cart-drawer .woocommerce-mini-cart-item .variation dd { display: inline; margin: 0; }
.cart-drawer .woocommerce-mini-cart-item .remove,
.cart-drawer .woocommerce-mini-cart-item .remove_from_cart_button {
  position: absolute;
  top: 12px; right: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink-soft) !important;
  font-size: 14px;
  text-decoration: none !important;
}
.cart-drawer .woocommerce-mini-cart-item .remove:hover { background: var(--accent); color: #fff !important; }

.cart-drawer .woocommerce-mini-cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
  margin: 12px 0 18px;
}
.cart-drawer .woocommerce-mini-cart__total strong {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.cart-drawer .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}

.cart-drawer .woocommerce-mini-cart__buttons {
  display: grid; gap: 10px; padding: 0;
}
.cart-drawer .woocommerce-mini-cart__buttons .button {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.cart-drawer .woocommerce-mini-cart__buttons .button:hover {
  background: var(--accent); border-color: var(--accent);
}
.cart-drawer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: transparent; color: var(--ink);
}
.cart-drawer .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
  background: var(--ink); color: var(--bg);
}

.cart-drawer .woocommerce-mini-cart__empty-message {
  text-align: center;
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  color: var(--ink-soft);
  padding: 40px 0;
}

/* ============== SEARCH OVERLAY ============== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}
.search-overlay.is-open { visibility: visible; pointer-events: auto; }

.search-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(42,32,28,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .2s ease;
  cursor: pointer;
}
.search-overlay.is-open .search-overlay-bg { opacity: 1; }

.search-overlay-inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  padding: 32px var(--pad-x) 36px;
  box-shadow: 0 20px 60px -20px rgba(80,40,30,0.35);
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
}
.search-overlay.is-open .search-overlay-inner { transform: translateY(0); }

.search-overlay-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: var(--bg-2); border: none;
  border-radius: 999px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.search-overlay-close:hover { background: var(--blush); }

.search-overlay-form {
  max-width: 760px; margin: 0 auto;
}
.search-overlay-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.search-overlay-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.search-overlay-row svg { color: var(--ink-soft); flex-shrink: 0; }
.search-overlay-row input {
  border: 0; background: transparent; outline: none;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  width: 100%;
  letter-spacing: -0.005em;
}
.search-overlay-row input::placeholder { color: var(--ink-faint); }
.search-overlay-row button {
  padding: 10px 18px; font-size: 11px; letter-spacing: 0.18em;
}

.search-overlay-suggest {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.search-overlay-suggest .muted { margin-right: 4px; }

@media (max-width: 720px) {
  .search-overlay-inner { padding: 24px 16px; }
  .search-overlay-row { padding: 10px 14px; }
  .search-overlay-row input { font-size: 17px; }
  .search-overlay-row button { padding: 8px 14px; }
}

/* ============== ACCOUNT HERO ============== */
.account-hero {
  padding: 60px var(--pad-x) 36px;
  background: linear-gradient(180deg, var(--blush) 0%, var(--bg) 100%);
}
.account-hero .crumbs {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; padding: 0;
}
.account-hero h1 {
  font-family: var(--display); font-size: clamp(40px, 6vw, 72px);
  font-weight: 500; line-height: 1.02; letter-spacing: -0.01em;
}
.account-hero h1 em { font-style: italic; color: var(--accent); }
.account-hero p { color: var(--ink-soft); margin-top: 14px; max-width: 480px; font-size: 16px; line-height: 1.6; }

.page-wc-wrapper {
  padding: 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* ============== MY ACCOUNT (WooCommerce default templates) ============== */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px var(--pad-x) 100px;
}
@media (max-width: 860px) {
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 28px; padding: 32px 16px 80px; }
}

/* Stan wylogowany — formularze login/register centerowane, single column. */
body:not(.logged-in).woocommerce-account .woocommerce {
  grid-template-columns: 1fr;
  max-width: 520px;
  gap: 28px;
  padding-top: 40px;
}
body:not(.logged-in).woocommerce-account .woocommerce > h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  margin: 0 0 -14px 0;
}
body:not(.logged-in).woocommerce-account .woocommerce-form-login,
body:not(.logged-in).woocommerce-account .woocommerce-form-register {
  background: var(--bg-2);
  border-radius: 14px;
  padding: 32px 28px;
  margin-top: 0 !important;
  box-shadow: 0 10px 30px -20px rgba(80,40,30,0.15);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky; top: 110px; align-self: start;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0; margin: 0;
  display: grid; gap: 4px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li { list-style: none !important; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .15s, color .15s;
  border-left: 2px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--bg-2); color: var(--ink);
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: var(--bg-2); color: var(--ink);
  border-left-color: var(--accent); font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content {
  font-size: 15px; line-height: 1.7;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: var(--display);
  font-weight: 500;
  margin-bottom: 14px;
}
.woocommerce-account .woocommerce-MyAccount-content h2 { font-size: clamp(28px, 3vw, 40px); }
.woocommerce-account .woocommerce-MyAccount-content h3 { font-size: 22px; margin-top: 28px; }

/* Login/register forms */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-form-lost-password,
.woocommerce-form-track-order {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 36px;
  margin-top: 24px;
}
.woocommerce-form-row {
  display: flex; flex-direction: column;
  margin-bottom: 18px;
}
.woocommerce-form-row label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="tel"],
.woocommerce-account input[type="password"],
.woocommerce-form-lost-password input[type="text"],
.woocommerce-form-lost-password input[type="email"],
.woocommerce-edit-address input,
.woocommerce-edit-address select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.woocommerce-account input:focus,
.woocommerce-form-lost-password input:focus,
.woocommerce-edit-address input:focus,
.woocommerce-edit-address select:focus {
  outline: none; border-color: var(--ink);
}

/* WC buttons within my-account */
.woocommerce-account .button,
.woocommerce-account .woocommerce-button,
.woocommerce-form-lost-password .button,
.woocommerce-edit-address .button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.woocommerce-account .button:hover,
.woocommerce-account .woocommerce-button:hover {
  background: var(--accent); border-color: var(--accent);
}

/* My orders table */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account table.shop_table th {
  text-align: left;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account table.shop_table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.woocommerce-account .woocommerce-orders-table mark.order-status {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blush);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Address book */
.woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 18px; }
@media (max-width: 720px) { .woocommerce-Addresses { grid-template-columns: 1fr; } }
.woocommerce-Address {
  background: var(--bg-2);
  padding: 28px; border-radius: 12px;
}
.woocommerce-Address-title {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.woocommerce-Address-title h3 { margin: 0 !important; }
.woocommerce-Address-title .edit {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}

/* Dashboard greeting */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Lost password link, etc. */
.woocommerce-LostPassword { margin-top: 14px; font-size: 13px; }
.woocommerce-LostPassword a { color: var(--accent); }

/* Coupon notice */
.woocommerce-info, .woocommerce-message {
  background: var(--blush); color: var(--ink);
  border-radius: 8px;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  list-style: none;
  margin-bottom: 16px;
}
.woocommerce-info a, .woocommerce-message a { color: var(--accent); }

/* Hide woocommerce default form labels above checkboxes (rememberme) */
.woocommerce-form-login__rememberme {
  display: inline-flex !important; gap: 8px; align-items: center;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 18px;
}
.woocommerce-form-login__rememberme input { width: auto !important; margin: 0; }

/* Search results page — używaj layoutu katalogu */
.search.search-results .catalog-layout,
.search-no-results .catalog-layout { grid-template-columns: 1fr; }

/* =====================================================================
   MOBILE & TABLET — kompleksowe overrides na końcu pliku.
   Standardowe breakpointy: 1024 (tablet) / 768 (mobile L) / 480 (mobile).
   ===================================================================== */

/* Touch-friendly defaults — niezależnie od ekranu, jeśli pointer:coarse */
@media (pointer: coarse) {
  .btn, button.btn,
  .nav-icons button, .nav-icons a,
  .opt, .opt-swatch, .size-btn,
  .wsr-add-to-cart, .single_add_to_cart_button,
  input[type="submit"] { min-height: 44px; }
  input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
  input[type="number"], input[type="search"], input[type="password"], select, textarea {
    min-height: 44px; font-size: 16px; /* 16px = bez zoom-in na iOS */
  }
  a, button { -webkit-tap-highlight-color: rgba(0,0,0,0.04); }
}

/* ---------- ≤ 1024px (tablet, landscape phone) ---------- */
@media (max-width: 1024px) {
  /* Catalog: sidebar staje się collapsible (klik nagłówek otwiera) — domyślnie zwijam */
  .catalog-layout { grid-template-columns: 1fr; gap: 18px; }
  .filters { position: static !important; padding: 0; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
  .filters details, .filters .filters-mobile-toggle { /* room for theme to add later */ }

  /* Single product — gallery + details stack juz przy 980px, padding mniejszy */
  .product-page { padding: 32px 20px 60px; gap: 28px; }
  .gallery { position: static; }

  /* Subcats grid — mniejsze kafle */
  .subcat-card img { width: 56px; height: 70px; }
  .subcat-card .subcat-name { font-size: 16px; }
}

/* ---------- ≤ 768px (mobile landscape, tablet portrait) ---------- */
@media (max-width: 768px) {
  /* Hero strony głównej */
  .hero { min-height: auto; padding: 40px 18px 60px; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 36px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px) !important; line-height: 1.05; }
  .hero .lead { font-size: 15px; }
  .hero-visual { order: 2; }
  .hero-visual .img-main, .hero-visual .img-secondary { max-width: 100%; }
  .price-badge { top: 12px; right: 12px; transform: scale(0.85); transform-origin: top right; }

  /* Marquee */
  .marquee { font-size: 11px; }

  /* Categories cards on home — horizontal list-style (zdjęcie po lewej, tekst po prawej) */
  .cats { grid-template-columns: 1fr !important; gap: 12px; }
  .cat {
    aspect-ratio: auto !important;
    flex-direction: row;
    align-items: center;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line-2);
  }
  .cat::before, .cat::after { display: none !important; }
  .cat img {
    position: relative !important;
    inset: auto !important;
    width: 110px !important;
    height: 140px !important;
    object-fit: cover;
    z-index: 0 !important;
    flex: none;
  }
  .cat > div:not(.cat-arrow) {
    flex: 1;
    padding: 14px 14px 14px 18px;
    min-width: 0;
  }
  .cat .cat-name { font-size: 20px; color: var(--ink); }
  .cat .cat-count { color: var(--ink-faint); opacity: 1; }
  .cat .cat-arrow {
    position: relative !important;
    top: auto !important; right: auto !important;
    margin-right: 14px;
    width: 32px; height: 32px;
    background: var(--bg-2);
    color: var(--ink);
    backdrop-filter: none;
    flex: none;
  }

  /* Split sekcje */
  .split { gap: 28px; }
  .split-img img { aspect-ratio: 3/4; }
  .split-copy h3 { font-size: clamp(28px, 8vw, 40px); }

  /* Lookbook — single column dłuższe portrait */
  .lookbook { grid-template-columns: 1fr 1fr !important; gap: 10px; }

  /* Promo */
  .promo { grid-template-columns: 1fr; padding: 36px 20px; gap: 24px; }
  .promo .code-card { padding: 28px 20px; }

  /* Why grid */
  .why-grid { gap: 32px; }
  .why-pillars { grid-template-columns: 1fr; }
  .why-pillar { padding: 14px 0; }

  /* Services */
  .services { grid-template-columns: 1fr !important; gap: 10px; }
  .service { padding: 18px; }

  /* Showroom hours */
  .hours { gap: 18px; }
  .showroom-card { padding: 24px 20px; }

  /* Timeline */
  .timeline .tl-step { padding: 14px; }

  /* Archive (sklep) */
  .cat-hero { padding: 32px 18px 24px; }
  .cat-hero h1 { font-size: clamp(34px, 10vw, 52px); }
  .results-bar { gap: 10px; }
  .results-bar .count { font-size: 18px; }
  .product-grid { gap: 16px 12px; }
  .product-card .price { font-size: 18px; }

  /* Filters scrollable horizontalnie */
  .quick-filters { -webkit-overflow-scrolling: touch; }
  .quick-filters .chip { white-space: nowrap; }

  /* Single product page — galeria + szczegóły */
  .gallery .thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .details h1 { font-size: clamp(28px, 8vw, 40px); }
  .price-block .price { font-size: 36px; }
  .option-group { margin-top: 18px; }
  .desc-block { padding: 18px 0; }
  .desc-block h3 { font-size: 22px; }
  .spec-table td { padding: 8px 12px; font-size: 13px; }

  /* Kalendarz V2 na karcie */
  .wcv2 { padding: 12px; border-radius: 8px; }
  .wcv2-head { margin-bottom: 10px; }
  .wcv2-title { font-size: 17px; }
  .wcv2-nav { width: 36px; height: 36px; font-size: 18px; }

  /* Tryby (Dzień wydarzenia / Dłuższy okres) — 2 kolumny równe */
  .wcv2-modes {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }
  .wcv2-mode {
    padding: 9px 6px;
    font-size: 11px;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
  }

  /* Weekdays */
  .wcv2-weekdays > div { font-size: 10px; padding: 4px 0; }

  /* Grid kalendarza */
  .wcv2-grid { gap: 4px; }
  .wcv2-day { font-size: 13px; border-radius: 6px; }
  .wcv2-day .wcv2-num { font-size: 13px; font-weight: 500; }
  .wcv2-badge { display: none; }   /* dopłata ukryta — kwadraty za małe */

  /* Sumaryka */
  .wcv2-summary { grid-template-columns: 1fr; gap: 10px; padding: 12px; margin-top: 12px; }
  .wcv2-summary .val { font-size: 15px; }
  .wcv2-summary .total { font-size: 22px; }
  .wcv2-summary .detail { font-size: 11px; }

  .wcv2-hint { font-size: 11px; margin-top: 10px; line-height: 1.45; }
  .wcv2-legend { gap: 10px; font-size: 10px; margin-top: 10px; }

  /* Koszyk */
  .cart-item { grid-template-columns: 70px 1fr; padding: 12px; gap: 10px; }
  .cart-item h3 { font-size: 18px; }
  .cart-item .meta { font-size: 12px; }
  .cart-item .qty-input { width: 60px; }
  .cart-totals { padding: 20px; }
  .cart-totals .total-row { font-size: 18px; }

  /* Checkout — pola na pełną szerokość */
  .checkout { padding: 24px 16px 56px; gap: 28px; }
  .form-row { grid-template-columns: 1fr !important; gap: 12px; }
  .form-field input, .form-field select, .form-field textarea { width: 100%; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-nav { position: static; }
  .faq-content h3 { font-size: 18px; }

  /* Showroom */
  .sh-hero { padding: 36px 18px 48px; }
  .showroom .copy { padding: 0; }

  /* Footer */
  footer { padding: 48px 18px 24px; }
  footer h4 { font-size: 13px; }
  footer a { font-size: 14px; }
}

/* ---------- ≤ 480px (mobile portrait) ---------- */
@media (max-width: 480px) {
  /* Globalne paddingi sekcji */
  .section { padding: 40px 14px; }

  /* Hero */
  .hero { padding: 28px 14px 48px; }
  .hero h1 { font-size: clamp(30px, 10vw, 40px) !important; }
  .hero-stats { gap: 14px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; }

  /* Product grid — 1 lub 2 kolumny */
  .product-grid { grid-template-columns: 1fr 1fr !important; gap: 12px 8px; }
  .product-card .price { font-size: 16px; }
  .product-card .name { font-size: 13px; }

  /* Single product */
  .crumbs { font-size: 10px; letter-spacing: 0.12em; padding: 12px 14px; }
  .product-page { padding: 18px 14px 48px; }
  .gallery .thumbs { grid-template-columns: repeat(3, 1fr); }
  .details h1 { font-size: clamp(24px, 7vw, 32px); }
  .price-block .price { font-size: 30px; }
  .ctas { flex-direction: column; gap: 10px; }
  .ctas .btn { width: 100%; flex: none !important; }
  .ctas .btn-ghost { width: auto; align-self: center; min-width: 80px; }

  /* Kalendarz V2 najmniejszy — telefon portrait */
  .wcv2 { padding: 10px; }
  .wcv2-head { margin-bottom: 8px; }
  .wcv2-title { font-size: 15px; }
  .wcv2-nav { width: 32px; height: 32px; font-size: 16px; }
  .wcv2-modes { gap: 5px; margin-bottom: 8px; }
  .wcv2-mode { padding: 8px 4px; font-size: 10px; letter-spacing: 0; line-height: 1.15; }
  .wcv2-weekdays > div { font-size: 9px; padding: 3px 0; }
  .wcv2-grid { gap: 3px; }
  .wcv2-day { font-size: 12px; border-radius: 5px; }
  .wcv2-day .wcv2-num { font-size: 12px; }
  .wcv2-summary { padding: 10px; gap: 8px; margin-top: 10px; }
  .wcv2-summary .lbl { font-size: 10px; }
  .wcv2-summary .val { font-size: 14px; }
  .wcv2-summary .total { font-size: 20px; }
  .wcv2-summary .detail { font-size: 10px; }
  .wcv2-hint { font-size: 10px; margin-top: 8px; }
  .wcv2-legend { font-size: 9px; gap: 8px; margin-top: 8px; }
  .wcv2-sw { width: 10px; height: 10px; }

  /* Wyszukiwarka /kalendarz/ */
  .cal-hero h1 { font-size: clamp(28px, 8vw, 40px) !important; }
  .cal-hero p { font-size: 13px; }
  .wsr-search-form { padding: 12px; margin: 18px auto 14px; }
  .wsr-card-img { aspect-ratio: 3/4; }
  .wsr-card-name { font-size: 15px; }

  /* Koszyk i checkout */
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item h3 { font-size: 16px; }
  .form-field label { font-size: 11px; }
  .checkout h2 { font-size: 22px; }

  /* Sekcje hero podstron */
  .cat-hero, .cal-hero, .sh-hero, .faq-hero { padding-left: 14px; padding-right: 14px; }

  /* Filtry sklepu */
  .filters .swatches { grid-template-columns: repeat(8, 1fr); gap: 6px; }
  .filters .sizes { gap: 6px; }
  .filters .size-btn { padding: 0 10px; font-size: 11px; }

  /* Footer */
  footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Modal i dropdowny na pełną szerokość */
  .wsr-cta-hint { font-size: 12px; padding: 8px 10px; }
}

/* Ukrywanie hover-only efektów na touch */
@media (hover: none) {
  .wsr-card:hover { transform: none; }
  .wsr-card-arrow { opacity: 1; }
  .subcat-card:hover { transform: none; }
  .product-card:hover { transform: none; }
}
