/* Drive Zen storefront — design system ported from the old app's
   app/globals.css (@theme tokens + utility layer), rewritten as plain CSS. */

:root {
	--night: #0d0d0d;
	--night-2: #161616;
	--paper: #f5f5f3;
	--brand: #f5820a;
	--brand-2: #d96e00;
	--tdark: #1a1a1a;
	--tmuted: #6b6b6b;
	--tline: #e5e5e5;
	--fg: #f6f6f7;

	--font-body: "Inter", "Hind Siliguri", system-ui, sans-serif;
	--font-display: "Manrope", "Hind Siliguri", system-ui, sans-serif;

	--wrap: 1152px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.dz-body {
	margin: 0;
	background: var(--night);
	color: var(--fg);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.dz-body img { max-width: 100%; height: auto; display: block; }
.dz-body a { color: inherit; text-decoration: none; }
.dz-accent { color: var(--brand); }

::selection { background: rgba(245, 130, 10, .3); color: #fff; }

.dz-skip {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 100;
	background: var(--brand);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
}
.dz-skip:focus { left: 0; }

.dz-icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Buttons ---------- */
.dz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 48px;
	padding: 0 1.5rem;
	border: 0;
	border-radius: 10px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	transition: background .3s, transform .3s, box-shadow .3s, border-color .3s;
}
.dz-btn--lg { min-height: 54px; padding: 0 1.75rem; font-size: 1rem; }
.dz-btn--block { width: 100%; }
.dz-btn--brand {
	background: var(--brand);
	color: #fff;
	box-shadow: 0 10px 26px -10px rgba(245, 130, 10, .55);
}
.dz-btn--brand:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(245, 130, 10, .6); }
.dz-btn--brand:active { transform: translateY(0) scale(.98); }
.dz-btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	font-weight: 600;
}
.dz-btn--ghost:hover { border-color: var(--brand); background: rgba(255, 255, 255, .05); transform: translateY(-2px); }
.dz-btn[disabled] { opacity: .6; pointer-events: none; }
.dz-btn__play { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: rgba(255, 255, 255, .12); }

/* ---------- Chips ---------- */
.dz-chips { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.25rem; }
.dz-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	border-radius: 999px;
	padding: .45rem .9rem;
	font-size: .8rem;
	font-weight: 600;
}
.dz-chip--dark { border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .9); }
.dz-chip--light { border: 1px solid var(--tline); background: #fff; color: var(--tdark); }
.dz-chip .dz-icon { color: var(--brand); }

/* ---------- Section scaffolding ---------- */
.dz-main { display: block; }
.dz-section { padding: 3rem 1.25rem; border-top: 1px solid var(--tline); }
.dz-section--paper { background: var(--paper); color: var(--tdark); }
.dz-section--white { background: #fff; color: var(--tdark); }
.dz-section--night { background: var(--night-2); border-top-color: rgba(255, 255, 255, .1); }
@media (min-width: 640px) { .dz-section { padding: 5rem 1.25rem; } }

.dz-wrap { max-width: var(--wrap); margin: 0 auto; }
.dz-wrap--narrow { max-width: 768px; }
.dz-wrap--mid { max-width: 960px; }
.dz-center { text-align: center; margin-left: auto; margin-right: auto; }

.dz-eyebrow {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0;
}
.dz-h2 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.01em;
	margin: .75rem 0 0;
	font-size: clamp(1.6rem, 5.5vw, 2.6rem);
	color: #fff;
}
.dz-h2--dark { color: var(--tdark); }
.dz-lede { margin-top: 2rem; font-size: 1rem; line-height: 1.75; color: var(--tmuted); }
.dz-muted { margin-top: .75rem; color: var(--tmuted); }
.dz-muted-light { margin-top: .75rem; color: rgba(255, 255, 255, .6); }

.dz-split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .dz-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

/* ---------- Reveal-on-scroll (progressive; visible without JS) ---------- */
.js [data-dz-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.js [data-dz-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.js [data-dz-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Announcement bar ---------- */
.dz-annc {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 51;
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .35rem 1rem;
	background: var(--brand);
	color: #fff;
	font-size: .8rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
}
.dz-has-annc .dz-nav { top: 34px; }
.dz-has-annc .dz-hero__inner { padding-top: 7.5rem; }
@media (min-width: 640px) { .dz-has-annc .dz-hero__inner { padding-top: 10.5rem; } }

/* ---------- Navbar ---------- */
.dz-nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	transition: background .4s, box-shadow .4s, border-color .4s;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent);
	border-bottom: 1px solid transparent;
}
.dz-nav.is-scrolled {
	background: rgba(13, 13, 13, .85);
	backdrop-filter: blur(16px);
	border-bottom-color: rgba(255, 255, 255, .1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}
.dz-nav__inner {
	max-width: 1280px;
	margin: 0 auto;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: 0 1rem;
}
@media (min-width: 640px) { .dz-nav__inner { height: 72px; padding: 0 2rem; } }
.dz-nav__brand { display: flex; align-items: center; gap: .625rem; }
.dz-nav__logo { height: 28px; width: auto; }
@media (min-width: 640px) { .dz-nav__logo { height: 32px; } }
.dz-nav__wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: #fff; white-space: nowrap; }
.dz-nav__links { display: none; gap: 1.75rem; }
.dz-nav__links a { font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .75); transition: color .3s; }
.dz-nav__links a:hover { color: var(--brand); }
.dz-nav__actions { display: flex; align-items: center; gap: .625rem; }
.dz-nav__cta { display: none; }
@media (min-width: 768px) { .dz-nav__links { display: flex; } }
@media (min-width: 640px) { .dz-nav__cta { display: inline-flex; } }

.dz-nav__burger {
	display: grid;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 12px 11px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}
.dz-nav__burger span { display: block; height: 2px; background: #fff; border-radius: 2px; }
.dz-nav__burger span:last-child { width: 70%; margin-left: auto; }
@media (min-width: 768px) { .dz-nav__burger { display: none; } }

/* ---------- Mobile drawer ---------- */
.dz-drawer { position: fixed; inset: 0; z-index: 60; }
.dz-drawer__scrim {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(0, 0, 0, .7);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity .4s;
}
.dz-drawer__panel {
	position: absolute;
	inset: 0 0 0 auto;
	width: 82%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	background: var(--night-2);
	box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
	transform: translateX(100%);
	transition: transform .4s ease;
}
.dz-drawer.is-open .dz-drawer__scrim { opacity: 1; }
.dz-drawer.is-open .dz-drawer__panel { transform: none; }
.dz-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.dz-drawer__close { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; background: transparent; color: #fff; cursor: pointer; }
.dz-drawer__nav { display: flex; flex-direction: column; gap: .25rem; padding: 1.5rem 1.25rem; flex: 1; }
.dz-drawer__nav a { padding: .875rem .75rem; border-radius: 10px; font-size: 1.05rem; font-weight: 600; color: rgba(255, 255, 255, .85); transition: background .3s, color .3s; }
.dz-drawer__nav a:hover { background: rgba(255, 255, 255, .05); color: var(--brand); }
.dz-drawer__foot { display: grid; gap: .75rem; padding: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .1); }

/* ---------- Hero ---------- */
.dz-hero { position: relative; overflow: hidden; background: var(--night); }
.dz-hero__bg { position: absolute; inset: 0; }
.dz-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .9; }
.dz-hero__veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13, 13, 13, .55), rgba(13, 13, 13, .25) 45%, var(--night)); }
@media (min-width: 1024px) {
	.dz-hero__veil { background: linear-gradient(to right, var(--night), rgba(13, 13, 13, .55) 45%, rgba(13, 13, 13, .1)); }
}
.dz-hero__inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 6rem 1.25rem 2rem;
	display: flex;
	flex-direction: column;
}
@media (min-width: 640px) { .dz-hero__inner { padding: 9rem 2rem 3rem; } }
@media (min-width: 1024px) { .dz-hero__inner { flex-direction: row; align-items: center; gap: 2.5rem; padding-bottom: 6rem; } }
.dz-hero__text { max-width: 42rem; }
.dz-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(245, 130, 10, .4);
	background: rgba(245, 130, 10, .1);
	color: var(--brand);
	border-radius: 999px;
	padding: .375rem 1rem;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .18em;
}
.dz-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.12;
	color: #fff;
	margin: 1rem 0 0;
	font-size: clamp(1.65rem, 7vw, 3.6rem);
}
.dz-hero__lede { margin-top: 1.25rem; display: grid; gap: .625rem; color: rgba(255, 255, 255, .75); font-size: 1rem; }
.dz-hero__lede p { margin: 0; }
@media (min-width: 1024px) { .dz-hero__lede { font-size: 1.125rem; } }
.dz-hero__cta { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .dz-hero__cta { flex-direction: row; } }
.dz-hero__badges { display: none; }
@media (min-width: 1024px) {
	.dz-hero__badges { display: flex; flex-direction: column; gap: 1rem; margin-left: auto; flex: none; }
	.dz-hero__badge {
		width: 11rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: .625rem;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, .1);
		background: rgba(22, 22, 22, .8);
		backdrop-filter: blur(4px);
		border-radius: 1rem;
		padding: 1.25rem 1rem;
		font-size: .9rem;
		font-weight: 600;
		color: rgba(255, 255, 255, .9);
	}
	.dz-hero__badge-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(245, 130, 10, .15); color: var(--brand); }
}

/* ---------- Trust bar ---------- */
.dz-trust { border-top: 1px solid rgba(255, 255, 255, .1); border-bottom: 1px solid rgba(255, 255, 255, .1); background: var(--night-2); }
.dz-trust__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: .25rem 2rem;
	padding: .875rem 1.25rem;
	font-size: .8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .8);
}
.dz-trust__inner span { display: inline-flex; align-items: center; gap: .5rem; }
.dz-trust__inner .dz-icon { color: var(--brand); }

/* ---------- Gallery ---------- */
.dz-gallery { margin-top: 2rem; }
.dz-gallery__main {
	position: relative;
	aspect-ratio: 1 / 1;
	max-width: 300px;
	margin: 0 auto;
	border: 1px solid var(--tline);
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}
@media (min-width: 640px) { .dz-gallery__main { max-width: 520px; } }
.dz-gallery__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s; }
.dz-gallery__slide.is-active { opacity: 1; }
.dz-gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.dz-gallery__slide figcaption {
	position: absolute;
	left: .75rem;
	bottom: .75rem;
	background: rgba(0, 0, 0, .7);
	color: #fff;
	font-size: .75rem;
	font-weight: 600;
	padding: .35rem .85rem;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.dz-gallery__thumbs { display: flex; justify-content: center; gap: .5rem; margin-top: .75rem; }
.dz-gallery__thumb {
	width: 56px;
	height: 56px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: .5rem;
	overflow: hidden;
	background: none;
	cursor: pointer;
	opacity: .8;
	transition: opacity .3s, border-color .3s;
}
.dz-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.dz-gallery__thumb.is-active { border-color: var(--brand); opacity: 1; }
.dz-gallery__thumb:hover { opacity: 1; }

/* ---------- Checklist ---------- */
.dz-checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .75rem; }
.dz-checklist li { display: flex; align-items: center; gap: .75rem; font-weight: 600; color: var(--tdark); }
.dz-checklist__dot { display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 999px; background: var(--brand); color: #fff; }
.dz-checklist__dot .dz-icon { width: 14px; height: 14px; }

/* ---------- Video ---------- */
.dz-video__thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--tline);
	border-radius: 1rem;
	overflow: hidden;
	padding: 0;
	background: none;
	cursor: pointer;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}
.dz-video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dz-video__thumb:hover img { transform: scale(1.03); }
.dz-video__thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .35); transition: background .3s; }
.dz-video__thumb:hover::after { background: rgba(0, 0, 0, .25); }
.dz-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.dz-video__play .dz-icon { margin-left: 3px; }
.dz-video__ping { position: absolute; inset: 0; border-radius: 999px; background: var(--brand); opacity: .3; animation: dz-ping 1.8s cubic-bezier(0, 0, .2, 1) infinite; }

/* ---------- Before / After ---------- */
.dz-ba {
	position: relative;
	margin-top: 1.5rem;
	aspect-ratio: 4 / 3;
	width: 100%;
	border: 1px solid var(--tline);
	border-radius: 1rem;
	overflow: hidden;
	user-select: none;
	touch-action: pan-y;
	cursor: ew-resize;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}
.dz-ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dz-ba__img--before { filter: grayscale(35%); }
.dz-ba__clip { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 50% 0 0); }
.dz-ba__label {
	position: absolute;
	top: .75rem;
	font-size: .7rem;
	font-weight: 700;
	color: #fff;
	padding: .35rem .75rem;
	border-radius: 999px;
	white-space: nowrap;
	transition: opacity .2s;
}
.dz-ba__label--before { left: .75rem; background: rgba(0, 0, 0, .7); backdrop-filter: blur(4px); }
.dz-ba__label--after { right: .75rem; background: var(--brand); }
.dz-ba__divider { position: absolute; inset-block: 0; left: 50%; width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 12px rgba(0, 0, 0, .5); }
.dz-ba__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	grid-auto-flow: column;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	cursor: ew-resize;
}
.dz-ba__handle .dz-icon { width: 14px; height: 14px; margin: 0 -3px; }
.dz-ba__handle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---------- Review carousel ---------- */
.dz-carousel { position: relative; margin-top: 2rem; }
.dz-carousel__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: .5rem .25rem;
	scrollbar-width: none;
}
.dz-carousel__track::-webkit-scrollbar { display: none; }
.dz-carousel__card {
	position: relative;
	flex: none;
	width: 86%;
	aspect-ratio: 4 / 5;
	scroll-snap-align: start;
	border: 1px solid var(--tline);
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	padding: 0;
	cursor: zoom-in;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
@media (min-width: 640px) { .dz-carousel__card { width: calc(50% - .5rem); } }
@media (min-width: 1024px) { .dz-carousel__card { width: calc(33.333% - .667rem); } }
.dz-carousel__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dz-carousel__card:hover img { transform: scale(1.05); }
.dz-carousel__cap {
	position: absolute;
	inset: auto 0 0 0;
	padding: .75rem 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
	color: #fff;
	font-size: .875rem;
	font-weight: 600;
	text-align: left;
}
.dz-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--tline);
	border-radius: 999px;
	background: #fff;
	color: var(--tdark);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
	transition: color .3s, border-color .3s;
}
.dz-carousel__nav:hover { color: var(--brand); border-color: var(--brand); }
.dz-carousel__nav--prev { left: -.5rem; }
.dz-carousel__nav--next { right: -.5rem; }
.dz-carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.dz-carousel__dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(26, 26, 26, .15);
	cursor: pointer;
	transition: width .3s, background .3s;
}
.dz-carousel__dots button.is-active { width: 24px; background: var(--brand); }

/* ---------- Order form ---------- */
.dz-order {
	margin-top: 2rem;
	display: grid;
	gap: 1.25rem;
	background: var(--night-2);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 1.5rem;
	padding: 1rem;
	box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
}
@media (min-width: 640px) { .dz-order { padding: 2rem; } }
@media (min-width: 1024px) { .dz-order { grid-template-columns: 3fr 2fr; gap: 1.5rem; } }
.dz-order__fields { display: grid; gap: 1rem; align-content: start; }
.dz-field { display: grid; gap: .375rem; }
.dz-field > span { font-size: .875rem; color: rgba(255, 255, 255, .6); }
.dz-field input,
.dz-field textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .12);
	background: var(--night);
	color: #fff;
	border-radius: 10px;
	padding: .75rem 1rem;
	font: inherit;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
}
.dz-field input::placeholder,
.dz-field textarea::placeholder { color: rgba(255, 255, 255, .35); }
.dz-field input:focus,
.dz-field textarea:focus { border-color: rgba(245, 130, 10, .7); box-shadow: 0 0 0 2px rgba(245, 130, 10, .2); }

.dz-order__areas { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.dz-order__area {
	display: grid;
	gap: .15rem;
	text-align: left;
	border: 1px solid rgba(255, 255, 255, .12);
	background: var(--night);
	border-radius: 12px;
	padding: .75rem 1rem;
	color: #fff;
	cursor: pointer;
	transition: border-color .2s, background .2s;
}
.dz-order__area strong { font-size: .875rem; font-weight: 600; }
.dz-order__area em { font-style: normal; font-size: .75rem; color: rgba(255, 255, 255, .5); }
.dz-order__area.is-active { border-color: var(--brand); background: rgba(245, 130, 10, .1); box-shadow: 0 0 0 1px rgba(245, 130, 10, .35); }

.dz-summary,
.dz-order__success {
	position: sticky;
	top: 6rem;
	border: 1px solid rgba(255, 255, 255, .1);
	background: var(--night);
	border-radius: 1rem;
	padding: 1.25rem;
}
.dz-summary h3,
.dz-order__success h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; color: #fff; margin: 0; }
.dz-summary__name { margin: .25rem 0 0; font-size: .875rem; color: rgba(255, 255, 255, .55); }
.dz-summary__row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; font-size: .875rem; color: rgba(255, 255, 255, .6); }
.dz-qty { display: flex; align-items: center; gap: .5rem; color: #fff; }
.dz-qty button { width: 32px; height: 32px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 8px; background: transparent; color: #fff; font-size: 1.1rem; line-height: 1; cursor: pointer; }
.dz-qty button:hover { border-color: rgba(245, 130, 10, .6); }
.dz-qty strong { width: 32px; text-align: center; }
.dz-summary__lines { margin-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1rem; display: grid; gap: .5rem; font-size: .875rem; }
.dz-summary__lines > div { display: flex; justify-content: space-between; color: rgba(255, 255, 255, .8); }
.dz-summary__total { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: .5rem; font-weight: 700; font-size: 1rem; color: #fff; }
.dz-order__error { margin: 1rem 0 0; border: 1px solid rgba(239, 68, 68, .3); background: rgba(239, 68, 68, .1); color: #fca5a5; font-size: .875rem; padding: .5rem .75rem; border-radius: 8px; }
.dz-order__cod { margin: .75rem 0 0; text-align: center; font-size: .75rem; color: rgba(255, 255, 255, .4); }
.dz-order [data-order-submit] { margin-top: 1rem; }
.dz-order__success { text-align: center; }
.dz-order__ordernum { margin: .5rem 0 1rem; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--brand); }

/* ---------- FAQ ---------- */
.dz-faq { max-width: 768px; margin: 2rem auto 0; display: grid; gap: .75rem; }
.dz-faq__item { background: #fff; border: 1px solid var(--tline); border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, .08); }
.dz-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	min-height: 56px;
	padding: 1rem 1.25rem;
	border: 0;
	background: none;
	text-align: left;
	font: inherit;
	font-weight: 600;
	color: var(--tdark);
	cursor: pointer;
}
.dz-faq__chev { display: grid; place-items: center; width: 32px; height: 32px; flex: none; border-radius: 999px; background: var(--paper); color: var(--tmuted); transition: transform .3s, background .3s, color .3s; }
.dz-faq__item.is-open .dz-faq__chev { transform: rotate(180deg); background: var(--brand); color: #fff; }
.dz-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.dz-faq__item.is-open .dz-faq__a { grid-template-rows: 1fr; }
.dz-faq__a > p { overflow: hidden; margin: 0; padding: 0 1.25rem; font-size: .9rem; line-height: 1.7; color: var(--tmuted); }
.dz-faq__item.is-open .dz-faq__a > p { padding-bottom: 1.25rem; }

/* ---------- Footer ---------- */
.dz-footer { border-top: 1px solid rgba(255, 255, 255, .1); background: var(--night); }
.dz-footer__inner { max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.25rem; }
@media (min-width: 640px) { .dz-footer__inner { padding: 3.5rem 2rem; } }
.dz-footer__top { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .dz-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.dz-footer__wordmark { font-size: 1.5rem; }
.dz-footer__tag { margin: .5rem 0 0; font-size: .875rem; color: rgba(255, 255, 255, .55); }
.dz-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; font-size: .875rem; }
@media (min-width: 640px) { .dz-footer__links { grid-template-columns: 1fr 1fr; gap: .75rem 2rem; } }
.dz-footer__links a { display: inline-flex; align-items: center; gap: .625rem; color: rgba(255, 255, 255, .8); transition: color .3s; }
.dz-footer__links a:hover { color: var(--brand); }
.dz-footer__ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: .5rem; background: rgba(255, 255, 255, .05); color: var(--brand); }
.dz-footer__bottom { margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between; font-size: .75rem; color: rgba(255, 255, 255, .4); }
@media (min-width: 640px) { .dz-footer__bottom { flex-direction: row; } }
.dz-footer__bottom a:hover { color: rgba(255, 255, 255, .7); }

/* ---------- Floating CTA ---------- */
.dz-fab {
	position: fixed;
	right: 1rem;
	bottom: 6rem;
	z-index: 40;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
	transition: transform .3s;
}
.dz-fab:hover { transform: scale(1.05); }
.dz-fab .dz-icon { position: relative; width: 28px; height: 28px; }
.dz-fab__ping { position: absolute; inset: 0; border-radius: 999px; background: #25d366; opacity: .3; animation: dz-ping 1.8s cubic-bezier(0, 0, .2, 1) infinite; }
@media (min-width: 640px) { .dz-fab { bottom: 1.5rem; } }

.dz-orderbar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: .75rem 1rem;
	background: rgba(13, 13, 13, .95);
	backdrop-filter: blur(16px);
	border-top: 1px solid rgba(255, 255, 255, .1);
	transform: translateY(100%);
	transition: transform .3s;
}
.dz-orderbar.is-visible { transform: none; }
.dz-orderbar__price { line-height: 1.2; }
.dz-orderbar__price span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255, 255, 255, .5); }
.dz-orderbar__price strong { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; }
.dz-orderbar .dz-btn { flex: 1; min-height: 44px; font-size: .85rem; }
@media (min-width: 640px) { .dz-orderbar { display: none; } }

/* ---------- Lightbox ---------- */
.dz-lightbox { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.dz-lightbox[hidden] { display: none; }
.dz-lightbox__scrim { position: absolute; inset: 0; border: 0; background: rgba(0, 0, 0, .9); backdrop-filter: blur(4px); }
.dz-lightbox__body { position: relative; width: 100%; max-width: 640px; }
.dz-lightbox__close { position: absolute; right: .75rem; top: .75rem; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; background: rgba(0, 0, 0, .5); color: #fff; cursor: pointer; }
@media (min-width: 640px) { .dz-lightbox__close { right: 0; top: -3rem; background: transparent; } }
.dz-lightbox__slot img { width: 100%; border-radius: 1rem; }
.dz-lightbox__slot video { width: 100%; border-radius: 1rem; background: #000; max-height: 80vh; }
.dz-lightbox__slot .dz-lightbox__msg { color: #fff; text-align: center; padding: 3rem 1rem; }

/* ---------- Empty states ---------- */
.dz-empty { display: grid; min-height: 70vh; place-items: center; padding: 2rem 1.5rem; text-align: center; }
.dz-empty h1 { font-family: var(--font-display); font-weight: 800; }
.dz-empty p { color: rgba(255, 255, 255, .6); }
.dz-empty .dz-btn { margin-top: 1.5rem; }

@keyframes dz-ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
	.dz-fab__ping, .dz-video__ping { animation: none; }
}
