/*
Theme Name: Simtech Theme
Theme URI: https://simtech.bg/store
Description: Custom WooCommerce theme for Simtech store
Version: 1.1.0
Author: Simtech
Text Domain: simtech-theme
Requires at least: 6.0
Requires PHP: 8.0
*/

:root {
	--simtech-red: #e11d48;
	--simtech-red-light: #fff1f2;
	--simtech-blue: #2563eb;
	--simtech-blue-light: #eff6ff;
	--simtech-dark: #0f172a;
	--simtech-gray: #f8fafc;
	--simtech-border: #e2e8f0;
	--simtech-muted: #64748b;
	--simtech-success: #10b981;
	--simtech-container: 80rem;
	--simtech-font: 'Inter', system-ui, -apple-system, sans-serif;
	--simtech-display: 'Outfit', 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
}

body.simtech-body {
	margin: 0;
	font-family: var(--simtech-font);
	color: var(--simtech-dark);
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

[hidden] {
	display: none !important;
}

.simtech-container {
	width: min(100% - 2rem, var(--simtech-container));
	margin-inline: auto;
}

.simtech-main {
	min-height: 50vh;
	padding-block: 1.5rem;
}

.simtech-icon {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

/* Header utility bar */
.simtech-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
}

.simtech-utility {
	display: none;
	background: var(--simtech-dark);
	color: #fff;
	font-size: 0.75rem;
	padding-block: 0.5rem;
}

.simtech-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.simtech-utility__contact,
.simtech-utility__badges {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.simtech-utility__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #fff;
	transition: color 0.2s;
}

.simtech-utility__link:hover {
	color: #cbd5e1;
}

.simtech-utility__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #cbd5e1;
}

.simtech-utility__badge .simtech-icon {
	width: 0.875rem;
	height: 0.875rem;
}

.simtech-utility__badge--green .simtech-icon { color: #4ade80; }
.simtech-utility__badge--blue .simtech-icon { color: #60a5fa; }
.simtech-utility__badge--yellow .simtech-icon { color: #facc15; }

.simtech-utility__lang {
	display: flex;
	align-items: center;
	padding-left: 0.75rem;
	border-left: 1px solid #374151;
}

.simtech-lang {
	position: relative;
	display: inline-block;
	text-align: left;
}

/* Figma: flex items-center gap-1.5 px-2.5 py-1 rounded-full text-xs font-semibold */
.simtech-lang__toggle {
	appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-sizing: border-box;
	height: 24px;
	padding: 4px 10px;
	margin: 0;
	border: 0;
	border-radius: 9999px;
	font-family: var(--simtech-font);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.025em;
	color: var(--simtech-dark);
	cursor: pointer;
	transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.simtech-lang__toggle:focus {
	outline: none;
}

.simtech-lang__toggle:focus-visible {
	box-shadow: 0 0 0 2px var(--simtech-blue);
}

/* Figma dark variant: bg-white/95 hover:bg-white text-brand-dark shadow-sm ring-1 ring-white/20 */
.simtech-lang--dark .simtech-lang__toggle,
.simtech-utility .simtech-lang__toggle {
	background: rgba(255, 255, 255, 0.95);
	color: var(--simtech-dark);
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05), 0 0 0 1px rgb(255 255 255 / 0.2);
}

.simtech-lang--dark .simtech-lang__toggle:hover,
.simtech-utility .simtech-lang__toggle:hover {
	background: #fff;
}

.simtech-lang--light .simtech-lang__toggle {
	background: var(--simtech-gray);
	color: var(--simtech-dark);
	border: 1px solid var(--simtech-border);
	box-shadow: none;
}

.simtech-lang--light .simtech-lang__toggle:hover {
	background: #e5e7eb;
}

.simtech-lang__flag {
	font-size: 14px;
	line-height: 1;
}

.simtech-lang__current {
	letter-spacing: 0.025em;
	color: inherit;
}

.simtech-lang__option .simtech-lang__flag {
	font-size: 1rem;
}

.simtech-lang__caret {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--simtech-muted);
	transition: transform 0.15s ease;
}

.simtech-lang__toggle[aria-expanded="true"] .simtech-lang__caret {
	transform: rotate(180deg);
}

.simtech-lang__panel {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 130;
	width: 12rem;
	margin: 0;
	padding: 0.375rem 0 0.375rem;
	background: #fff;
	color: var(--simtech-dark);
	border: 1px solid var(--simtech-border);
	border-radius: 0.75rem;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.simtech-lang__heading {
	padding: 0.25rem 0.75rem 0.5rem;
	margin: 0 0 0.25rem;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--simtech-muted);
}

.simtech-lang__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.simtech-lang__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	padding: 0.5rem 0.75rem;
	color: var(--simtech-dark);
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	background: transparent;
	transition: background 0.15s, color 0.15s;
}

.simtech-lang__option-main {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.simtech-lang__option:hover,
.simtech-lang__option:focus {
	background: var(--simtech-blue-light);
	color: var(--simtech-dark);
}

.simtech-lang__option.is-active {
	background: rgba(239, 246, 255, 0.6);
	color: var(--simtech-blue);
	font-weight: 700;
}

.simtech-lang__check {
	flex-shrink: 0;
	color: var(--simtech-blue);
}

.simtech-lang__overlay {
	display: none;
}

.simtech-lang--modal .simtech-lang__overlay:not([hidden]) {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(15, 23, 42, 0.5);
}

.simtech-lang--modal .simtech-lang__panel {
	position: fixed;
	top: 50%;
	left: 50%;
	right: auto;
	z-index: 201;
	width: min(24rem, calc(100vw - 2rem));
	padding: 0;
	border-radius: 1rem;
	transform: translate(-50%, -50%);
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.28);
	overflow: hidden;
}

.simtech-lang__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--simtech-border);
}

.simtech-lang--modal .simtech-lang__heading {
	padding: 0;
	margin: 0;
	border: 0;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: var(--simtech-dark);
}

.simtech-lang__close {
	display: inline-flex;
	padding: 0.5rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--simtech-muted);
	cursor: pointer;
}

.simtech-lang__close:hover {
	background: var(--simtech-gray);
	color: var(--simtech-dark);
}

.simtech-lang--modal .simtech-lang__menu {
	padding: 0.5rem;
}

.simtech-lang--modal .simtech-lang__option {
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
}

.simtech-lang--modal .simtech-lang__option .simtech-lang__flag {
	font-size: 1.125rem;
}

.simtech-lang--modal .simtech-lang__option:hover,
.simtech-lang--modal .simtech-lang__option:focus {
	background: var(--simtech-gray);
}

.simtech-lang--modal .simtech-lang__option.is-active {
	background: var(--simtech-blue);
	color: #fff;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.simtech-lang--modal .simtech-lang__option.is-active .simtech-lang__check {
	color: #fff;
}

body.simtech-lang-modal-open {
	overflow: hidden;
}

.simtech-search__category option {
	background: #fff;
	color: var(--simtech-dark);
}

/* Main header */
.simtech-header-main {
	border-bottom: 1px solid var(--simtech-border);
	background: #fff;
}

.simtech-header-main__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem 1rem;
	padding-block: 0.75rem;
}

.simtech-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	order: 1;
	flex-shrink: 0;
	margin-left: -0.5rem;
	padding: 0.5rem;
	border: 0;
	border-radius: 0.375rem;
	background: transparent;
	color: var(--simtech-dark);
	cursor: pointer;
}

.simtech-mobile-toggle__close { display: none; }
.simtech-mobile-toggle.is-open .simtech-mobile-toggle__open { display: none; }
.simtech-mobile-toggle.is-open .simtech-mobile-toggle__close { display: block; }

.simtech-logo {
	display: inline-flex;
	align-items: center;
	order: 2;
	flex-shrink: 0;
}

.simtech-header-main .simtech-logo__mark {
	width: 40px !important;
	height: 40px !important;
	max-width: 7.5rem !important;
	max-height: 40px !important;
}

.simtech-logo__mark {
	width: var(--simtech-logo-w, 48px);
	height: var(--simtech-logo-h, 48px);
	border-radius: 0.75rem;
	background: #fff !important;
	background-color: #fff !important;
	border: 1px solid var(--simtech-border);
	overflow: hidden;
	display: grid;
	place-items: center;
	padding: 0.125rem;
	box-sizing: border-box;
	box-shadow: none;
}

.simtech-logo__mark--light {
	background: #fff !important;
	background-color: #fff !important;
	border-color: rgb(255 255 255 / 25%);
}

.simtech-logo__mark img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	display: block;
}

/* Search — own row on mobile (Figma: order-last w-full). flex-shrink:0 + 100%
   basis so min-width:0 cannot squeeze it beside the logo. */
.simtech-search {
	flex: 0 0 100%;
	order: 4;
	width: 100%;
	min-width: 100%;
	max-width: none;
}

.simtech-search__box {
	display: flex;
	border: 2px solid var(--simtech-border);
	border-radius: 0.5rem;
	overflow: hidden;
	transition: border-color 0.2s;
}

.simtech-search__box:focus-within {
	border-color: var(--simtech-blue);
}

.simtech-search__category {
	display: none;
	padding: 0.5rem 0.75rem;
	border: 0;
	border-right: 1px solid var(--simtech-border);
	background: var(--simtech-gray);
	font-size: 0.875rem;
	color: var(--simtech-dark);
}

.simtech-search__input {
	flex: 1;
	min-width: 0;
	padding: 0.625rem 0.75rem;
	border: 0;
	font-size: 0.875rem;
	color: var(--simtech-dark);
}

.simtech-search__input:focus {
	outline: none;
}

.simtech-search__input::placeholder {
	color: var(--simtech-muted);
}

.simtech-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 0.75rem;
	border: 0;
	background: var(--simtech-blue);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}

.simtech-search__submit:hover {
	background: #1d4ed8;
}

.simtech-search__submit span {
	display: none;
}

/* Header actions */
.simtech-header-actions {
	display: flex;
	align-items: center;
	order: 3;
	flex-shrink: 0;
	gap: 0.25rem;
	margin-left: auto;
}

.simtech-header-actions__lang-mobile {
	display: flex;
}

.simtech-header-action {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.125rem;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.75rem;
	color: var(--simtech-muted);
	transition: background 0.2s;
}

.simtech-header-action:hover {
	background: var(--simtech-gray);
	color: var(--simtech-dark);
}

.simtech-header-action .simtech-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--simtech-dark);
}

.simtech-header-action--cart {
	display: flex;
	padding: 0.5rem 0.25rem;
}

.simtech-header-action--cart > span:last-child {
	display: none;
}

.simtech-header-action__cart-wrap {
	position: relative;
	display: inline-flex;
}

.simtech-cart-count {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	min-width: 1.125rem;
	height: 1.125rem;
	padding-inline: 0.25rem;
	border-radius: 999px;
	background: var(--simtech-red);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.125rem;
	text-align: center;
	display: none;
}

.simtech-cart-count.is-visible {
	display: inline-block;
}

/* Category nav */
.simtech-category-nav {
	display: none;
	position: relative;
	border-bottom: 1px solid var(--simtech-border);
	background: #fff;
}

.simtech-category-nav__list {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
}

.simtech-category-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--simtech-dark);
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}

.simtech-category-nav__link:hover,
.simtech-category-nav li.is-open > .simtech-category-nav__link {
	color: var(--simtech-blue);
	border-bottom-color: var(--simtech-blue);
}

.simtech-nav-caret {
	width: 0.75rem;
	height: 0.75rem;
	opacity: 0.6;
	transition: transform 0.15s;
}

.simtech-category-nav li.is-open .simtech-nav-caret,
.simtech-mobile-accordion__toggle[aria-expanded="true"] .simtech-nav-caret {
	transform: rotate(180deg);
}

.simtech-category-nav__brands {
	margin-left: auto;
}

.simtech-category-nav__link--brands {
	font-weight: 600;
	color: var(--simtech-blue);
}

.simtech-category-nav__link--brands:hover,
.simtech-category-nav__brands.is-open > .simtech-category-nav__link--brands {
	color: #1d4ed8;
	border-bottom-color: var(--simtech-blue);
}

.simtech-mega {
	position: absolute;
	inset: 100% 0 auto;
	z-index: 40;
	padding-top: 0;
}

.simtech-mega__panel {
	border: 1px solid var(--simtech-border);
	border-top: 0;
	border-radius: 0 0 1rem 1rem;
	background: #fff;
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}

.simtech-mega__grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.simtech-mega__grid {
		grid-template-columns: 1fr 16rem;
	}
}

.simtech-mega__main,
.simtech-mega__brands {
	padding: 1.5rem;
}

.simtech-mega__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.simtech-mega__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--simtech-dark);
}

.simtech-mega__tagline {
	margin: 0.125rem 0 0;
	font-size: 0.75rem;
	color: var(--simtech-muted);
}

.simtech-mega__count {
	flex-shrink: 0;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	background: var(--simtech-gray);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--simtech-muted);
}

.simtech-mega__subs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.375rem;
}

.simtech-mega__sub {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	border-radius: 0.75rem;
	color: var(--simtech-dark);
	transition: background 0.15s, color 0.15s;
}

.simtech-mega__sub:hover {
	background: var(--simtech-blue-light);
	color: var(--simtech-blue);
}

.simtech-mega__sub-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.5rem;
	background: var(--simtech-gray);
	color: var(--simtech-dark);
	flex-shrink: 0;
}

.simtech-mega__sub:hover .simtech-mega__sub-icon {
	background: #fff;
	color: var(--simtech-blue);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.simtech-mega__sub-icon .simtech-icon {
	width: 18px;
	height: 18px;
}

.simtech-mega__sub-image {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.simtech-mega__sub-name {
	font-size: 0.875rem;
	font-weight: 500;
}

.simtech-mega__all {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--simtech-blue);
}

.simtech-mega__head .simtech-mega__all {
	margin-top: 0;
}

.simtech-mega__all:hover {
	color: #1d4ed8;
}

.simtech-nav-arrow {
	width: 1rem;
	height: 1rem;
}

.simtech-mega__promo {
	position: relative;
	display: none;
	min-height: 16rem;
	overflow: hidden;
	color: #fff;
}

@media (min-width: 1024px) {
	.simtech-mega__promo {
		display: block;
	}
}

.simtech-mega__promo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.simtech-mega__promo:hover img {
	transform: scale(1.05);
}

.simtech-mega__promo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.3), transparent);
}

.simtech-mega__promo-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.25rem;
}

.simtech-mega__promo-kicker {
	display: block;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #bfdbfe;
}

.simtech-mega__promo-name {
	display: block;
	margin-top: 0.25rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
}

.simtech-mega__brands-empty {
	margin: 0;
	padding: 1.5rem 0 0.5rem;
	font-size: 0.875rem;
	color: var(--simtech-muted);
}

.simtech-mega__brand-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.simtech-mega__brand-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.simtech-mega__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem;
	border: 1px solid var(--simtech-border);
	border-radius: 0.75rem;
	background: #fff;
	text-align: center;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.simtech-mega__brand:hover {
	border-color: var(--simtech-blue);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.simtech-mega__brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.5rem;
	width: 100%;
}

.simtech-mega__brand-logo img {
	max-height: 2rem;
	max-width: 90%;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.8;
	transition: filter 0.15s, opacity 0.15s;
}

.simtech-mega__brand:hover .simtech-mega__brand-logo img {
	filter: none;
	opacity: 1;
}

.simtech-mega__brand-letter {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--simtech-muted);
}

.simtech-mega__brand-name {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--simtech-dark);
	line-height: 1;
}

.simtech-mega__brand:hover .simtech-mega__brand-name {
	color: var(--simtech-blue);
}

.simtech-mega__brand-count {
	font-size: 0.6875rem;
	color: var(--simtech-muted);
	line-height: 1;
}

.simtech-mobile-accordion__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.875rem 0.75rem;
	border: 0;
	border-radius: 0.75rem;
	background: transparent;
	font-size: 1rem;
	font-weight: 500;
	color: var(--simtech-dark);
	cursor: pointer;
	text-align: left;
}

.simtech-mobile-accordion__toggle[aria-expanded="true"] {
	background: var(--simtech-blue-light);
	color: var(--simtech-blue);
}

.simtech-mobile-accordion__panel {
	padding: 0.25rem 0 0.5rem 0.5rem;
}

/* Mobile menu — fill the rest of the viewport, scroll inside, lock the page */
body.simtech-mobile-menu-open {
	overflow: hidden;
}

.simtech-mobile-menu:not([hidden]) {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 60;
	height: calc(100vh - 100%);
	height: calc(100dvh - 100%);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	border-bottom: 1px solid var(--simtech-border);
	background: #fff;
}

.simtech-mobile-menu__inner {
	display: grid;
	gap: 0.25rem;
	padding-block: 0.75rem 2.5rem;
}

.simtech-mobile-menu__link {
	padding: 0.625rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--simtech-dark);
}

.simtech-mobile-menu__link:hover {
	background: var(--simtech-gray);
}

.simtech-mobile-menu__link--accent {
	color: var(--simtech-blue);
}

.simtech-mobile-menu__link--accent:hover {
	background: var(--simtech-blue-light);
}

.simtech-mobile-menu__lang {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 0.75rem;
	margin-top: 1rem;
	border: 1px solid rgba(37, 99, 235, 0.1);
	border-radius: 0.75rem;
	background: rgba(37, 99, 235, 0.05);
	font-size: 0.875rem;
	color: var(--simtech-dark);
}

.simtech-mobile-menu__lang-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}

.simtech-mobile-menu__lang-label .simtech-icon {
	color: var(--simtech-blue);
	width: 1.25rem;
	height: 1.25rem;
}

/* Footer */
.simtech-footer {
	margin-top: 4rem;
	background: var(--simtech-dark);
	color: #fff;
}

.simtech-footer-newsletter {
	border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.simtech-footer-newsletter__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding-block: 2.5rem;
	text-align: center;
}

.simtech-footer-newsletter__copy h3 {
	margin: 0;
	font-family: var(--simtech-display);
	font-size: 1.25rem;
	font-weight: 700;
}

.simtech-footer-newsletter__copy p {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: #94a3b8;
}

.simtech-footer-newsletter__form {
	display: flex;
	gap: 0.5rem;
	width: 100%;
	max-width: 28rem;
}

.simtech-footer-newsletter__form input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 0.75rem;
	background: rgb(255 255 255 / 5%);
	color: #fff;
	font-size: 0.875rem;
}

.simtech-footer-newsletter__form input::placeholder {
	color: #64748b;
}

.simtech-footer-newsletter__form button {
	padding: 0.75rem 1.5rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--simtech-blue);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.simtech-footer-main {
	padding-block: 4rem;
}

.simtech-footer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem 3rem;
	align-items: center;
}

.simtech-footer-grid__brand {
	grid-column: span 2;
}

.simtech-footer-company {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
}

.simtech-footer-about {
	margin: 1rem 0 1.5rem;
	max-width: 24rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #94a3b8;
}

.simtech-footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1rem;
	font-size: 0.875rem;
	color: #94a3b8;
}

.simtech-footer-contact a {
	color: inherit;
}

.simtech-footer-contact a:hover {
	color: #fff;
}

.simtech-footer-bank {
	margin-top: 1.75rem;
}

.simtech-footer-bank ul {
	color: #94a3b8;
}

.simtech-footer-menu--extra {
	margin-top: 0.625rem;
}

.simtech-footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.simtech-footer-contact__icon {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: rgb(255 255 255 / 5%);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.simtech-footer-contact__icon .simtech-icon {
	width: 1rem;
	height: 1rem;
	color: var(--simtech-blue);
}

.simtech-footer-grid h4 {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.simtech-footer-grid ul,
.simtech-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.625rem;
}

.simtech-footer-grid a {
	font-size: 0.875rem;
	color: #9ca3af;
	transition: color 0.2s;
}

.simtech-footer-grid a:hover {
	color: #fff;
}

.simtech-footer-bottom {
	border-top: 1px solid rgb(255 255 255 / 10%);
}

.simtech-footer-bottom__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding-block: 1.25rem;
}

.simtech-footer-bottom p {
	margin: 0;
	font-size: 0.75rem;
	color: #6b7280;
	text-align: center;
}

.simtech-footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.simtech-footer-payments span {
	padding: 0.25rem 0.625rem;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 0.25rem;
	background: rgb(255 255 255 / 10%);
	font-size: 0.75rem;
	color: #d1d5db;
	font-weight: 500;
}

.simtech-main--home {
	padding-block: 0;
}

/* Front page placeholder (legacy) */
.content-area.front-page {
	max-width: var(--simtech-container);
	margin-inline: auto;
	padding-inline: 1rem;
}

.content-area.front-page h1 {
	font-family: var(--simtech-display);
}

.content-area.front-page a {
	color: var(--simtech-blue);
	font-weight: 600;
}

.content-area {
	padding-block: 2.5rem 4rem;
}

.simtech-page__title {
	margin: 0 0 1.5rem;
	font-family: var(--simtech-display);
	font-size: 1.75rem;
	color: var(--simtech-dark);
}

.simtech-page__content {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--simtech-dark);
}

.simtech-page__content a {
	color: var(--simtech-blue);
}

.simtech-page__content ul {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.simtech-page__content li {
	margin: 0.25rem 0;
}

/* Responsive */
@media (min-width: 640px) {
	.simtech-utility { display: block; }
	.simtech-mobile-toggle { display: none; }
	.simtech-mobile-menu { display: none !important; }
	.simtech-header-actions__lang-mobile { display: none; }
	.simtech-header-action { display: flex; }
	.simtech-header-action--cart { padding: 0.5rem 0.75rem; }
	.simtech-header-action--cart > span:last-child { display: inline; }
	.simtech-search__submit span { display: inline; }
	.simtech-category-nav { display: block; }
	.simtech-header-main__inner {
		flex-wrap: nowrap;
	}
	.simtech-mobile-toggle,
	.simtech-logo,
	.simtech-search,
	.simtech-header-actions {
		order: 0;
	}
	.simtech-header-main .simtech-logo__mark {
		width: var(--simtech-logo-w, 48px) !important;
		height: var(--simtech-logo-h, 48px) !important;
		max-width: var(--simtech-logo-w, 48px) !important;
		max-height: var(--simtech-logo-h, 48px) !important;
	}
	.simtech-search {
		flex: 1 1 auto;
		width: auto;
		min-width: 0;
		max-width: 42rem;
	}
	.simtech-search__submit {
		padding: 0.625rem 1rem;
	}
	.simtech-footer-bottom__inner {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.simtech-search__category { display: block; }
}

@media (min-width: 1024px) {
	.simtech-footer-newsletter__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
	.simtech-footer-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
	.simtech-footer-grid__brand {
		grid-column: span 4;
	}
	.simtech-footer-grid__col {
		grid-column: span 2;
	}
}

.simtech-vat-note,
.woocommerce-price-suffix {
	display: inline-block;
	margin-left: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--simtech-muted);
	white-space: nowrap;
}

.woocommerce-Price-amount + .simtech-vat-note,
.woocommerce-Price-amount + .woocommerce-price-suffix {
	vertical-align: middle;
}
