/* ---------------------------------------------------------------------------
   Quirkzy — main stylesheet
--------------------------------------------------------------------------- */

:root {
	--paper: #fbf4e6;
	--paper-2: #f3e7cf;
	--ink: #221e17;
	--ink-soft: #5c5445;
	--orange: #ff6b35;
	--orange-deep: #e8541f;
	--yellow: #ffc53d;
	--mint: #8ce0c9;
	--mint-deep: #2f7d5f;
	--lilac: #b8a7ff;
	--coral: #ff9e9e;
	--white: #fffdf7;
	--line: rgba(34, 30, 23, 0.14);

	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Space Grotesk", "Segoe UI", sans-serif;
	--font-script: "Playball", cursive;

	--radius: 22px;
	--radius-lg: 34px;
	--radius-pill: 999px;

	--shadow: 0 18px 40px -18px rgba(34, 30, 23, 0.28);
	--shadow-lg: 0 34px 70px -24px rgba(34, 30, 23, 0.34);

	--header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }

::selection { background: var(--yellow); color: var(--ink); }

.container { width: min(1180px, 92%); margin-inline: auto; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}

.accent { color: var(--orange); font-style: italic; }

.qzk-section { padding: clamp(56px, 8vw, 110px) 0; }

.qzk-center { text-align: center; margin-top: 44px; }

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */

.qzk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
	text-align: center;
}

.qzk-btn:hover { transform: translateY(-2px) rotate(-0.6deg); }
.qzk-btn:active { transform: translateY(0) scale(0.98); }

body.qzk-locked { overflow: hidden; }

.qzk-header.is-scrolled { box-shadow: 0 6px 24px -12px rgba(34, 30, 23, 0.18); }

.qzk-btn--primary {
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 12px 26px -12px rgba(255, 107, 53, 0.7);
}
.qzk-btn--primary:hover { background: var(--orange-deep); color: var(--white); }

.qzk-btn--ink { background: var(--ink); color: var(--paper); }
.qzk-btn--ink:hover { background: #000; color: var(--white); }

.qzk-btn--ghost {
	background: transparent;
	border-color: var(--ink);
	color: var(--ink);
}
.qzk-btn--ghost:hover { background: var(--ink); color: var(--paper); }

.qzk-btn--light { background: var(--white); color: var(--ink); }
.qzk-btn--light:hover { background: var(--yellow); color: var(--ink); }

.qzk-btn--whatsapp { background: #25d366; color: #fff; }
.qzk-btn--whatsapp:hover { background: #1eb856; color: #fff; }

.qzk-btn--small { padding: 11px 18px; font-size: 13.5px; }
.qzk-btn--block { width: 100%; }

/* ---------------------------------------------------------------------------
   Header
--------------------------------------------------------------------------- */

.qzk-header {
	position: sticky;
	top: 0;
	z-index: 60;
	height: var(--header-h);
	background: rgba(251, 244, 230, 0.86);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}

.qzk-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.qzk-logo { display: inline-flex; align-items: center; gap: 10px; }

.qzk-logo__mark {
	display: inline-grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50% 50% 50% 50%;
	background: var(--ink);
	color: var(--yellow);
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 24px;
	transform: rotate(-8deg);
	border-radius: 50% 50% 46% 54% / 55% 45% 55% 45%;
}

.qzk-logo__word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -0.02em;
}
.qzk-logo__dot { color: var(--orange); }

.qzk-nav__list { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.qzk-nav__list li a {
	display: inline-block;
	padding: 10px 14px;
	font-weight: 500;
	font-size: 15px;
	border-radius: var(--radius-pill);
	transition: background 0.2s ease;
}
.qzk-nav__list li a:hover { background: rgba(255, 107, 53, 0.12); color: var(--ink); }

.qzk-header__actions { display: flex; align-items: center; gap: 12px; }

.qzk-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}
.qzk-burger span {
	width: 24px; height: 2.5px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.qzk-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.qzk-burger.is-open span:nth-child(2) { opacity: 0; }
.qzk-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.qzk-mobile {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 auto 0;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 24px 0 32px;
	z-index: 55;
}
.qzk-mobile.is-open { display: block; }

.qzk-mobile__list { list-style: none; margin: 0 0 24px; padding: 0; }
.qzk-mobile__list li a {
	display: block;
	padding: 14px 0;
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px solid var(--line);
}

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */

.qzk-hero { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 108px) 0 0; }

.qzk-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(var(--line) 1.2px, transparent 1.2px);
	background-size: 26px 26px;
	opacity: 0.5;
	pointer-events: none;
}

.qzk-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(36px, 6vw, 88px);
	align-items: center;
}

.qzk-hero__copy { max-width: 560px; }

.qzk-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	padding: 9px 18px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 26px;
	box-shadow: var(--shadow);
}

.qzk-hero__title {
	font-size: clamp(48px, 6.4vw, 88px);
	font-weight: 900;
	letter-spacing: -0.03em;
	margin: 0 0 26px;
}
.qzk-hero__line { display: block; }
.qzk-hero__line--accent {
	color: var(--orange);
	font-style: italic;
}

.qzk-hero__lead {
	max-width: 46ch;
	font-size: 18px;
	color: var(--ink-soft);
	margin-bottom: 34px;
}
.qzk-hero__lead em { font-family: var(--font-script); color: var(--orange-deep); font-size: 1.25em; }

.qzk-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.qzk-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 34px;
	list-style: none;
	margin: 0;
	padding: 26px 0 0;
	border-top: 1px solid var(--line);
	font-size: 14.5px;
	color: var(--ink-soft);
}
.qzk-hero__meta-num {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 26px;
	color: var(--ink);
	line-height: 1;
}

.qzk-hero__art { position: relative; }

.qzk-hero__art.ptx-image-appear1 {
	overflow: visible;
}

.qzk-hero__stage {
	position: relative;
	padding-bottom: 8%;
}

.qzk-hero__illustration {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 14px;
	transform: rotate(2deg);
	animation: qzk-float 6s ease-in-out infinite;
	box-shadow: var(--shadow-lg);
}
.qzk-hero__art .qzk-hero__illustration img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: calc(var(--radius-lg) - 14px);
	background: var(--paper-2);
}

.qzk-hero__tag {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%) rotate(-3deg);
	background: var(--yellow);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	padding: 9px 22px;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow);
	white-space: nowrap;
	z-index: 2;
}
.qzk-hero__tag em {
	font-family: var(--font-script);
	font-style: normal;
	color: var(--orange-deep);
	font-size: 1.25em;
	margin-right: 4px;
}

.qzk-sticker {
	position: absolute;
	display: inline-grid;
	place-items: center;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 15px;
	line-height: 1.15;
	width: 104px; height: 104px;
	border-radius: 50%;
	color: var(--ink);
	box-shadow: var(--shadow);
	z-index: 2;
}
.qzk-sticker span { font-style: italic; color: var(--orange-deep); }
.qzk-sticker--one {
	background: var(--yellow);
	top: 4%; right: 2%;
	transform: rotate(9deg);
	animation: qzk-float 5s ease-in-out infinite reverse;
}
.qzk-sticker--two {
	background: var(--mint);
	left: -4%; bottom: 22%;
	transform: rotate(-10deg);
	animation: qzk-float 6.5s ease-in-out infinite;
}
.qzk-sticker--three {
	background: var(--coral);
	right: 10%; bottom: -2%;
	transform: rotate(6deg);
	animation: qzk-float 7s ease-in-out infinite reverse;
}

@keyframes qzk-float {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -14px; }
}

.qzk-marquee {
	margin-top: clamp(40px, 6vw, 80px);
	margin-bottom: 25px;
	background: var(--ink);
	color: var(--paper);
	transform: rotate(-1.2deg) scale(1.02);
	overflow: hidden;
	padding: 16px 0;
}
.qzk-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: qzk-marquee 26s linear infinite;
}
.qzk-marquee__track span {
	font-family: var(--font-display);
	font-weight: 800;
	font-style: italic;
	font-size: clamp(20px, 2.6vw, 30px);
	white-space: nowrap;
	text-transform: lowercase;
	padding: 0 14px;
}
.qzk-marquee__track em { color: var(--orange); font-style: normal; font-size: 22px; }

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

/* ---------------------------------------------------------------------------
   Section heads
--------------------------------------------------------------------------- */

.qzk-section__head { max-width: 720px; margin: 0 0 46px; }

.qzk-kicker {
	display: inline-block;
	font-family: var(--font-script);
	font-size: 26px;
	color: var(--orange-deep);
	margin-bottom: 6px;
}

.qzk-section__title {
	font-size: clamp(36px, 4.6vw, 56px);
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}

.qzk-section__intro { color: var(--ink-soft); font-size: 17px; max-width: 54ch; }

/* ---------------------------------------------------------------------------
   Collections
--------------------------------------------------------------------------- */

.qzk-collections { background: transparent; }

.qzk-collections__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.qzk-collection {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	padding: 26px;
	border-radius: var(--radius-lg);
	border: 2px solid var(--ink);
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qzk-collection:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: 8px 8px 0 var(--ink); color: var(--ink); }

.qzk-collection--sun { background: var(--yellow); }
.qzk-collection--mint { background: var(--mint); }
.qzk-collection--lilac { background: var(--lilac); }
.qzk-collection--coral { background: var(--coral); }

.qzk-collection__emoji { font-size: 44px; line-height: 1; }
.qzk-collection__name {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.1;
}
.qzk-collection__count { font-size: 13.5px; font-weight: 600; opacity: 0.75; }

/* ---------------------------------------------------------------------------
   Product grid & cards
--------------------------------------------------------------------------- */

.qzk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.qzk-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qzk-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }

.qzk-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--paper-2);
}
.qzk-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.qzk-card:hover .qzk-card__media img { transform: scale(1.06); }

.qzk-card__emoji {
	position: absolute;
	left: 14px; bottom: 14px;
	font-size: 26px;
	line-height: 1;
	filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.2));
}

.qzk-badge {
	position: absolute;
	top: 14px; left: 14px;
	z-index: 2;
	background: var(--ink);
	color: var(--yellow);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	letter-spacing: 0.02em;
}
.qzk-badge--custom { background: var(--mint-deep); color: var(--white); }

.qzk-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }

.qzk-card__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--orange-deep);
}

.qzk-card__title { font-size: 21px; margin: 0; }
.qzk-card__title a:hover { color: var(--orange); }

.qzk-card__price { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

.qzk-card__actions {
	margin-top: auto;
	padding-top: 14px;
	display: flex;
	gap: 10px;
}

/* ---------------------------------------------------------------------------
   Process
--------------------------------------------------------------------------- */

.qzk-process { background: var(--paper-2); border-block: 1px solid var(--line); padding: clamp(56px, 8vw, 110px) 0; }

.qzk-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-bottom: 44px;
}

.qzk-process__step {
	position: relative;
	background: var(--paper);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	padding: 34px 28px;
	box-shadow: var(--shadow);
}

.qzk-process__num {
	position: absolute;
	top: 20px; right: 24px;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 44px;
	color: var(--line);
	line-height: 1;
}

.qzk-process__icon {
	display: inline-grid;
	place-items: center;
	width: 64px; height: 64px;
	font-size: 32px;
	border-radius: 50%;
	background: var(--yellow);
	margin-bottom: 18px;
	box-shadow: var(--shadow);
}
.qzk-process__step:nth-child(2) .qzk-process__icon { background: var(--mint); }
.qzk-process__step:nth-child(3) .qzk-process__icon { background: var(--coral); }

.qzk-process__title { font-size: 24px; }
.qzk-process__text { color: var(--ink-soft); margin: 0; }

.qzk-process__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
	padding: 30px;
	border-radius: var(--radius-lg);
	background: var(--ink);
	color: var(--paper);
}
.qzk-process__cta-text {
	font-family: var(--font-display);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	margin: 0;
}
.qzk-process__cta-text em { font-family: var(--font-script); color: var(--yellow); }

/* ---------------------------------------------------------------------------
   Stats
--------------------------------------------------------------------------- */

.qzk-stats { padding: clamp(48px, 7vw, 88px) 0; background: var(--orange); color: var(--white); }

.qzk-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	text-align: center;
}

.qzk-stats__num {
	display: block;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1;
	margin-bottom: 6px;
	color: var(--ink);
}

.qzk-stats__label { font-weight: 600; font-size: 15px; opacity: 0.92; }

/* ---------------------------------------------------------------------------
   Instagram section
--------------------------------------------------------------------------- */

.qzk-ig__grid {
	columns: 3 300px;
	column-gap: 26px;
}

.qzk-ig__item {
	width: 100%;
	margin: 0 0 26px;
	break-inside: avoid;
}

.qzk-ig-embed {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.qzk-ig-embed .instagram-media { min-width: calc(100% - 0px) !important; width: 100% !important; max-width: 100% !important; margin: 0 auto !important; }
.qzk-ig-embed iframe { width: 100% !important; }

/* ---------------------------------------------------------------------------
   CTA band
--------------------------------------------------------------------------- */

.qzk-cta { padding: clamp(56px, 8vw, 110px) 0; }

.qzk-cta__inner {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: var(--lilac);
	border-radius: var(--radius-lg);
	border: 2px solid var(--ink);
	box-shadow: 7px 7px 0 var(--ink);
	padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 60px);
}
.qzk-cta__inner::before,
.qzk-cta__inner::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
}
.qzk-cta__inner::before { width: 220px; height: 220px; top: -90px; left: -70px; }
.qzk-cta__inner::after { width: 160px; height: 160px; bottom: -60px; right: -40px; }

.qzk-cta__emoji { font-size: 46px; position: relative; z-index: 1; }
.qzk-cta__title {
	position: relative; z-index: 1;
	font-size: clamp(36px, 5vw, 58px);
	margin: 6px 0 14px;
}
.qzk-cta__text {
	position: relative; z-index: 1;
	max-width: 52ch;
	margin: 0 auto 28px;
	font-size: 17px;
}
.qzk-cta__buttons { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.qzk-cta--archive { padding-top: 0; }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */

.qzk-footer { background: var(--ink); color: var(--paper); padding: clamp(48px, 6vw, 72px) 0 28px; margin-top: 40px; }

.qzk-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 44px;
}

.qzk-logo--footer .qzk-logo__mark { color: var(--ink); background: var(--yellow); }
.qzk-logo--footer .qzk-logo__word { color: var(--paper); }

.qzk-footer__note { color: rgba(251, 244, 230, 0.7); max-width: 34ch; }

.qzk-footer__title {
	font-size: 17px;
	color: var(--yellow);
	margin-bottom: 14px;
	letter-spacing: 0.02em;
}

.qzk-footer__menu { list-style: none; margin: 0; padding: 0; }
.qzk-footer__menu li { margin-bottom: 10px; }
.qzk-footer__menu a { color: rgba(251, 244, 230, 0.78); font-size: 15px; }
.qzk-footer__menu a:hover { color: var(--orange); }

.qzk-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	padding-top: 22px;
	border-top: 1px solid rgba(251, 244, 230, 0.15);
	font-size: 13.5px;
	color: rgba(251, 244, 230, 0.55);
}

/* ---------------------------------------------------------------------------
   Enquire modal
--------------------------------------------------------------------------- */

.qzk-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.qzk-modal.is-open { display: flex; }

.qzk-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(34, 30, 23, 0.55);
	backdrop-filter: blur(4px);
	animation: qzk-fade 0.25s ease;
}

.qzk-modal__panel {
	position: relative;
	width: min(560px, 100%);
	max-height: 92vh;
	overflow-y: auto;
	background: var(--paper);
	border-radius: var(--radius-lg);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow-lg);
	padding: 34px 32px 32px;
	animation: qzk-pop 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.qzk-modal__close {
	position: absolute;
	top: 14px; right: 14px;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 2px solid var(--ink);
	background: var(--white);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.qzk-modal__title { font-size: 32px; margin: 0 0 4px; }
.qzk-modal__sub { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }

.qzk-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.qzk-form__field { margin: 0 0 16px; }

.qzk-form__field label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 6px;
}
.qzk-form__field label em { color: var(--orange); font-style: normal; }

.qzk-form__field input,
.qzk-form__field textarea {
	width: 100%;
	padding: 13px 16px;
	border-radius: 14px;
	border: 2px solid var(--line);
	background: var(--white);
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qzk-form__field input:focus,
.qzk-form__field textarea:focus {
	outline: none;
	border-color: var(--orange);
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.qzk-form__locked {
	display: block;
	padding: 13px 16px;
	border-radius: 14px;
	background: var(--paper-2);
	border: 2px dashed var(--line);
	font-weight: 600;
	font-size: 14px;
	min-height: 48px;
	word-break: break-word;
}

.qzk-form__note { min-height: 22px; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.qzk-form__note.is-error { color: #c0392b; }
.qzk-form__note.is-success { color: var(--mint-deep); }

.qzk-form__whatsapp {
	display: block;
	text-align: center;
	margin-top: 14px;
	font-size: 14px;
	color: var(--ink-soft);
	text-decoration: underline;
}

@keyframes qzk-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qzk-pop { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------------------
   Archive / filters / pagination
--------------------------------------------------------------------------- */

.qzk-archive { padding: clamp(36px, 5vw, 60px) 0 clamp(56px, 8vw, 90px); }

.qzk-archive__head { max-width: 640px; margin-bottom: 30px; }
.qzk-archive__title { font-size: clamp(40px, 5.4vw, 64px); }
.qzk-archive__desc { color: var(--ink-soft); font-size: 17px; }

.qzk-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }

.qzk-filter {
	padding: 9px 18px;
	border-radius: var(--radius-pill);
	border: 2px solid var(--ink);
	font-weight: 600;
	font-size: 14px;
	transition: background 0.2s ease, color 0.2s ease;
}
.qzk-filter:hover { background: var(--ink); color: var(--paper); }
.qzk-filter.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.qzk-pagination { margin-top: 44px; text-align: center; }
.qzk-pagination .nav-links { display: inline-flex; gap: 8px; }
.qzk-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px; height: 42px;
	padding: 0 12px;
	border-radius: 12px;
	border: 2px solid var(--ink);
	font-weight: 600;
}
.qzk-pagination .page-numbers.current { background: var(--ink); color: var(--paper); }

/* ---------------------------------------------------------------------------
   Single product
--------------------------------------------------------------------------- */

.qzk-single { padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 8vw, 90px); }

.qzk-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 30px; }
.qzk-breadcrumb a:hover { color: var(--orange); }
.qzk-breadcrumb__current { color: var(--ink); font-weight: 600; }

.qzk-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.qzk-single__figure {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--paper-2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
}
.qzk-single__figure img { width: 100%; height: 100%; object-fit: cover; }
.qzk-single__emoji {
	position: absolute;
	right: 18px; bottom: 18px;
	font-size: 42px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

.qzk-single__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.qzk-single__thumb {
	width: 84px; height: 84px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid var(--line);
}
.qzk-single__thumb img { width: 100%; height: 100%; object-fit: cover; }

.qzk-single__cat { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-deep); }

.qzk-single__title { font-size: clamp(36px, 4.6vw, 54px); margin: 6px 0 8px; }

.qzk-single__price {
	display: inline-block;
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: var(--radius-pill);
	padding: 8px 18px;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 3px 3px 0 var(--ink);
	margin-bottom: 24px;
}

.qzk-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin-bottom: 22px;
}
.qzk-single__meta p { margin: 0; font-size: 15px; }
.qzk-single__meta strong { font-weight: 700; }

.qzk-single__desc { color: var(--ink-soft); margin-bottom: 26px; }
.qzk-single__desc p:last-child { margin-bottom: 0; }

.qzk-single__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.qzk-single__note { font-size: 13.5px; color: var(--ink-soft); font-style: italic; }

.qzk-ig--single .qzk-ig__item { margin-inline: auto; }

/* ---------------------------------------------------------------------------
   Page
--------------------------------------------------------------------------- */

.qzk-page { padding: clamp(36px, 5vw, 60px) 0 clamp(56px, 8vw, 90px); }

.qzk-page__head { margin-bottom: 34px; }
.qzk-page__title { font-size: clamp(40px, 5.4vw, 64px); }

.qzk-page__body { max-width: 760px; }
.qzk-page__body h2 { font-size: 30px; margin-top: 1.4em; }
.qzk-page__body h3 { font-size: 24px; }
.qzk-page__body ul { padding-left: 22px; }

.qzk-none { text-align: center; padding: clamp(48px, 8vw, 90px) 0; }
.qzk-none__emoji { font-size: 60px; margin-bottom: 10px; }
.qzk-none__title { font-size: 34px; }
.qzk-none__text { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 22px; }

/* ---------------------------------------------------------------------------
   Posts (fallback)
--------------------------------------------------------------------------- */

.qzk-grid--posts { margin: 30px 0; }
.qzk-post {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow);
}
.qzk-post__title { font-size: 24px; margin-bottom: 8px; }
.qzk-post__excerpt { color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------------------
   Travlia animation helpers (inert without the init script)
--------------------------------------------------------------------------- */

.split-line { display: block; overflow: hidden; }
.split-char { display: inline-block; will-change: transform; }
.split-word { display: inline-block; will-change: transform; }

.ptx-image-appear1 { overflow: hidden; }
.ptx-image-appear1 img { display: block; width: 100%; height: 100%; object-fit: cover; }

.img-parallax,
.tv-img-zm { overflow: hidden; }
.img-parallax img,
.tv-img-zm img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tv-counter { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
	.tv_hero_title, .tv-sec-title, .tv-sub-tilte, .split-in-up,
	.tv-text p, .ptx-image-appear1, .img-parallax, .tv-img-zm,
	.top_view, .left_view, .right_view, .bottom-text, .tv-counter,
	.qzk-sticker, .qzk-hero__illustration, .qzk-marquee__track {
		transform: none !important;
		opacity: 1 !important;
		animation: none !important;
	}
}

/* ---------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.qzk-hero__grid { grid-template-columns: 1fr; }
	.qzk-hero__art { max-width: 480px; margin-inline: auto; }
	.qzk-collections__grid { grid-template-columns: repeat(2, 1fr); }
	.qzk-grid { grid-template-columns: repeat(3, 1fr); }
	.qzk-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.qzk-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
	.qzk-nav { display: none; }
	.qzk-header__cta { display: none; }
	.qzk-burger { display: flex; }
	.qzk-grid { grid-template-columns: repeat(2, 1fr); }
	.qzk-single__grid { grid-template-columns: 1fr; }
	.qzk-process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.qzk-collections__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.qzk-grid { grid-template-columns: 1fr; }
	.qzk-form__row { grid-template-columns: 1fr; }
	.qzk-sticker { width: 84px; height: 84px; font-size: 13px; }
	.qzk-footer__top { grid-template-columns: 1fr; }
	.qzk-single__actions { flex-direction: column; }
}
