
:root {
  --red: #ed0027;
  --red-dark: #bd001f;
  --ink: #0a0a0b;
  --paper: #f6f5f2;
  --line: #deddd8;
  --muted: #656568;
  --background: #ffffff;
  --foreground: #101012;
  --card: #ffffff;
  --card-foreground: #101012;
  --popover: #ffffff;
  --popover-foreground: #101012;
  --primary: #101012;
  --primary-foreground: #ffffff;
  --secondary: #f4f4f3;
  --secondary-foreground: #101012;
  --muted-foreground: #6f6f73;
  --accent: #efefed;
  --accent-foreground: #101012;
  --destructive: #d90024;
  --border: #deddd8;
  --input: #deddd8;
  --ring: #ed0027;
  --radius: 0.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-width {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* ===== Topbar + menu ===== */
.topbar {
	position: relative;
	z-index: 2;
	background: var(--red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.topbar-inner {
	min-height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	padding: 6px 0;
}
.topbar-divider {
	width: 1px;
	height: 12px;
	flex: 0 0 auto;
	background: rgba(255, 255, 255, 0.45);
}

.site-chrome {
	position: relative;
	z-index: 40;
	color: #fff;
}
body.home .site-chrome {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	box-shadow: none;
	transition: box-shadow 0.45s ease;
}
body.home .site-chrome::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: rgba(9, 9, 11, 0.96);
	opacity: 0;
	transition: opacity 0.45s ease;
}
body.home .site-chrome.is-solid::before {
	opacity: 1;
}
body.home .site-chrome.is-solid {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	transition: box-shadow 0.45s ease;
}
body.home .site-chrome .topbar,
body.home .site-chrome .header {
	position: relative;
	z-index: 1;
}
body:not(.home) .site-chrome {
	position: sticky;
	top: 0;
	background: #09090b;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
body.admin-bar.home .site-chrome {
	top: 32px;
}
body.admin-bar:not(.home) .site-chrome {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar.home .site-chrome,
	body.admin-bar:not(.home) .site-chrome {
		top: 46px;
	}
}

.header {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: white;
	transition: border-color 0.45s ease;
}
.site-chrome.is-solid .header,
body:not(.home) .header {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}
.header-inner {
	min-height: 78px;
	display: grid;
	grid-template-columns: minmax(140px, 190px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px 28px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  display: block;
  width: min(190px, 100%);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 2.2vw, 30px);
  min-width: 0;
}
.main-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: #fff; }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.cart-trigger {
  justify-self: end;
  height: 42px;
  padding: 0 14px 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.cart-trigger:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}
.cart-trigger:active { transform: translateY(1px); }
.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111;
  color: white;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: var(--seu-hero-image),
    radial-gradient(circle at 72% 48%, #37383b 0, #171719 38%, #08080a 75%);
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.99) 0%, rgba(5, 5, 6, 0.88) 35%, rgba(5, 5, 6, 0.25) 70%, rgba(5, 5, 6, 0.43) 100%),
    linear-gradient(0deg, rgba(5, 5, 6, 0.7) 0%, transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 130px;
}
.hero-copy { max-width: 690px; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow i { width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  margin: 24px 0 22px;
  max-width: 760px;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.82);
}
.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; margin-top: 35px; flex-wrap: wrap; }
.hero-button {
  height: 52px;
  min-width: 205px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.red-button {
  border-radius: 2px;
  background: var(--red);
  color: white;
  border-color: var(--red);
  transition: background 160ms ease, transform 160ms ease;
}
.red-button:hover,
.red-button:focus-visible { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.red-button:active { transform: translateY(1px); }
.outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  transition: background 160ms ease, border-color 160ms ease;
}
.outline-light:hover,
.outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.polish-stamp {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(5, 5, 6, 0.35);
  backdrop-filter: blur(6px);
  text-align: center;
}
.polish-stamp::before,
.polish-stamp::after {
  content: "★";
  position: absolute;
  color: var(--red);
  font-size: 10px;
}
.polish-stamp::before { top: 14px; }
.polish-stamp::after { bottom: 14px; }
.polish-stamp span { color: white; font-size: 28px; font-weight: 900; }
.polish-stamp strong {
  max-width: 100px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-index {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.section { padding: 104px 0; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}
.section-heading h2,
.custom-design h2,
.made-content h2,
.cta-strip h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}
.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 30px;
}
.category-tabs button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: #55555a;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.category-tabs button:hover,
.category-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 18px;
}
.collection-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.product-card { min-width: 0; display: flex; flex-direction: column; }
.product-visual {
  position: relative;
  height: 425px;
  overflow: hidden;
  background: #ececea;
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-visual img { transform: scale(1.035); }
.product-visual.shirt-front img { object-position: 18% center; }
.product-visual.shirt-back img { object-position: 83% center; }
.product-visual.hoodie img { object-position: 18% center; }
.product-visual.softshell img { object-position: 82% center; }
.product-code {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.abstract-product {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 0 39%, rgba(255,255,255,0.04) 39% 53%, transparent 53%),
    radial-gradient(circle at 55% 44%, #37373a, #111114 58%, #060608);
  color: white;
}
.abstract-product::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: 80px;
  border: 45px solid var(--red);
  border-radius: 50%;
  opacity: 0.78;
}
.abstract-s {
  position: absolute;
  left: -8px;
  top: 90px;
  font-size: 210px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.1em;
  opacity: 0.88;
}
.abstract-line {
  position: absolute;
  width: 160%;
  height: 2px;
  left: -50px;
  bottom: 115px;
  transform: rotate(-18deg);
  background: white;
  opacity: 0.65;
}
.abstract-type {
  position: absolute;
  right: 18px;
  bottom: 38px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.35em;
}
.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 2px 4px;
  flex: 1;
}
.product-copy { min-width: 0; }
.product-cat {
  display: block;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.product-name {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 2px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: var(--ink);
  line-height: 1;
}
.product-price strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.product-price span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.add-button {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.add-button .seu-icon { width: 14px; height: 14px; }
.add-button:hover,
.add-button:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.add-button:active { transform: translateY(1px); }

.custom-design {
  position: relative;
  overflow: hidden;
  background: #0b0b0d;
  color: white;
}
.custom-design::before {
  content: "S";
  position: absolute;
  left: -60px;
  bottom: -205px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 700px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
.custom-design::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 600px;
  top: -150px;
  right: -180px;
  transform: rotate(24deg);
  background: var(--red);
  opacity: 0.08;
}
.custom-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 95px;
  align-items: start;
}
.section-kicker.light { color: #ff2448; }
.custom-copy h2 { max-width: 680px; font-size: clamp(44px, 5vw, 70px); }
.custom-copy > p { max-width: 570px; margin: 26px 0 0; color: rgba(255,255,255,0.57); font-size: 15px; line-height: 1.8; }
.process-list {
  display: grid;
  gap: 0;
  margin: 47px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.13); }
.process-list li > span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: 0.13em; }
.process-list div { display: flex; flex-direction: column; gap: 6px; }
.process-list strong { font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
.process-list small { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.5; }

.project-form {
  min-height: 585px;
  padding: 42px;
  background: white;
  color: var(--ink);
}
.form-heading { margin-bottom: 27px; }
.form-heading span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 0; font-size: 27px; font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; }
.project-form label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #3d3d40;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid #d9d8d5;
  border-radius: 0;
  outline: none;
  background: #fafaf9;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.project-form input,
.project-form select { height: 46px; padding: 0 13px; }
.project-form textarea { min-height: 88px; padding: 13px; resize: vertical; }
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: var(--red); background: white; }
.form-submit {
  width: 100%;
  height: 49px !important;
  justify-content: space-between !important;
  margin-top: 22px;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-form > small { display: block; margin-top: 10px; color: #8b8b8e; font-size: 10px; text-align: center; }
.form-success {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.form-success > div { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #eaf8ef; color: #178341; }
.form-success h3 { margin: 22px 0 8px; font-size: 26px; text-transform: uppercase; }
.form-success p { max-width: 300px; margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.made-in-poland { background: var(--paper); }
.made-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 95px; align-items: center; }
.made-mark {
  position: relative;
  height: 410px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
}
.made-mark::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -120px;
  border: 50px solid var(--red);
  border-radius: 50%;
}
.made-mark::after {
  content: "MADE IN POLAND • SZCZUBEL • QUALITY FISHING";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255,255,255,0.45);
  font-size: 8px;
  letter-spacing: 0.18em;
}
.made-mark span { position: relative; z-index: 1; font-size: 150px; font-weight: 900; font-style: italic; letter-spacing: -0.12em; }
.made-mark i { position: absolute; width: 120%; height: 2px; transform: rotate(-23deg); background: var(--red); }
.made-content h2 { max-width: 740px; }
.made-content > p { max-width: 660px; margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.made-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.made-features span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 14px; border: 1px solid #d5d4d0; background: rgba(255,255,255,0.55); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.made-features svg { width: 15px; color: var(--red); }

.cta-strip { background: var(--red); color: white; }
.cta-inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner > div > span { color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.cta-strip h2 { margin-top: 8px; font-size: clamp(34px, 4vw, 54px); }
.white-button {
  height: 52px;
  min-width: 210px;
  padding: 0 18px;
  justify-content: space-between;
  border-radius: 2px;
  background: white;
  color: var(--ink);
  border-color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease;
}
.white-button:hover,
.white-button:focus-visible { background: #f0efec; color: var(--ink); }

.footer { padding: 72px 0 24px; background: #09090b; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 65px; }
.footer-brand img { width: 210px; height: auto; }
.footer-brand p { max-width: 310px; margin: 22px 0 0; color: rgba(255,255,255,0.42); font-size: 13px; line-height: 1.7; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid strong { margin-bottom: 10px; color: white; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-grid a,
.footer-grid span { color: rgba(255,255,255,0.48); font-size: 12px; transition: color 160ms ease; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.27);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__powered img {
  width: 140px;
  height: auto;
  display: block;
  opacity: 0.9;
}
.site-footer__powered a:hover img { opacity: 1; }

.cart-sheet { width: min(440px, 100vw) !important; max-width: none !important; gap: 0 !important; background: white !important; }
.cart-header { padding: 28px !important; border-bottom: 1px solid var(--line); position: relative; }
.cart-title { font-size: 24px !important; font-weight: 900 !important; letter-spacing: -0.04em; text-transform: uppercase; margin: 0 0 8px; }
.cart-desc { margin: 0; color: var(--muted); font-size: 13px; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 28px; }
.empty-cart { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); text-align: center; }
.empty-cart svg { width: 34px; height: 34px; margin-bottom: 8px; color: #aaa; }
.empty-cart strong { color: var(--ink); font-size: 14px; text-transform: uppercase; }
.empty-cart span { font-size: 12px; }
.cart-item { display: grid; grid-template-columns: 78px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { height: 88px; overflow: hidden; display: grid; place-items: center; background: #ececea; color: var(--red); font-size: 32px; font-weight: 900; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-thumb.shirt-front img,
.cart-thumb.hoodie img { object-position: 18% center; }
.cart-thumb.shirt-back img,
.cart-thumb.softshell img { object-position: 82% center; }
.cart-item-info { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.cart-item-info > strong { font-size: 11px; text-transform: uppercase; }
.cart-item-info > span { color: var(--red); font-size: 12px; font-weight: 800; }
.quantity-control { display: flex; align-items: center; gap: 3px; margin-top: 5px; }
.quantity-control button { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid var(--line); background: white; cursor: pointer; }
.quantity-control svg { width: 12px; }
.quantity-control > span { min-width: 28px; text-align: center; font-size: 11px; }
.quantity-control .remove-item { margin-left: 7px; border-color: transparent; color: #999; }
.quantity-control .remove-item:hover { color: var(--red); }
.cart-summary { padding: 22px 28px 28px; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; text-transform: uppercase; }
.cart-summary span { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; }
.cart-summary strong { font-size: 22px; }
.checkout-button { width: 100%; height: 49px !important; justify-content: space-between !important; font-size: 11px !important; font-weight: 900 !important; text-transform: uppercase; }
.cart-summary small { display: block; margin-top: 10px; color: #8a8a8d; font-size: 9px; text-align: center; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) auto; gap: 16px; }
  .brand img { max-height: 40px; }
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 10px; letter-spacing: 0.06em; }
  .cart-trigger__label { display: none; }
  .cart-trigger { padding: 0 10px; }
  .custom-grid { gap: 52px; }
  .made-grid { gap: 55px; }
  .product-price strong { font-size: 24px; }
}

@media (max-width: 820px) {
  .site-width { width: min(calc(100% - 32px), 680px); }
  .topbar-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .topbar-divider,
  .topbar-inner span:last-child { display: none; }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand img { width: 160px; max-height: 38px; }
  .main-nav { display: none; }
  .cart-trigger { height: 40px; }
  .hero { min-height: 760px; align-items: end; padding-bottom: 70px; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,6,.97), rgba(5,5,6,.67)), linear-gradient(0deg, rgba(5,5,6,.82), transparent 60%); }
  .hero-content { padding-top: 130px; }
  .polish-stamp { display: none; }
  .hero h1 { font-size: clamp(49px, 12vw, 75px); }
  .hero-copy > p { font-size: 15px; }
  .category-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .category-tabs button {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
    justify-content: center;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .product-visual { height: 360px; }
  .custom-grid,
  .made-grid { grid-template-columns: 1fr; }
  .custom-grid { gap: 50px; }
  .made-mark { height: 320px; }
  .made-mark span { font-size: 120px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 580px) {
  .site-width { width: calc(100% - 28px); }
  .topbar { font-size: 9px; }
  .brand img { width: 148px; }
  .hero { min-height: 710px; }
  .hero h1 { font-size: 45px; letter-spacing: -0.055em; }
  .hero-copy > p { font-size: 14px; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-button { width: 100%; min-width: 0; }
  .section { padding: 76px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .section-heading h2,
  .custom-design h2,
  .made-content h2 { font-size: 40px; }
  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 36px;
    margin-bottom: 22px;
  }
  .category-tabs button {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .products-grid { grid-template-columns: 1fr; }
  .product-visual { height: 420px; }
  .product-buy { align-items: center; }
  .product-price strong { font-size: 30px; }
  .project-form { padding: 28px 20px; }
  .custom-design::before { font-size: 480px; }
  .made-grid { gap: 42px; }
  .made-mark { height: 280px; }
  .made-mark span { font-size: 98px; }
  .cta-inner { min-height: 270px; flex-direction: column; align-items: stretch; justify-content: center; }
  .white-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  body.home .site-chrome::before { transition: none; }
}

/* WordPress button baseline */
.seu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}
.seu-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.seu-icon { width: 21px; height: 21px; display: block; }
.cart-trigger .seu-icon,
.empty-cart .seu-icon { width: 18px; height: 18px; }
.made-features .seu-icon { width: 15px; height: 15px; }
.quantity-control .seu-icon { width: 12px; height: 12px; }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-legal-links a:hover { color: #fff; }

.legal-page {
  padding: 120px 0 80px;
  background: #fff;
  color: var(--ink);
}
.legal-page__inner { max-width: 820px; }
.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.legal-page p, .legal-page li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.legal-page ul { padding-left: 1.2em; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 200ms ease;
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 220ms ease;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 820px) {
  .site-footer__powered { margin-top: 8px; }
  .site-footer__powered img { width: 120px; }
}
