:root {
	--color-bg: #f7f7f7;
	--color-surface: #ffffff;
	--color-text: #1a1a1a;
	--color-muted: #3d3d3d;
	--color-subtle: #636363;
	--color-border: #e0e0e0;
	--color-primary: #024ad8;
	--color-primary-dark: #0e3191;
	--color-ink: #06121f;
	--color-green: #16a34a;
	--color-amber: #f59e0b;
	--shadow-card: 0 16px 40px rgba(15, 23, 42, 0.055);
	--shadow-card-hover: 0 24px 70px rgba(6, 18, 31, 0.11);
	--shadow-button: 0 12px 28px rgba(15, 92, 255, 0.25);
	--shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.12);
	--shadow-glass: 0 28px 80px rgba(6, 18, 31, 0.16);
	--spring: 520ms cubic-bezier(0.34, 1.56, 0.64, 1);
	--spring-soft: 720ms cubic-bezier(0.22, 1.18, 0.36, 1);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 28px;
	--radius-pill: 999px;
	--space-card: clamp(24px, 4vw, 36px);
	--space-section: 96px;
	--container: 1180px;
	--gutter: clamp(20px, 4vw, 56px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body.nav-is-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	letter-spacing: 0;
	line-height: 1.05;
}

h1 {
	max-width: 850px;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 800;
}

h2 {
	font-size: clamp(32px, 4vw, 54px);
	font-weight: 800;
}

h3 {
	font-size: 22px;
	font-weight: 750;
}

p {
	color: var(--color-muted);
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: var(--color-ink);
	color: var(--color-surface);
	clip: auto;
	border-radius: var(--radius-sm);
}

:focus-visible {
	outline: 3px solid rgba(15, 92, 255, 0.35);
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	background: rgba(255, 255, 255, 0.58);
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7), 0 18px 60px rgba(6, 18, 31, 0.08);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: 12px var(--gutter);
	gap: clamp(18px, 3vw, 34px);
}

.brand {
	display: inline-flex;
	flex: 0 1 300px;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: var(--color-text);
	text-decoration: none;
}

.brand__mark {
	display: grid;
	width: 11px;
	height: 11px;
	place-items: center;
	background: var(--color-ink);
	color: var(--color-surface);
	border-radius: 3px;
	font-size: 7px;
	font-weight: 800;
}

.brand__logo,
.site-header .custom-logo {
	width: auto;
	max-width: 300px !important;
	max-height: 64px !important;
	height: auto !important;
	object-fit: contain;
}

.brand__text {
	display: grid;
	line-height: 1.15;
}

.brand__name {
	font-weight: 800;
}

.brand__tagline {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 650;
	text-transform: uppercase;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	gap: clamp(14px, 1.8vw, 22px);
	list-style: none;
}

.primary-nav a {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.primary-nav a:hover {
	color: var(--color-primary);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: transform var(--spring), background var(--spring), color var(--spring), border-color var(--spring), box-shadow var(--spring);
	will-change: transform;
}

.header-cta,
.button--primary {
	background: var(--color-primary);
	color: var(--color-surface);
	box-shadow: var(--shadow-button);
}

.button--secondary {
	background: var(--color-surface);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.button--light {
	background: var(--color-surface);
	color: var(--color-primary-dark);
}

.header-cta:hover,
.button:hover {
	transform: translateY(-3px) scale(1.015);
}

.header-cta:active,
.button:active {
	transform: translateY(1px) scale(0.985);
}

input,
textarea,
select {
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font: inherit;
	box-shadow: none;
	transition: border-color var(--spring), box-shadow var(--spring);
}

textarea {
	min-height: 132px;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: var(--color-subtle);
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--color-primary);
	outline: 3px solid rgba(15, 92, 255, 0.18);
	outline-offset: 0;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-text);
	border-radius: var(--radius-pill);
	content: "";
}

.nav-toggle__line::before {
	transform: translateY(-6px);
}

.nav-toggle__line::after {
	transform: translateY(4px);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 8%, rgba(2, 74, 216, 0.22), transparent 34%),
		radial-gradient(circle at 12% 88%, rgba(6, 18, 31, 0.1), transparent 30%),
		linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
	align-items: center;
	width: min(100%, var(--container));
	min-height: calc(100vh - 78px);
	margin: 0 auto;
	padding: 74px var(--gutter) 48px;
	gap: clamp(36px, 6vw, 78px);
}

.hero__content p {
	max-width: 670px;
	margin-bottom: 30px;
	font-size: clamp(18px, 2vw, 22px);
}

.hero h1 {
	max-width: 740px;
	font-size: clamp(32px, 4.1vw, 48px);
	line-height: 1.02;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-card {
	position: relative;
	padding: 20px;
	background: rgba(11, 18, 32, 0.78);
	color: var(--color-surface);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-glass);
	backdrop-filter: blur(18px) saturate(130%);
	-webkit-backdrop-filter: blur(18px) saturate(130%);
	animation: spring-rise 900ms cubic-bezier(0.22, 1.18, 0.36, 1) 120ms both;
}

.hero-card::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 1px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.34));
	border-radius: inherit;
	content: "";
	pointer-events: none;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.hero-card > * {
	position: relative;
	z-index: 1;
}

.hero-card__top,
.hero-card__brands {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.hero-card__top {
	padding-bottom: 18px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
}

.hero-card__top strong {
	color: var(--color-surface);
}

.hero-card__screen {
	display: grid;
	padding: 14px;
	background: rgba(17, 28, 47, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	gap: 12px;
}

.hero-card__row {
	display: grid;
	grid-template-columns: 12px 1fr;
	align-items: center;
	padding: 16px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	gap: 12px;
	transition: transform var(--spring-soft), background var(--spring-soft), border-color var(--spring-soft);
	will-change: transform;
}

.hero-card__row:hover {
	transform: translateY(-2px) scale(1.01);
}

.hero-card__row--active {
	background: rgba(15, 92, 255, 0.16);
}

.hero-card__row strong {
	display: block;
	font-size: 15px;
}

.hero-card__row small {
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
}

.status {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-pill);
}

.status--green {
	background: var(--color-green);
}

.status--blue {
	background: var(--color-primary);
}

.status--amber {
	background: var(--color-amber);
}

.hero-card__brands {
	padding-top: 16px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	font-weight: 750;
}

.page-hero {
	background:
		radial-gradient(circle at 82% 18%, rgba(15, 92, 255, 0.13), transparent 34%),
		linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
	border-bottom: 1px solid rgba(217, 224, 234, 0.72);
}

.page-hero__inner {
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: clamp(58px, 9vw, 112px) var(--gutter) clamp(42px, 7vw, 86px);
}

.page-hero h1 {
	max-width: 980px;
	margin-bottom: 22px;
	font-size: clamp(34px, 4.6vw, 54px);
}

.page-hero p:not(.page-kicker) {
	max-width: 760px;
	margin-bottom: 28px;
	font-size: clamp(17px, 2vw, 21px);
}

.page-kicker {
	margin-bottom: 18px;
	color: var(--color-primary-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.service-strip {
	background: var(--color-ink);
	color: var(--color-surface);
}

.service-strip__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: 18px var(--gutter);
	gap: 18px;
}

.service-strip p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 700;
}

.section {
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: 96px var(--gutter);
}

.section__header {
	display: grid;
	max-width: 770px;
	margin-bottom: 42px;
	gap: 12px;
}

.section__header p {
	max-width: 620px;
	font-size: 18px;
}

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

.service-carousel {
	position: relative;
}

.service-carousel__viewport {
	overflow: hidden;
	padding: 2px;
}

.service-grid--carousel {
	display: flex;
	grid-template-columns: none;
	overflow-x: auto;
	padding: 2px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.service-grid--carousel::-webkit-scrollbar {
	display: none;
}

.service-grid--carousel .service-card {
	flex: 0 0 calc((100% - 54px) / 4);
	min-width: 0;
	scroll-snap-align: start;
}

.service-carousel__control {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	place-items: center;
	background: var(--color-surface);
	color: var(--color-primary-dark);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-card);
	cursor: pointer;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	transform: translateY(-50%);
	transition: transform var(--spring), box-shadow var(--spring), border-color var(--spring);
}

.service-carousel__control:hover {
	border-color: rgba(2, 74, 216, 0.28);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-50%) scale(1.06);
}

.service-carousel__control:active {
	transform: translateY(-50%) scale(0.96);
}

.service-carousel__control--prev {
	left: -23px;
}

.service-carousel__control--next {
	right: -23px;
}

.service-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin-top: 20px;
	gap: 8px;
}

.service-carousel__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	background: rgba(2, 74, 216, 0.22);
	border: 0;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: width var(--spring), background-color var(--spring), transform var(--spring);
}

.service-carousel__dot:hover,
.service-carousel__dot:focus-visible {
	background: var(--color-primary);
	transform: scale(1.15);
}

.service-carousel__dot:focus-visible {
	outline: 3px solid rgba(2, 74, 216, 0.2);
	outline-offset: 4px;
}

.service-carousel__dot.is-active {
	width: 28px;
	background: var(--color-primary);
}

.service-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	transition: transform var(--spring), box-shadow var(--spring), border-color var(--spring);
	will-change: transform;
}

.service-card--visual {
	min-height: 560px;
}

.service-card:hover {
	transform: translateY(-5px) scale(1.012);
	box-shadow: var(--shadow-card-hover);
}

.service-card__media {
	position: relative;
	height: 170px;
	margin-bottom: 24px;
	border-radius: var(--radius-md);
	perspective: 900px;
}

.service-card__media-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform var(--spring-soft);
	will-change: transform;
}

.service-card__media:hover .service-card__media-inner,
.service-card__media:focus .service-card__media-inner,
.service-card__media:focus-within .service-card__media-inner {
	transform: rotateY(180deg);
}

.service-card__face {
	position: absolute;
	inset: 0;
	display: grid;
	overflow: hidden;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	backface-visibility: hidden;
}

.service-card__face--front {
	place-items: center;
}

.service-card__face--front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__face--back {
	align-content: center;
	padding: 22px;
	background: var(--color-ink);
	color: var(--color-surface);
	transform: rotateY(180deg);
}

.service-card__face--back strong {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.2;
}

.service-card__face--back ul {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 8px;
	list-style: none;
}

.service-card__face--back li {
	position: relative;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
}

.service-card__face--back li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--color-green);
	border-radius: var(--radius-pill);
	content: "";
	transform: translateY(-50%);
}

.service-card__icon {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 34px;
	place-items: center;
	background: var(--color-bg);
	color: var(--color-primary-dark);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 800;
}

.service-card--visual .service-card__icon {
	margin-bottom: 24px;
}

.service-card p {
	margin-bottom: 18px;
	font-size: 15px;
}

.text-link {
	align-self: flex-start;
	margin-top: auto;
	color: var(--color-primary-dark);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}

[id] {
	scroll-margin-top: 110px;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.section--service-templates {
	width: min(100%, 1360px);
	padding-top: 70px;
	padding-bottom: 96px;
}

.service-template-stack {
	position: relative;
	display: block;
}

.service-template {
	position: sticky;
	top: 96px;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(250px, 0.58fr) minmax(500px, 1.16fr) minmax(240px, 0.58fr);
	grid-template-areas: "intro details faq";
	max-height: calc(100dvh - 120px);
	overflow: clip;
	padding: clamp(26px, 4vw, 44px);
	margin-bottom: clamp(48px, 13vh, 128px);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	gap: clamp(24px, 4vw, 42px);
	transform-origin: top center;
	transition: box-shadow var(--spring), border-color var(--spring), transform var(--spring);
	will-change: transform;
}

.service-template::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 10%, rgba(2, 74, 216, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 247, 247, 0.28));
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.service-template:nth-child(2n) {
	top: 104px;
}

.service-template:nth-child(3n) {
	top: 112px;
}

.service-template:hover,
.service-template:focus-within {
	border-color: rgba(2, 74, 216, 0.28);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px) scale(1.004);
}

.service-template__intro {
	grid-area: intro;
	display: grid;
	align-self: start;
	max-width: 880px;
	padding-right: clamp(0px, 2vw, 18px);
	gap: 12px;
}

.service-template__intro h2 {
	font-size: clamp(28px, 3.2vw, 42px);
}

.service-template__intro p {
	font-size: 17px;
}

.service-template__intro .button {
	justify-self: start;
	margin-top: 8px;
}

.service-template__grid {
	grid-area: details;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.service-template__grid > div {
	padding: 22px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.service-template__grid h3,
.service-template__faq h3 {
	margin-bottom: 14px;
	font-size: 18px;
}

.service-template__grid .mini-list {
	margin-top: 0;
}

.service-template__grid .mini-list li {
	font-size: 14px;
}

.service-template__faq {
	grid-area: faq;
	display: grid;
	align-self: start;
	gap: 12px;
}

.detail-card,
.faq-item,
.contact-panel {
	padding: var(--space-card);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.detail-card--large {
	min-height: 100%;
}

.detail-card h2,
.faq-item h2,
.faq-item h3,
.contact-panel h2 {
	margin-bottom: 14px;
	font-size: clamp(24px, 3vw, 34px);
}

.detail-card p,
.faq-item p,
.contact-panel p {
	font-size: 16px;
}

.mini-list {
	display: grid;
	padding: 0;
	margin: 22px 0 0;
	gap: 10px;
	list-style: none;
}

.mini-list li {
	position: relative;
	padding-left: 24px;
	color: var(--color-muted);
	font-weight: 600;
}

.mini-list li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--color-primary);
	border-radius: var(--radius-pill);
	content: "";
	transform: translateY(-50%);
}

.brand-grid,
.brand-showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.brand-card,
.brand-tile {
	position: relative;
	display: grid;
	grid-template-columns: 142px 1fr;
	align-items: center;
	min-height: 178px;
	padding: 24px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-ink);
	text-decoration: none;
	box-shadow: var(--shadow-card);
	gap: 22px;
	transition: transform var(--spring), box-shadow var(--spring), border-color var(--spring);
	will-change: transform;
}

.brand-card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: var(--shadow-card-hover);
}

.brand-card__logo {
	display: grid;
	width: 120px;
	height: 72px;
	place-items: center;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}

.brand-card__logo-img {
	display: block;
	width: 100%;
	max-width: 104px;
	height: auto;
	max-height: 52px;
	object-fit: contain;
}

.brand-card__logo span {
	display: block;
	max-width: 96px;
	color: var(--color-ink);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 850;
	line-height: 1;
	text-align: center;
}

.brand-card__logo--detail {
	margin-bottom: 24px;
}

.brand-card__content {
	display: grid;
	gap: 8px;
}

.brand-card__content strong {
	color: var(--color-text);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 850;
	line-height: 1;
}

.brand-card__content em {
	color: var(--color-primary-dark);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	text-transform: uppercase;
}

.brand-card__content span {
	max-width: 44ch;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.5;
}

.brand-card__link {
	position: absolute;
	right: 24px;
	bottom: 20px;
	color: var(--color-primary-dark);
	font-size: 13px;
	font-weight: 850;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.section--brand-seo {
	padding-top: 20px;
	padding-bottom: 56px;
}

.brand-seo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.faq-list {
	display: grid;
	gap: 16px;
}

.section--seo-faq {
	padding-top: 56px;
	padding-bottom: 56px;
	background: var(--color-bg);
}

.faq-list--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-template__faq .faq-list--compact {
	grid-template-columns: 1fr;
	gap: 8px;
}

.faq-list--compact .faq-item {
	padding: 24px;
	box-shadow: var(--shadow-card);
}

.faq-disclosure {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: border-color var(--spring), box-shadow var(--spring), transform var(--spring);
}

.faq-disclosure:hover,
.faq-disclosure:focus-within {
	border-color: rgba(2, 74, 216, 0.28);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.faq-disclosure summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 22px;
	gap: 18px;
	color: var(--color-text);
	font-size: clamp(17px, 1.8vw, 22px);
	font-weight: 850;
	line-height: 1.2;
	cursor: pointer;
	list-style: none;
}

.faq-disclosure summary::-webkit-details-marker {
	display: none;
}

.faq-disclosure summary:focus-visible {
	outline: 3px solid rgba(2, 74, 216, 0.22);
	outline-offset: 4px;
}

.faq-disclosure summary::after {
	display: grid;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	place-items: center;
	margin-top: -2px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	content: "+";
	transition: transform var(--spring), background-color var(--spring);
}

.faq-disclosure[open] summary::after {
	background: var(--color-primary);
	color: #fff;
	content: "-";
	transform: rotate(180deg);
}

.faq-disclosure p {
	margin: 0;
	padding: 0 22px 20px;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.65;
}

.service-template__faq .faq-disclosure {
	background: var(--color-bg);
	box-shadow: none;
}

.service-template__faq .faq-disclosure summary {
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.3;
}

.service-template__faq .faq-disclosure summary::after {
	flex-basis: 22px;
	width: 22px;
	height: 22px;
	font-size: 16px;
}

.service-template__faq .faq-disclosure p {
	padding: 0 14px 12px;
	font-size: 13px;
	line-height: 1.55;
}

@media (max-width: 1320px) {
	.service-template {
		grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
		grid-template-areas:
			"intro details"
			"faq faq";
		max-height: none;
		overflow: visible;
	}

	.service-template__faq .faq-list--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.faq-item h2 {
	font-size: clamp(21px, 2.4vw, 28px);
}

.faq-item h3 {
	font-size: clamp(19px, 2.2vw, 25px);
}

.faq-item p {
	margin-bottom: 0;
}

.section--link-path {
	padding-top: 56px;
	padding-bottom: 56px;
}

.link-path {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.link-path__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	min-height: 132px;
	padding: 22px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	color: var(--color-text);
	text-decoration: none;
	box-shadow: var(--shadow-card);
	gap: 16px;
	transition: transform var(--spring), box-shadow var(--spring), border-color var(--spring);
	will-change: transform;
}

.link-path__item:hover {
	transform: translateY(-4px) scale(1.01);
	border-color: rgba(2, 74, 216, 0.28);
	box-shadow: var(--shadow-card-hover);
}

.link-path__step {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	background: var(--color-bg);
	color: var(--color-primary-dark);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 850;
}

.link-path__content {
	display: grid;
	align-content: start;
	gap: 8px;
}

.link-path__content strong {
	font-size: 18px;
	line-height: 1.15;
}

.link-path__content span {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.45;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	gap: 18px;
}

.contact-panel a {
	color: var(--color-primary-dark);
	font-weight: 800;
}

.contact-form-card {
	padding: var(--space-card);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.contact-form-card .section__header {
	margin-bottom: 26px;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.contact-form p {
	margin: 0;
}

.contact-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-text);
	font-size: 14px;
	font-weight: 800;
}

.contact-form label span {
	color: var(--color-primary-dark);
}

.contact-form .button {
	justify-self: start;
	margin-top: 4px;
	border: 0;
	cursor: pointer;
}

.contact-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.form-grid--captcha {
	grid-template-columns: minmax(180px, 260px);
}

.form-notice {
	padding: 14px 16px;
	margin-bottom: 20px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-weight: 700;
}

.form-notice--success {
	background: rgba(22, 163, 74, 0.08);
	color: var(--color-text);
}

.form-notice--error {
	background: rgba(245, 158, 11, 0.12);
	color: var(--color-text);
}

.section--map {
	padding-top: 20px;
}

.map-frame {
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.map-frame iframe {
	display: block;
	width: 100%;
	min-height: 420px;
	border: 0;
}

.section--split {
	padding-top: 20px;
}

.split-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
	padding: clamp(28px, 5vw, 58px);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	gap: clamp(28px, 5vw, 64px);
}

.split-panel p {
	font-size: 18px;
}

.check-list {
	display: grid;
	align-content: center;
	padding: 0;
	margin: 0;
	gap: 18px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 34px;
	color: var(--color-muted);
	font-weight: 600;
}

.check-list li::before {
	position: absolute;
	top: 4px;
	left: 0;
	width: 10px;
	height: 16px;
	border-right: 2px solid var(--color-green);
	border-bottom: 2px solid var(--color-green);
	content: "";
	transform: rotate(45deg);
}
.section--process {
	padding-top: 46px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.process-step {
	padding: 30px;
	background: transparent;
	border-top: 2px solid var(--color-border);
}

.process-step span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	margin-bottom: 22px;
	place-items: center;
	background: var(--color-ink);
	color: var(--color-surface);
	border-radius: var(--radius-pill);
	font-weight: 800;
}

.process-step p {
	margin-bottom: 0;
}

.process-step h2 {
	margin-bottom: 10px;
	font-size: clamp(22px, 2.8vw, 30px);
}

.process-grid--wide .process-step {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-top: 2px solid var(--color-ink);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.contact-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto 86px;
	padding: clamp(28px, 5vw, 54px);
	background:
		radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.28), transparent 30%),
		linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	color: var(--color-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	gap: 28px;
}

.contact-band h2 {
	max-width: 680px;
	margin-bottom: 12px;
}

.contact-band p {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.site-footer {
	background: var(--color-ink);
	color: var(--color-surface);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.2fr);
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: 58px var(--gutter);
	gap: clamp(32px, 6vw, 78px);
}

.site-footer p,
.site-footer li {
	color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
	color: var(--color-surface);
}

.brand--footer .brand__mark {
	background: var(--color-surface);
	color: var(--color-ink);
}

.brand--footer .brand__tagline {
	color: rgba(255, 255, 255, 0.68);
}

.site-footer__brand p {
	max-width: 420px;
	margin-top: 18px;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.site-footer h2 {
	margin-bottom: 14px;
	font-size: 14px;
	text-transform: uppercase;
}

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

.site-footer li + li {
	margin-top: 8px;
}

.site-footer__bottom {
	width: min(100%, var(--container));
	margin: 0 auto;
	padding: 18px var(--gutter) 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 13px;
}

.content-page {
	padding: 76px var(--gutter);
}

.content-page__inner {
	width: min(100%, 900px);
	margin: 0 auto;
}

.entry {
	padding: clamp(30px, 5vw, 58px);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.entry__title {
	font-size: clamp(38px, 5vw, 62px);
}

.entry__content {
	color: var(--color-muted);
}

.entry__content p,
.entry__content li {
	color: var(--color-muted);
}

body.woocommerce-cart .content-page__inner {
	width: min(100%, 1180px);
}

@keyframes spring-rise {
	0% {
		opacity: 0;
		transform: translateY(22px) scale(0.975);
	}

	62% {
		opacity: 1;
		transform: translateY(-4px) scale(1.01);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		gap: 14px;
	}

	.brand {
		flex-basis: 240px;
	}

	.brand__logo,
	.site-header .custom-logo {
		max-width: 240px !important;
		max-height: 52px !important;
	}

	.nav-toggle {
		display: inline-grid;
		place-items: center;
	}

	.primary-nav {
		position: fixed;
		inset: 75px 16px auto;
		display: none;
		padding: 20px;
		background: var(--color-surface);
		border: 1px solid var(--color-border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-soft);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		display: grid;
		gap: 14px;
	}

	.primary-nav a {
		display: block;
		padding: 10px 0;
		font-size: 18px;
	}

	.header-cta {
		display: none;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 56px;
	}

	.service-strip__inner,
	.service-grid,
	.service-list,
	.service-template__grid,
	.link-path,
	.process-grid,
	.values-grid,
	.site-footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-template {
		position: relative;
		top: auto;
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"details"
			"faq";
		max-height: none;
		overflow: visible;
	}

	.service-template:nth-child(2n),
	.service-template:nth-child(3n) {
		top: auto;
	}

	.service-template__faq .faq-list--compact {
		grid-template-columns: 1fr;
	}

	.service-grid--carousel {
		grid-template-columns: none;
	}

	.service-grid--carousel .service-card {
		flex-basis: calc((100% - 18px) / 2);
	}

	.service-carousel__control--prev {
		left: 8px;
	}

	.service-carousel__control--next {
		right: 8px;
	}

	.split-panel,
	.contact-layout,
	.brand-seo-grid,
	.form-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.brand-grid,
	.brand-showcase-grid {
		grid-template-columns: 1fr;
	}

	.contact-band {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.site-header__inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.brand__tagline {
		display: none;
	}

	.brand {
		flex-basis: 180px;
	}

	.brand__logo,
	.site-header .custom-logo {
		max-width: 180px !important;
		max-height: 42px !important;
	}

	.hero__inner {
		padding-top: 42px;
		padding-bottom: 34px;
	}

	h1 {
		font-size: 32px;
	}

	.hero h1 {
		font-size: 30px;
	}

	.hero__content p,
	.section__header p,
	.split-panel p,
	.contact-band p {
		font-size: 16px;
	}

	.hero-card {
		padding: 14px;
		border-radius: var(--radius-md);
	}

	.hero-card__brands {
		flex-wrap: wrap;
	}

	.service-strip__inner,
	.service-grid,
	.service-list,
	.service-template__grid,
	.link-path,
	.faq-list--compact,
	.process-grid,
	.values-grid,
	.site-footer__columns {
		grid-template-columns: 1fr;
	}

	.service-grid--carousel {
		grid-template-columns: none;
		padding-bottom: 18px;
	}

	.service-grid--carousel .service-card {
		flex-basis: 86%;
	}

	.service-carousel__control {
		top: -28px;
		width: 42px;
		height: 42px;
		font-size: 28px;
		transform: none;
	}

	.service-carousel__control:hover,
	.service-carousel__control:active {
		transform: none;
	}

	.service-carousel__control--prev {
		right: 52px;
		left: auto;
	}

	.service-carousel__control--next {
		right: 4px;
	}

	.service-card--visual {
		min-height: 520px;
	}

	.service-card__media {
		height: 150px;
	}

	.brand-grid,
	.brand-showcase-grid {
		grid-template-columns: 1fr;
	}

	.brand-card,
	.brand-tile {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-bottom: 58px;
	}

	.brand-card__logo {
		width: 112px;
		height: 68px;
	}

	.section {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	.service-card,
	.process-step {
		padding: 24px;
	}

	.contact-band {
		width: min(calc(100% - 28px), var(--container));
		margin-bottom: 58px;
		border-radius: var(--radius-lg);
	}

	.site-footer__inner {
		padding-top: 44px;
		padding-bottom: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

.woocommerce-page-shell .woocommerce,
.woocommerce-page-shell .product {
	color: var(--color-text);
}

.shop-body {
	background: #f4f5f7;
}

.shop-site-header {
	position: sticky;
	z-index: 120;
	top: 0;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 14px 36px rgba(6, 18, 31, 0.08);
}

.shop-utility {
	background: var(--color-ink);
	color: var(--color-surface);
	font-size: 13px;
}

.shop-utility__inner,
.shop-mainbar__inner,
.shop-category-nav__inner {
	width: min(100%, 1360px);
	margin: 0 auto;
	padding-right: clamp(16px, 3vw, 36px);
	padding-left: clamp(16px, 3vw, 36px);
}

.shop-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 18px;
}

.shop-utility__contact,
.shop-utility__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.shop-utility a {
	color: var(--color-surface);
	font-weight: 750;
	text-decoration: none;
}

.shop-utility span {
	color: rgba(255, 255, 255, 0.78);
}

.shop-mainbar__inner {
	display: grid;
	grid-template-columns: minmax(190px, 250px) minmax(280px, 1fr) auto;
	align-items: center;
	min-height: 84px;
	gap: clamp(18px, 3vw, 34px);
}

.shop-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: var(--color-text);
	text-decoration: none;
}

.shop-brand__logo,
.shop-site-header .custom-logo {
	width: auto;
	max-width: 240px !important;
	max-height: 52px !important;
	height: auto !important;
	object-fit: contain;
}

.shop-brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	background: var(--color-ink);
	color: var(--color-surface);
	border-radius: var(--radius-sm);
	font-weight: 800;
}

.shop-brand__text {
	display: grid;
	margin-left: 10px;
	line-height: 1.15;
}

.shop-brand__name {
	font-weight: 850;
}

.shop-brand__tagline {
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.shop-mobile-actions {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.shop-mobile-action {
	position: relative;
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--spring), border-color var(--spring), color var(--spring);
}

.shop-mobile-action:hover,
.shop-mobile-action:focus-visible {
	border-color: rgba(2, 74, 216, 0.45);
	color: var(--color-primary);
	transform: translateY(-1px);
}

.shop-mobile-action svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shop-mobile-action--cart {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-surface);
}

.shop-mobile-action--cart span {
	position: absolute;
	right: -5px;
	top: -6px;
	display: inline-grid;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	place-items: center;
	background: var(--color-surface);
	border: 1px solid rgba(2, 74, 216, 0.2);
	border-radius: var(--radius-pill);
	color: var(--color-primary);
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
}

.shop-header-search .woocommerce-product-search {
	display: grid;
	grid-template-columns: minmax(145px, 0.34fr) minmax(220px, 1fr) auto;
	width: 100%;
	overflow: hidden;
	background: var(--color-surface);
	border: 2px solid var(--color-primary);
	border-radius: var(--radius-sm);
}

.shop-header-search .shop-search-category {
	min-width: 0;
	padding: 0 38px 0 14px;
	background-color: #eef1f5;
	border: 0;
	border-right: 1px solid var(--color-border);
	color: var(--color-text);
	font: inherit;
	font-size: 14px;
	font-weight: 750;
	cursor: pointer;
}

.shop-header-search input[type="search"],
.shop-header-search .search-field {
	min-height: 48px;
	width: 100%;
	padding: 12px 16px;
	background: var(--color-surface);
	border: 0;
	color: var(--color-text);
	font: inherit;
}

.shop-header-search button {
	min-height: 48px;
	padding: 12px 22px;
	background: var(--color-primary);
	border: 0;
	color: var(--color-surface);
	font-weight: 850;
	cursor: pointer;
}

.shop-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	white-space: nowrap;
}

.shop-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 14px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform var(--spring), border-color var(--spring), color var(--spring);
}

.shop-actions a:hover {
	border-color: rgba(2, 74, 216, 0.35);
	color: var(--color-primary);
	transform: translateY(-2px);
}

.shop-actions__cart {
	background: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
	color: var(--color-surface) !important;
}

.shop-actions__cart span {
	display: inline-grid;
	min-width: 22px;
	height: 22px;
	margin-left: 8px;
	place-items: center;
	background: var(--color-surface);
	color: var(--color-primary);
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 850;
}

.shop-category-nav {
	border-top: 1px solid var(--color-border);
	background: var(--color-ink);
}

.shop-category-nav__summary {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: min(100%, 1360px);
	min-height: 52px;
	margin: 0 auto;
	padding: 0 clamp(16px, 3vw, 36px);
	color: var(--color-surface);
	font-size: 15px;
	font-weight: 850;
	cursor: pointer;
	gap: 12px;
	list-style: none;
}

.shop-category-nav__summary::-webkit-details-marker {
	display: none;
}

.shop-category-nav__summary::after {
	content: "\25BE";
	display: grid;
	width: 26px;
	height: 26px;
	margin-left: auto;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	color: var(--color-surface);
	font-size: 14px;
	line-height: 1;
	transition: transform var(--spring);
}

.shop-category-nav[open] .shop-category-nav__summary::after {
	transform: rotate(180deg);
}

.shop-category-nav__summary-hint {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 650;
}

.shop-category-nav__panel {
	border-top: 2px solid var(--color-primary);
	background: var(--color-surface);
	box-shadow: 0 26px 46px rgba(6, 18, 31, 0.18);
}

.shop-category-nav__inner {
	display: grid;
	align-items: stretch;
	grid-template-columns: minmax(210px, 255px) minmax(0, 1fr) minmax(150px, 190px);
	height: min(62vh, 390px);
	max-height: min(62vh, 390px);
	min-height: 330px;
	padding-top: 0;
	padding-bottom: 0;
	gap: 0;
	overflow: hidden;
}

.shop-category-menu {
	min-height: 0;
	height: 100%;
	max-height: inherit;
	padding: 10px 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #f4f6f8;
	border-right: 1px solid var(--color-border);
	scrollbar-color: var(--color-subtle) transparent;
	scrollbar-width: thin;
}

.shop-category-menu::-webkit-scrollbar,
.shop-category-panels::-webkit-scrollbar {
	width: 8px;
}

.shop-category-menu::-webkit-scrollbar-thumb,
.shop-category-panels::-webkit-scrollbar-thumb {
	background: rgba(95, 105, 118, 0.34);
	border-radius: 999px;
}

.shop-category-menu__all,
.shop-category-menu__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding: 7px 12px;
	background: transparent;
	border: 0;
	border-left: 4px solid transparent;
	color: var(--color-text);
	font: inherit;
	font-size: 13px;
	font-weight: 820;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	gap: 9px;
	transition: background var(--spring), border-color var(--spring), color var(--spring);
}

.shop-category-menu__all {
	background: var(--color-ink);
	color: var(--color-surface);
	border-left-color: var(--color-primary);
}

.shop-category-menu__item:hover,
.shop-category-menu__item:focus-visible,
.shop-category-menu__item.is-active {
	background: var(--color-surface);
	border-left-color: var(--color-primary);
	color: var(--color-primary-dark);
	outline: 0;
}

.shop-category-menu__all:hover {
	color: var(--color-surface);
}

.shop-category-menu__image,
.shop-category-menu__icon {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	object-fit: contain;
}

.shop-category-menu__image--fallback {
	object-fit: cover;
}

.shop-category-menu__icon {
	display: grid;
	place-items: center;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-primary);
	font-size: 11px;
	font-weight: 850;
}

.shop-category-menu__name {
	min-width: 0;
	line-height: 1.15;
}

.shop-category-menu__count {
	color: var(--color-subtle);
	font-size: 11px;
	font-weight: 760;
}

.shop-category-menu__item::after {
	content: "\203A";
	color: var(--color-subtle);
	font-size: 22px;
	line-height: 1;
}

.shop-category-panels {
	min-height: 0;
	height: 100%;
	max-height: inherit;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 20px;
}

.shop-category-panel[hidden] {
	display: none;
}

.shop-category-panel__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 14px;
	gap: 16px;
}

.shop-category-panel__header p {
	margin: 0 0 4px;
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.shop-category-panel__header h2,
.shop-category-quicklinks h2 {
	margin: 0;
	color: var(--color-text);
	font-size: 18px;
	line-height: 1.15;
}

.shop-category-panel__header a {
	color: var(--color-primary-dark);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}

.shop-subcategory-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.shop-subcategory-card {
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 104px;
	padding: 13px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	text-align: center;
	text-decoration: none;
	transition: border-color var(--spring), box-shadow var(--spring), transform var(--spring);
}

.shop-subcategory-card:hover {
	border-color: rgba(2, 74, 216, 0.34);
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.shop-subcategory-card__image,
.shop-subcategory-card__icon {
	width: 40px;
	height: 40px;
	margin-bottom: 9px;
	border-radius: 5px;
	object-fit: contain;
}

.shop-subcategory-card__icon {
	display: grid;
	place-items: center;
	background: #f4f6f8;
	border: 1px solid var(--color-border);
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 850;
}

.shop-subcategory-card strong {
	font-size: 14px;
	line-height: 1.2;
}

.shop-subcategory-card span {
	margin-top: 5px;
	color: var(--color-subtle);
	font-size: 11px;
	font-weight: 720;
}

.shop-category-quicklinks {
	display: grid;
	align-content: start;
	min-height: 0;
	height: 100%;
	max-height: inherit;
	padding: 18px 14px;
	background: #f7f8fa;
	border-left: 1px solid var(--color-border);
	gap: 10px;
}

.shop-category-quicklinks h2 {
	margin-bottom: 6px;
	color: var(--color-muted);
	font-size: 13px;
	text-transform: uppercase;
}

.shop-category-quicklinks a {
	display: flex;
	align-items: center;
	min-height: 36px;
	padding: 8px 10px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.shop-category-quicklinks a:hover {
	border-color: rgba(2, 74, 216, 0.34);
	color: var(--color-primary);
}

.shop-promo {
	padding: 18px clamp(18px, 3vw, 44px) 0;
	background: #f4f5f7;
}

.shop-promo__inner {
	width: min(100%, 1280px);
	margin: 0 auto;
}

.shop-promo__link {
	display: block;
	overflow: hidden;
	background: var(--color-ink);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.shop-promo picture,
.shop-promo img {
	display: block;
	width: 100%;
}

.shop-promo img {
	aspect-ratio: 5 / 1;
	object-fit: cover;
}

.shop-promo__default {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	min-height: 210px;
	overflow: hidden;
	background: var(--color-ink);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	color: var(--color-surface);
	text-decoration: none;
}

.shop-promo__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding: clamp(24px, 4vw, 48px);
}

.shop-promo__content strong {
	max-width: 680px;
	margin: 7px 0 9px;
	font-size: clamp(27px, 3vw, 42px);
	line-height: 1.02;
	text-wrap: balance;
}

.shop-promo__content > span:not(.shop-promo__eyebrow):not(.shop-promo__cta) {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.5;
}

.shop-promo__eyebrow {
	color: var(--color-amber);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.shop-promo__cta {
	display: inline-flex;
	margin-top: 18px;
	padding: 9px 13px;
	background: var(--color-primary);
	border-radius: var(--radius-sm);
	color: var(--color-surface);
	font-size: 13px;
	font-weight: 850;
}

.shop-promo__default img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
}

.woocommerce-page-shell {
	padding-top: 32px;
	padding-right: clamp(18px, 3vw, 44px);
	padding-left: clamp(18px, 3vw, 44px);
}

.woocommerce-page-shell__inner {
	width: min(100%, 1280px);
}

.woocommerce-page-shell .woocommerce-breadcrumb {
	margin-bottom: 22px;
	color: var(--color-subtle);
	font-size: 14px;
}

.woocommerce-page-shell .woocommerce-breadcrumb a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: none;
}

.woocommerce-page-shell .woocommerce-result-count,
.woocommerce-page-shell .woocommerce-ordering {
	margin-bottom: 18px;
}

.woocommerce-page-shell .woocommerce-result-count {
	color: var(--color-muted);
	font-size: 15px;
}

.woocommerce-page-shell .woocommerce-ordering select {
	min-height: 44px;
	padding: 9px 42px 9px 14px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font: inherit;
}

.woocommerce-page-shell ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0;
	margin: 24px 0 0;
	gap: 18px;
	list-style: none;
}

.woocommerce-page-shell ul.products::before,
.woocommerce-page-shell ul.products::after {
	content: none !important;
	display: none !important;
}

.woocommerce-page-shell ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	margin: 0;
	padding: 18px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	transition: transform var(--spring), box-shadow var(--spring);
}

.woocommerce-page-shell ul.products li.product:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}

.woocommerce-page-shell ul.products li.product a {
	text-decoration: none;
}

.woocommerce-page-shell ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.woocommerce-page-shell ul.products li.product img {
	aspect-ratio: 1;
	width: 100%;
	height: 190px;
	margin: 0 0 16px;
	padding: 8px;
	background: var(--color-surface);
	border: 1px solid #eef1f5;
	border-radius: var(--radius-sm);
	object-fit: contain;
}

.woocommerce-page-shell .woocommerce-loop-product__title,
.woocommerce-page-shell div.product .product_title {
	color: var(--color-text);
	font-weight: 800;
	letter-spacing: 0;
}

.woocommerce-page-shell .woocommerce-loop-product__title {
	min-height: 3.2em;
	margin-top: 4px;
	font-size: 18px;
	line-height: 1.18;
}

.product-card__brand {
	margin: 2px 0 0;
	color: var(--color-primary-dark);
	font-size: 12px;
	font-weight: 850;
	line-height: 1.2;
	text-transform: uppercase;
}

.product-card__summary {
	min-height: 3.9em;
	margin: 8px 0 10px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.woocommerce-page-shell .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 800;
	gap: 7px;
}

.woocommerce-page-shell .price del {
	color: var(--color-subtle);
	font-size: 13px;
	font-weight: 650;
	opacity: 1;
}

.woocommerce-page-shell .price ins {
	color: var(--color-primary);
	text-decoration: none;
}

.single-product-price-switcher {
	display: grid;
	margin: 16px 0 18px;
	gap: 6px;
}

.single-product-price-switcher__label {
	margin: 0;
	color: var(--color-primary);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.1;
}

.single-product-price-switcher__row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.single-product-price-switcher__amount {
	color: var(--color-primary);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.95;
}

.single-product-price-switcher__select {
	min-height: 42px;
	padding: 7px 34px 7px 12px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-muted);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.1;
}

.product-card__badges {
	position: absolute;
	z-index: 2;
	top: 28px;
	left: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.product-card__sale,
.product-card__saving {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
}

.product-card__sale {
	background: var(--color-primary);
	color: var(--color-surface);
}

.product-card__saving {
	background: var(--color-surface);
	border: 1px solid var(--color-amber);
	color: var(--color-amber);
}

.product-card__stock {
	display: flex;
	align-items: center;
	margin: 10px 0 14px;
	color: var(--color-muted);
	font-size: 12px;
	font-weight: 750;
	gap: 7px;
}

.product-card__stock span {
	width: 8px;
	height: 8px;
	flex: 0 0 8px;
	background: currentColor;
	border-radius: 50%;
}

.product-card__stock--in-stock {
	color: var(--color-green);
}

.product-card__stock--available {
	color: var(--color-primary);
}

.product-card__stock--out-of-stock {
	color: var(--color-amber);
}

.woocommerce-page-shell .stock.in-stock {
	color: var(--color-green);
	font-weight: 750;
}

.woocommerce-page-shell .stock.out-of-stock {
	color: var(--color-amber);
	font-weight: 750;
}

.woocommerce-page-shell .button,
.woocommerce-page-shell button.button,
.woocommerce-page-shell input.button,
.woocommerce-page-shell #respond input#submit,
.woocommerce-page-shell a.added_to_cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 16px;
	background: var(--color-primary);
	border: 0;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-button);
	color: var(--color-surface);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
	transition: transform var(--spring), box-shadow var(--spring), background var(--spring);
}

.product-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	margin-top: auto;
	gap: 10px;
}

.woocommerce-page-shell ul.products li.product .product-card__actions > .button {
	width: 100%;
	min-height: 44px;
	padding: 11px 12px;
	border: 1px solid var(--color-primary);
	border-radius: var(--radius-sm);
	box-shadow: none;
	font-size: 13px;
	text-align: center;
}

.woocommerce-page-shell ul.products li.product .product-card__actions > .add_to_cart_button {
	background: var(--color-primary);
	color: var(--color-surface);
}

.woocommerce-page-shell ul.products li.product .product-card__actions > .product-card__quote {
	background: var(--color-surface);
	color: var(--color-primary-dark);
}

.woocommerce-page-shell .button:hover,
.woocommerce-page-shell button.button:hover,
.woocommerce-page-shell input.button:hover,
.woocommerce-page-shell #respond input#submit:hover,
.woocommerce-page-shell a.added_to_cart:hover {
	background: var(--color-primary-dark);
	color: var(--color-surface);
	transform: translateY(-2px);
}

.woocommerce-page-shell ul.products li.product .product-card__actions > .product-card__quote:hover {
	background: var(--color-primary);
	color: var(--color-surface);
}

.shop-category-products {
	display: grid;
	gap: clamp(34px, 5vw, 58px);
}

.shop-category-products__intro {
	display: grid;
	gap: 8px;
}

.shop-category-products__intro p,
.shop-category-products__header p {
	margin: 0;
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
}

.shop-category-products__intro h1 {
	max-width: 760px;
	margin: 0;
	color: var(--color-text);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
}

.shop-category-products__section {
	display: grid;
	min-width: 0;
	gap: 18px;
}

.shop-category-products__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
}

.shop-category-products__header h2 {
	margin: 4px 0 0;
	color: var(--color-text);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.05;
}

.shop-category-products__header a {
	color: var(--color-primary-dark);
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}

.shop-category-products__carousel {
	min-width: 0;
}

.woocommerce-page-shell .shop-category-products__carousel ul.products {
	display: flex;
	grid-template-columns: none;
	gap: 18px;
	margin-top: 0;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	padding-bottom: 8px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.woocommerce-page-shell .shop-category-products__carousel ul.products::-webkit-scrollbar {
	display: none;
}

.woocommerce-page-shell .shop-category-products__carousel ul.products li.product {
	width: calc((100% - 54px) / 4);
	min-width: calc((100% - 54px) / 4);
	scroll-snap-align: start;
}

.shop-category-products__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	min-height: 28px;
	margin-top: 10px;
}

.shop-category-products__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	background: rgba(95, 105, 118, 0.34);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
}

.shop-category-products__dot.is-active {
	width: 26px;
	background: var(--color-primary);
}

.single-product-quote {
	display: grid;
	max-width: 560px;
	padding: 18px;
	margin-top: 18px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	gap: 10px;
}

.single-product-quote p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.5;
}

.single-product-quote__eyebrow {
	color: var(--color-primary-dark) !important;
	font-weight: 850;
	text-transform: uppercase;
}

.woocommerce-page-shell .single-product-quote .button--secondary {
	justify-self: start;
	background: var(--color-surface);
	border: 1px solid var(--color-primary);
	box-shadow: none;
	color: var(--color-primary-dark);
}

.woocommerce-page-shell .single-product-quote .button--secondary:hover {
	background: var(--color-primary);
	color: var(--color-surface);
}

.woocommerce-page-shell div.product {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(28px, 5vw, 64px);
}

.woocommerce-page-shell div.product div.images,
.woocommerce-page-shell div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce-page-shell div.product div.images img {
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.woocommerce-page-shell div.product .woocommerce-tabs,
.woocommerce-page-shell div.product .related,
.woocommerce-page-shell div.product .upsells {
	grid-column: 1 / -1;
}

.woocommerce-page-shell div.product .related,
.woocommerce-page-shell div.product .upsells {
	display: block;
	margin-top: clamp(34px, 5vw, 64px);
}

.woocommerce-page-shell div.product .related > h2,
.woocommerce-page-shell div.product .upsells > h2 {
	margin: 0 0 18px;
	font-size: clamp(26px, 3vw, 40px);
	line-height: 1.05;
}

.woocommerce-page-shell div.product .related ul.products,
.woocommerce-page-shell div.product .upsells ul.products {
	grid-template-columns: repeat(4, minmax(170px, 1fr));
	margin-top: 0;
	gap: 14px;
}

.woocommerce-page-shell div.product .related ul.products li.product,
.woocommerce-page-shell div.product .upsells ul.products li.product {
	padding: 14px;
	border-radius: var(--radius-sm);
	box-shadow: none;
}

.woocommerce-page-shell div.product .related ul.products li.product:hover,
.woocommerce-page-shell div.product .upsells ul.products li.product:hover {
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.woocommerce-page-shell div.product .related ul.products li.product img,
.woocommerce-page-shell div.product .upsells ul.products li.product img {
	height: 118px;
	margin-bottom: 10px;
	padding: 6px;
}

.woocommerce-page-shell div.product .related .woocommerce-loop-product__title,
.woocommerce-page-shell div.product .upsells .woocommerce-loop-product__title {
	min-height: 0;
	font-size: 14px;
	line-height: 1.25;
}

.woocommerce-page-shell div.product .related .product-card__summary,
.woocommerce-page-shell div.product .upsells .product-card__summary,
.woocommerce-page-shell div.product .related .product-card__quote,
.woocommerce-page-shell div.product .upsells .product-card__quote {
	display: none;
}

.woocommerce-page-shell div.product .related .product-card__stock,
.woocommerce-page-shell div.product .upsells .product-card__stock {
	margin: 8px 0 10px;
	font-size: 11px;
}

.woocommerce-page-shell div.product .related .product-card__actions,
.woocommerce-page-shell div.product .upsells .product-card__actions {
	grid-template-columns: 1fr;
}

.woocommerce-page-shell div.product .related .product-card__actions > .button,
.woocommerce-page-shell div.product .upsells .product-card__actions > .button {
	min-height: 34px;
	padding: 8px 12px;
	font-size: 12px;
}

.woocommerce-page-shell table.shop_table,
.woocommerce-page-shell form.checkout,
.woocommerce-page-shell .woocommerce-cart-form,
.woocommerce-page-shell .cart-collaterals .cart_totals {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.woocommerce-page-shell table.shop_table {
	overflow: hidden;
}

.woocommerce-page-shell input.input-text,
.woocommerce-page-shell textarea,
.woocommerce-page-shell select {
	min-height: 46px;
	padding: 12px 14px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	font: inherit;
}

.woocommerce-page-shell input[type="radio"],
.woocommerce-page-shell input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--color-primary);
	flex: 0 0 16px;
}

.woocommerce-page-shell .cart-collaterals {
	display: flex;
	justify-content: flex-end;
	margin-top: 28px;
}

.woocommerce-page-shell .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 560px);
	padding: 0;
	overflow: hidden;
}

.woocommerce-page-shell .cart-collaterals .cart_totals h2 {
	padding: 22px 24px 0;
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.08;
}

.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table th,
.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table td,
.woocommerce-page-shell .woocommerce-checkout-review-order-table th,
.woocommerce-page-shell .woocommerce-checkout-review-order-table td {
	padding: 18px 24px;
	border-color: var(--color-border);
	vertical-align: top;
}

.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table th,
.woocommerce-page-shell .woocommerce-checkout-review-order-table th {
	width: 34%;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.2;
}

.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table td,
.woocommerce-page-shell .woocommerce-checkout-review-order-table td {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.45;
}

.woocommerce-page-shell .woocommerce-shipping-methods,
.woocommerce-page-shell #shipping_method {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 10px;
	list-style: none;
}

.woocommerce-page-shell .woocommerce-shipping-methods li,
.woocommerce-page-shell #shipping_method li {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	align-items: start;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	gap: 10px;
}

.woocommerce-page-shell .woocommerce-shipping-methods li:has(input:checked),
.woocommerce-page-shell #shipping_method li:has(input:checked) {
	background: rgba(2, 74, 216, 0.055);
	border-color: rgba(2, 74, 216, 0.36);
}

.woocommerce-page-shell .woocommerce-shipping-methods label,
.woocommerce-page-shell #shipping_method label {
	margin: 0;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.35;
}

.woocommerce-page-shell .woocommerce-shipping-destination,
.woocommerce-page-shell .woocommerce-shipping-calculator {
	margin-top: 14px;
	color: var(--color-subtle);
	font-size: 14px;
	line-height: 1.5;
}

.woocommerce-page-shell .shipping-calculator-button {
	color: var(--color-primary-dark);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.woocommerce-page-shell .shipping-calculator-form {
	display: grid;
	margin-top: 12px;
	gap: 12px;
}

.woocommerce-page-shell form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
	align-items: start;
	padding: clamp(18px, 3vw, 28px);
	gap: clamp(22px, 4vw, 40px);
}

.woocommerce-page-shell form.checkout::before,
.woocommerce-page-shell form.checkout::after {
	content: none;
	display: none;
}

.woocommerce-page-shell .woocommerce-checkout #customer_details,
.woocommerce-page-shell .woocommerce-checkout #order_review_heading,
.woocommerce-page-shell .woocommerce-checkout #order_review {
	float: none;
	width: auto;
}

.woocommerce-page-shell .woocommerce-checkout #customer_details {
	display: grid;
	grid-column: 1;
	gap: 20px;
}

.woocommerce-page-shell .woocommerce-checkout #customer_details .col-1,
.woocommerce-page-shell .woocommerce-checkout #customer_details .col-2 {
	float: none;
	width: auto;
}

.woocommerce-page-shell .woocommerce-checkout #order_review_heading {
	grid-column: 2;
	margin: 0 0 -12px;
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1.08;
}

.woocommerce-page-shell .woocommerce-checkout #order_review {
	grid-column: 2;
}

.woocommerce-page-shell .woocommerce-checkout-review-order-table,
.woocommerce-page-shell .woocommerce-checkout-payment {
	border-radius: var(--radius-md);
	overflow: hidden;
}

.woocommerce-page-shell .woocommerce-checkout-payment {
	margin-top: 16px;
	background: #f8fafc;
	border: 1px solid var(--color-border);
}

.woocommerce-page-shell .woocommerce-checkout-payment ul.payment_methods {
	padding: 16px;
	border-bottom-color: var(--color-border);
}

.woocommerce-page-shell .woocommerce-checkout-payment ul.payment_methods li {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
}

.woocommerce-page-shell .woocommerce-checkout-payment .place-order {
	padding: 16px;
	margin: 0;
}

.woocommerce-page-shell .woocommerce-billing-fields h3,
.woocommerce-page-shell .woocommerce-shipping-fields h3,
.woocommerce-page-shell .woocommerce-additional-fields h3 {
	margin: 0 0 16px;
	font-size: clamp(22px, 2.3vw, 30px);
	line-height: 1.1;
}

.woocommerce-page-shell .woocommerce form .form-row {
	padding: 0;
	margin: 0 0 14px;
}

.woocommerce-page-shell .woocommerce form .form-row label {
	margin-bottom: 6px;
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.3;
}

.woocommerce-page-shell .woocommerce-message,
.woocommerce-page-shell .woocommerce-info,
.woocommerce-page-shell .woocommerce-error {
	border-top-color: var(--color-primary);
	border-radius: var(--radius-sm);
}

body.woocommerce-cart .entry__content {
	max-width: 1180px;
	margin-right: auto;
	margin-left: auto;
}

body.woocommerce-cart .entry__content .woocommerce {
	display: grid;
	gap: 28px;
}

body.woocommerce-cart .entry__content .cart-collaterals {
	display: flex;
	justify-content: flex-end;
	margin-top: 24px;
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals {
	float: none;
	width: min(100%, 560px);
	padding: 0;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals h2 {
	padding: 22px 24px 0;
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.08;
}

body.woocommerce-cart .entry__content table.shop_table {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table th,
body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table td {
	padding: 18px 24px;
	border-color: var(--color-border);
	vertical-align: top;
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table th {
	width: 34%;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.2;
}

body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table td {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.45;
}

body.woocommerce-cart .entry__content #shipping_method,
body.woocommerce-cart .entry__content .woocommerce-shipping-methods {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 10px;
	list-style: none;
	text-align: left;
}

body.woocommerce-cart .entry__content #shipping_method li,
body.woocommerce-cart .entry__content .woocommerce-shipping-methods li {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	align-items: start;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	gap: 10px;
	text-align: left;
}

body.woocommerce-cart .entry__content #shipping_method li:has(input:checked),
body.woocommerce-cart .entry__content .woocommerce-shipping-methods li:has(input:checked) {
	background: rgba(2, 74, 216, 0.055);
	border-color: rgba(2, 74, 216, 0.36);
}

body.woocommerce-cart .entry__content input[type="radio"],
body.woocommerce-cart .entry__content input[type="checkbox"],
body.woocommerce-checkout .entry__content input[type="radio"],
body.woocommerce-checkout .entry__content input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	margin: 2px 0 0 !important;
	accent-color: var(--color-primary);
	flex: 0 0 16px;
	transform: none !important;
}

body.woocommerce-cart .entry__content #shipping_method label,
body.woocommerce-cart .entry__content .woocommerce-shipping-methods label {
	margin: 0;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.35;
	text-align: left;
}

body.woocommerce-cart .entry__content .woocommerce-shipping-destination {
	margin: 14px 0 0;
	color: var(--color-subtle);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

body.woocommerce-cart .entry__content .woocommerce-shipping-calculator {
	margin-top: 14px;
	text-align: left;
}

body.woocommerce-cart .entry__content .shipping-calculator-button {
	color: var(--color-primary-dark);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

body.woocommerce-cart .entry__content .wc-proceed-to-checkout {
	display: grid;
	gap: 12px;
	padding: 22px 0 0;
}

body.woocommerce-cart .entry__content .wc-proceed-to-checkout .checkout-button {
	width: 100%;
	margin: 0;
	background: var(--color-primary);
	box-shadow: var(--shadow-button);
	color: var(--color-surface);
	text-align: center;
}

@media (max-width: 900px) {
	.woocommerce-page-shell div.product {
		grid-template-columns: 1fr;
	}

	.woocommerce-page-shell form.checkout {
		grid-template-columns: 1fr;
	}

	.woocommerce-page-shell .woocommerce-checkout #customer_details,
	.woocommerce-page-shell .woocommerce-checkout #order_review_heading,
	.woocommerce-page-shell .woocommerce-checkout #order_review {
		grid-column: 1;
	}

	.woocommerce-page-shell .woocommerce-checkout #order_review_heading {
		margin: 8px 0 -8px;
	}

	.woocommerce-page-shell ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-page-shell .shop-category-products__carousel ul.products li.product {
		width: calc((100% - 18px) / 2);
		min-width: calc((100% - 18px) / 2);
	}

	.woocommerce-page-shell div.product .related ul.products,
	.woocommerce-page-shell div.product .upsells ul.products {
		grid-template-columns: repeat(3, minmax(150px, 1fr));
	}

	.shop-mainbar__inner {
		grid-template-columns: 1fr;
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.shop-category-nav__inner {
		grid-template-columns: 230px minmax(0, 1fr);
		height: min(66vh, 390px);
		max-height: min(66vh, 390px);
	}

	.shop-category-quicklinks {
		display: none;
	}

	.shop-subcategory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-actions {
		justify-content: flex-start;
	}

	.shop-utility__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-top: 8px;
		padding-bottom: 8px;
		gap: 6px;
	}
}

@media (max-width: 640px) {
	.woocommerce-page-shell ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce-page-shell .cart-collaterals {
		display: block;
	}

	body.woocommerce-cart .entry__content .cart-collaterals {
		display: block;
	}

	.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table th,
	.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table td,
	.woocommerce-page-shell .woocommerce-checkout-review-order-table th,
	.woocommerce-page-shell .woocommerce-checkout-review-order-table td {
		display: block;
		width: 100%;
		padding: 14px 18px;
	}

	.woocommerce-page-shell .cart-collaterals .cart_totals table.shop_table td,
	.woocommerce-page-shell .woocommerce-checkout-review-order-table td {
		padding-top: 0;
	}

	.woocommerce-page-shell form.checkout {
		padding: 16px;
	}

	body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table th,
	body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table td {
		display: block;
		width: 100%;
		padding: 14px 18px;
	}

	body.woocommerce-cart .entry__content .cart-collaterals .cart_totals table.shop_table td {
		padding-top: 0;
	}

	.woocommerce-page-shell .shop-category-products__carousel ul.products li.product {
		width: 100%;
		min-width: 100%;
	}

	.shop-category-products__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.woocommerce-page-shell div.product .related ul.products,
	.woocommerce-page-shell div.product .upsells ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-page-shell ul.products li.product {
		padding: 18px;
	}

	.shop-mainbar__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.shop-brand {
		min-width: 0;
	}

	.shop-mobile-actions {
		display: flex;
	}

	.shop-header-search {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
	}

	.shop-header-search.is-open {
		display: block;
	}

	.shop-header-search .woocommerce-product-search {
		grid-template-columns: 1fr;
	}

	.shop-header-search .shop-search-category {
		min-height: 46px;
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.shop-header-search button {
		width: 100%;
	}

	.shop-category-nav__summary-hint {
		display: none;
	}

	.shop-category-nav__inner {
		grid-template-columns: 1fr;
		height: auto;
		max-height: min(72vh, 560px);
		min-height: 0;
	}

	.shop-category-menu {
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.shop-category-menu__item,
	.shop-category-menu__all {
		min-height: 54px;
	}

	.shop-category-panels {
		padding: 16px;
	}

	.shop-category-panel__header {
		flex-direction: column;
		gap: 8px;
	}

	.shop-subcategory-grid {
		grid-template-columns: 1fr;
	}

	.shop-category-card__image,
	.shop-category-card__fallback {
		width: 34px;
		height: 34px;
	}

	.shop-promo {
		padding-top: 12px;
	}

	.shop-promo img {
		aspect-ratio: 16 / 7;
	}

	.shop-promo__default {
		grid-template-columns: 1fr;
	}

	.shop-promo__default img {
		max-height: 190px;
		aspect-ratio: 16 / 7;
	}

	.shop-actions {
		display: none;
	}

	.shop-brand__logo,
	.shop-site-header .custom-logo {
		max-width: 190px !important;
		max-height: 42px !important;
	}
}
