* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Segoe UI", Arial, sans-serif; color: #2b2b2b; background: #ffffff; line-height: 1.55; }
a { color: #2f5f54; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

header.top { background: #2f2a24; color: #fff; }
header.top .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; }
.logo span { color: #d9a441; }
nav.main a { color: #eee; text-decoration: none; margin-left: 18px; font-size: 15px; }
nav.main a:hover { text-decoration: underline; }

.hero { position: relative; }
.hero img { width: 100%; display: block; }
.hero-text { position: absolute; left: 8%; top: 30%; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.hero-text h1 { font-size: 42px; margin-bottom: 10px; }
.hero-text p { font-size: 20px; }
.btn { display: inline-block; background: #d9a441; color: #2b2210; padding: 12px 26px; border: none; border-radius: 6px; font-size: 17px; font-weight: 600; text-decoration: none; cursor: pointer; }
.btn:hover { background: #c8932f; }

/* celowo niski kontrast (WCAG 1.4.3) - jasnoszary tekst na białym tle */
.shipping-note { color: #c7c7c7; background: #ffffff; text-align: center; padding: 10px 0; font-size: 15px; }

section.products { padding: 40px 0; }
section.products h2 { margin-bottom: 24px; font-size: 28px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card { border: 1px solid #e3ddd4; border-radius: 10px; padding: 18px; text-align: center; background: #fbfaf8; }
.card img { width: 160px; height: 160px; object-fit: contain; }
.card h3 { font-size: 18px; margin: 12px 0 6px; }
.price { font-size: 20px; font-weight: 700; color: #a33c2f; }
.price del { color: #8c8c8c; font-weight: 400; font-size: 16px; margin-right: 8px; }
.badge-promo { display: inline-block; background: #a33c2f; color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
.pdp .photo { background: #fbfaf8; border: 1px solid #e3ddd4; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.pdp .photo img { width: 100%; max-width: 340px; }
.pdp h1 { font-size: 30px; margin-bottom: 10px; }
.pdp .price { font-size: 28px; margin: 14px 0; }
.pdp ul { margin: 14px 0 20px 20px; }
.qty { width: 60px; padding: 8px; margin-right: 10px; }

table.cart { width: 100%; border-collapse: collapse; margin: 24px 0; }
table.cart th, table.cart td { border-bottom: 1px solid #e3ddd4; padding: 12px 10px; text-align: left; }
table.cart th { background: #f6f2ec; }

form.checkout { max-width: 560px; }
form.checkout label { display: block; margin: 14px 0 4px; font-weight: 600; }
form.checkout input[type=text], form.checkout input[type=email], form.checkout input[type=tel] { width: 100%; padding: 10px; border: 1px solid #c9c2b8; border-radius: 6px; }
form.checkout .radio-row { margin: 8px 0; }
.summary-box { background: #f6f2ec; border-radius: 8px; padding: 16px 20px; margin: 20px 0; }

main.doc { padding: 40px 0; max-width: 820px; margin: 0 auto; }
main.doc h1 { margin-bottom: 18px; }
main.doc h2 { margin: 24px 0 8px; font-size: 20px; }
main.doc p, main.doc li { margin-bottom: 8px; }
main.doc ol, main.doc ul { margin-left: 22px; }

footer.site { background: #2f2a24; color: #cfc8bd; margin-top: 50px; padding: 30px 0; font-size: 14px; }
footer.site a { color: #d9a441; }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 40px; }

#cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; background: #22201c; color: #f2efe9; padding: 16px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; z-index: 999; font-size: 14px; }
#cookie-banner .btn { padding: 9px 20px; font-size: 15px; }

@media (max-width: 720px) {
  .pdp { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 26px; }
}
