/* ==========================================================================
   Tinta — theme styles
   ========================================================================== */

:root {
	--blue: #1b3de8;
	--blue-dark: #122db3;
	--blue-soft: #e8edff;
	--navy: #0c1535;
	--navy-2: #131f4d;
	--ink: #111729;
	--muted: #5b6478;
	--line: #e6e9f2;
	--bg-soft: #f4f6fc;
	--pink: #e81f76;
	--cyan: #2ea8e8;
	--gold: #f2a91f;
	--radius: 20px;
	--shadow: 0 10px 30px rgba(16, 24, 64, 0.10);
	--shadow-lg: 0 24px 60px rgba(16, 24, 64, 0.16);
	--font: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 40px); }
p { margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.text-blue { color: var(--blue); }
.section-sub { color: var(--muted); max-width: 560px; }

.section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.link-arrow { font-weight: 700; white-space: nowrap; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(27, 61, 232, 0.3); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); }
.btn-white:hover { color: var(--blue); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(16, 24, 64, 0.06); }
.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}
.header-logo img { width: 170px; height: auto; }
.header-nav { flex: 1; }
.nav-list {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: var(--ink);
	font-weight: 600;
	font-size: 15px;
	border-radius: 10px;
}
.nav-list > li > a:hover { color: var(--blue); background: var(--blue-soft); }

.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	list-style: none;
	margin: 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 500;
}
.dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
.dropdown-all { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.dropdown-all a { font-weight: 700; color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%); }
#hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.hero-blob {
	position: absolute;
	top: -16%;
	right: -12%;
	width: 60%;
	height: 132%;
	background:
		radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18), transparent 45%),
		radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.15), transparent 50%),
		linear-gradient(135deg, #0b3cff 0%, #1e66ff 60%, #3a86ff 100%);
	border-radius: 58% 42% 65% 35% / 60% 55% 45% 50%;
	animation: blob-drift 14s ease-in-out infinite alternate;
}
@keyframes blob-drift {
	from { transform: translate3d(0, 0, 0) rotate(-8deg); }
	to { transform: translate3d(-16px, 20px, 0) rotate(-5deg); }
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding-top: 72px;
	padding-bottom: 36px;
	min-height: 560px;
}
.hero-copy h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; margin-bottom: 20px; }
.hero-copy p { font-size: 18px; color: var(--muted); max-width: 440px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-quick { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; }
.hero-quick a, .hero-quick button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	transition: color 0.2s ease;
}
.hero-quick a:hover, .hero-quick button:hover { color: var(--blue); }

.hero-visual { position: relative; height: 540px; }
.hv-card {
	position: absolute;
	margin: 0;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	animation: hv-float 6s ease-in-out infinite;
}
.hv-card img { width: 100%; height: 100%; object-fit: cover; }
.hv-standee { left: 4%; top: 4%; width: 46%; height: 86%; animation-delay: 0s; }
.hv-shirt { right: 2%; top: 0; width: 40%; height: 42%; animation-delay: 1.2s; }
.hv-sticker { right: 26%; bottom: 4%; width: 30%; height: 32%; animation-delay: 2.4s; z-index: 2; }
.hv-bizcard { right: -2%; bottom: 10%; width: 36%; height: 28%; animation-delay: 1.8s; }
@keyframes hv-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.trust-row {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 26px 0 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	border-top: 1px solid var(--line);
}
.trust-row li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.trust-icon { grid-row: span 2; color: var(--blue); display: grid; place-items: center; width: 46px; height: 46px; background: var(--blue-soft); border-radius: 12px; }
.trust-row strong { font-size: 15px; }
.trust-row small { color: var(--muted); font-size: 13px; }

/* ---------- Product cards ---------- */
.products-section { background: #fff; }
.product-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.pcard {
	position: relative;
	border-radius: var(--radius);
	padding: 26px 24px 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 480px;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px; }
.pcard-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.18); flex: none; }
.pcard ul { list-style: none; margin: 0 0 16px; padding: 0; font-size: 14.5px; display: grid; gap: 7px; position: relative; z-index: 2; }
.pcard ul li { padding-left: 16px; position: relative; opacity: 0.95; }
.pcard ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.85; }
.pcard .btn { margin-top: auto; align-self: flex-start; position: relative; z-index: 2; }
.pcard-img {
	position: absolute;
	right: -26px;
	bottom: 46px;
	width: 62%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
	transform: rotate(6deg);
	transition: transform 0.25s ease;
}
.pcard:hover .pcard-img { transform: rotate(2deg) scale(1.04); }
.pcard-navy { background: linear-gradient(160deg, #2a3a95 0%, #18246b 100%); }
.pcard-blue { background: linear-gradient(160deg, #38b2f0 0%, #1d7fd1 100%); }
.pcard-pink { background: linear-gradient(160deg, #ef3a8b 0%, #c4126a 100%); }
.pcard-gold { background: linear-gradient(160deg, #f7b733 0%, #e8950c 100%); }

/* ---------- Why choose ---------- */
.why-section { background: var(--bg-soft); }
.why-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; margin-top: 34px; }
.wf { display: flex; gap: 13px; }
.wf-icon { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.wf strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.wf p { color: var(--muted); font-size: 13.5px; margin: 0; }

.why-visual { position: relative; }
.why-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.why-photo-sm {
	margin: 0;
	position: absolute;
	left: -36px;
	bottom: -32px;
	width: 44%;
	border-radius: 16px;
	overflow: hidden;
	border: 6px solid #fff;
	box-shadow: var(--shadow-lg);
}
.why-photo-sm img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.stats-row {
	list-style: none;
	margin: 72px 0 0;
	padding: 34px 30px;
	background: var(--navy);
	border-radius: var(--radius);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	color: #fff;
	text-align: center;
}
.stats-row strong { display: block; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; color: #fff; }
.stats-row span { color: rgba(255, 255, 255, 0.75); font-size: 14px; }

/* ---------- Testimonials ---------- */
.testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
	margin: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #f5a623; letter-spacing: 3px; font-size: 17px; }
.tcard p { margin: 12px 0 20px; font-size: 15.5px; }
.tcard footer { display: flex; align-items: center; gap: 12px; }
.tavatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
	font-weight: 800;
	display: grid;
	place-items: center;
	flex: none;
}
.tcard strong { display: block; font-size: 15px; }
.tcard small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-soft); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr); gap: 56px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 0 22px;
	overflow: hidden;
}
.faq-list summary {
	cursor: pointer;
	list-style: none;
	font-weight: 700;
	padding: 18px 30px 18px 0;
	position: relative;
	font-size: 15.5px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	font-weight: 600;
	color: var(--blue);
	transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); margin: 0 0 18px; font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band {
	background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 60%, #2e53ff 100%);
	color: #fff;
	text-align: center;
	padding: 76px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 30px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Brands ---------- */
.brands-section { background: var(--blue-soft); padding: 56px 0; border-top: 1px solid #d9e2ff; }
.brands-label { color: var(--muted); text-align: center; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 34px; }
.brands-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brands-track {
	display: flex;
	align-items: center;
	gap: 28px;
	/* Vertical room so a magnified chip never clips against the marquee mask. */
	padding: 22px 0;
	width: max-content;
	animation: marquee 36s linear infinite;
}
/* Pause the scroll while hovering so a logo can actually be focused & read. */
.brands-marquee:hover .brands-track { animation-play-state: paused; }

/* White chips: each logo sits on its own clean surface so dark *and* light
   logos read clearly regardless of the section tint. */
.brands-track img {
	width: auto;
	height: 50px;
	object-fit: contain;
	background: #fff;
	padding: 14px 24px;
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(12, 21, 53, 0.07);
	opacity: 1;
	filter: none;
	position: relative;
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}
/* Magnify the focused logo to see the brand clearly. */
.brands-track img:hover {
	transform: scale(1.45);
	box-shadow: 0 16px 34px rgba(12, 21, 53, 0.18);
	z-index: 5;
}
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
.site-footer { background: #0a1129; color: rgba(255, 255, 255, 0.78); padding: 70px 0 0; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}
.footer-about img { width: 190px; margin-bottom: 18px; }
.footer-about p { font-size: 14.5px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.18s ease;
}
.footer-social a:hover { background: var(--blue); }
.footer-col h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.footer-col a { color: rgba(255, 255, 255, 0.78); }
.footer-col a:hover { color: #fff; }
.footer-payments { margin-top: 20px; width: 150px; border-radius: 8px; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 13.5px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, 0.78); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Inner pages / WooCommerce ---------- */
.tinta-page { padding: 56px 0 88px; }
.page-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 64px 0; margin-bottom: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 44px); margin: 0; }
.page-hero .breadcrumbs { color: rgba(255, 255, 255, 0.6); font-size: 14px; margin-top: 8px; }
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.entry-content a { text-decoration: underline; }

/* Shop hero (per shop-mock) */
.shop-hero2 { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%); }
.shop-hero2 #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.shop-hero2 .hero-blob { top: -40%; right: -18%; width: 56%; height: 160%; }
.shop-hero2-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 40px;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 58px;
}
.shop-hero2 .breadcrumbs { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.shop-hero2 .breadcrumbs a { color: var(--muted); }
.shop-hero2 .breadcrumbs a:hover { color: var(--blue); }
.shop-hero2 h1 { font-size: clamp(36px, 4.8vw, 54px); margin: 0 0 14px; }
.shop-hero2 p.sub { color: var(--muted); font-size: 17px; max-width: 460px; margin: 0 0 24px; }
.shop-search {
	display: flex;
	align-items: center;
	max-width: 480px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px 6px 6px 20px;
	box-shadow: 0 10px 28px rgba(16, 24, 64, 0.08);
}
.shop-search svg { color: var(--muted); flex: none; }
.shop-search input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	padding: 8px 12px;
	background: transparent;
}
.shop-search .btn { padding: 11px 24px; flex: none; }
.shop-hero2-visual { position: relative; height: 330px; }
.shv { position: absolute; margin: 0; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); animation: hv-float 6s ease-in-out infinite; }
.shv img { width: 100%; height: 100%; object-fit: cover; }
.shv1 { left: 6%; top: 4%; width: 44%; height: 92%; animation-delay: 0s; }
.shv2 { right: 8%; top: 0; width: 42%; height: 54%; animation-delay: 1.3s; }
.shv3 { right: 16%; bottom: 0; width: 34%; height: 38%; animation-delay: 2.5s; }
.shv-tag {
	position: absolute;
	left: 0;
	bottom: 12%;
	background: #fff;
	border-radius: 12px;
	padding: 10px 16px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 14px;
	z-index: 2;
}
.shv-tag .dot { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }

/* Shop filter pills */
.shop-filter { padding: 26px 0 0; }
.shop-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.shop-sort .woocommerce-ordering { margin: 0 !important; float: none !important; }
.shop-sort select {
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05);
}
.shop-tabs { box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05); }
.shop-tabs .gtab { text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.gtab-count {
	background: var(--blue-soft);
	color: var(--blue);
	font-size: 11.5px;
	font-weight: 800;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	display: inline-grid;
	place-items: center;
	padding: 0 6px;
}
.gtab.is-active .gtab-count { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* Product grid */
.tinta-woo { padding-top: 0; }
.tinta-page:has(.tinta-woo) { padding-top: 36px; }
.tinta-woo .woocommerce-result-count { color: var(--muted); font-size: 14px; float: left; margin: 6px 0 22px; }
.tinta-woo .woocommerce-ordering { float: right; margin: 0 0 22px; }
.tinta-woo .woocommerce-ordering select {
	font: inherit;
	font-size: 14px;
	padding: 9px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
}
.tinta-woo ul.products {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	clear: both;
}
.tinta-woo ul.products::before, .tinta-woo ul.products::after { display: none; }
.tinta-woo ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tinta-woo ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tinta-woo ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0 !important;
	transition: transform 0.3s ease;
}
.tinta-woo ul.products li.product:hover a img { transform: scale(1.04); }
.tinta-woo ul.products li.product .woocommerce-loop-product__link { display: block; overflow: hidden; }
.tinta-woo ul.products li.product .woocommerce-loop-product__title {
	font-size: 15.5px;
	font-weight: 700;
	padding: 14px 16px 4px;
	color: var(--ink);
}
.loop-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	color: #fff;
	font-size: 11.5px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.pb-shirt { background: var(--pink); }
.pb-sticker { background: #1d7fd1; }
.pb-tarp { background: #2a3a95; }
.pb-gold { background: var(--gold); }
.loop-quick {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	display: grid;
	place-items: center;
	color: var(--ink);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
	opacity: 0;
	transition: opacity 0.18s ease;
}
.tinta-woo ul.products li.product:hover .loop-quick { opacity: 1; }
.loop-sub { display: block; color: var(--muted); font-size: 12.5px; padding: 0 16px; }
.tinta-woo ul.products li.product .button::after { content: "→"; margin-left: 2px; }
.tinta-woo ul.products li.product .price { padding: 0 16px; color: var(--blue); font-weight: 700; }
.tinta-woo ul.products li.product .button {
	margin: 10px 16px 16px;
	align-self: flex-start;
	background: var(--blue-soft);
	color: var(--blue);
	font: inherit;
	font-weight: 700;
	font-size: 13.5px;
	padding: 9px 18px;
	border-radius: 999px;
	border: 0;
	transition: background 0.18s ease, color 0.18s ease;
}
.tinta-woo ul.products li.product .button:hover { background: var(--blue); color: #fff; }
.tinta-woo .onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--pink);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
}
.tinta-woo ul.products li.product { position: relative; }

/* Pagination */
.tinta-woo .woocommerce-pagination { text-align: center; margin-top: 40px; }
.tinta-woo .woocommerce-pagination ul {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
}
.tinta-woo .woocommerce-pagination ul li { border: 0; }
.tinta-woo .woocommerce-pagination ul li a,
.tinta-woo .woocommerce-pagination ul li span {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--ink);
	font-weight: 700;
	font-size: 14px;
}
.tinta-woo .woocommerce-pagination ul li span.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.tinta-woo .woocommerce-pagination ul li a:hover { border-color: var(--blue); color: var(--blue); }

/* Empty category state */
.tinta-woo .woocommerce-info {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 18px 22px;
	color: var(--ink);
	font-weight: 600;
}
.shop-empty-cta {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
	padding: 30px 34px;
	margin-top: 18px;
	max-width: 640px;
}
.shop-empty-cta p { color: var(--muted); margin: 0 0 18px; }
.product-quote-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Single product */
.product-breadcrumb { padding: 22px 24px 0; }
.product-breadcrumb .breadcrumbs { color: var(--muted); font-size: 14px; margin: 0; }
.tinta-woo div.product { display: block; }
.tinta-woo div.product div.images {
	width: 46% !important;
	float: left;
	margin-bottom: 36px !important;
}
.tinta-woo div.product div.images img { border-radius: 18px; box-shadow: var(--shadow); }
.tinta-woo div.product div.images .flex-control-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.tinta-woo div.product div.images .flex-control-thumbs li { width: auto; flex: 1; }
.tinta-woo div.product div.images .flex-control-thumbs img { border-radius: 10px; border: 2px solid transparent; cursor: pointer; }
.tinta-woo div.product div.images .flex-control-thumbs img.flex-active { border-color: var(--blue); }
.tinta-woo div.product div.summary {
	width: 49% !important;
	float: right;
	margin-bottom: 36px !important;
}
.tinta-woo div.product .product_title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 10px; }
.tinta-woo div.product .price { color: var(--blue); font-size: 22px; font-weight: 800; }
.tinta-woo div.product .price:empty { display: none; }
.tinta-woo div.product .woocommerce-product-details__short-description { color: var(--muted); }
.tinta-woo div.product .product_meta {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 13.5px;
}
.tinta-woo div.product .product_meta a { font-weight: 700; }
.product-quote-cta {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 22px 24px;
	margin: 20px 0;
}
.product-quote-cta p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

/* Product tabs */
.tinta-woo div.product .woocommerce-tabs { clear: both; padding-top: 8px; }
.tinta-woo div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0 0 0;
	padding: 5px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	width: max-content;
	max-width: 100%;
	overflow: visible;
}
.tinta-woo div.product .woocommerce-tabs ul.tabs::before,
.tinta-woo div.product .woocommerce-tabs ul.tabs::after,
.tinta-woo div.product .woocommerce-tabs ul.tabs li::before,
.tinta-woo div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.tinta-woo div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 999px;
	margin: 0;
	padding: 0;
}
.tinta-woo div.product .woocommerce-tabs ul.tabs li a { padding: 9px 20px; font-weight: 700; font-size: 14px; color: var(--ink); display: block; }
.tinta-woo div.product .woocommerce-tabs ul.tabs li.active { background: var(--blue); }
.tinta-woo div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.tinta-woo div.product .woocommerce-tabs .panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 26px 28px;
	margin-top: 16px;
}
.tinta-woo div.product .woocommerce-tabs .panel h2:first-of-type { font-size: 19px; }

/* Related products */
.tinta-woo .related.products { clear: both; padding-top: 30px; }
.tinta-woo .related.products > h2 { font-size: 24px; margin-bottom: 22px; }

@media (max-width: 1080px) {
	.tinta-woo ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
	.tinta-woo ul.products { grid-template-columns: repeat(2, 1fr); }
	.tinta-woo div.product div.images,
	.tinta-woo div.product div.summary { width: 100% !important; float: none; }
	.shop-hero2-inner { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 44px; }
	.shop-hero2-visual { display: none; }
	.shop-hero2 .hero-blob { width: 120%; right: -40%; top: auto; bottom: -70%; height: 80%; opacity: 0.5; }
	.shop-bar-inner { flex-direction: column; align-items: stretch; }
	.shop-sort select { width: 100%; }
}
@media (max-width: 600px) {
	.tinta-woo ul.products { grid-template-columns: 1fr; }
	.tinta-woo .woocommerce-result-count, .tinta-woo .woocommerce-ordering { float: none; }
}

/* ---------- Gallery page ---------- */
.ghero { position: relative; overflow: hidden; background: #fff; }
.ghero #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ghero-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 46%;
	height: 100%;
	background: linear-gradient(135deg, #2e53ff 0%, var(--blue) 60%, var(--blue-dark) 100%);
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.ghero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding-top: 56px;
	padding-bottom: 56px;
	min-height: 380px;
}
.ghero-copy .breadcrumbs { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.ghero-copy .breadcrumbs a { color: var(--muted); }
.ghero-copy .breadcrumbs a:hover { color: var(--blue); }
.ghero-copy h1 { font-size: clamp(42px, 6vw, 64px); margin-bottom: 14px; }
.ghero-sub { color: var(--muted); font-size: 17px; max-width: 380px; }

.ghero-visual { position: relative; height: 330px; }
.gv-card {
	position: absolute;
	margin: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	animation: hv-float 6s ease-in-out infinite;
}
.gv-card img { width: 100%; height: 100%; object-fit: cover; }
.gv-board { left: 18%; top: 0; width: 38%; height: 100%; animation-delay: 0s; }
.gv-shirt { right: 4%; top: 6%; width: 36%; height: 52%; animation-delay: 1.4s; }
.gv-invite { right: 16%; bottom: 2%; width: 28%; height: 38%; animation-delay: 2.6s; }

.gfilter { padding: 30px 0 6px; }
.gfilter-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.gtabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px;
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05);
}
.gtab {
	border: 0;
	background: transparent;
	font: inherit;
	font-weight: 600;
	font-size: 14px;
	color: var(--ink);
	padding: 9px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.gtab:hover { color: var(--blue); }
.gtab.is-active { background: var(--blue); color: #fff; }
.gsearch { position: relative; display: inline-flex; align-items: center; }
.gsearch input {
	font: inherit;
	font-size: 14px;
	padding: 11px 40px 11px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	width: 230px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.gsearch input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.gsearch svg { position: absolute; right: 15px; color: var(--muted); pointer-events: none; }

.ggrid-section { padding: 34px 0 72px; }
.ggrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gcard {
	margin: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gcard-media {
	display: block;
	position: relative;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
}
.gcard-media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.3s ease; }
.gcard:hover .gcard-media img { transform: scale(1.04); }
.gbadge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.gbadge-sintra { background: #2a3a95; }
.gbadge-large { background: #1d7fd1; }
.gbadge-corporate { background: var(--pink); }
.gbadge-other { background: var(--gold); }
.gcard-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
}
.gcard-foot strong { display: block; font-size: 15px; }
.gcard-foot small { color: var(--muted); font-size: 12.5px; }
.gcard-arrow {
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--line);
	color: var(--ink);
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gcard:hover .gcard-arrow { background: var(--blue); border-color: var(--blue); color: #fff; }

.gempty { text-align: center; color: var(--muted); padding: 40px 0; }
.gmore { text-align: center; margin-top: 36px; }

.gcta { padding: 8px 0 64px; }
.gcta-box {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
	padding: 30px 34px;
}
.gcta-icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--blue-soft);
	color: var(--blue);
}
.gcta-text { flex: 1 1 320px; }
.gcta-text h2 { font-size: 23px; margin-bottom: 4px; }
.gcta-text p { color: var(--muted); margin: 0; font-size: 14.5px; }
.gcta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.glightbox {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(7, 11, 30, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.glightbox[hidden] { display: none; }
.glightbox figure { margin: 0; max-width: min(1000px, 92vw); text-align: center; }
.glightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; margin: 0 auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.glightbox figcaption { color: #fff; font-weight: 700; margin-top: 16px; font-size: 17px; }
.glightbox-close {
	position: absolute;
	top: 18px;
	right: 26px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 44px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.8;
}
.glightbox-close:hover { opacity: 1; }

@media (max-width: 920px) {
	.ghero-panel { display: none; }
	.ghero-inner { grid-template-columns: 1fr; padding-bottom: 0; }
	.ghero-visual { display: none; }
	.ggrid { grid-template-columns: repeat(2, 1fr); }
	.gfilter-inner { flex-direction: column; align-items: stretch; }
	.gsearch input { width: 100%; }
}
@media (max-width: 600px) {
	.ggrid { grid-template-columns: 1fr; }
	.gcta-box { padding: 24px; }
}

/* ---------- About page ---------- */
.eyebrow {
	color: var(--blue);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 10px;
}
.about-est { font-weight: 700; font-size: 17px; margin: -4px 0 14px; }

.about-mission-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: center;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; }
.av { display: flex; gap: 14px; align-items: flex-start; }
.av strong { display: block; font-size: 16px; margin-bottom: 4px; }
.av p { color: var(--muted); font-size: 13.5px; margin: 0; }

.about-numbers { padding: 0 0 8px; }
.about-numbers-box {
	background: var(--bg-soft);
	border-radius: var(--radius);
	padding: 44px 40px;
	text-align: center;
}
.about-numbers-box h2 { font-size: 26px; margin-bottom: 26px; }
.numbers-row {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.numbers-row li { position: relative; }
.numbers-row li + li::before {
	content: "";
	position: absolute;
	left: -11px;
	top: 12%;
	height: 76%;
	width: 1px;
	background: var(--line);
}
.numbers-row strong { display: block; font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; color: var(--blue); }
.numbers-row > li > span { color: var(--muted); font-size: 14px; }

.about-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 50px;
	align-items: center;
}
.about-why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.awc {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.awc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.awc .wf-icon { margin-bottom: 14px; background: var(--blue-soft); box-shadow: none; }
.awc strong { display: block; font-size: 16px; margin-bottom: 6px; }
.awc p { color: var(--muted); font-size: 13.5px; margin: 0; }

.about-team { background: var(--bg-soft); }
.about-team-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: center;
}
.about-team-photo { position: relative; margin: 0; }
.about-team-photo > img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}
.about-team-photo-sm {
	position: absolute;
	right: -26px;
	bottom: -28px;
	width: 40%;
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	border: 6px solid #fff;
	box-shadow: var(--shadow-lg);
}
.about-team-photo-sm img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

@media (max-width: 920px) {
	.about-mission-grid, .about-why-grid, .about-team-grid { grid-template-columns: 1fr; gap: 36px; }
	.about-values { grid-template-columns: 1fr; }
	.numbers-row { grid-template-columns: repeat(2, 1fr); }
	.numbers-row li:nth-child(odd)::before { display: none; }
	.about-team-photo { max-width: 540px; }
}
@media (max-width: 600px) {
	.about-why-cards { grid-template-columns: 1fr; }
	.numbers-row { grid-template-columns: 1fr; }
	.numbers-row li + li::before { display: none; }
}

/* ---------- Order Form page ---------- */
.order-section { padding: 48px 0 72px; }
.order-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}
.order-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
	padding: 34px 36px 28px;
}
.order-card-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	margin-bottom: 24px;
}
.order-card-title .wf-icon { background: var(--blue-soft); box-shadow: none; }
.order-secure {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 13px;
	margin: 18px 0 0;
}
.order-secure svg { flex: none; }

/* Fluent Forms skin */
.tinta-form .ff-el-group { margin-bottom: 20px; }
.tinta-form .ff-el-input--label label {
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	margin-bottom: 7px;
	display: inline-block;
}
.tinta-form .ff-el-input--label.ff-el-is-required.asterisk-right label::after { color: #e02b2b; }
.tinta-form .ff-el-form-control {
	width: 100%;
	font: inherit;
	font-size: 14.5px;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px 14px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	box-shadow: none;
	height: auto;
}
.tinta-form .ff-el-form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.tinta-form textarea.ff-el-form-control { min-height: 130px; resize: vertical; }
.tinta-form select.ff-el-form-control { appearance: auto; }
.tinta-form .ff-t-container { display: flex; gap: 18px; }
.tinta-form .ff-t-cell { flex: 1; }
.tinta-form .ff-el-form-check { margin: 4px 0; }
.tinta-form .ff-el-form-check label { font-weight: 500; font-size: 14px; color: var(--ink); display: flex; gap: 9px; align-items: flex-start; }
.tinta-form .ff-el-form-check-input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.tinta-form .ff_t_c { font-size: 14px; color: var(--ink); }
.tinta-form .ff_t_c a { font-weight: 700; }
.tinta-form .ff-btn-submit {
	font: inherit;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	background: var(--blue);
	border: 0;
	border-radius: 999px;
	padding: 13px 34px;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(27, 61, 232, 0.3);
	transition: background 0.18s ease, transform 0.18s ease;
}
.tinta-form .ff-btn-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }
.tinta-form .ff-el-is-error .ff-el-form-control { border-color: #e02b2b; }
.tinta-form .error.text-danger, .tinta-form .ff-el-is-error .error { color: #e02b2b; font-size: 12.5px; margin-top: 5px; }
.tinta-form .ff-message-success {
	background: #eefaf1;
	border: 1px solid #bfe8cc;
	color: #19733a;
	border-radius: 12px;
	padding: 16px 18px;
	font-weight: 600;
}

.order-steps, .order-help {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	margin-bottom: 22px;
}
.order-steps h3, .order-help h3 { font-size: 19px; margin-bottom: 18px; }
.order-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.order-steps li, .order-help li { display: flex; gap: 14px; align-items: flex-start; }
.step-icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--blue);
	box-shadow: 0 4px 12px rgba(16, 24, 64, 0.08);
}
.order-steps strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.order-steps p { color: var(--muted); font-size: 13px; margin: 0; }
.order-help > p { color: var(--muted); font-size: 13.5px; margin-top: -8px; }
.order-help ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 16px; }
.order-help strong { font-size: 14.5px; color: var(--ink); }
.order-help a:hover strong { color: var(--blue); }
.order-help small { display: block; color: var(--muted); font-size: 12.5px; }
.order-help-btn { width: 100%; }
.order-help .order-help-btn + .order-help-btn { margin-top: 10px; }

/* ---------- Order flow chooser ---------- */
.flow-choose { padding: 40px 0 0; }
.flow-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.flow-card {
	text-align: left;
	background: #fff;
	border: 2px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 26px;
	cursor: pointer;
	font: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.flow-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.flow-card.is-active {
	border-color: var(--blue);
	background: var(--blue-soft);
	box-shadow: 0 10px 26px rgba(27, 61, 232, 0.12);
}
.flow-ico {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--blue-soft);
	color: var(--blue);
	margin-bottom: 14px;
}
.flow-card.is-active .flow-ico { background: var(--blue); color: #fff; }
.flow-card strong { display: block; font-size: 17px; margin-bottom: 6px; }
.flow-card p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* Per-flow step lists in the sidebar */
.flow-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.flow-steps[hidden], .flow-pane[hidden] { display: none; }
.flow-steps li { display: flex; gap: 12px; align-items: center; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.step-num {
	flex: none;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
}

/* ---------- Payment QR section ---------- */
.pay-section { padding: 8px 0 64px; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 22px; align-items: stretch; }
.pay-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	border-top: 4px solid var(--blue);
	padding: 26px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
}
.pay-bpi { border-top-color: #c41230; }
.pay-card h3 { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 19px; margin-bottom: 16px; }
.pay-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); }
.pay-bpi .pay-dot { background: #c41230; }
.pay-qr { width: 100%; max-width: 250px; height: auto; border-radius: 12px; border: 1px solid var(--line); }
.pay-qr-placeholder {
	display: grid;
	place-items: center;
	min-height: 220px;
	border: 2px dashed var(--line);
	border-radius: 12px;
	color: var(--muted);
	font-size: 13.5px;
	padding: 18px;
}
.pay-net { color: var(--muted); font-size: 12.5px; margin: 14px 0 0; }
.pay-how {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}
.pay-how h3 { font-size: 19px; margin-bottom: 18px; }
.pay-how ol { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 14px; }
.pay-how li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--ink); }
.pay-how .step-num { margin-top: 1px; }
.pay-fine { color: var(--muted); font-size: 12px; margin: 0; }

@media (max-width: 920px) {
	.pay-grid { grid-template-columns: 1fr 1fr; }
	.pay-how { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.flow-cards { grid-template-columns: 1fr; }
	.pay-grid { grid-template-columns: 1fr; }
}

.order-why { padding: 0 0 64px; }
.order-why-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 30px;
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 6px 18px rgba(16, 24, 64, 0.05);
	padding: 30px 34px;
}
.order-why-lead { display: flex; gap: 16px; align-items: flex-start; }
.order-why-lead h2 { font-size: 22px; margin-bottom: 6px; }
.order-why-lead p { color: var(--muted); font-size: 13.5px; margin: 0; }
.order-why-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.order-why-items li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 11px; align-items: center; }
.order-why-items .trust-icon { grid-row: span 2; width: 42px; height: 42px; }
.order-why-items strong { font-size: 14px; }
.order-why-items small { color: var(--muted); font-size: 12px; }

@media (max-width: 1080px) {
	.order-why-box { grid-template-columns: 1fr; }
	.order-why-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
	.order-grid { grid-template-columns: 1fr; }
	.order-card { padding: 26px 22px; }
	.tinta-form .ff-t-container { flex-direction: column; gap: 0; }
}
@media (max-width: 600px) {
	.order-why-items { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-hero .breadcrumbs { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.contact-hero .breadcrumbs a { color: var(--muted); }
.contact-hero .breadcrumbs a:hover { color: var(--blue); }
.contact-hero .hero-copy h1 { font-size: clamp(38px, 5vw, 58px); }
.contact-hero .hero-inner { padding-bottom: 90px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 16px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	box-shadow: 0 4px 14px rgba(16, 24, 64, 0.06);
	transition: transform 0.15s ease, color 0.15s ease;
}
.hero-chip:hover { transform: translateY(-2px); color: var(--blue); }
.hero-chip svg { color: var(--blue); }

.info-section { padding: 0 0 12px; }
.info-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: -52px;
	position: relative;
	z-index: 5;
}
.info-card {
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 26px 24px;
	box-shadow: 0 12px 34px rgba(16, 24, 64, 0.08);
	color: var(--ink);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.info-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.ic-navy { background: linear-gradient(160deg, #2a3a95, #18246b); }
.ic-blue { background: linear-gradient(160deg, #38b2f0, #1d7fd1); }
.ic-pink { background: linear-gradient(160deg, #ef3a8b, #c4126a); }
.ic-gold { background: linear-gradient(160deg, #f7b733, #e8950c); }
.info-card h3 { font-size: 16px; margin: 0 0 6px; }
.info-card p { margin: 0; font-weight: 600; font-size: 15px; }
.info-card small { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }

.contact-main { padding: 44px 0 76px; }
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}
.form-sub { color: var(--muted); font-size: 14.5px; margin: -14px 0 24px; }

.aside-stack { display: grid; gap: 22px; }
.map-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(16, 24, 64, 0.07);
}
.map-embed { position: relative; height: 300px; background: var(--bg-soft); }
.map-embed iframe { display: block; width: 100%; height: 100%; }
.map-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; }
.map-bar span { font-weight: 700; font-size: 14px; }
.map-bar a { font-weight: 700; font-size: 13px; white-space: nowrap; }

.social-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 30px; }
.social-card h3 { color: #fff; font-size: 19px; margin: 0 0 6px; }
.social-card p { color: rgba(255, 255, 255, 0.72); font-size: 13.5px; margin: 0 0 18px; }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-row a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-radius: 12px;
	padding: 11px 16px;
	font-weight: 700;
	font-size: 14px;
	transition: background 0.18s ease;
}
.social-row a:hover { background: var(--blue); }

@media (max-width: 1080px) {
	.info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
	.contact-grid { grid-template-columns: 1fr; }
	.contact-hero .hero-inner { padding-bottom: 70px; }
	.info-cards { margin-top: -36px; }
}
@media (max-width: 600px) {
	.info-cards { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.hv-card, .hero-blob, .brands-track { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.product-cards { grid-template-columns: repeat(2, 1fr); }
	.hero-visual { height: 480px; }
}
@media (max-width: 920px) {
	.header-nav {
		position: fixed;
		inset: 76px 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		padding: 12px 24px 24px;
		display: none;
		max-height: calc(100vh - 76px);
		overflow: auto;
	}
	.header-nav.open { display: block; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list > li > a { width: 100%; padding: 13px 8px; font-size: 16px; }
	.dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 18px; display: none; }
	.has-dropdown.open .dropdown { display: block; }
	.nav-toggle { display: block; }
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.hero-inner { grid-template-columns: 1fr; padding-top: 48px; min-height: 0; }
	.hero-blob { width: 120%; right: -40%; top: auto; bottom: -52%; height: 90%; opacity: 0.85; }
	.hero-visual { height: 440px; max-width: 520px; }
	.trust-row { grid-template-columns: repeat(2, 1fr); }
	.why-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
	.why-visual { max-width: 540px; }
	.testi-cards { grid-template-columns: 1fr; }
	.stats-row { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.section { padding: 64px 0; }
	.product-cards { grid-template-columns: 1fr; }
	.trust-row { grid-template-columns: 1fr; }
	.hero-visual { height: 360px; }
	.why-features { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.header-logo img { width: 140px; }
	.header-cta { display: none; }
}
