/*
Theme Name: Żar-Wik Kominki
Description: Sklep WooCommerce dla Żar-Wik Kominki (Kalisz) — kominy ze stali nierdzewnej i akcesoria kominowe. Layout wg referencyjnego makiety klienta (zar-wik-glowna.png).
Author: rb.warsaw
Version: 1.0.0
Text Domain: zar-kominki
*/

/* ============================================================
   DESIGN TOKENS — jedyne źródło prawdy.
   Paleta wg referencji klienta: żółty/złoty akcent, czarny/antracytowy,
   białe tło. Kolory próbkowane bezpośrednio z zar-wik-glowna.png.
   ============================================================ */
:root {
  --white: #FFFFFF;
  --alt: #F6F6F7;
  --ink: #23262B;
  --ink-muted: #666B72;
  --border: rgba(35, 38, 43, 0.1);
  --dark: #1A1A1E;
  --dark2: #202226;
  --yellow: #F7A40A;
  --yellow-light: #FFBB3D;
  --yellow-pale: #FDF0D9;
  --sans: 'Manrope', -apple-system, sans-serif;
  --script: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--sans); margin: 0; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 3.5rem; }
@media (max-width: 900px) { .container { padding: 0 1.5rem; } }

/* ============================================================
   PRZYCISKI
   ============================================================ */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--yellow); color: var(--dark) !important; border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-light); border-color: var(--yellow-light); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--ink) !important; border-color: var(--border); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-secondary.on-dark { background: transparent; color: var(--white) !important; border-color: rgba(255,255,255,0.35); }
.btn-secondary.on-dark:hover { border-color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 3.5rem; gap: 2rem; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-menu a { text-decoration: none; font-size: 0.88rem; font-weight: 600; color: var(--ink); transition: color 0.2s; }
.nav-menu a:hover { color: var(--yellow); }
.nav-menu li { position: relative; }
.nav-menu .has-sub:hover .sub-menu { display: block; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.6rem; min-width: 220px; box-shadow: 0 16px 40px rgba(0,0,0,0.1); list-style: none; margin: 0.5rem 0 0;
}
.sub-menu li { margin: 0; }
.sub-menu a { display: block; padding: 0.6rem 0.75rem; border-radius: 6px; font-weight: 500; }
.sub-menu a:hover { background: var(--alt); color: var(--yellow); }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); text-decoration: none; }
.nav-cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--yellow); color: var(--dark);
  font-size: 0.65rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform 0.3s, opacity 0.3s; }

@media (max-width: 1100px) {
  .nav-menu { display: none; }
}
@media (max-width: 900px) {
  .navbar { padding: 0.85rem 1.5rem; }
  .nav-menu {
    display: flex; position: fixed; inset: 0; top: 64px; background: var(--white);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 2.5rem 2rem; gap: 1.5rem; transform: translateX(100%); transition: transform 0.35s ease; z-index: 99;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a { font-size: 1.05rem; }
  .sub-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; margin-top: 0.5rem; }
  .nav-burger { display: flex; }
  body.mobile-menu-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(15,14,12,0.82) 0%, rgba(15,14,12,0.45) 45%, rgba(15,14,12,0.15) 75%),
              url('assets/img/hero-kominek.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.hero-content { max-width: 620px; padding: 3.5rem 3.5rem; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; display: block; font-weight: 700; }
.hero-title { font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.14; margin-bottom: 1.4rem; color: var(--white); }
.hero-title em { color: var(--yellow); font-style: normal; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-script { position: absolute; top: 2.5rem; right: 3.5rem; font-family: var(--script); font-size: 1.7rem; color: var(--white); text-align: right; line-height: 1.25; opacity: 0.92; }

.hero-features { background: var(--white); border-bottom: 1px solid var(--border); }
.hero-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 1.5rem 3.5rem; }
.hero-feature { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.hero-feature svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero { min-height: 64vh; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-script { display: none; }
  .hero-features-grid { grid-template-columns: 1fr 1fr; padding: 1.25rem 1.5rem; }
}

/* ============================================================
   SEKCJE
   ============================================================ */
.section { padding: 5rem 3.5rem; }
.section-alt { background: var(--alt); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.6rem; font-weight: 700; }
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.2; margin-bottom: 0; color: var(--ink); }
.section-title em { color: var(--yellow); font-style: normal; }
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.section-title-bar { border-left: 4px solid var(--yellow); padding-left: 0.9rem; }
.section-desc { color: var(--ink-muted); font-size: 0.92rem; max-width: 420px; }

@media (max-width: 900px) { .section { padding: 3rem 1.5rem; } }

/* Kategorie / usługi — karty z opisem i CTA */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.category-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.category-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.category-card-img { display: block; aspect-ratio: 4/3; background: var(--alt); overflow: hidden; }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.category-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.category-card-desc { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 1.1rem; }
@media (max-width: 900px) { .category-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .category-grid { grid-template-columns: 1fr; } }

/* Pasek "Dlaczego Żar-Wik" — ciemny, 4 ikony */
.why-strip { background: var(--dark); color: var(--white); padding: 2.5rem 0; }
.why-strip .section-title { color: var(--white); text-align: center; margin-bottom: 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-item { display: flex; align-items: center; gap: 0.85rem; }
.why-item svg { width: 26px; height: 26px; color: var(--yellow); flex-shrink: 0; }
.why-item-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.15rem; }
.why-item-desc { font-size: 0.76rem; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* Sekcja produktowa ze zdjęciem + kartą specyfikacji */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.spec-photo-wrap { position: relative; }
.spec-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: var(--alt); }
.spec-photo img { width: 100%; height: 100%; object-fit: cover; }
.spec-card {
  position: absolute; right: -1.5rem; bottom: -1.5rem; background: var(--white); border-radius: 12px;
  padding: 1.25rem 1.5rem; box-shadow: 0 20px 45px rgba(0,0,0,0.15); font-size: 0.82rem; max-width: 220px;
}
.spec-card-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.9rem; }
.spec-card-row:last-child { margin-bottom: 0; }
.spec-card-row svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 0.1rem; }
.spec-card-label { color: var(--ink-muted); font-size: 0.74rem; display: block; }
.spec-card-value { font-weight: 700; color: var(--ink); }
@media (max-width: 900px) {
  .spec-grid { grid-template-columns: 1fr; gap: 1rem; }
  .spec-card { position: static; margin-top: 1rem; max-width: 100%; box-shadow: none; border: 1px solid var(--border); }
}

/* Kategorie jako produkty — "Sprawdź" grid */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* Elementy i akcesoria — gęsta siatka ikon */
.parts-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.parts-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem 0.75rem;
  text-align: center; text-decoration: none; color: var(--ink); transition: border-color 0.2s, transform 0.2s;
}
.parts-item:hover { border-color: var(--yellow); transform: translateY(-2px); }
.parts-item svg { width: 30px; height: 30px; color: var(--yellow); margin: 0 auto 0.6rem; }
.parts-item-label { font-size: 0.74rem; font-weight: 600; line-height: 1.3; }
@media (max-width: 1100px) { .parts-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .parts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .parts-grid { grid-template-columns: repeat(2, 1fr); } }

/* Proces wyceny — kroki */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem 1.5rem; text-align: center; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--dark); font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1rem;
}
.step-title { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.8rem; color: var(--ink-muted); }
.steps-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* Opinie */
.opinie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.opinie-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.opinie-stars { color: var(--yellow); margin-bottom: 1rem; font-size: 0.9rem; }
.opinie-quote { font-size: 0.9rem; color: var(--ink); margin-bottom: 1.25rem; line-height: 1.8; }
.opinie-author { font-size: 0.82rem; color: var(--ink-muted); font-weight: 700; }
@media (max-width: 900px) { .opinie-grid { grid-template-columns: 1fr; } }

/* Cozy time — ciemny baner ze zdjęciem */
.cozy-banner {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 340px;
  display: flex; align-items: center;
  background: linear-gradient(100deg, rgba(15,14,12,0.85) 0%, rgba(15,14,12,0.35) 55%, rgba(15,14,12,0.1) 100%),
              url('assets/img/cozy-banner.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.cozy-banner-content { padding: 3rem 3.5rem; max-width: 460px; }
.cozy-banner-content h2 { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 0.75rem; }
.cozy-banner-content p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.cozy-banner-script { position: absolute; right: 3rem; bottom: 2rem; font-family: var(--script); font-size: 1.5rem; color: var(--white); opacity: 0.9; }
@media (max-width: 900px) { .cozy-banner-content { padding: 2.25rem 1.5rem; } .cozy-banner-script { display: none; } }

/* O nas + kontakt */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.about-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; background: var(--alt); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-list { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.about-list li { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.92rem; font-weight: 600; }
.about-list svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }

.contact-card { background: var(--alt); border-radius: 14px; padding: 2rem; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.contact-faq { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.contact-faq li { font-size: 0.88rem; color: var(--ink-muted); padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.contact-faq li:last-child { border-bottom: none; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-method { background: var(--white); border-radius: 10px; padding: 1rem 0.75rem; text-align: center; }
.contact-method svg { width: 22px; height: 22px; color: var(--yellow); margin: 0 auto 0.5rem; }
.contact-method-label { font-size: 0.7rem; color: var(--ink-muted); display: block; margin-bottom: 0.2rem; }
.contact-method-value { font-size: 0.8rem; font-weight: 700; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .contact-methods { grid-template-columns: 1fr; } }

/* Poradnik / blog */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.blog-card { text-decoration: none; color: var(--ink); }
.blog-card-img { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: var(--alt); margin-bottom: 0.9rem; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-date { font-size: 0.72rem; color: var(--ink-muted); margin-bottom: 0.4rem; display: block; }
.blog-card-title { font-size: 0.94rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card-link { font-size: 0.8rem; font-weight: 700; color: var(--yellow); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT CARD (WooCommerce — sklep/karuzela)
   ============================================================ */
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; position: relative; }
.product-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: rgba(247,164,10,0.4); }
.product-card-img { aspect-ratio: 1/1; background: var(--alt); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.product-card-cat { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.4rem; font-weight: 700; }
.product-card-name { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.product-card-desc { font-size: 0.87rem; color: var(--ink-muted); margin-bottom: 0; }
.product-card-price { color: var(--ink); font-weight: 800; font-size: 1.1rem; margin-top: 0.75rem; }
.product-card-stretched-link { position: absolute; inset: 0; z-index: 1; }
.product-card-actions { position: relative; z-index: 2; margin-top: 1rem; }
.product-card-actions a.button, .product-card-actions a.add_to_cart_button {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  padding: 0.7rem 1.4rem; border-radius: 8px; background: var(--yellow); color: var(--dark) !important;
  text-decoration: none !important; transition: background 0.3s;
}
.product-card-actions a.button:hover, .product-card-actions a.add_to_cart_button:hover { background: var(--yellow-light); }

.carousel-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
  scrollbar-width: thin; scrollbar-color: var(--yellow) transparent;
}
.carousel-track .product-card { flex: 0 0 clamp(230px, 24vw, 280px); scroll-snap-align: start; }

/* Siatka sklepu (archiwum, page-sklep.php) */
.shop-hero { padding: 4rem 3.5rem 2rem; text-align: center; background: var(--alt); }
.shop-page-wrap { padding: 3rem 3.5rem 6rem; max-width: 1280px; margin: 0 auto; }
.shop-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.shop-filter-btn {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  background: var(--white); border: 1px solid var(--border); color: var(--ink-muted);
  padding: 0.65rem 1.4rem; border-radius: 999px; cursor: pointer; transition: all 0.2s;
}
.shop-filter-btn:hover { border-color: var(--yellow); color: var(--ink); }
.shop-filter-btn.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } .shop-hero, .shop-page-wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 200; }
.cart-drawer-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--white); z-index: 201;
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,0.18);
}
.cart-drawer.is-open { transform: translateX(0); }
body.cart-drawer-open { overflow: hidden; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 2rem; border-bottom: 1px solid var(--border); }
.cart-drawer-header h2 { font-size: 1.15rem; color: var(--ink); }
.cart-drawer-header-count { color: var(--yellow); font-size: 1rem; }
.cart-drawer-close { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-drawer-empty { text-align: center; padding: 3rem 0; color: var(--ink-muted); }
.cart-drawer-empty svg { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--yellow); }
.cart-drawer-items { list-style: none; margin: 0; padding: 0; }
.cart-drawer-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-drawer-item-img img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.cart-drawer-item-name { text-decoration: none; font-weight: 700; font-size: 0.9rem; color: var(--ink); display: block; margin-bottom: 0.25rem; }
.cart-drawer-item-qty { display: block; font-size: 0.78rem; color: var(--ink-muted); }
.cart-drawer-item-price { display: block; font-size: 0.85rem; color: var(--ink); margin-top: 0.25rem; }
.cart-drawer-item .remove { color: var(--ink-muted); text-decoration: none; font-size: 1.3rem; line-height: 1; align-self: start; }
.cart-drawer-item .remove:hover { color: var(--yellow); }
.cart-drawer-total { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.cart-drawer-total-amount { color: var(--yellow); }
.cart-drawer-footer { padding: 1.5rem 2rem 2rem; display: flex; gap: 0.75rem; border-top: 1px solid var(--border); }
.cart-drawer-btn { flex: 1; text-align: center; }

/* ============================================================
   CTA KOŃCOWE + FORMULARZ KONTAKTOWY
   ============================================================ */
.finalcta { background: var(--dark); color: var(--white); padding: 5rem 3.5rem; }
.finalcta .section-eyebrow { color: var(--yellow); }
.finalcta .section-title { color: var(--white); }
.finalcta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.finalcta-desc { color: rgba(255,255,255,0.65); max-width: 420px; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 0.35rem; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.9rem 1.1rem; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px;
  background: rgba(255,255,255,0.06); font-family: var(--sans); font-size: 0.92rem; color: var(--white);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--yellow); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; border: none; margin-top: 0.5rem; }
.contact-form-notice { padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.88rem; margin-bottom: 1.25rem; }
.contact-form-notice.success { background: rgba(247,164,10,0.18); color: var(--yellow-light); }
.contact-form-notice.error { background: rgba(220,80,80,0.2); color: #E88; }

@media (max-width: 900px) {
  .finalcta { padding: 3.5rem 1.5rem; }
  .finalcta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--white); padding: 3.5rem 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { display: inline-block; background: var(--white); border-radius: 8px; padding: 0.6rem 1rem; margin-bottom: 1rem; }
.footer-logo img { height: 32px; width: auto; display: block; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.1rem; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact-cta { margin-top: 1rem; }
.footer-script { font-family: var(--script); font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .site-footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
