:root{
  --bg:#f5f5f3;
  --surface:#ffffff;
  --surface-soft:#f0f0ed;
  --text:#111111;
  --text-soft:#5f5f5a;
  --line:#e4e4de;
  --line-strong:#cfcfc8;
  --accent:#111111;
  --shadow:0 10px 30px rgba(17,17,17,.06);
  --container:1240px;
  --font:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET / BASE */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6{
  margin-top:0;
}

p{
  margin-top:0;
}

/* BUTTONS */
.cta-primary,
.cta-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:14px 24px;
  font-size:14px;
  font-weight:600;
  transition:.2s ease;
  white-space:nowrap;
  border:0;
  cursor:pointer;
}

.cta-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 20px rgba(17,17,17,.12);
}

.cta-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(17,17,17,.16);
}

.cta-secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line-strong);
}

.cta-secondary:hover{
  border-color:#9f9f97;
  background:rgba(255,255,255,.75);
}

/* HEADER */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(18px);
  background:rgba(245,245,243,.78);
  border-bottom:1px solid rgba(228,228,222,.8);
}

.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.brand-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(145deg,#1d1d1b,#4d4d49);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}

.brand-text{
  line-height:1.05;
}

.brand-name{
  display:block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.brand-sub{
  display:block;
  font-size:11px;
  color:var(--text-soft);
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:14px;
  color:var(--text-soft);
}

.nav-links a:hover{
  color:var(--text);
}

.mobile-config-bar{
  display:none;
}

/* GLOBAL SECTIONS */
.site-shell{
  padding:20px 0 32px;
}

.section{
  padding:28px 0;
}

.section-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.section-header{
  padding:54px 54px 28px;
}

.section-kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-soft);
  font-weight:700;
  margin-bottom:12px;
}

.section-title{
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.02;
  letter-spacing:-.04em;
  margin:0 0 10px;
}

.section-desc{
  font-size:17px;
  line-height:1.7;
  color:var(--text-soft);
  max-width:760px;
  margin:0;
}

/* HERO */
.hero{
  padding:42px 0 28px;
}

.hero-wrap{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  background:linear-gradient(180deg,#ffffff 0%, #f4f4f1 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:760px;
}

.hero-copy{
  padding:88px 74px 72px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2;
}

.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:26px;
}

.hero h1{
  font-size:clamp(44px, 6.1vw, 78px);
  line-height:.98;
  letter-spacing:-.055em;
  margin:0 0 24px;
  max-width:640px;
}

.hero-lead{
  font-size:18px;
  line-height:1.7;
  color:var(--text-soft);
  max-width:560px;
  margin:0 0 36px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.hero-meta{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  padding-top:28px;
  border-top:1px solid var(--line);
  max-width:570px;
}

.hero-meta-item{
  min-width:140px;
}

.hero-meta-value{
  font-size:26px;
  font-weight:700;
  letter-spacing:-.03em;
}

.hero-meta-label{
  font-size:13px;
  color:var(--text-soft);
  margin-top:6px;
  line-height:1.5;
}

.hero-visual{
  position:relative;
  padding:40px 32px 32px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  min-height:560px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.95), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #ecece7 0%, #e8e8e3 100%);
  border-left:1px solid rgba(228,228,222,.9);
}

.hero-card{
  position:absolute;
  top:34px;
  right:34px;
  width:255px;
  padding:18px 18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.9);
  backdrop-filter:blur(16px);
  box-shadow:0 12px 30px rgba(17,17,17,.08);
}

.hero-card-label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--text-soft);
  margin-bottom:10px;
}

.hero-card-title{
  font-size:16px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:12px;
}

.hero-card-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-size:13px;
  color:var(--text-soft);
  padding:8px 0;
  border-bottom:1px solid rgba(17,17,17,.06);
}

.hero-card-total{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(17,17,17,.08);
  font-size:15px;
  font-weight:700;
  color:var(--text);
}

.monument-stage{
  width:min(92%, 630px);
  aspect-ratio:1 / 1.08;
  border-radius:34px;
  background:linear-gradient(180deg,#fafaf8 0%, #ecece7 100%);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85), 0 18px 40px rgba(17,17,17,.08);
  position:relative;
  overflow:hidden;
}

.stage-glow{
  position:absolute;
  inset:auto -12% -35% auto;
  width:74%;
  height:45%;
  background:radial-gradient(circle, rgba(17,17,17,.10), transparent 72%);
  filter:blur(18px);
}

.monument-base{
  position:absolute;
  left:18%;
  right:18%;
  bottom:15%;
  height:16%;
  border-radius:20px 20px 28px 28px;
  background:linear-gradient(180deg,#2a2a28 0%, #191918 100%);
}

.monument-top{
  position:absolute;
  left:29%;
  right:29%;
  bottom:29%;
  height:34%;
  border-radius:18px 18px 10px 10px;
  background:linear-gradient(180deg,#2f2f2d 0%, #1a1a19 100%);
}

.monument-line{
  position:absolute;
  left:34%;
  right:34%;
  height:2px;
  background:rgba(255,255,255,.18);
}

.line-1{bottom:49%}
.line-2{bottom:45%}
.line-3{bottom:41%}

.monument-cross{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:53%;
  width:20px;
  height:38px;
}

.monument-cross::before,
.monument-cross::after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.22);
  border-radius:2px;
}

.monument-cross::before{
  left:8px;
  top:0;
  width:4px;
  height:38px;
}

.monument-cross::after{
  left:0;
  top:11px;
  width:20px;
  height:4px;
}

/* CATEGORIES */
.category-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  padding:0 54px 54px;
}

.category-card{
  background:linear-gradient(180deg,#ffffff 0%, #f6f6f3 100%);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 18px 18px;
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.22s ease;
}

.category-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(17,17,17,.08);
}

.category-icon{
  width:64px;
  height:78px;
  border-radius:18px;
  background:var(--surface-soft);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom:10px;
  border:1px solid var(--line);
  color:#2b2b29;
}

.category-icon svg{
  width:34px;
  height:34px;
}

.category-name{
  font-size:18px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-top:20px;
}

.category-copy{
  font-size:14px;
  line-height:1.55;
  color:var(--text-soft);
  margin-top:8px;
  min-height:64px;
}

.category-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.category-price{
  font-size:13px;
  color:var(--text-soft);
}

.category-link{
  font-size:13px;
  font-weight:700;
}

/* CONFIG PREVIEW */
.config-preview{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.config-copy{
  padding:64px 54px;
  border-right:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #fbfbf9 100%);
}

.config-copy p{
  font-size:17px;
  line-height:1.75;
  color:var(--text-soft);
  max-width:520px;
  margin:0 0 28px;
}

.config-list{
  display:grid;
  gap:12px;
  margin-top:30px;
}

.config-list-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--text-soft);
  font-size:14px;
  line-height:1.55;
}

.config-list-item strong{
  color:var(--text);
}

.config-visual{
  padding:54px;
  background:linear-gradient(180deg,#f7f7f4 0%, #f0f0ec 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.wizard-panel{
  width:min(100%, 430px);
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.9);
  border-radius:28px;
  box-shadow:0 18px 40px rgba(17,17,17,.08);
  padding:24px 22px;
}

.wizard-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.wizard-title{
  font-size:18px;
  font-weight:700;
  letter-spacing:-.02em;
}

.wizard-badge{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--text-soft);
}

.wizard-step{
  display:grid;
  grid-template-columns:30px 1fr auto;
  gap:12px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid rgba(17,17,17,.07);
}

.wizard-num{
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  background:#fff;
  border:1px solid var(--line-strong);
  color:var(--text-soft);
}

.wizard-num.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.wizard-step-name{
  font-size:14px;
  color:var(--text-soft);
}

.wizard-step-name.active{
  color:var(--text);
  font-weight:600;
}

.wizard-step-price{
  font-size:13px;
  color:var(--text-soft);
}

.wizard-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(17,17,17,.08);
}

.wizard-total-label{
  font-size:13px;
  color:var(--text-soft);
}

.wizard-total-value{
  font-size:28px;
  font-weight:700;
  letter-spacing:-.04em;
}

/* ACCESSORIES */
.accessories-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  padding:0 54px 54px;
  align-items:stretch;
}

.product-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  transition:.2s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(17,17,17,.08);
}

.product-media{
  aspect-ratio:1.1 / .84;
  background:linear-gradient(180deg,#efefeb 0%, #e8e8e3 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-media::after{
  content:"";
  width:55%;
  height:55%;
  border-radius:26px;
  background:linear-gradient(180deg,#2c2c2a 0%, #151514 100%);
  display:block;
}

.product-media:has(img)::after{
  display:none;
}

.product-body{
  padding:22px 22px 20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.product-name{
  font-size:20px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:8px;
}

.product-copy{
  font-size:14px;
  line-height:1.6;
  color:var(--text-soft);
  margin-bottom:16px;
  min-height:78px; /* możesz zmienić na 72 / 84 */
}

.product-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-top:16px;
  border-top:1px solid var(--line);
  margin-top:auto;
}

.product-price{
  font-size:14px;
  color:var(--text-soft);
}

.product-link{
  font-size:13px;
  font-weight:700;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  align-items:center;
  gap:30px;
  padding:0 54px 54px;
}

.about-copy p{
  font-size:17px;
  line-height:1.75;
  color:var(--text-soft);
  max-width:620px;
  margin:0 0 32px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:580px;
}

.stat-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff 0%, #f7f7f4 100%);
  border-radius:22px;
  padding:22px 20px;
}

.stat-value{
  font-size:34px;
  font-weight:700;
  letter-spacing:-.04em;
}

.stat-label{
  font-size:13px;
  color:var(--text-soft);
  margin-top:8px;
  line-height:1.5;
}

.about-media{
  aspect-ratio:1 / .9;
  border-radius:30px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#efefeb 0%, #e6e6e1 100%);
  position:relative;
  overflow:hidden;
}

.about-media::before,
.about-media::after{
  display:none;
  content:none;
}

.about-media-image{
  display:block;
  background:none;
}

.about-media-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:30px;
}

/* FINAL CTA */
.final-cta{
  padding:84px 54px;
  text-align:center;
  background:linear-gradient(180deg,#ffffff 0%, #f4f4f1 100%);
}

.final-cta .section-title{
  max-width:760px;
  margin:0 auto 14px;
}

.final-cta .section-desc{
  max-width:680px;
  margin:0 auto 32px;
}

/* FOOTER */
.footer{
  padding:30px 6px 6px;
}

.footer-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  padding:26px 28px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.footer-copy{
  font-size:13px;
  color:var(--text-soft);
}

.footer-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.footer-links a{
  font-size:13px;
  color:var(--text-soft);
}

.footer-links a:hover{
  color:var(--text);
}

/* RESPONSIVE */
@media (max-width:1180px){
  .hero-grid,
  .config-preview,
  .about-grid{
    grid-template-columns:1fr;
  }

  .hero-copy{
    padding:70px 42px 36px;
  }

  .hero-visual{
    min-height:520px;
    border-left:0;
    border-top:1px solid var(--line);
  }

  .hero-card{
    top:26px;
    right:26px;
  }

  .config-copy{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .category-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:860px){
  .nav{
    height:auto;
    padding:18px 0;
    flex-wrap:wrap;
  }

  .nav-links{
    order:3;
    width:100%;
    justify-content:flex-start;
    overflow:auto;
    padding-bottom:4px;
  }

  .page-konfigurator-custom .topbar .nav{
    padding:12px 0 10px;
    gap:10px;
  }

  .page-konfigurator-custom .topbar .nav-links,
  .page-konfigurator-custom .topbar .cta-primary{
    display:none;
  }

  .page-konfigurator-custom .topbar .brand{
    min-width:0;
  }

  .page-konfigurator-custom .mobile-config-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:0 0 12px;
  }

  .mobile-config-total{
    min-width:0;
    display:grid;
    gap:2px;
  }

  .mobile-config-total span{
    font-size:10px;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:#77776f;
    font-weight:700;
  }

  .mobile-config-total strong{
    display:block;
    max-width:42vw;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:21px;
    line-height:1.05;
    letter-spacing:-.03em;
    color:#111;
  }

  .mobile-config-actions{
    display:flex;
    gap:7px;
    flex:0 0 auto;
  }

  .page-konfigurator-custom .mobile-config-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    border-radius:999px;
    padding:0 22px;
    border:1px solid #d8d8cf;
    font-family:var(--font, inherit);
    font-size:16px;
    font-weight:700 !important;
    line-height:1;
    letter-spacing:.01em;
    cursor:pointer;
    white-space:nowrap;
    transition:.22s ease;
    -webkit-font-smoothing:antialiased;
    appearance:none;
  }

  .page-konfigurator-custom .mobile-config-btn.primary{
    background:#111;
    color:#fff;
    border-color:#111;
    box-shadow:0 10px 24px rgba(17,17,17,.12);
  }

  .page-konfigurator-custom .mobile-config-btn.secondary{
    background:#fff;
    color:#111;
  }

  .page-konfigurator-custom .mobile-config-btn.primary:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 30px rgba(17,17,17,.16);
  }

  .page-konfigurator-custom .mobile-config-btn.secondary:hover{
    background:#fafaf8;
  }

  .page-konfigurator-custom .mobile-config-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
    transform:none !important;
  }

  .hero h1{
    max-width:100%;
  }

  .hero-copy,
  .config-copy,
  .config-visual,
  .section-header,
  .category-grid,
  .accessories-grid,
  .about-grid,
  .final-cta{
    padding-left:24px;
    padding-right:24px;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
    padding-bottom:24px;
  }

  .accessories-grid{
    grid-template-columns:1fr;
    padding-bottom:24px;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-wrap,
  .section-box{
    border-radius:26px;
  }
}

@media (max-width:560px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .site-shell{
    padding-top:12px;
  }

  .cta-primary,
  .cta-secondary{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-card{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    margin:18px 0 0;
  }

  .hero-visual{
    padding:18px 18px 24px;
    min-height:460px;
    align-items:flex-start;
    flex-direction:column;
  }

  .monument-stage{
    width:100%;
    border-radius:24px;
  }

  .category-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .wizard-total-value{
    font-size:24px;
  }
	
	/* PAGE CONTENT */
.lst-page-content > *:first-child{
  margin-top:0;
}

.lst-page-content h2,
.lst-page-content h3,
.lst-page-content h4{
  color:#111111;
  line-height:1.15;
  letter-spacing:-.03em;
  margin-top:40px;
  margin-bottom:14px;
}

.lst-page-content h2{
  font-size:clamp(28px, 3vw, 38px);
}

.lst-page-content h3{
  font-size:clamp(22px, 2.2vw, 30px);
}

.lst-page-content h4{
  font-size:20px;
}

.lst-page-content p{
  margin:0 0 18px;
}

.lst-page-content ul,
.lst-page-content ol{
  margin:0 0 22px 22px;
  padding:0;
}

.lst-page-content li{
  margin-bottom:8px;
}

.lst-page-content strong{
  color:#111111;
}

.lst-page-content a{
  color:#111111;
  text-decoration:underline;
  text-underline-offset:3px;
}

.lst-page-content img{
  border-radius:22px;
  margin:24px 0;
}

.lst-page-content blockquote{
  margin:28px 0;
  padding:18px 22px;
  border-left:3px solid #111111;
  background:#f7f7f4;
  border-radius:16px;
  color:#5f5f5a;
}

.lst-breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.lst-breadcrumbs a{
  color:#5f5f5a;
}

.lst-breadcrumbs a:hover{
  color:#111111;
}

/* PAGINATION */
.nav-links,
.page-numbers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:var(--text);
  font-size:14px;
  font-weight:600;
  transition:.2s ease;
}

.page-numbers:hover{
  background:#f7f7f4;
}

.page-numbers.current{
  background:#111111;
  color:#ffffff;
  border-color:#111111;
}
}

.product-media{
  aspect-ratio:1.1 / .84;
  background:linear-gradient(180deg,#efefeb 0%, #e8e8e3 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   ABOUT PAGE – FINAL
========================= */

.lst-page-content{
  max-width:980px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.lst-page-content h2,
.lst-page-content .wp-block-heading{
  color:var(--text);
  margin:0 0 14px;
  line-height:1.12;
  letter-spacing:-.03em;
}

.lst-page-content h2{
  font-size:clamp(28px, 3vw, 40px);
}

.lst-page-content p{
  color:var(--text-soft);
  line-height:1.85;
  margin:0 0 16px;
}

.lst-page-content strong{
  color:var(--text);
}

.lst-page-content ul{
  margin:10px 0 0 22px;
  padding:0;
}

.lst-page-content li{
  margin-bottom:12px;
  color:var(--text-soft);
  line-height:1.75;
}

.lst-page-content img{
  display:block;
  width:100%;
  max-width:980px;
  margin:0 auto;
  border-radius:24px;
}

/* Sekcje */
.about-section{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:34px 36px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  box-shadow:0 8px 24px rgba(17,17,17,.03);
}

.about-section h2{
  margin-bottom:14px;
}

.about-highlight{
  background:linear-gradient(180deg,#f8f8f5 0%, #efefeb 100%);
}

/* Układ tekst + obraz */
.about-split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
}

.about-split img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  margin:0;
}

/* CTA */
.about-cta{
  width:100%;
  max-width:980px;
  margin:12px auto 0;
  padding:40px 36px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  text-align:center;
  box-shadow:0 8px 24px rgba(17,17,17,.03);
}

.about-cta h2{
  margin:0 0 12px;
}

.about-cta p{
  margin:0 0 22px;
  color:var(--text-soft);
}

.about-cta .wp-block-buttons{
  justify-content:center;
  gap:14px;
}

.about-cta .wp-block-button__link{
  border-radius:999px;
  padding:12px 20px;
  font-weight:600;
}

/* Responsywność */
@media (max-width:860px){
  .lst-page-content{
    padding:0 12px;
    gap:22px;
  }

  .about-section,
  .about-cta{
    padding:24px 22px;
    border-radius:20px;
  }

  .about-split{
    grid-template-columns:1fr;
    gap:22px;
  }
}

/* =========================
   CONTACT PAGE – FINAL
========================= */

.contact-section{
  width:100%;
  max-width:980px;
  margin:0 auto 28px;
  padding:34px 36px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  box-shadow:0 8px 24px rgba(17,17,17,.03);
}

.contact-section h2,
.contact-section h3{
  margin:0 0 14px;
  line-height:1.12;
  letter-spacing:-.03em;
  color:var(--text);
}

.contact-section h2{
  font-size:clamp(28px, 3vw, 40px);
}

.contact-section h3{
  font-size:clamp(22px, 2.2vw, 28px);
}

.contact-section p{
  margin:0 0 14px;
  color:var(--text-soft);
  line-height:1.85;
}

.contact-grid{
  display:block;
}

.contact-grid .wp-block-columns{
  margin:0;
  gap:28px;
}

.contact-grid .wp-block-column{
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,#fff 0%, #f7f7f4 100%);
  padding:24px;
}

.contact-highlight{
  background:linear-gradient(180deg,#f8f8f5 0%, #efefeb 100%);
}

.contact-cta{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:40px 36px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  text-align:center;
  box-shadow:0 8px 24px rgba(17,17,17,.03);
}

.contact-cta h2{
  margin:0 0 12px;
}

.contact-cta p{
  margin:0 0 22px;
  color:var(--text-soft);
}

.contact-cta .wp-block-buttons{
  justify-content:center;
  gap:14px;
}

.contact-cta .wp-block-button__link{
  border-radius:999px;
  padding:12px 20px;
  font-weight:600;
}

@media (max-width:860px){
  .contact-section,
  .contact-cta{
    padding:24px 22px;
    border-radius:20px;
  }

  .contact-grid .wp-block-columns{
    gap:18px;
  }

  .contact-grid .wp-block-column{
    padding:18px;
  }
}

/* LEGAL PAGES */

.page-id .lst-page-content{
  max-width:900px;
}

.lst-page-content h1,
.lst-page-content h2{
  margin-top:32px;
  margin-bottom:12px;
}

.lst-page-content p{
  line-height:1.8;
  color:var(--text-soft);
}

.lst-page-content{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ============================================================
   AKCESORIA PAGE
   Dopisz na końcu /assets/css/main.css
   ============================================================ */

.accessories-page .accessories-hero{
  padding-top:42px;
}

.accessories-hero-box{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:620px;
  border:1px solid var(--line);
  border-radius:36px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%, #f4f4f1 100%);
  box-shadow:var(--shadow);
}

.accessories-hero-copy{
  padding:78px 74px 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.accessories-hero-copy h1{
  max-width:680px;
  margin:0 0 24px;
  font-size:clamp(42px, 5.8vw, 74px);
  line-height:.98;
  letter-spacing:-.055em;
}

.accessories-hero-copy p{
  max-width:590px;
  margin:0 0 34px;
  color:var(--text-soft);
  font-size:18px;
  line-height:1.75;
}

.accessories-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.accessories-hero-visual{
  border-left:1px solid rgba(228,228,222,.9);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.95), rgba(255,255,255,0) 35%),
    linear-gradient(180deg,#ecece7 0%, #e8e8e3 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 36px;
}

.accessory-stage{
  width:min(100%, 560px);
  aspect-ratio:1 / .92;
  border-radius:34px;
  background:linear-gradient(180deg,#fafaf8 0%, #ecece7 100%);
  border:1px solid rgba(255,255,255,.9);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85), 0 18px 40px rgba(17,17,17,.08);
  position:relative;
  overflow:hidden;
}

.accessory-object{
  position:absolute;
  background:linear-gradient(180deg,#2f2f2d 0%, #171716 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14), 0 18px 34px rgba(17,17,17,.13);
}

.accessory-vase{
  width:18%;
  height:36%;
  left:18%;
  bottom:20%;
  border-radius:42% 42% 18px 18px;
}

.accessory-cross{
  width:8%;
  height:45%;
  right:26%;
  bottom:20%;
  border-radius:8px;
}

.accessory-cross::after{
  content:"";
  position:absolute;
  left:-90%;
  right:-90%;
  top:24%;
  height:13%;
  border-radius:8px;
  background:inherit;
}

.accessory-plate{
  left:28%;
  right:22%;
  bottom:14%;
  height:11%;
  border-radius:18px 18px 24px 24px;
}

.accessory-label{
  position:absolute;
  left:28px;
  top:28px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.9);
  backdrop-filter:blur(14px);
  color:var(--text-soft);
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.accessory-category-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  padding:0 54px 54px;
}

.accessory-category-card{
  min-height:250px;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 22px 20px;
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  box-shadow:0 8px 20px rgba(17,17,17,.03);
  transition:.22s ease;
  display:flex;
  flex-direction:column;
}

.accessory-category-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(17,17,17,.08);
}

.accessory-icon{
  width:66px;
  height:66px;
  border-radius:20px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fafaf8,#efefeb);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  margin-bottom:22px;
}

.accessory-icon svg{
  width:34px;
  height:34px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.25;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.accessory-category-name{
  font-size:22px;
  line-height:1.12;
  font-weight:700;
  letter-spacing:-.03em;
  margin-bottom:10px;
}

.accessory-category-copy{
  color:var(--text-soft);
  font-size:14px;
  line-height:1.65;
  margin-bottom:22px;
}

.accessory-category-foot{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--text-soft);
  font-size:13px;
}

.accessory-category-foot strong{
  color:var(--text);
}

.accessory-products-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  padding:0 54px 54px;
}

.accessory-product-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%, #f8f8f5 100%);
  box-shadow:0 8px 20px rgba(17,17,17,.03);
  transition:.22s ease;
}

.accessory-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(17,17,17,.08);
}

.accessory-product-media{
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1.08 / .82;
  background:linear-gradient(180deg,#efefeb 0%, #e8e8e3 100%);
  position:relative;
  overflow:hidden;
}

.accessory-product-media::after{
  content:"";
  width:52%;
  height:50%;
  border-radius:26px;
  background:linear-gradient(180deg,#2c2c2a 0%, #151514 100%);
}

.accessory-product-media:has(img)::after{
  display:none;
}

.accessory-product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.accessory-product-body{
  padding:22px 22px 20px;
}

.accessory-product-body h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.14;
  letter-spacing:-.03em;
}

.accessory-product-body p{
  min-height:46px;
  margin:0 0 16px;
  color:var(--text-soft);
  font-size:14px;
  line-height:1.65;
}

.accessory-product-foot{
  padding-top:16px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:14px;
}

.accessory-product-foot span{
  color:var(--text-soft);
  font-weight:700;
}

.accessory-product-foot a{
  font-size:13px;
  font-weight:700;
}

.accessories-empty{
  margin:0 54px 54px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:22px;
  display:grid;
  gap:6px;
}

.accessories-empty span{
  color:var(--text-soft);
  font-size:14px;
}

.accessories-cta-box{
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg,#ffffff 0%, #f4f4f1 100%);
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
}

.accessories-cta-box h2{
  margin:0 0 12px;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.02;
  letter-spacing:-.04em;
}

.accessories-cta-box p{
  margin:0;
  max-width:720px;
  color:var(--text-soft);
  font-size:17px;
  line-height:1.7;
}

@media (max-width:1180px){
  .accessories-hero-box{
    grid-template-columns:1fr;
  }

  .accessories-hero-visual{
    border-left:0;
    border-top:1px solid var(--line);
  }

  .accessory-category-grid,
  .accessory-products-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .accessories-cta-box{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .accessories-hero-copy,
  .section-header,
  .accessories-cta-box{
    padding:34px 24px;
  }

  .accessory-category-grid,
  .accessory-products-grid{
    grid-template-columns:1fr;
    padding:0 24px 34px;
  }

  .accessories-empty{
    margin:0 24px 34px;
  }

  .accessories-hero-visual{
    padding:28px 22px;
  }
}

/* FIX: produkty akcesoriów – bez przybliżania zdjęć */

.product-media img,
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  padding: 18px;
  background: #f3f3ef;
}

/* Karta produktu WooCommerce */
.single-product div.product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto !important;
  max-height: 620px;
  object-fit: contain !important;
  object-position: center center;
  background: #f3f3ef;
  padding: 24px;
  border-radius: 22px;
}

/* Kontener zdjęcia na karcie produktu */
.single-product div.product .woocommerce-product-gallery {
  background: #f3f3ef;
}

/* CONTACT FORM 7 - LST */
.wpcf7 form{
  display:grid;
  gap:14px;
}

.wpcf7 label{
  display:grid;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:var(--text-soft);
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea{
  width:100%;
  min-height:52px;
  border:1px solid var(--line-strong);
  border-radius:16px;
  padding:0 16px;
  background:#fff;
  color:var(--text);
  outline:none;
}

.wpcf7 textarea{
  min-height:130px;
  padding:14px 16px;
  resize:vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(17,17,17,.06);
}

.wpcf7-list-item{
  margin:0;
}

.wpcf7-acceptance label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:12px;
  line-height:1.5;
  color:var(--text-soft);
}

.wpcf7 input[type="checkbox"]{
  width:18px;
  height:18px;
  min-height:18px;
  padding:0;
  margin-top:2px;
}

.wpcf7-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px !important;
  padding:14px 24px !important;
  min-height:52px;
  background:var(--accent) !important;
  color:#fff !important;
  font-size:14px;
  font-weight:700;
  border:0 !important;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(17,17,17,.12);
  transition:.2s ease;
}

.wpcf7-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(17,17,17,.16);
}

.wpcf7-not-valid-tip{
  margin-top:6px;
  font-size:12px;
  color:#b64040;
}

.wpcf7 form .wpcf7-response-output{
  margin:10px 0 0;
  padding:14px 16px;
  border-radius:16px;
  font-size:13px;
  line-height:1.5;
}

/* FIX: widoczny napis na CTA w headerze */
.topbar .cta-primary,
.topbar .cta-primary:visited,
.topbar .cta-primary:hover,
.topbar .cta-primary:focus {
  color: #ffffff !important;
  background: #111111;
  min-width: 190px;
  height: 46px;
  padding: 0 24px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* Na mniejszych ekranach nie ściskaj przycisku */
@media (max-width: 900px) {
  .topbar .cta-primary {
    min-width: auto;
    padding: 0 18px;
    font-size: 13px;
  }
}

/* CONTACT PAGE - MOBILE FIX */
@media (max-width: 860px){

  .section-header{
    padding:32px 22px 22px;
  }

  .section-title{
    font-size:clamp(30px, 9vw, 42px);
  }

  .section-desc{
    font-size:15px;
  }

  .section-box > div[style*="grid-template-columns:1fr .9fr"]{
    grid-template-columns:1fr !important;
    padding:0 22px 32px !important;
  }

  .stat-card{
    padding:20px 18px;
    overflow:hidden;
  }

  .stat-value{
    font-size:24px !important;
    line-height:1.15;
    word-break:break-word;
    overflow-wrap:anywhere;
  }

  .site-shell{
    padding-top:10px;
  }
}

@media (max-width: 520px){

  .container{
    width:min(100% - 28px, var(--container));
  }

  .section{
    padding:16px 0;
  }

  .section-box{
    border-radius:24px;
  }

  .section-header{
    padding:28px 20px 20px;
  }

  .section-box > div[style*="grid-template-columns:1fr .9fr"]{
    padding:0 18px 28px !important;
  }

  .stat-value{
    font-size:22px !important;
  }
}

.brand-logo{
  width:auto;
  height:42px;
  max-width:90px;
  object-fit:contain;
  flex-shrink:0;
}

@media (max-width:560px){
  .brand{
    min-width:0;
    gap:10px;
  }

  .brand-logo{
    height:34px;
    max-width:72px;
  }

  .brand-name{
    font-size:11px;
    letter-spacing:.10em;
  }

  .brand-sub{
    font-size:9px;
    letter-spacing:.07em;
  }
}

/* =========================
   HEADER CART – LST
========================= */

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  flex:0 0 auto;
}

.header-cart{
  position:relative;
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#111111;
  background:rgba(255,255,255,.42);
  border:1px solid rgba(228,228,222,.95);
  transition:.2s ease;
  box-shadow:0 8px 18px rgba(17,17,17,.04);
}

.header-cart:hover{
  background:#ffffff;
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(17,17,17,.08);
  border-color:#d8d8cf;
}

.header-cart-icon{
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.header-cart-icon svg{
  width:24px;
  height:24px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.header-cart-count{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#c93b36;
  color:#ffffff;
  font-size:11px;
  font-weight:800;
  line-height:1;
  border:2px solid #f5f5f3;
  box-shadow:0 6px 12px rgba(201,59,54,.22);
}

/* Ukryj licznik wizualnie, gdy koszyk pusty – jeśli chcesz ZAWSZE widzieć 0, usuń ten blok */
/*
.header-cart-count:empty{
  display:none;
}
*/

@media (max-width:860px){
  .nav-actions{
    margin-left:auto;
    gap:10px;
  }

  .header-cart{
    width:44px;
    height:44px;
  }

  .header-cart-icon,
  .header-cart-icon svg{
    width:23px;
    height:23px;
  }
}

@media (max-width:560px){
  .nav-actions{
    width:100%;
    justify-content:space-between;
    order:2;
  }

  .nav-actions .cta-primary{
    width:auto;
    flex:1;
    min-height:48px;
    padding-left:18px;
    padding-right:18px;
  }

  .header-cart{
    flex:0 0 46px;
  }
}