:root {
	--zshirt-ink: #111318;
	--zshirt-muted: #5b616e;
	--zshirt-line: #e5e7eb;
	--zshirt-bg: #ffffff;
	--zshirt-bg-alt: #f7f7f9;
	--zshirt-accent: #ff5a3c;
	--zshirt-accent-ink: #ffffff;
	--zshirt-radius: 12px;
	--zshirt-max: 1080px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--zshirt-ink);
	background: var(--zshirt-bg);
	line-height: 1.55;
}

a {
	color: inherit;
}

h1, h2, h3 {
	line-height: 1.2;
	margin: 0 0 0.5em;
}

.zshirt-container {
	max-width: var(--zshirt-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.zshirt-header {
	border-bottom: 1px solid var(--zshirt-line);
}

.zshirt-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
}

.zshirt-logo {
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	font-size: 1.15rem;
}

.zshirt-nav__list {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.zshirt-nav__list a {
	text-decoration: none;
	font-weight: 500;
}

/* Buttons */
.zshirt-btn {
	display: inline-block;
	padding: 0.85em 1.6em;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.zshirt-btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.zshirt-btn--primary {
	background: var(--zshirt-ink);
	color: #fff;
}

.zshirt-btn--secondary {
	background: var(--zshirt-bg-alt);
	color: var(--zshirt-ink);
	border: 1px solid var(--zshirt-line);
}

/* Hero */
.zshirt-hero {
	padding: 88px 0 64px;
	text-align: center;
	background: linear-gradient(180deg, var(--zshirt-bg-alt), var(--zshirt-bg));
}

.zshirt-hero h1 {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	max-width: 820px;
	margin: 0 auto 0.5em;
}

.zshirt-hero__lead {
	max-width: 640px;
	margin: 0 auto 2em;
	color: var(--zshirt-muted);
	font-size: 1.08rem;
}

.zshirt-hero__ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1em;
}

.zshirt-hero__note {
	color: var(--zshirt-muted);
	font-size: 0.9rem;
	margin-bottom: 2em;
}

/* Product hero (offer detail pages) */
.zshirt-product-hero {
	padding: 72px 0 48px;
	text-align: center;
	background: linear-gradient(180deg, var(--zshirt-bg-alt), var(--zshirt-bg));
}

.zshirt-product-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--zshirt-accent);
	margin-bottom: 0.6em;
}

.zshirt-product-hero h1 {
	font-size: clamp(1.7rem, 3.6vw, 2.4rem);
	max-width: 720px;
	margin: 0 auto 0.4em;
}

.zshirt-product-hero__price {
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0 0 0.6em;
}

.zshirt-product-hero__features {
	max-width: 360px;
	margin: 0 auto 2em;
	text-align: left;
}

/* Trust bar */
.zshirt-trustbar {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	margin: 0;
	padding: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--zshirt-ink);
}

.zshirt-trustbar li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.zshirt-trustbar__icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	color: var(--zshirt-accent);
	flex-shrink: 0;
}

.zshirt-trustbar__icon svg {
	width: 100%;
	height: 100%;
}

/* Logo carousel */
.zshirt-logos {
	padding: 44px 0 56px;
	border-top: 1px solid var(--zshirt-line);
	border-bottom: 1px solid var(--zshirt-line);
	background: var(--zshirt-bg-alt);
	overflow: hidden;
}

.zshirt-logos__title {
	text-align: center;
	margin: 0 0 24px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--zshirt-muted);
}

.zshirt-logos__track-wrap {
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.zshirt-logos__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 64px;
	animation: zshirt-marquee 28s linear infinite;
}

.zshirt-logos__item {
	display: inline-flex;
	align-items: center;
	height: 40px;
}

.zshirt-logos__item img {
	max-height: 40px;
	max-width: 140px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) opacity(0.6);
	transition: filter 0.2s ease;
}

.zshirt-logos__item img:hover {
	filter: grayscale(0) opacity(1);
}

@keyframes zshirt-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.zshirt-logos__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Photo carousel */
.zshirt-gallery {
	padding: 64px 0 16px;
}

.zshirt-gallery__title {
	text-align: center;
	margin-bottom: 28px;
}

.zshirt-gallery__wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.zshirt-gallery__track {
	flex: 1;
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
}

.zshirt-gallery__slide {
	flex: 0 0 auto;
	width: min(560px, 82vw);
	aspect-ratio: 4 / 3;
	margin: 0;
	scroll-snap-align: center;
	border-radius: var(--zshirt-radius);
	overflow: hidden;
	background: var(--zshirt-bg-alt);
	border: 1px solid var(--zshirt-line);
}

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

.zshirt-gallery__nav {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--zshirt-line);
	background: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zshirt-gallery__nav:hover {
	background: var(--zshirt-bg-alt);
}

@media (max-width: 640px) {
	.zshirt-gallery__nav {
		display: none;
	}
}

/* Steps */
.zshirt-steps {
	padding: 64px 0;
}

.zshirt-steps__list {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}

.zshirt-steps__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--zshirt-ink);
	color: #fff;
	padding: 11px;
	margin-bottom: 14px;
}

.zshirt-steps__icon svg {
	width: 100%;
	height: 100%;
}

.zshirt-notice {
	margin-top: 32px;
	padding: 16px 20px;
	background: var(--zshirt-bg-alt);
	border: 1px solid var(--zshirt-line);
	border-radius: var(--zshirt-radius);
	color: var(--zshirt-muted);
	font-size: 0.92rem;
}

/* Offers */
.zshirt-offers {
	padding: 64px 0;
	background: var(--zshirt-bg-alt);
}

.zshirt-offers__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.zshirt-offer-card {
	background: #fff;
	border: 1px solid var(--zshirt-line);
	border-radius: var(--zshirt-radius);
	padding: 32px;
}

.zshirt-offer-card--highlight {
	border-color: var(--zshirt-ink);
	box-shadow: 0 8px 24px rgba(17, 19, 24, 0.08);
}

.zshirt-offer-card__price {
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 16px;
}

.zshirt-offer-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	color: var(--zshirt-muted);
}

.zshirt-offer-card__features li {
	padding: 6px 0;
	border-bottom: 1px dashed var(--zshirt-line);
}

.zshirt-offer-card__note {
	margin-top: 12px;
	font-size: 0.85rem;
	color: var(--zshirt-muted);
}

.zshirt-offer-card__more {
	margin-top: 10px;
	font-size: 0.9rem;
}

.zshirt-offer-card__more a {
	font-weight: 600;
	text-decoration: none;
}

.zshirt-offer-card__more a:hover {
	text-decoration: underline;
}

/* FAQ */
.zshirt-faq {
	padding: 64px 0;
	max-width: 760px;
	margin: 0 auto;
}

.zshirt-faq details {
	border-bottom: 1px solid var(--zshirt-line);
	padding: 16px 0;
}

.zshirt-faq summary {
	cursor: pointer;
	font-weight: 600;
}

/* Final CTA */
.zshirt-cta-final {
	padding: 64px 0 88px;
	text-align: center;
}

/* Generic pages */
.zshirt-page {
	padding: 64px 0;
}

.zshirt-page--legal,
.zshirt-page--status,
.zshirt-page--form {
	max-width: 720px;
}

.zshirt-lead {
	color: var(--zshirt-muted);
	font-size: 1.05rem;
}

.zshirt-checklist {
	padding-left: 20px;
	color: var(--zshirt-muted);
}

.zshirt-checklist li {
	margin-bottom: 6px;
}

/* Footer */
.zshirt-footer {
	background: var(--zshirt-ink);
	color: #d7d9df;
	padding: 56px 0 24px;
	margin-top: 40px;
}

.zshirt-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
}

.zshirt-footer__brand {
	font-weight: 800;
	color: #fff;
	font-size: 1.1rem;
}

.zshirt-footer__title {
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.zshirt-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.zshirt-footer li {
	margin-bottom: 8px;
}

.zshirt-footer a {
	text-decoration: none;
	color: #d7d9df;
}

.zshirt-footer a:hover {
	color: #fff;
}

.zshirt-footer__bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.85rem;
	color: #9a9eab;
}

@media (max-width: 640px) {
	.zshirt-header__inner {
		flex-direction: column;
		gap: 12px;
	}

	.zshirt-nav__list {
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}
}
