/* ─────────────────────────────────────────────────────────────────────────────
   Zapętleni — style platformy. Branding: navy #0C2C5B, azure #2F69BF.
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --navy:  #0C2C5B;
  --azure: #2F69BF;
  --ink:   #0E0E10;
  --paper: #FFFFFF;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--azure);
  outline-offset: 2px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* ─── Nawigacja ─────────────────────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo img { height: 38px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 6px; }
.navbar-links a:not(.btn) {
  color: #dbe4f3;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.navbar-links a:not(.btn):hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.navbar-links a:not(.btn).active { background: rgba(255,255,255,.15); color: #fff; }
.navbar-links .btn,
.navbar-links a.btn {
  color: #fff;
  text-decoration: none;
}
.navbar-links .btn-azure,
.navbar-links a.btn-azure {
  background: #2557a3;
  color: #fff;
}
.navbar-links .btn-azure:hover,
.navbar-links a.btn-azure:hover {
  background: #1e4785;
  color: #fff;
}

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    gap: 2px;
  }
  .navbar-links.open { display: flex; }
  .navbar-links a:not(.btn) { padding: 12px 14px; }
  .navbar-links .btn { margin-top: 4px; }
}

/* ─── Przyciski ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 11px;
  border: 0;
  cursor: pointer;
  transition: transform .08s, background .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #103a78; color: #fff; }
.btn-azure { background: var(--azure); color: #fff; }
.btn-azure:hover { background: #2557a3; color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-danger { background: #dc2626; color: #fff; }
.btn-success { background: #16a34a; color: #fff; }
.btn-secondary { background: var(--gray-100); color: var(--gray-800); border: 1px solid var(--gray-200); }
.btn-secondary:hover { background: var(--gray-200); color: var(--navy); }

/* ─── Karty ─────────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-pad { padding: 22px; }

/* ─── Odznaki statusów ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red   { background: #fee2e2; color: #991b1b; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-gray  { background: var(--gray-100); color: var(--gray-700); }

/* ─── Formularze ────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 11px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(47,105,191,.15);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 13px; color: #dc2626; margin-top: 4px; }

/* ─── Alerty ────────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* ─── Siatki ────────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-1 { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ─── Hero (strony wewnętrzne) ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #103a78 100%);
  color: #fff;
  padding: 72px 0;
}
.hero h1 { color: #fff; font-size: 42px; margin-bottom: 16px; }
.hero p { font-size: 18px; color: #cbd9ef; max-width: 600px; margin-bottom: 28px; }
.hero .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 600px) { .hero h1 { font-size: 30px; } }

/* ─── Hero strona główna ────────────────────────────────────────────────────── */
.hero-home {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-home-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.02);
}
.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,26,56,.92) 0%, rgba(12,44,91,.78) 45%, rgba(12,44,91,.35) 100%);
}
.hero-home-inner {
  position: relative;
  z-index: 1;
  padding: 88px 20px 96px;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b8d4ff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-home h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-home h1 span { color: #7ec0ff; }
.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: #cbd9ef;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 600px) {
  .hero-home { min-height: 460px; }
  .hero-home-inner { padding: 64px 20px 72px; }
  .hero-actions .btn { width: 100%; }
}

/* ─── Sekcje strony głównej ─────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 12px;
}
.section-title-left {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 40px;
  max-width: 520px;
}
.section-title-left em { font-style: normal; color: var(--azure); }
.section-why { background: #fff; }
.why-grid { align-items: stretch; }
.why-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: border-color .15s, box-shadow .15s;
}
.why-card:hover { border-color: rgba(47,105,191,.25); box-shadow: 0 6px 24px rgba(12,44,91,.06); }
.why-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--azure);
  margin-bottom: 12px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.section-offer { background: var(--gray-50); }
.offer-grid { align-items: stretch; }
.offer-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s, border-color .15s;
}
.offer-card:hover {
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(12,44,91,.1);
  transform: translateY(-2px);
  border-color: rgba(47,105,191,.2);
}
.offer-rental { border-top: 4px solid var(--azure); }
.offer-shop { border-top: 4px solid #16a34a; }
.offer-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1e4785;
  margin-bottom: 10px;
}
.offer-shop .offer-tag { color: #166534; }
.offer-card h3 { font-size: 22px; margin-bottom: 10px; }
.offer-card > p { font-size: 14px; color: var(--gray-600); margin-bottom: 18px; line-height: 1.6; }
.offer-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.offer-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 6px 0 6px 22px;
  position: relative;
}
.offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 700;
}
.offer-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--azure);
}

.section-steps { background: #fff; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-row { grid-template-columns: 1fr; } }

.section-catalog { background: var(--gray-50); }
.loop-card-lg { text-decoration: none; color: inherit; }
.loop-card-lg:hover { text-decoration: none; }

.section-cta { padding: 56px 0 72px; background: var(--gray-50); }
.cta-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4f96 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 24px 32px;
  align-items: center;
}
.cta-copy h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.cta-copy p { color: #cbd9ef; font-size: 15px; max-width: 420px; }
.cta-contacts { display: flex; flex-direction: column; gap: 12px; grid-column: 1; }
.cta-contact {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .15s;
}
.cta-contact:hover { background: rgba(255,255,255,.14); text-decoration: none; color: #fff; }
.cta-contact strong { display: block; font-size: 17px; font-family: 'Montserrat', sans-serif; }
.cta-contact span { font-size: 13px; color: #b8d4ff; }
.cta-panel > .btn { grid-column: 2; grid-row: 1 / span 2; align-self: center; white-space: nowrap; }
@media (max-width: 768px) {
  .cta-panel { grid-template-columns: 1fr; padding: 32px 24px; }
  .cta-panel > .btn { grid-column: 1; grid-row: auto; width: 100%; }
}

/* Kalendarz wolnych terminów */
.cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 24px;
}
.cal-toolbar-field { margin: 0; min-width: 220px; flex: 1; }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-600);
  align-items: center;
}
.nav-logout { display: inline; margin: 0; }
.nav-logout button { margin: 0; }
.nav-cta { margin-left: 4px; }

.cal-panel {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}

/* Nawigacja sekcji wynajmu */
.rental-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 12px 16px !important;
}
.rental-subnav-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  background: var(--gray-100);
}
.rental-subnav-link:hover { background: var(--gray-200); color: var(--navy); text-decoration: none; }
.rental-subnav-link.active { background: var(--navy); color: #fff; }

/* Mini-kalendarz w rezerwacji */
.mini-cal-card { padding: 14px 16px !important; }
.mini-cal-legend {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
#miniCalendar { font-size: 11px; }
#miniCalendar .fc-toolbar-title { font-size: 13px !important; }
#miniCalendar .fc-col-header-cell-cushion,
#miniCalendar .fc-daygrid-day-number { font-size: 11px; padding: 2px 4px; }
#miniCalendar .fc-button { padding: 2px 6px; font-size: 11px; }
.contact-layout { max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr !important; }
}

.breadcrumbs { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.breadcrumbs a { color: var(--gray-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--azure); text-decoration: underline; }
.breadcrumbs-sep { margin: 0 8px; opacity: .6; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.faq-item[open] { border-color: #bfdbfe; box-shadow: 0 4px 16px rgba(15,39,68,.06); }
.faq-question { cursor: pointer; font-weight: 600; font-size: 15px; padding: 16px 18px; list-style: none; color: var(--navy); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; float: right; font-weight: 700; color: var(--azure); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 18px 16px; font-size: 14px; line-height: 1.65; color: var(--gray-700); }
.faq-answer p { margin: 0; }
.section-faq-preview .faq-item { margin-bottom: 8px; }
.section-faq-preview .faq-item:last-child { margin-bottom: 0; }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; background: rgba(15,39,68,.97); color: #e8eef8; padding: 16px; box-shadow: 0 -8px 32px rgba(0,0,0,.25); }
.cookie-banner-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-banner-text { margin: 0; font-size: 13px; line-height: 1.55; max-width: 720px; }
.cookie-banner-text a { color: #93c5fd; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}
.legal-content h2 { font-size: 17px; margin: 24px 0 10px; color: var(--navy); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ol, .legal-content ul { padding-left: 1.25rem; font-size: 14px; line-height: 1.65; color: var(--gray-700); }
.legal-content p { font-size: 14px; line-height: 1.65; color: var(--gray-700); }
.legal-content li { margin-bottom: 6px; }

/* Footer bez marginesu po sekcji CTA na stronie głównej */
.section-cta + .footer,
main:has(.hero-home) + .footer { margin-top: 0; }

/* ─── Baner podstron ────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4f96 100%);
  color: #fff;
  padding: 44px 0 48px;
}
.page-hero-inner { max-width: 720px; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b8d4ff;
  margin-bottom: 10px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero-sub {
  font-size: 16px;
  color: #cbd9ef;
  line-height: 1.6;
  max-width: 560px;
}
.page-hero-sub a { color: #7ec0ff; }
main:has(.page-hero) + .footer { margin-top: 0; }
.page-body { padding: 36px 0 56px; }

/* Auth */
.auth-page { padding: 40px 0 56px; }
.auth-card-wrap { max-width: 440px; margin: 0 auto; }
.auth-card-wrap .page-title { text-align: center; margin-bottom: 6px; }
.auth-card-wrap .auth-lead { text-align: center; color: var(--gray-500); margin-bottom: 22px; font-size: 14px; }

/* 404 */
.error-page {
  text-align: center;
  padding: 72px 20px 96px;
}
.error-page-code {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(72px, 15vw, 120px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  opacity: .15;
  margin-bottom: -24px;
}
.error-page h1 { font-size: 28px; margin-bottom: 10px; }
.error-page-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ─── Sekcje ────────────────────────────────────────────────────────────────── */
.section { padding: 56px 0; }
.section-title { font-size: 30px; text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--gray-500); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── Karta produktu ────────────────────────────────────────────────────────── */
.loop-card { display: flex; flex-direction: column; transition: box-shadow .15s, border-color .15s; }
.loop-card:hover { box-shadow: 0 8px 28px rgba(12,44,91,.1); border-color: rgba(12,44,91,.2); }
.loop-card-img { aspect-ratio: 16/10; background: var(--gray-100); object-fit: cover; width: 100%; }
.loop-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.loop-card-brand { font-size: 12px; color: var(--azure); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.loop-card-name { font-size: 18px; margin: 4px 0 8px; }
.loop-card-specs { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }
.loop-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.loop-card-price { font-size: 20px; font-weight: 700; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.loop-card-price span { font-size: 13px; font-weight: 400; color: var(--gray-500); }

/* ─── Tabele ────────────────────────────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 12px 14px; color: var(--gray-500); font-weight: 600; font-size: 12px; text-transform: uppercase; border-bottom: 1px solid var(--gray-200); }
.table td { padding: 14px; border-bottom: 1px solid var(--gray-100); }
.table tr:hover td { background: var(--gray-50); }

/* ─── Specyfikacja techniczna ───────────────────────────────────────────────── */
.spec-list { list-style: none; }
.spec-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.spec-list li span:first-child { color: var(--gray-500); }
.spec-list li span:last-child { font-weight: 600; color: var(--gray-900); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #9ca3af;
  padding: 48px 0 32px;
  margin-top: 60px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { line-height: 1.65; max-width: 280px; }
.footer-col h2,
.footer-col-title {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-contact a { color: #93c5fd; }
.footer-address {
  margin-top: 12px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: #9ca3af;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ─── Pomocnicze ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; }
.page { padding: 40px 0 60px; }
.page-title { font-size: 28px; margin-bottom: 6px; }
.page-sub { color: var(--gray-500); margin-bottom: 28px; }

/* ─── Karty ścieżki (wynajem vs sklep) ─────────────────────────────────────── */
.path-card { text-decoration: none; color: inherit; transition: box-shadow .15s, border-color .15s; }
.path-card:hover { box-shadow: 0 8px 28px rgba(12,44,91,.12); text-decoration: none; }
.path-rental { border-left: 4px solid var(--azure); }
.path-shop { border-left: 4px solid #16a34a; }

/* ─── Konto użytkownika ─────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav a {
  padding: 10px 14px; border-radius: 10px; color: var(--gray-700); font-size: 14px; font-weight: 500; text-decoration: none;
}
.account-nav a:hover { background: var(--gray-100); text-decoration: none; }
.account-nav a.active { background: #eff6ff; color: var(--azure); font-weight: 600; }
@media (max-width: 768px) { .account-layout { grid-template-columns: 1fr; } }

/* ─── Wynajem 2-kolumny ─────────────────────────────────────────────────────── */
.rental-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.rental-main { display: flex; flex-direction: column; gap: 20px; }
.rental-section-title { font-size: 16px; margin-bottom: 14px; color: var(--navy); }
.rental-sidebar { position: relative; }
.sticky-summary { position: sticky; top: 84px; }
.addon-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100); cursor: pointer;
}
.addon-row-left { justify-content: flex-start; cursor: default; }
.addon-row-left .addon-controls {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; min-width: 96px;
}
.addon-row-left .addon-info { flex: 1; min-width: 0; }
.addon-row:last-child { border-bottom: 0; }
.addon-row input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin: 0; }
.model-preview {
  display: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.model-preview.is-visible { display: block; }
.model-preview-inner { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: start; }
.model-preview-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--gray-200);
}
.model-preview-specs {
  display: flex; flex-wrap: wrap; gap: 6px 10px; margin: 10px 0 0; padding: 0; list-style: none;
}
.model-preview-specs li {
  font-size: 12px; background: var(--gray-100); color: var(--gray-700);
  padding: 4px 10px; border-radius: 999px;
}
.model-preview-features { margin: 10px 0 0; padding: 0; list-style: none; font-size: 13px; color: var(--gray-600); }
.model-preview-features li { padding: 3px 0; }
.model-preview-features li::before { content: '✓ '; color: var(--azure); }
@media (max-width: 560px) {
  .model-preview-inner { grid-template-columns: 1fr; }
  .model-preview-img { max-width: 200px; }
}
.qty-stepper { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 32px; height: 32px; border: 1px solid var(--gray-200); background: #fff;
  border-radius: 8px; cursor: pointer; font-size: 18px; line-height: 1;
}
.quote-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 6px 0; }
.quote-total-row { display: flex; justify-content: space-between; padding: 4px 0; }
.legend-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; margin-right: 4px; }
@media (max-width: 960px) {
  .rental-layout { grid-template-columns: 1fr; }
  .sticky-summary { position: static; }
}

/* ─── Sklep ─────────────────────────────────────────────────────────────────── */
.shop-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c2c5b 0%, #1a5a9e 50%, #2f69bf 100%);
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,26,56,.88) 0%, rgba(12,44,91,.55) 60%, transparent 100%);
}
.shop-hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px 20px 52px;
  max-width: 680px;
}
.shop-hero-inner h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}
.shop-hero-lead {
  font-size: 17px;
  color: #cbd9ef;
  line-height: 1.6;
  margin-bottom: 8px;
}
.shop-hero-meta { font-size: 14px; color: #9ec5ff; margin: 0; }

.shop-page { padding-top: 28px; padding-bottom: 48px; }

.shop-info-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #eef4fc;
  border: 1px solid #d4e3f7;
  font-size: 14px;
  color: var(--gray-700);
}
.shop-info-bar a { font-weight: 600; white-space: nowrap; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 20px;
  padding: 0 !important;
  overflow: hidden;
}
.shop-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  padding: 18px 18px 12px;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
}
.shop-sidebar-nav { padding: 10px 0 14px; }
.shop-sidebar-group { margin-top: 6px; }
.shop-sidebar-group-label {
  padding: 10px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
}
.shop-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}
.shop-sidebar-link:hover {
  background: var(--gray-50);
  color: var(--navy);
  text-decoration: none;
}
.shop-sidebar-link.is-active {
  background: #eef4fc;
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--azure);
}
.shop-sidebar-count {
  flex-shrink: 0;
  min-width: 26px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}
.shop-sidebar-link.is-active .shop-sidebar-count {
  background: rgba(47,105,191,.15);
  color: var(--navy);
}

.shop-main { min-width: 0; }
.shop-toolbar { margin-bottom: 18px; }
.shop-toolbar-row {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 200px) auto;
  gap: 14px;
  align-items: end;
}
.shop-search-btn { align-self: end; white-space: nowrap; }
.shop-mobile-cat { display: none; margin-top: 14px; }

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.shop-active-label { font-size: 13px; color: var(--gray-500); }
.shop-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.shop-filter-chip:hover { color: #fff; text-decoration: none; opacity: .92; }
.shop-filter-clear { font-size: 13px; margin-left: 4px; }

.shop-results-head { margin-bottom: 14px; }
.shop-results-count {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  font-weight: 500;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.shop-card {
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s;
  height: 100%;
  overflow: hidden;
}
.shop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12,44,91,.1);
  text-decoration: none;
}
.shop-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
}
.shop-card-img-wrap .loop-card-img {
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}
.shop-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.shop-card-cat-inline {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--azure);
}
.shop-card-sku {
  font-size: 11px;
  color: var(--gray-500);
  font-family: ui-monospace, monospace;
}
.shop-card-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  line-height: 1.3;
}
.shop-card-teaser {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card-footer { padding-top: 4px; border-top: 1px solid var(--gray-100); }
.shop-card-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--azure);
  color: #fff;
  z-index: 1;
}
.shop-price-contact { font-size: 15px !important; color: var(--azure) !important; }
.shop-empty { text-align: center; padding: 40px 24px !important; }
.shop-footer-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* Strona produktu */
.shop-product-page { padding-bottom: 48px; }
.shop-product {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) 300px;
  grid-template-areas: "gallery main aside";
  gap: 24px 28px;
  align-items: start;
}
.shop-product-gallery {
  grid-area: gallery;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.shop-product-gallery-main {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: zoom-in;
  font: inherit;
  text-align: inherit;
}
.shop-product-gallery-main:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 2px;
}
.shop-product-image {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
}
.shop-product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.shop-product-thumb {
  width: 64px;
  height: 64px;
  padding: 4px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.shop-product-thumb.is-active { border-color: var(--azure); }
.shop-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-product-main { grid-area: main; display: flex; flex-direction: column; gap: 16px; }
.shop-product-aside { grid-area: aside; position: sticky; top: 20px; display: flex; flex-direction: column; gap: 16px; }

.shop-product-header { padding: 4px 0 8px; }
.shop-product-title {
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.25;
  margin: 8px 0 10px;
  color: var(--navy);
}
.shop-product-sku { font-size: 13px; color: var(--gray-500); margin: 0 0 12px; }
.shop-section-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy);
}
.shop-product-desc-body,
.shop-feature-list {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
}
.shop-product-desc-rich { max-width: 68ch; }
.shop-desc-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
}
.shop-desc-p { margin: 0 0 1em; }
.shop-desc-p:last-child { margin-bottom: 0; }
.shop-desc-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin: 1.25em 0 .65em;
}
.shop-desc-heading:first-child { margin-top: 0; }
.shop-desc-list {
  margin: 0 0 1.1em;
  padding-left: 0;
  list-style: none;
}
.shop-desc-list li {
  position: relative;
  padding-left: 1.35em;
  margin-bottom: .45em;
}
.shop-desc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 700;
}

.shop-gallery-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26, 43, 75, .78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.shop-product-gallery-main:hover .shop-gallery-zoom-hint,
.shop-product-gallery-main:focus-visible .shop-gallery-zoom-hint {
  opacity: 1;
}

.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-lightbox[hidden] { display: none !important; }
body.shop-lightbox-open { overflow: hidden; }
.shop-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .88);
  cursor: zoom-out;
}
.shop-lightbox-inner {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 92vh;
  padding: 12px;
}
.shop-lightbox-figure { margin: 0; text-align: center; }
.shop-lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 48px);
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.shop-lightbox-counter {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.shop-lightbox-close {
  position: absolute;
  top: -4px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.shop-lightbox-close:hover { background: rgba(255,255,255,.28); }
.shop-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.shop-lightbox-nav:hover { background: rgba(255,255,255,.28); }
.shop-lightbox-prev { left: -8px; }
.shop-lightbox-next { right: -8px; }

.shop-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.shop-feature-list li {
  padding-left: 22px;
  position: relative;
}
.shop-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 700;
}

.shop-params-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.shop-params-grid li {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.shop-params-grid li:last-child { border-bottom: 0; padding-bottom: 0; }
.shop-param-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
}
.shop-param-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.shop-buy-box { text-align: left; }
.shop-buy-box .shop-show-cat { display: block; margin-bottom: 4px; }
.shop-buy-box .loop-card-brand { display: block; margin-bottom: 4px; }
.shop-buy-price {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 8px;
}
.shop-buy-price-sub { font-size: 13px; color: var(--gray-500); margin: 4px 0 16px; }
.shop-buy-lead { font-size: 15px; line-height: 1.55; color: var(--gray-700); margin: 0 0 16px; }
.shop-buy-hint { font-size: 13px; color: var(--gray-500); margin: 12px 0 0; text-align: center; }
.shop-buy-delivery {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 14px;
}
.shop-buy-delivery-fast {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.shop-buy-delivery p { margin: 4px 0 0; color: var(--gray-600); }
.shop-buy-delivery-wh { font-size: 12px; color: var(--gray-500); margin-top: 6px !important; }

.shop-sidebar-filters {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.shop-filter-group { margin-bottom: 16px; }
.shop-filter-group-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.shop-filter-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray-700);
  text-decoration: none;
  margin-bottom: 4px;
}
.shop-filter-option:hover { background: var(--gray-50); color: var(--navy); }
.shop-filter-option.is-active {
  background: #eef4fc;
  color: var(--navy);
  font-weight: 600;
}

.shop-aside-links { display: flex; flex-direction: column; gap: 10px; }
.shop-aside-link {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
}
.shop-aside-link:hover { color: var(--azure); }

.shop-show-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--azure);
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .shop-product {
    grid-template-columns: 1fr 300px;
    grid-template-areas:
      "gallery aside"
      "main aside";
  }
}

@media (max-width: 960px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .shop-mobile-cat { display: block; }
  .shop-toolbar-row { grid-template-columns: 1fr; }
  .shop-search-btn { width: 100%; }
  .shop-product {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "aside" "main";
  }
  .shop-product-aside { position: static; }
  .shop-grid { grid-template-columns: 1fr; }
}

.shop-wh-stock-grid { display: flex; flex-direction: column; gap: 8px; }
.shop-wh-stock-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.shop-param-row .param-remove { margin-left: auto; }

@media (max-width: 640px) {
  .shop-info-bar { flex-direction: column; align-items: flex-start; }
  .shop-hero-inner { padding: 36px 20px 40px; }
}

/* Legacy — ukryte pills kategorii */
.shop-cat-pill { display: none; }
.shop-cats { display: none; }

/* Harmonogram dni wynajmu */
.rental-date-range-summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 8px 0 14px;
}
.day-schedule-wrap { margin-bottom: 16px; }
.day-schedule-list { display: grid; gap: 10px; }
.day-schedule-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: center;
}
.day-schedule-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.day-schedule-time { max-width: 140px; }
.day-schedule-times {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.day-schedule-sep { color: var(--gray-500); font-weight: 600; }
.rental-schedule-range { margin-bottom: 8px; }
.rental-schedule-days {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.rental-schedule-days li {
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.rental-schedule-date { font-weight: 600; min-width: 96px; }
.rental-schedule-time { color: var(--gray-600); }

/* Admin — wyceny i oferty */
.admin-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--gray-200);
}
.admin-subnav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
}
.admin-subnav-link:hover { background: var(--gray-100); color: var(--navy); text-decoration: none; }
.admin-subnav-link.active { background: #eef4fc; color: var(--navy); font-weight: 600; }
.offer-line-row {
  display: grid;
  grid-template-columns: 1fr 72px 100px 90px 90px 36px;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.offer-line-block {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
}
.offer-line-search-wrap {
  position: relative;
  margin-bottom: 10px;
}
.offer-line-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 90px 90px 36px;
  gap: 10px;
  align-items: end;
}
.offer-qty-unit {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 6px;
}
.offer-line-unit {
  text-align: center;
  background: var(--gray-50);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.offer-line-calc .line-vat-display,
.offer-line-calc .line-gross-display {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 0;
}
.offer-line-rental {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}
.offer-line-rental-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--azure);
  margin-bottom: 8px;
}
.offer-lines-head {
  display: grid;
  grid-template-columns: 1fr 72px 100px 90px 90px 36px;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 16px 0 8px;
}
.offer-line-qty { text-align: center; }
.offer-line-price { text-align: right; }
.line-vat-display, .line-gross-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.offer-totals-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  max-width: 280px;
  margin-left: auto;
}
.offer-total-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}
.offer-total-row.grand {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  border-top: 2px solid var(--navy);
  margin-top: 6px;
  padding-top: 8px;
}
.offer-catalog-search { position: relative; }
.catalog-results {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(12,44,91,.12);
  max-height: 280px;
  overflow-y: auto;
}
.catalog-hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}
.catalog-hit:hover { background: var(--gray-50); }
.catalog-hit strong { color: var(--navy); }
.catalog-hit span { font-size: 12px; color: var(--gray-500); }

/* Admin — dodatki per model wynajmu */
.model-addons-head,
.model-addon-row {
  display: grid;
  grid-template-columns: 36px 1fr 80px 80px;
  gap: 10px;
  align-items: center;
}
.model-addons-head {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.model-addon-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.model-addon-row:last-of-type { border-bottom: 0; }
.model-addon-check { display: flex; align-items: center; justify-content: center; }
.model-addon-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.model-addon-info strong { font-size: 14px; color: var(--navy); }
@media (max-width: 640px) {
  .model-addons-head { display: none; }
  .model-addon-row { grid-template-columns: 36px 1fr; }
  .model-addon-sort, .model-addon-max { max-width: 100% !important; }
}
@media (max-width: 860px) {
  .day-schedule-row { grid-template-columns: 1fr; }
  .offer-lines-head { display: none; }
  .offer-line-row { grid-template-columns: 1fr 1fr; }
  .offer-line-pricing { grid-template-columns: 1fr 1fr; }
  .offer-line-block .offer-line-remove { justify-self: end; }
}
