/* REMONDIS PL — sklep style */
:root {
  --rm-red: #E30613;
  --rm-green: #76B82A;
  --rm-green-dark: #5e9621;
  --rm-green-bg: #a4c447;
  --rm-green-bg-2: #94b73d;
  --rm-ink: #1a1a1a;
  --rm-text: #2a2a2a;
  --rm-muted: #6b6b6b;
  --rm-line: #e5e5e5;
  --rm-bg: #ffffff;
  --rm-bg-soft: #f5f5f3;
  --rm-bg-dark: #2a2a2a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, system-ui, sans-serif;
  color: var(--rm-text);
  background: var(--rm-bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 400; color: var(--rm-ink); }
h1 strong, h2 strong, h3 strong { font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.rm-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.rm-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.15em; font-weight: 700;
  color: var(--rm-green); text-transform: uppercase; margin-bottom: 8px;
}
.rm-eyebrow-light { color: #fff; opacity: 0.85; }

/* ===== HEADER ===== */
.rm-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 var(--rm-line); }
.rm-topbar-inner { display: flex; align-items: center; gap: 24px; height: 84px; }
.rm-logo { display: flex; flex-direction: column; line-height: 1; }
.rm-logo-mark {
  background: var(--rm-red); color: #fff; font-weight: 800;
  padding: 6px 10px; font-size: 22px; letter-spacing: 0.02em;
  border-radius: 2px;
}
.rm-logo-mark sup { font-size: 10px; }
.rm-logo-tagline { font-size: 9px; color: var(--rm-red); font-weight: 700; letter-spacing: 0.18em; margin-top: 4px; padding-left: 2px; }

.rm-nav { display: flex; gap: 28px; margin-left: 28px; flex: 1; }
.rm-nav-item { font-size: 15px; font-weight: 600; color: var(--rm-ink); padding: 10px 0; border-bottom: 3px solid transparent; transition: all 0.15s; }
.rm-nav-item:hover { color: var(--rm-green); }
.rm-nav-active { border-bottom-color: var(--rm-green); }

.rm-header-right { display: flex; align-items: center; gap: 18px; }
.rm-loc { display: flex; align-items: center; gap: 8px; color: var(--rm-green); font-weight: 600; font-size: 14px; }
.rm-loc:hover { text-decoration: underline; }
.rm-divider { width: 1px; height: 24px; background: var(--rm-line); }
.rm-login { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.rm-login:hover { color: var(--rm-green); }
.rm-cart {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: var(--rm-green); display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.rm-cart:hover { background: var(--rm-green-dark); }
.rm-cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--rm-red); color: #fff; font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.rm-benefits { background: #2a2a2a; color: #fff; }
.rm-benefits-inner { display: flex; align-items: center; justify-content: center; gap: 56px; height: 38px; flex-wrap: wrap; }
.rm-benefit { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }

/* ===== HERO ===== */
.rm-hero { background: #fff; padding: 24px 0 0; }
.rm-hero-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; min-height: 380px; position: relative; }
.rm-hero-text { padding: 32px 32px 32px 0; position: relative; z-index: 2; }
.rm-hero-text h1 { font-size: 56px; font-weight: 300; line-height: 1.05; color: var(--rm-ink); margin-bottom: 28px; }
.rm-hero-text h1 strong { font-weight: 800; }
.rm-hero-links { display: flex; flex-direction: column; gap: 0; max-width: 380px; }
.rm-hero-links li { border-bottom: 1px solid var(--rm-line); }
.rm-hero-links a { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 17px; }
.rm-hero-links a:hover span:first-child { color: var(--rm-green); }
.rm-arrow-btn {
  width: 28px; height: 28px; border-radius: 50%; background: var(--rm-green);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.rm-hero-links a:hover .rm-arrow-btn { background: var(--rm-green-dark); transform: translateX(2px); }

.rm-hero-img { position: relative; }
.rm-hero-photo { position: absolute; inset: 0; overflow: hidden; }
.rm-rating { position: absolute; left: 100%; top: 60px; transform: translateX(-50%); z-index: 3; }
.rm-rating-circle {
  width: 110px; height: 110px; border-radius: 50%; background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  border: 3px solid #f3f3f3;
}
.rm-rating-num { font-size: 36px; font-weight: 800; color: var(--rm-ink); line-height: 1; }
.rm-rating-num sup { font-size: 18px; }
.rm-rating-sub { font-size: 10px; text-align: center; color: var(--rm-muted); line-height: 1.2; font-weight: 600; }

/* ===== WIZARD ===== */
.rm-wizard {
  background: linear-gradient(180deg, #fff 0%, var(--rm-bg-soft) 100%);
  padding: 80px 0 90px;
  position: relative;
}
.rm-wizard::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--rm-line);
}
.rm-wizard-head { text-align: center; margin-bottom: 48px; }
.rm-wizard-head h2 { font-size: 42px; font-weight: 300; margin-bottom: 12px; }
.rm-wizard-head p { color: var(--rm-muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

.rm-wizard-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; position: relative;
}
.rm-step {
  background: #fff; border: 1px solid var(--rm-line); border-radius: 4px;
  padding: 36px 28px 28px; position: relative; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.rm-step.rm-step-hover, .rm-step:hover {
  border-color: var(--rm-green);
  box-shadow: 0 16px 32px rgba(118,184,42,0.12);
  transform: translateY(-4px);
}
.rm-step-num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--rm-green);
  color: #fff; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(118,184,42,0.35);
  border: 3px solid #fff;
}
.rm-step-icon { margin: 8px auto 18px; display: flex; justify-content: center; }
.rm-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.rm-step p { color: var(--rm-muted); font-size: 15px; line-height: 1.55; margin-bottom: 24px; min-height: 70px; }
.rm-step-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rm-green); color: #fff; font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.rm-step-cta:hover { background: var(--rm-green-dark); transform: translateX(2px); }
.rm-step-connector {
  position: absolute; right: -56px; top: 50%; transform: translateY(-50%); pointer-events: none;
  z-index: 0;
}

.rm-anim {
  opacity: 0; transform: translateY(24px);
  animation: rmFadeUp 0.7s ease-out forwards;
}
@keyframes rmFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.rm-anim-fade { animation: rmFade 0.8s ease-out; }
@keyframes rmFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MAP SECTION ===== */
.rm-mapsec {
  background: linear-gradient(180deg, #2f3a24 0%, #1f2a18 100%);
  color: #fff;
  padding: 80px 0 90px;
}
.rm-mapsec-head { text-align: center; margin-bottom: 32px; }
.rm-mapsec-head h2 { font-size: 42px; color: #fff; font-weight: 300; margin-bottom: 12px; }
.rm-mapsec-head h2 strong { font-weight: 700; }
.rm-mapsec-head p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 660px; margin: 0 auto; }

.rm-postal {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 36px;
}
.rm-postal-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; }
.rm-postal-input-wrap {
  display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px;
  padding: 6px 6px 6px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  position: relative;
}
.rm-postal-input {
  border: 0; outline: 0; background: transparent; font-size: 18px; font-weight: 600;
  width: 140px; color: var(--rm-ink); letter-spacing: 0.1em;
  font-family: inherit;
}
.rm-postal-btn {
  background: var(--rm-green); color: #fff; padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.rm-postal-btn:hover { background: var(--rm-green-dark); }
.rm-postal-hint {
  position: absolute; left: 0; right: 0; top: 100%; margin-top: 10px;
  text-align: center; color: rgba(255,255,255,0.85); font-size: 14px;
}

.rm-map-wrap {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 16px;
}
.rm-map-canvas {
  background: rgba(255,255,255,0.02); border-radius: 6px; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border: 1px dashed rgba(118,184,42,0.2);
}
.rm-map-svg { width: 100%; height: 100%; max-height: 580px; display: block; }
.rm-map-loading { color: rgba(255,255,255,0.5); }

.rm-woj {
  fill: rgba(255,255,255,0.08);
  stroke: rgba(118,184,42,0.55);
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill 0.15s, stroke 0.15s;
}
.rm-woj.is-postal { fill: rgba(118,184,42,0.25); stroke: var(--rm-green); }
.rm-woj.is-hover { fill: rgba(118,184,42,0.45); stroke: #b8e066; }
.rm-woj.is-selected { fill: var(--rm-green); stroke: #fff; stroke-width: 1.8; }

/* ===== BRANCH PANEL ===== */
.rm-branch-panel {
  background: #fff; color: var(--rm-text); border-radius: 6px;
  padding: 28px; min-height: 540px; display: flex; flex-direction: column;
}
.rm-branch-empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; margin: auto; max-width: 280px; }
.rm-branch-empty-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(118,184,42,0.1); display: flex; align-items: center; justify-content: center;
}
.rm-branch-empty h4 { font-size: 20px; font-weight: 700; }
.rm-branch-empty p { color: var(--rm-muted); font-size: 14px; line-height: 1.5; }
.rm-branch-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; width: 100%;
  border-top: 1px solid var(--rm-line); padding-top: 16px;
}
.rm-branch-stats li {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 11px; color: var(--rm-muted); text-transform: uppercase; letter-spacing: 0.08em;
}
.rm-branch-stats strong { font-size: 24px; color: var(--rm-green); font-weight: 800; }

.rm-branch-card { animation: rmFade 0.3s ease-out; display: flex; flex-direction: column; height: 100%; }
.rm-branch-head { padding-bottom: 16px; border-bottom: 1px solid var(--rm-line); margin-bottom: 18px; }
.rm-branch-head h4 { font-size: 22px; font-weight: 700; margin-top: 4px; }
.rm-branch-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.rm-branch-rows li { display: flex; gap: 12px; align-items: flex-start; }
.rm-branch-row-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(118,184,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rm-branch-label { display: block; font-size: 11px; color: var(--rm-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.rm-branch-value { font-size: 15px; font-weight: 600; color: var(--rm-ink); }
.rm-branch-link:hover { color: var(--rm-green); }

.rm-branch-cities { padding-top: 16px; border-top: 1px solid var(--rm-line); }
.rm-branch-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.rm-chip {
  display: inline-block; padding: 4px 10px; background: var(--rm-bg-soft);
  border-radius: 999px; font-size: 12px; font-weight: 600;
}
.rm-chip-more { background: rgba(118,184,42,0.15); color: var(--rm-green-dark); }

.rm-branch-cta {
  margin-top: auto; padding-top: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--rm-green); color: #fff; font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
  transition: background 0.15s;
  margin-top: 20px;
}
.rm-branch-cta:hover { background: var(--rm-green-dark); }

/* ===== STREAMS ===== */
.rm-streams { background: linear-gradient(135deg, var(--rm-green-bg) 0%, var(--rm-green-bg-2) 100%); padding: 56px 0; }
.rm-streams-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.rm-streams-head h2 { font-size: 30px; color: #fff; font-weight: 300; line-height: 1.25; margin-bottom: 24px; }
.rm-streams-head h2 strong { font-weight: 700; }
.rm-streams-help { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 4px; }
.rm-streams-phone { color: #fff; font-size: 22px; font-weight: 700; }
.rm-streams-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rm-stream-card {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px 16px 16px 20px; min-height: 120px; border-radius: 4px;
  color: #fff; font-weight: 600; font-size: 17px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rm-stream-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.18); }
.rm-stream-card::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35));
}
.rm-stream-name { position: relative; z-index: 2; }
.rm-stream-icon {
  position: relative; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.rm-streams-all { display: inline-block; color: #fff; text-decoration: underline; margin-top: 24px; grid-column: 1/-1; }
.rm-arrow-inline { display: inline-block; transform: translateY(-1px); margin-left: 4px; font-weight: 700; }

/* ===== CONTAINER LIST ===== */
.rm-containers { background: #fff; padding: 64px 0 80px; }
.rm-containers-inner h2 { font-size: 30px; font-weight: 300; line-height: 1.2; margin-bottom: 32px; max-width: 240px; }
.rm-containers-inner h2 { float: left; width: 220px; }
.rm-cont-list { float: right; width: calc(100% - 280px); }
.rm-cont-row {
  display: grid; grid-template-columns: 130px 1fr 200px 230px;
  align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rm-line);
}
.rm-cont-row:last-child { border-bottom: 0; }
.rm-cont-info h4 { font-size: 17px; font-weight: 400; margin-bottom: 4px; }
.rm-cont-info p { font-size: 13px; color: var(--rm-muted); }
.rm-cont-price-label { font-size: 13px; color: var(--rm-muted); display: block; }
.rm-tooltip { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border-radius: 50%; background: var(--rm-line); font-size: 10px; }
.rm-cont-price-val { font-size: 22px; font-weight: 800; color: var(--rm-green); }
.rm-cont-price-sub { font-size: 12px; color: var(--rm-muted); font-weight: 400; }
.rm-cont-actions { display: flex; gap: 8px; justify-content: flex-end; }
.rm-btn-green { display: inline-flex; align-items: center; gap: 6px; background: var(--rm-green); color: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.rm-btn-green:hover { background: var(--rm-green-dark); }
.rm-btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--rm-ink); padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; border: 1px solid var(--rm-line); }
.rm-btn-ghost:hover { border-color: var(--rm-green); color: var(--rm-green); }
.rm-btn-ghost-dark { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--rm-ink); padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 1px solid var(--rm-line); }
.rm-cont-all { display: block; clear: both; padding-top: 24px; font-weight: 600; color: var(--rm-ink); border-top: 1px solid var(--rm-line); margin-top: 16px; }

/* ===== WHY US ===== */
.rm-why { background: #f5f5f3; padding: 80px 0; }
.rm-why-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.rm-why-left h2 { font-size: 30px; font-weight: 300; margin-bottom: 16px; line-height: 1.25; }
.rm-why-left p { color: var(--rm-muted); margin-bottom: 24px; font-size: 15px; }
.rm-why-list { display: flex; flex-direction: column; gap: 24px; }
.rm-why-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--rm-line); }
.rm-why-item:last-child { border-bottom: 0; }
.rm-why-bullet { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--rm-ink); display: flex; align-items: center; justify-content: center; }
.rm-why-bullet-dot { width: 8px; height: 8px; background: var(--rm-ink); border-radius: 50%; }
.rm-why-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.rm-why-item p { color: var(--rm-muted); font-size: 14px; line-height: 1.6; }

/* ===== SERVICE ===== */
.rm-service { background: linear-gradient(135deg, var(--rm-green-bg) 0%, var(--rm-green-bg-2) 100%); padding: 56px 0; }
.rm-service-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rm-service-left h3 { font-size: 28px; color: #fff; font-weight: 300; margin-bottom: 24px; }
.rm-service-left ul { display: flex; flex-direction: column; gap: 18px; }
.rm-service-left li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; }
.rm-service-icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; }
.rm-service-link { color: #fff; font-weight: 700; font-size: 17px; text-decoration: underline; }
.rm-service-left p { color: rgba(255,255,255,0.9); font-size: 14px; }
.rm-service-right { display: flex; justify-content: center; }
.rm-rating-circle-light { width: 130px; height: 130px; }

/* ===== FOOTER ===== */
.rm-footer { background: #fff; padding-top: 56px; }
.rm-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--rm-line); }
.rm-footer h5 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.rm-footer ul { display: flex; flex-direction: column; gap: 8px; }
.rm-footer li a { font-size: 14px; color: var(--rm-text); }
.rm-footer li a:hover { color: var(--rm-green); }
.rm-footer-link { color: var(--rm-green) !important; font-weight: 600; }
.rm-footer-contact-row { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.rm-footer-contact-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px dashed var(--rm-line); display: flex; align-items: center; justify-content: center; }
.rm-footer-small { display: block; font-size: 12px; color: var(--rm-muted); }
.rm-footer-pay { padding: 24px 0; border-bottom: 1px solid var(--rm-line); }
.rm-pay-icons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.rm-pay-pill { display: inline-flex; align-items: center; padding: 6px 14px; background: var(--rm-bg-soft); border-radius: 4px; font-size: 12px; font-weight: 700; }
.rm-pay-visa { background: #1a1f71; color: #fff; }
.rm-pay-mc { color: #eb001b; }
.rm-footer-legal { padding: 20px 0 28px; }
.rm-footer-legal-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--rm-muted); }
.rm-footer-legal ul { display: flex; gap: 18px; flex-wrap: wrap; }
.rm-footer-legal li a:hover { color: var(--rm-green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .rm-nav { display: none; }
  .rm-hero-inner { grid-template-columns: 1fr; }
  .rm-hero-img { min-height: 280px; }
  .rm-rating { left: auto; right: 24px; top: -60px; transform: none; }
  .rm-wizard-grid { grid-template-columns: 1fr; gap: 48px; }
  .rm-step-connector { display: none; }
  .rm-map-wrap { grid-template-columns: 1fr; }
  .rm-streams-inner, .rm-why-inner, .rm-service-inner { grid-template-columns: 1fr; gap: 32px; }
  .rm-cont-row { grid-template-columns: 100px 1fr; gap: 12px; }
  .rm-cont-price, .rm-cont-actions { grid-column: 2; }
  .rm-containers-inner h2 { float: none; width: auto; }
  .rm-cont-list { float: none; width: 100%; }
  .rm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .rm-hero-text h1 { font-size: 40px; }
  .rm-wizard-head h2, .rm-mapsec-head h2 { font-size: 32px; }
  .rm-streams-grid { grid-template-columns: 1fr; }
  .rm-footer-grid { grid-template-columns: 1fr; }
}
