/**
 * EV Store — TechTie3D brand theme
 */

:root {
	--ev-primary: #2DDC7A;
	--ev-primary-hover: #22c55e;
	--ev-primary-soft: #ecfdf5;
	--ev-ink: #1a124d;
	--ev-text: #1f2937;
	--ev-muted: #6b7280;
	--ev-border: #e5e7eb;
	--ev-bg: #ffffff;
	--ev-bg-soft: #f8fafc;
	--ev-footer-bg: #0f0f10;
	--ev-radius: 8px;
	--ev-radius-lg: 12px;
	--ev-shadow: 0 8px 24px rgba(26, 18, 77, 0.08);
	--ev-cols: 5;
	--ev-font: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Elementor eicons used across EV UI */
.ev-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: normal;
	speak: never;
	vertical-align: middle;
}

.ev-actions__ico .ev-icon,
.ev-card__wish .ev-icon,
.ev-mega__ico .ev-icon,
.ev-cat-tree__ico .ev-icon,
.ev-cats__icon .ev-icon,
.ev-filters__all-ico .ev-icon,
.ev-search__icon .ev-icon {
	display: inline-flex;
}

/* Override Hello Elementor / theme default pink link color (#c36) */
body.ev-store-active a {
	color: inherit;
	text-decoration: none;
}

body.ev-store-active a:hover,
body.ev-store-active a:focus,
body.ev-store-active a:active {
	color: var(--ev-primary);
}

body.ev-store-active .ev-shop a:hover,
body.ev-store-active .ev-card a:hover,
body.ev-store-active .woocommerce-breadcrumb a:hover {
	color: var(--ev-primary);
}

body.ev-store-active button:focus,
body.ev-store-active button:focus-visible,
body.ev-store-active .button:focus,
body.ev-store-active .button:focus-visible {
	outline: 2px solid var(--ev-primary);
	outline-offset: 2px;
}

/* Reduce double-header clash with common themes when EV header is on */
body.ev-has-header .site-header,
body.ev-has-header header.wp-block-template-part {
	display: none;
}

/* Hide Hello Elementor / theme default footer ("3D Shop / All rights reserved") */
body.ev-store-active.ev-has-footer footer.site-footer,
body.ev-store-active.ev-has-footer .site-footer,
body.ev-store-active.ev-has-footer footer:not(.ev-footer),
body.ev-store-active.ev-has-footer .footer-inner,
body.ev-store-active.ev-has-footer .site-info {
	display: none !important;
}

/* —— Top bar —— */
.ev-topbar {
	background: #0f0f10;
	color: var(--ev-primary) !important;
	text-align: center;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-bottom: 1px solid rgba(45, 220, 122, 0.25);
}

.ev-topbar a {
	color: var(--ev-primary) !important;
}

.ev-topbar__icon {
	display: inline-flex;
}

/* —— Header —— */
.ev-header {
	background: #fff;
	border-bottom: 1px solid var(--ev-border);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.ev-header__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 14px 20px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
}

.ev-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--ev-ink);
	font-weight: 700;
	font-size: 1.15rem;
	white-space: nowrap;
}

.ev-logo img,
.ev-logo__img {
	max-height: 56px;
	width: auto;
	border-radius: 50%;
	display: block;
}

.ev-logo--footer img {
	max-height: 72px;
}

.ev-logo__mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--ev-primary);
	display: inline-block;
}

.ev-header__search {
	min-width: 0;
}

/* —— Search —— */
.ev-search {
	position: relative;
}

.ev-search__field {
	display: flex;
	align-items: center;
	background: var(--ev-bg-soft);
	border: 1px solid var(--ev-border);
	border-radius: 999px;
	padding: 0 6px 0 6px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.ev-search__field:focus-within {
	border-color: var(--ev-primary);
	box-shadow: 0 0 0 3px var(--ev-primary-soft);
	background: #fff;
}

.ev-search__icon {
	color: var(--ev-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	border-radius: 50%;
	padding: 0;
}

.ev-search__icon:hover {
	color: var(--ev-primary);
	background: var(--ev-primary-soft);
}

.ev-search__input,
body.ev-store-active .ev-search__input,
body.ev-store-active .ev-search input[type="search"],
body.ev-store-active .ev-search input[type="text"] {
	flex: 1;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	padding: 12px 10px !important;
	font-size: 14px !important;
	outline: none !important;
	min-width: 0;
	width: auto !important;
	font-family: inherit;
	color: var(--ev-text) !important;
	line-height: 1.4 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

body.ev-store-active .ev-search__input:focus,
body.ev-store-active .ev-search input[type="search"]:focus {
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
}

body.ev-store-active .ev-search__icon,
body.ev-store-active .ev-search__cats-btn {
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: inherit;
}

body.ev-store-active .ev-search__icon:hover,
body.ev-store-active .ev-search__icon:focus {
	background: var(--ev-primary-soft) !important;
	color: var(--ev-primary) !important;
	border: 0 !important;
}

body.ev-store-active .ev-search__cats-btn:hover,
body.ev-store-active .ev-search__cats-btn:focus {
	background: transparent !important;
	color: var(--ev-ink) !important;
	border: 0 !important;
}

.ev-search__cats {
	position: relative;
	flex-shrink: 0;
	border-left: 1px solid var(--ev-border);
	margin-left: 4px;
}

.ev-search__cats-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	padding: 10px 14px;
	font-size: 13px;
	color: var(--ev-text);
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}

.ev-search__cats-list {
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	min-width: 220px;
	max-height: 320px;
	overflow: auto;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius);
	box-shadow: var(--ev-shadow);
	list-style: none;
	margin: 0;
	padding: 6px 0;
	z-index: 1100;
}

.ev-search__cats-list li {
	padding: 10px 14px;
	cursor: pointer;
	font-size: 13px;
}

.ev-search__cats-list li:hover,
.ev-search__cats-list li.is-active {
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
}

/* —— Custom selects (shop sort, checkout, account, etc.) —— */
.ev-select {
	position: relative;
	display: inline-block;
	min-width: 200px;
	max-width: 100%;
	vertical-align: middle;
}

.ev-select-native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ev-select__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid var(--ev-border);
	border-radius: 10px;
	background: #fff;
	color: var(--ev-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	text-align: left;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.ev-select__btn:hover {
	border-color: rgba(45, 220, 122, 0.55);
}

.ev-select.is-open .ev-select__btn {
	border-color: var(--ev-primary);
	box-shadow: 0 0 0 3px rgba(45, 220, 122, 0.18);
}

.ev-select.is-disabled .ev-select__btn {
	opacity: 0.55;
	cursor: not-allowed;
}

.ev-select__label {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ev-select__btn .ev-icon {
	flex-shrink: 0;
	color: var(--ev-muted);
	transform: rotate(0deg);
	transition: transform 0.15s ease, color 0.15s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ev-select.is-open .ev-select__btn .ev-icon {
	transform: rotate(90deg);
	color: var(--ev-primary);
}

.ev-select__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	min-width: 100%;
	max-height: 280px;
	overflow: auto;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: 12px;
	box-shadow: var(--ev-shadow);
	z-index: 1200;
}

.ev-select__group {
	padding: 8px 14px 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ev-muted);
	pointer-events: none;
}

.ev-select__option {
	padding: 10px 14px;
	font-size: 13px;
	color: var(--ev-text);
	cursor: pointer;
}

.ev-select__option:hover {
	background: var(--ev-primary-soft);
	color: var(--ev-ink);
}

.ev-select__option.is-active {
	background: var(--ev-primary-soft);
	color: var(--ev-ink);
	font-weight: 600;
}

.ev-select__option.is-active::after {
	content: "✓";
	float: right;
	color: var(--ev-primary);
	font-weight: 700;
}

.ev-select__option.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.ev-select--orderby {
	min-width: 220px;
}

.woocommerce-ordering {
	margin: 0 0 16px !important;
}

.woocommerce-ordering .ev-select {
	width: 100%;
	max-width: 280px;
}

/* Checkout / account / cart form selects */
.woocommerce form .ev-select,
.woocommerce-page form .ev-select,
.ev-cart .ev-select,
.ev-checkout .ev-select,
.ev-account .ev-select {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
}

.woocommerce form .form-row .ev-select__btn,
.woocommerce-page form .form-row .ev-select__btn {
	min-height: 46px;
	border-radius: 8px;
}

/* —— Actions —— */
.ev-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Kill Hello Elementor pink (#c36) on header action buttons */
body.ev-store-active .ev-actions__item,
body.ev-store-active button.ev-actions__item,
body.ev-store-active .ev-actions__item:hover,
body.ev-store-active .ev-actions__item:focus,
body.ev-store-active .ev-actions__item:active,
body.ev-store-active .ev-actions__item[aria-expanded="true"] {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	color: var(--ev-text) !important;
	text-decoration: none !important;
	position: relative;
	padding: 6px !important;
	border-radius: 10px !important;
	transition: background 0.15s, color 0.15s;
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	cursor: pointer;
	font: inherit;
	width: auto !important;
	white-space: nowrap;
	box-shadow: none !important;
}

body.ev-store-active .ev-actions__item:hover,
body.ev-store-active .ev-actions__item:focus,
body.ev-store-active .ev-actions__item:focus-visible,
body.ev-store-active .ev-actions__item[aria-expanded="true"] {
	background: var(--ev-primary-soft) !important;
	background-color: var(--ev-primary-soft) !important;
	color: var(--ev-ink) !important;
	outline: none;
}

body.ev-store-active .ev-actions__ico {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ev-bg-soft) !important;
	border: 1px solid var(--ev-border) !important;
	color: var(--ev-ink) !important;
}

body.ev-store-active .ev-actions__item:hover .ev-actions__ico,
body.ev-store-active .ev-actions__item:focus .ev-actions__ico,
body.ev-store-active .ev-actions__item[aria-expanded="true"] .ev-actions__ico {
	border-color: var(--ev-primary) !important;
	color: var(--ev-primary) !important;
	background: #fff !important;
}

.ev-actions__badge {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--ev-primary);
	color: #0f0f10;
	font-size: 10px;
	font-weight: 700;
	min-width: 16px;
	height: 16px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.ev-actions__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	line-height: 1 !important;
	text-align: center;
	padding: 0 !important;
}

.ev-actions__name {
	font-size: 13px;
	font-weight: 500;
}

/* —— Nav —— */
.ev-nav {
	border-top: 1px solid var(--ev-border);
	background: #fff;
}

.ev-nav__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 56px;
}

.ev-nav__cats {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--ev-border) !important;
	background: #fff !important;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	padding: 10px 16px !important;
	font-family: inherit;
	color: var(--ev-ink) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	text-decoration: none !important;
	line-height: 1.2 !important;
	height: auto !important;
	min-height: 0 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}
.ev-nav__cats:hover,
.ev-nav__cats.is-active,
.ev-nav__cats[aria-expanded="true"] {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
}

.ev-nav__burger {
	width: 18px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.ev-nav__links,
.ev-nav__menu {
	display: flex;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-nav__links a,
.ev-nav__menu a {
	text-decoration: none !important;
	color: var(--ev-ink) !important;
	font-size: 13px;
	font-weight: 500;
	transition: color 0.15s ease;
}

.ev-nav__links a:hover,
.ev-nav__links a:focus,
.ev-nav__links a.is-active,
.ev-nav__links a[aria-current="page"],
.ev-nav__menu a:hover,
.ev-nav__menu a:focus,
.ev-nav__menu .current-menu-item > a,
.ev-nav__menu .current_page_item > a {
	color: var(--ev-primary) !important;
}

/* —— Categories widget —— */
.ev-cats {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	overflow: hidden;
}

.ev-cats__title {
	margin: 0;
	padding: 14px 16px;
	font-size: 15px;
	border-bottom: 1px solid var(--ev-border);
}

.ev-cats__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-cats__item a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	text-decoration: none;
	color: var(--ev-text);
	font-size: 14px;
	border-bottom: 1px solid var(--ev-border);
}

.ev-cats__item:last-child a {
	border-bottom: 0;
}

.ev-cats__item a:hover {
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
}

.ev-cats__icon {
	color: var(--ev-muted);
	display: flex;
}

.ev-cats__name {
	flex: 1;
}

.ev-cats__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.ev-cats__hint {
	font-size: 11px;
	font-weight: 500;
	color: var(--ev-muted);
	line-height: 1.2;
}

.ev-cats__count {
	color: var(--ev-muted);
	font-size: 12px;
}

.ev-cats__chev {
	color: var(--ev-muted);
}

/* —— Product cards —— */
.ev-products {
	margin: 28px 0;
}

.ev-products__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
}

.ev-products__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ev-ink);
}

.ev-products__all {
	color: var(--ev-primary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.ev-products__grid {
	display: grid;
	grid-template-columns: repeat(var(--ev-cols), minmax(0, 1fr));
	gap: 16px;
}

.ev-card {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius);
	overflow: hidden;
	transition: box-shadow 0.15s, border-color 0.15s;
	display: flex;
	flex-direction: column;
}

.ev-card:hover {
	box-shadow: var(--ev-shadow);
	border-color: #d1d5db;
}

.ev-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1;
	background: var(--ev-bg-soft);
	overflow: hidden;
}

.ev-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ev-card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--ev-primary);
	color: #0f0f10;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 4px;
	z-index: 1;
}

.ev-card__wish {
	position: absolute;
	right: 8px;
	bottom: 8px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--ev-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ev-muted);
}

.ev-card__body {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.ev-card__cat {
	font-size: 11px;
	color: var(--ev-muted);
}

.ev-card__cat a {
	color: inherit;
	text-decoration: none;
}

.ev-card__title {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.ev-card__title a {
	color: var(--ev-text);
	text-decoration: none;
}

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

.ev-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
	margin-top: auto;
}

.ev-card__price del {
	color: var(--ev-muted);
	font-weight: 400;
	font-size: 13px;
}

.ev-card__price ins {
	text-decoration: none;
	color: var(--ev-text);
}

.ev-card__discount {
	color: var(--ev-primary);
	font-size: 12px;
	font-weight: 700;
}

/* —— Trust bar —— */
.ev-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 24px 0;
	border-top: 1px solid var(--ev-border);
	border-bottom: 1px solid var(--ev-border);
	margin: 24px 0;
}

.ev-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ev-trust__icon {
	color: var(--ev-primary);
	flex-shrink: 0;
}

.ev-trust__item strong {
	display: block;
	font-size: 14px;
}

.ev-trust__item span {
	display: block;
	font-size: 12px;
	color: var(--ev-muted);
}

/* —— Shop layout —— */
.ev-shop__inner {
	max-width: 1280px;
	margin: 24px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
	align-items: start;
}

.ev-filters {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 16px;
}

.ev-filters__title {
	margin: 0 0 14px;
	font-size: 16px;
}

.ev-filters__toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--ev-border);
	font-size: 13px;
	cursor: pointer;
}

.ev-filters__price {
	margin-top: 16px;
}

.ev-filters__price strong {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
}

.ev-filters__price-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 10px;
}

.ev-filters__price-row input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--ev-border);
	border-radius: 6px;
	font-size: 13px;
}

.ev-filters__cats {
	margin-top: 18px;
}

.ev-filters__cats strong {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
}

.ev-filters__cats ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-filters__cats a {
	display: block;
	padding: 6px 0;
	color: var(--ev-text);
	text-decoration: none;
	font-size: 13px;
}

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

/* —— Buttons —— */
.ev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ev-btn--primary {
	background: var(--ev-primary);
	color: #0f0f10;
	border-color: var(--ev-primary);
}

.ev-btn--primary:hover {
	background: var(--ev-primary-hover);
	color: #0f0f10;
}

.ev-btn--outline {
	background: #fff;
	color: var(--ev-primary);
	border-color: var(--ev-primary);
	border-radius: 999px;
}

.ev-btn--outline:hover {
	background: var(--ev-primary-soft);
}

.ev-btn--ghost {
	background: var(--ev-bg-soft);
	color: var(--ev-text);
	border-color: var(--ev-border);
	width: 100%;
	padding: 14px;
	margin-top: 16px;
}

.ev-btn--block {
	width: 100%;
}

/* —— Single product —— */
.ev-product {
	max-width: 1280px;
	margin: 0 auto;
	padding: 8px 20px 0;
}

.single-product div.product .price {
	color: var(--ev-primary) !important;
	font-size: 1.65rem;
	font-weight: 700;
}

.single-product div.product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.55;
	color: var(--ev-text);
	max-width: 36em;
	margin: 12px 0 16px;
}

.single-product .single_add_to_cart_button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 10px !important;
	font-weight: 600 !important;
	padding: 12px 22px !important;
}

.single-product .single_add_to_cart_button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--ev-primary-hover) !important;
}

.ev-product__pills {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ev-product__pills li {
	padding: 8px 12px;
	border-radius: 8px;
	background: var(--ev-bg-soft);
	border: 1px solid var(--ev-border);
	font-size: 12px;
	color: var(--ev-muted);
}

.woocommerce-tabs {
	max-width: 1280px;
	margin: 28px auto 0;
	padding: 0 20px;
}

.woocommerce-tabs ul.tabs {
	padding-left: 0 !important;
	margin-bottom: 0 !important;
	border-bottom: 1px solid var(--ev-border) !important;
}

.woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: 0 !important;
	margin: 0 18px 0 0 !important;
	padding: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
	font-weight: 600 !important;
	padding: 12px 0 !important;
	color: var(--ev-muted) !important;
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--ev-ink) !important;
	border-bottom: 2px solid var(--ev-primary) !important;
}

.woocommerce-Tabs-panel {
	padding: 22px 0 8px !important;
	border: 0 !important;
}

/* Rich product description blocks */
.ev-desc__lead {
	font-size: 16px;
	line-height: 1.6;
	color: var(--ev-text);
	margin: 0 0 22px;
	max-width: 52em;
}

.ev-desc__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	margin-bottom: 22px;
}

.ev-desc__h {
	margin: 0 0 12px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ev-muted);
}

.ev-desc__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ev-desc__list li {
	position: relative;
	padding: 10px 0 10px 22px;
	border-bottom: 1px solid var(--ev-border);
	font-size: 14px;
	line-height: 1.45;
	color: var(--ev-text);
}

.ev-desc__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ev-primary);
}

.ev-desc__specs {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.ev-desc__specs th,
.ev-desc__specs td {
	padding: 10px 0;
	border-bottom: 1px solid var(--ev-border);
	text-align: left;
	vertical-align: top;
}

.ev-desc__specs th {
	width: 42%;
	color: var(--ev-muted);
	font-weight: 500;
}

.ev-desc__specs td {
	color: var(--ev-ink);
	font-weight: 600;
}

.ev-desc__note {
	padding: 16px 18px;
	border-radius: 12px;
	background: var(--ev-primary-soft);
	border: 1px solid rgba(45, 220, 122, 0.35);
	margin-bottom: 16px;
}

.ev-desc__note strong {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	color: var(--ev-ink);
}

.ev-desc__note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ev-text);
}

.ev-desc__foot {
	margin: 0;
	font-size: 12px;
	color: var(--ev-muted);
}

@media (max-width: 800px) {
	.ev-desc__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* —— Category / shop archive hero —— */
.ev-archive-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 18px;
	padding: 22px 22px 20px;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(45, 220, 122, 0.16), rgba(45, 220, 122, 0.02) 55%),
		#fff;
	border: 1px solid var(--ev-border);
}

.ev-archive-hero__eyebrow {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ev-muted);
}

.ev-archive-hero__title {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.15;
	color: var(--ev-ink);
}

.ev-archive-hero__desc {
	margin: 0;
	max-width: 46em;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ev-text);
}

.ev-archive-hero__count {
	flex-shrink: 0;
	min-width: 88px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--ev-border);
	text-align: center;
}

.ev-archive-hero__count strong {
	display: block;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--ev-ink);
}

.ev-archive-hero__count span {
	font-size: 12px;
	color: var(--ev-muted);
}

@media (max-width: 700px) {
	.ev-archive-hero {
		flex-direction: column;
		align-items: flex-start;
	}
}

.ev-related {
	max-width: 1280px;
	margin: 40px auto;
	padding: 0 20px;
}

.ev-related__title {
	font-size: 1.35rem;
	margin: 0 0 16px;
}

.ev-related-more {
	max-width: 1280px;
	margin: 0 auto 40px;
	padding: 0 20px;
}

.ev-related-more__btn {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--ev-border);
	background: var(--ev-bg-soft);
	color: var(--ev-text);
	font-weight: 600;
	cursor: pointer;
}

.ev-related-more__btn:disabled {
	opacity: 0.6;
	cursor: default;
}

/* —— Cart / checkout —— */
.ev-cart,
.ev-checkout {
	max-width: 1100px;
	margin: 24px auto;
	padding: 0 20px;
}

.ev-cart .shop_table,
.ev-checkout .woocommerce-checkout {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 20px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order {
	background: var(--ev-primary) !important;
	border-radius: 6px !important;
}

/* —— Footer —— */
.ev-footer {
	background: var(--ev-footer-bg);
	border-top: 1px solid rgba(45, 220, 122, 0.2);
	margin-top: 48px;
	padding: 48px 0 0;
	color: #d1d5db;
}

.ev-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 36px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 28px;
}

.ev-footer h4 {
	margin: 0 0 12px;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.02em;
}

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

.ev-footer li {
	margin-bottom: 8px;
}

.ev-footer a {
	color: #9ca3af;
	text-decoration: none;
	font-size: 13px;
}

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

.ev-footer__about {
	color: #9ca3af;
	font-size: 13px;
	line-height: 1.55;
	margin: 12px 0 0;
}

.ev-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.ev-footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1a1a1c;
	border: 1px solid rgba(45, 220, 122, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ev-primary) !important;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ev-footer__social-link:hover {
	background: var(--ev-primary);
	border-color: var(--ev-primary);
	color: #0f0f10 !important;
}

.ev-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 20px;
	text-align: center;
	font-size: 12px;
	color: #6b7280;
}

/* —— Banners —— */
.ev-banners {
	margin: 24px 0;
}

.ev-banners__title {
	margin: 0 0 16px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ev-ink);
}

.ev-banners__grid {
	display: grid;
	grid-template-columns: repeat(var(--ev-banner-cols, 2), minmax(0, 1fr));
	gap: 16px;
}

.ev-banners--stack .ev-banners__grid {
	grid-template-columns: 1fr;
}

.ev-banner,
a.ev-banner,
a.ev-banner:visited {
	position: relative;
	display: block;
	min-height: 180px;
	border-radius: var(--ev-radius-lg);
	overflow: hidden;
	background: #111 center / cover no-repeat;
	text-decoration: none !important;
	color: #fff !important;
	isolation: isolate;
}

a.ev-banner:hover,
a.ev-banner:focus,
a.ev-banner:active,
body.ev-store-active a.ev-banner:hover,
body.ev-store-active a.ev-banner:focus,
body.ev-store-active a.ev-banner:active {
	color: #fff !important;
	text-decoration: none !important;
	outline: none;
}

.ev-banner--hero {
	min-height: 320px;
	grid-column: 1 / -1;
}

.ev-banner--large {
	min-height: 240px;
}

.ev-banner--small {
	min-height: 140px;
}

.ev-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(15, 15, 16, 0.75) 0%, rgba(15, 15, 16, 0.25) 70%);
	z-index: 0;
	transition: background 0.2s ease;
}

a.ev-banner:hover .ev-banner__overlay {
	background: linear-gradient(120deg, rgba(15, 15, 16, 0.82) 0%, rgba(15, 15, 16, 0.4) 70%);
}

.ev-banner__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 6px;
	height: 100%;
	min-height: inherit;
	padding: 20px;
	box-sizing: border-box;
}

.ev-banner__heading,
a.ev-banner .ev-banner__heading,
a.ev-banner:visited .ev-banner__heading {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	transition: color 0.15s ease;
}

.ev-banner__sub,
a.ev-banner .ev-banner__sub,
a.ev-banner:visited .ev-banner__sub {
	font-size: 0.9rem;
	opacity: 0.95;
	color: #fff !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	transition: color 0.15s ease;
}

a.ev-banner:hover .ev-banner__heading,
a.ev-banner:focus .ev-banner__heading,
a.ev-banner:hover .ev-banner__sub,
a.ev-banner:focus .ev-banner__sub,
body.ev-store-active a.ev-banner:hover .ev-banner__heading,
body.ev-store-active a.ev-banner:focus .ev-banner__heading,
body.ev-store-active a.ev-banner:hover .ev-banner__sub,
body.ev-store-active a.ev-banner:focus .ev-banner__sub {
	color: var(--ev-primary) !important;
}

.ev-banner__btn,
a.ev-banner .ev-banner__btn,
a.ev-banner:hover .ev-banner__btn,
a.ev-banner:focus .ev-banner__btn,
body.ev-store-active a.ev-banner .ev-banner__btn,
body.ev-store-active a.ev-banner:hover .ev-banner__btn {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--ev-primary) !important;
	color: #0f0f10 !important;
	font-size: 12px;
	font-weight: 700;
	transition: background 0.15s ease, color 0.15s ease;
}

a.ev-banner:hover .ev-banner__btn,
a.ev-banner:focus .ev-banner__btn {
	background: #fff !important;
	color: #0f0f10 !important;
}

@media (max-width: 768px) {
	.ev-banners__grid {
		grid-template-columns: 1fr;
	}

	.ev-banner--hero {
		min-height: 220px;
	}
}

/* —— Woo loop cleanup when using EV cards —— */
ul.products li.product {
	list-style: none;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(var(--ev-cols, 4), minmax(0, 1fr));
	gap: 16px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
	.ev-products__grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ev-shop__inner {
		grid-template-columns: 220px 1fr;
	}

	.ev-trust {
		grid-template-columns: repeat(2, 1fr);
	}

	.ev-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.ev-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo actions"
			"search search";
		gap: 10px 12px;
		padding: 10px 14px;
	}

	.ev-logo {
		grid-area: logo;
	}

	.ev-logo img,
	.ev-logo__img {
		max-height: 42px;
	}

	.ev-actions {
		grid-area: actions;
		justify-self: end;
		gap: 8px;
	}

	.ev-actions__name,
	.ev-actions__avatar {
		display: none;
	}

	.ev-header__search {
		grid-area: search;
		width: 100%;
	}

	.ev-nav__inner {
		padding: 0 14px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 12px;
	}

	.ev-nav__inner::-webkit-scrollbar {
		display: none;
	}

	.ev-nav__links,
	.ev-nav__menu {
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.ev-shop__inner {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0 12px 88px;
	}

	.ev-products__grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.ev-trust {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 10px;
		padding-bottom: 4px;
	}

	.ev-trust::-webkit-scrollbar {
		display: none;
	}

	.ev-trust__item {
		flex: 0 0 auto;
		min-width: 200px;
	}

	.ev-footer__inner {
		grid-template-columns: 1fr;
	}

	body.ev-store-active {
		padding-bottom: 64px;
	}
}

/* —— Live search suggestions —— */
.ev-search__suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	box-shadow: var(--ev-shadow);
	z-index: 1200;
	max-height: 420px;
	overflow: auto;
	padding: 8px;
}

.ev-suggest__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ev-muted);
	padding: 6px 8px 4px;
	font-weight: 700;
}

.ev-suggest__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--ev-text);
}

.ev-suggest__item:hover {
	background: var(--ev-primary-soft);
}

.ev-suggest__item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 6px;
	background: var(--ev-bg-soft);
	border: 1px solid var(--ev-border);
}

.ev-suggest__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ev-suggest__meta strong {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ev-suggest__meta em,
.ev-suggest__item--cat em {
	font-style: normal;
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-suggest__item--cat {
	justify-content: space-between;
}

.ev-suggest__all {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 10px;
	border: 0;
	border-radius: 8px;
	background: var(--ev-primary-soft);
	color: var(--ev-ink);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	font-family: inherit;
}

.ev-suggest__empty {
	padding: 16px;
	text-align: center;
	color: var(--ev-muted);
	font-size: 13px;
}


/* —— Gjirafa-style mega menu —— */
.ev-nav {
	position: relative;
	z-index: 1001;
}

.ev-nav__bar {
	border-top: 1px solid var(--ev-border);
	background: #fff;
}

.ev-nav__burger { display: none !important; }

.ev-mega[hidden] { display: none !important; }

.ev-mega.is-open {
	display: block !important;
}

.ev-mega__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 15, 16, 0.35);
	z-index: 1002;
}

.ev-mega__panel {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	width: min(1200px, calc(100vw - 32px));
	display: grid;
	grid-template-columns: 280px 1fr;
	min-height: 420px;
	max-height: min(70vh, 560px);
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: 0 0 12px 12px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	z-index: 1003;
}

.ev-mega__side {
	border-right: 1px solid var(--ev-border);
	background: #fff;
	overflow: auto;
}

.ev-mega__all,
.ev-mega__cat {
	display: flex !important;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 14px 16px !important;
	border: 0 !important;
	border-left: 3px solid transparent !important;
	background: transparent !important;
	color: var(--ev-text) !important;
	text-align: left;
	font: inherit;
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer;
	text-decoration: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	text-transform: none !important;
	height: auto !important;
	line-height: 1.3 !important;
}

.ev-mega__all:hover,
.ev-mega__cat:hover,
.ev-mega__cat.is-active {
	background: var(--ev-primary-soft) !important;
	color: var(--ev-ink) !important;
	border-left-color: var(--ev-primary) !important;
}

.ev-mega__ico {
	display: inline-flex;
	width: 22px;
	justify-content: center;
	color: var(--ev-muted);
	flex-shrink: 0;
}

.ev-mega__cat.is-active .ev-mega__ico,
.ev-mega__cat:hover .ev-mega__ico {
	color: var(--ev-primary);
}

.ev-mega__name { flex: 1; }
.ev-mega__chev { display: inline-flex; color: #c4c4c4; margin-left: auto; }

.ev-mega__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}

.ev-mega__hint {
	font-size: 11px;
	font-weight: 500;
	color: var(--ev-muted);
	line-height: 1.2;
}

.ev-mega__cat.is-active .ev-mega__hint,
.ev-mega__cat:hover .ev-mega__hint {
	color: #5a5a5a;
}

.ev-mega__cats {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-mega__main {
	overflow: auto;
	padding: 20px 24px;
	background: #fafafa;
}

.ev-mega__pane[hidden] { display: none !important; }
.ev-mega__pane.is-active { display: block !important; }

.ev-mega__pane-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.ev-mega__pane-titles h3 {
	margin: 0;
	font-size: 1.15rem;
	color: var(--ev-ink);
}

.ev-mega__pane-sub {
	margin: 4px 0 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--ev-muted);
}

.ev-mega__pane-head a {
	color: var(--ev-primary);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	padding-top: 2px;
}

.ev-mega__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px 28px;
}

.ev-mega__col-title {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: var(--ev-ink);
	text-decoration: none;
	margin-bottom: 8px;
}

.ev-mega__col-title:hover { color: var(--ev-primary); }

.ev-mega__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-mega__col a {
	display: block;
	padding: 4px 0;
	font-size: 13px;
	color: #555;
	text-decoration: none;
}

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

.ev-mega__more {
	color: #999 !important;
	font-size: 12px !important;
}

.ev-mega__count {
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-mega__empty {
	margin: 40px 0;
}

body.ev-mega-open { overflow: hidden; }

/* Kill Hello Elementor / WP button redesign on our chrome (#c36 pink) */
body.ev-store-active .ev-header-wrap button,
body.ev-store-active .ev-header-wrap .button,
body.ev-store-active .ev-nav__cats,
body.ev-store-active .ev-mega__cat,
body.ev-store-active .ev-drawer button,
body.ev-store-active .ev-drawer [type="button"],
body.ev-store-active .ev-bottom-nav button,
body.ev-store-active .ev-bottom-nav [type="button"] {
	appearance: none !important;
	-webkit-appearance: none !important;
}

body.ev-store-active .ev-header-wrap button:not(.button):not([type="submit"]):not(.ev-nav__cats),
body.ev-store-active .ev-header-wrap [type="button"]:not(.ev-nav__cats),
body.ev-store-active .ev-drawer button:not(.button):not([type="submit"]):not(.checkout-button),
body.ev-store-active .ev-drawer [type="button"]:not(.button),
body.ev-store-active .ev-bottom-nav button,
body.ev-store-active .ev-bottom-nav [type="button"] {
	background: transparent !important;
	background-color: transparent !important;
	border-color: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
}

body.ev-store-active .ev-header-wrap button:not(.button):not([type="submit"]):not(.ev-nav__cats):hover,
body.ev-store-active .ev-header-wrap button:not(.button):not([type="submit"]):not(.ev-nav__cats):focus,
body.ev-store-active .ev-header-wrap [type="button"]:not(.ev-nav__cats):hover,
body.ev-store-active .ev-header-wrap [type="button"]:not(.ev-nav__cats):focus,
body.ev-store-active .ev-drawer button:not(.button):not([type="submit"]):not(.checkout-button):hover,
body.ev-store-active .ev-drawer button:not(.button):not([type="submit"]):not(.checkout-button):focus,
body.ev-store-active .ev-bottom-nav button:hover,
body.ev-store-active .ev-bottom-nav button:focus {
	background: var(--ev-primary-soft) !important;
	background-color: var(--ev-primary-soft) !important;
	border-color: transparent !important;
	color: var(--ev-ink) !important;
}

body.ev-store-active .ev-header-wrap .wp-block-button__link,
body.ev-store-active .ev-header-wrap .elementor-button {
	all: unset;
}

@media (max-width: 900px) {
	.ev-mega__panel {
		grid-template-columns: 1fr;
		max-height: 80vh;
		left: 16px;
		right: 16px;
		width: auto;
		transform: none;
	}
	.ev-mega__side {
		max-height: 200px;
		border-right: 0;
		border-bottom: 1px solid var(--ev-border);
	}
	.ev-mega__cols {
		grid-template-columns: 1fr 1fr;
	}
}

/* —— Sidebar category tree —— */
.ev-filters__all {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	margin: -4px -4px 12px;
	border-radius: 10px;
	text-decoration: none !important;
	color: var(--ev-ink) !important;
	font-weight: 700;
	font-size: 14px;
	background: #fff;
	border: 1px solid var(--ev-border);
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ev-filters__all:hover {
	border-color: rgba(45, 220, 122, 0.55);
	background: var(--ev-primary-soft);
	color: var(--ev-ink) !important;
}

.ev-filters__all.is-active {
	background: var(--ev-primary);
	border-color: var(--ev-primary);
	color: #0f0f10 !important;
}

.ev-filters__all.is-active:hover {
	background: var(--ev-primary-hover);
	border-color: var(--ev-primary-hover);
	color: #0f0f10 !important;
}

.ev-filters__all-ico,
.ev-filters__chev {
	display: inline-flex;
}

.ev-filters__chev {
	margin-left: auto;
}

.ev-filters__heading {
	display: block;
	margin: 16px 0 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ev-muted);
}

/* —— Accordion filter panels —— */
.ev-acc {
	border-bottom: 1px solid var(--ev-border);
	margin: 0;
}

.ev-acc__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: 12px 2px;
	margin: 0;
	border: 0;
	background: transparent !important;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ev-ink) !important;
	text-align: left;
	box-shadow: none !important;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.ev-acc__toggle:hover {
	color: var(--ev-primary) !important;
	background: transparent !important;
}

.ev-acc__toggle:focus,
.ev-acc__toggle:focus-visible,
.ev-acc__toggle:active {
	background: transparent !important;
	color: var(--ev-ink) !important;
	outline: 2px solid var(--ev-primary);
	outline-offset: 2px;
	box-shadow: none !important;
}

.ev-acc.is-open > .ev-acc__toggle {
	color: var(--ev-ink) !important;
	background: transparent !important;
}

.ev-acc__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ev-acc__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ev-primary);
	color: #0f0f10;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.ev-acc__arrow {
	display: inline-flex;
	color: var(--ev-muted);
	transition: transform 0.18s ease;
	transform: rotate(0deg);
}

.ev-acc.is-open > .ev-acc__toggle .ev-acc__arrow {
	transform: rotate(90deg);
	color: var(--ev-primary);
}

.ev-acc__body {
	display: none;
	padding: 0 0 12px;
}

.ev-acc.is-open > .ev-acc__body {
	display: block;
}

.ev-filters__form .ev-btn {
	margin-top: 14px;
}

.ev-cat-tree {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
}

.ev-cat-tree__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 8px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--ev-text);
	font-size: 14px;
}

.ev-cat-tree__link:hover,
.ev-cat-tree__item.is-active > .ev-cat-tree__link {
	background: var(--ev-primary-soft);
	color: var(--ev-ink);
}

.ev-cat-tree__ico {
	display: inline-flex;
	color: var(--ev-muted);
}

.ev-cat-tree__name {
	flex: 1;
}

.ev-cat-tree__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.ev-cat-tree__hint {
	font-size: 11px;
	font-weight: 500;
	color: var(--ev-muted);
	line-height: 1.2;
}

.ev-cat-tree__count {
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-cat-tree__chev {
	display: inline-flex;
	transition: transform 0.15s;
}

.ev-cat-tree__item.is-open > .ev-cat-tree__link .ev-cat-tree__chev {
	transform: rotate(90deg);
}

.ev-cat-tree__children {
	list-style: none;
	margin: 0;
	padding: 0 0 6px 36px;
	display: none;
}

.ev-cat-tree__item.is-open > .ev-cat-tree__children {
	display: block;
}

.ev-cat-tree__children a {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 13px;
	color: var(--ev-muted);
	text-decoration: none;
}

.ev-cat-tree__children li.is-active a,
.ev-cat-tree__children a:hover {
	color: var(--ev-primary);
}

.ev-cats__all {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--ev-border);
	text-decoration: none;
	color: var(--ev-ink);
	font-weight: 700;
	font-size: 14px;
	background: var(--ev-primary-soft);
}

.ev-cats__sub {
	list-style: none;
	margin: 0;
	padding: 0 0 0 42px;
	background: var(--ev-bg-soft);
}

.ev-cats__sub a {
	display: flex;
	justify-content: space-between;
	padding: 8px 14px 8px 0;
	font-size: 13px;
	color: var(--ev-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--ev-border);
}

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

@media (max-width: 900px) {
	.ev-nav-panel__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* —— Attribute filters + chips —— */
.ev-filters__checks {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: none;
	overflow: visible;
}

.ev-filters__checks label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	font-size: 13px;
	cursor: pointer;
	color: var(--ev-text);
}

.ev-filters__checks input {
	accent-color: var(--ev-primary);
}

.ev-filters__checks span { flex: 1; }
.ev-filters__checks em {
	font-style: normal;
	font-size: 11px;
	color: var(--ev-muted);
}

.ev-filters__attrs {
	margin-top: 8px;
	padding-top: 4px;
	border-top: 1px solid var(--ev-border);
}

.ev-subchips-wrap {
	margin: 0 0 18px;
}

.ev-subchips__label {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ev-muted);
}

.ev-subchips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.ev-subchips__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid var(--ev-border);
	border-radius: 999px;
	background: #fff;
	color: var(--ev-text);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

.ev-subchips__item em {
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	color: var(--ev-muted);
	background: var(--ev-bg-soft);
	padding: 2px 7px;
	border-radius: 999px;
}

.ev-subchips__item:hover,
.ev-subchips__item.is-active {
	border-color: var(--ev-primary);
	background: var(--ev-primary-soft);
	color: var(--ev-ink);
}

.ev-subchips__item.is-active em {
	background: var(--ev-primary);
	color: #0f0f10;
}

/* —— Product card wishlist button —— */
.ev-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1;
	background: var(--ev-bg-soft);
	overflow: hidden;
}

.ev-card__link {
	display: block;
	height: 100%;
	color: inherit;
}

.ev-card__wish {
	position: absolute;
	right: 8px;
	bottom: 8px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--ev-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ev-muted);
	cursor: pointer;
	z-index: 2;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.ev-card__wish:hover,
.ev-card__wish.is-active {
	color: var(--ev-primary);
	border-color: rgba(45, 220, 122, 0.55);
	background: var(--ev-primary-soft);
}

.ev-wish-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	line-height: 1;
}

.ev-wish-ico .eicon-heart {
	display: none;
}

.ev-card__wish.is-active .ev-wish-ico .eicon-heart-o,
.ev-single-wish.is-active .ev-wish-ico .eicon-heart-o,
.ev-actions__wish.is-active .ev-wish-ico .eicon-heart-o {
	display: none;
}

.ev-card__wish.is-active .ev-wish-ico .eicon-heart,
.ev-single-wish.is-active .ev-wish-ico .eicon-heart,
.ev-actions__wish.is-active .ev-wish-ico .eicon-heart {
	display: inline-block;
	color: var(--ev-primary);
}

/* —— My Account (top tabs) —— */
.ev-account {
	max-width: 1100px;
	margin: 28px auto 48px;
	padding: 0 20px;
}

.ev-account__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
}

.ev-account__inner--login {
	max-width: 720px;
	margin: 0 auto;
}

.ev-account__top {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	overflow: hidden;
}

.ev-account__nav-head {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid var(--ev-border);
	background: var(--ev-primary-soft);
}

.ev-account__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ev-primary);
	color: #0f0f10;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 1 !important;
	text-align: center;
	flex-shrink: 0;
	padding: 0 !important;
	margin: 0;
}

.ev-account__nav-head strong {
	display: block;
	font-size: 14px;
	color: var(--ev-ink);
}

.ev-account__nav-head > div span {
	display: block;
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-account__nav,
.woocommerce-MyAccount-navigation {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.ev-account__nav ul,
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 8px 10px;
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.ev-account__nav ul::-webkit-scrollbar,
.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
	display: none;
}

.ev-account__nav li,
.woocommerce-MyAccount-navigation li {
	margin: 0;
	flex: 0 0 auto;
}

.ev-account__nav a,
.woocommerce-MyAccount-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none !important;
	color: var(--ev-text) !important;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	border: 1px solid transparent;
	background: transparent;
}

.ev-account__nav .is-active a,
.woocommerce-MyAccount-navigation .is-active a,
.ev-account__nav a:hover,
.woocommerce-MyAccount-navigation a:hover {
	background: var(--ev-primary-soft) !important;
	border-color: rgba(45, 220, 122, 0.45);
	color: var(--ev-ink) !important;
}

.ev-account__nav-count {
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	background: var(--ev-primary);
	color: #0f0f10;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}

.ev-account__content,
.woocommerce-MyAccount-content {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 28px 24px;
	float: none !important;
	width: 100% !important;
}

.ev-account-page .woocommerce-MyAccount-content,
.ev-account-page .woocommerce-MyAccount-navigation {
	float: none !important;
	width: 100% !important;
}

/* Dashboard cards */
.ev-dash__head {
	margin-bottom: 22px;
	text-align: center;
}

.ev-dash__eyebrow {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ev-muted);
}

.ev-dash__title {
	margin: 0 0 8px;
	font-size: 1.45rem;
	color: var(--ev-ink);
}

.ev-dash__sub {
	margin: 0;
	color: var(--ev-muted);
	font-size: 14px;
}

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

.ev-dash__card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 16px;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	text-decoration: none !important;
	color: var(--ev-text) !important;
	background: #fafafa;
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.ev-dash__card:hover {
	background: var(--ev-primary-soft);
	border-color: rgba(45, 220, 122, 0.5);
	box-shadow: var(--ev-shadow);
	color: var(--ev-ink) !important;
}

.ev-dash__card-ico {
	display: inline-flex;
	color: var(--ev-primary);
	margin-bottom: 4px;
}

.ev-dash__card strong {
	font-size: 15px;
	color: var(--ev-ink);
}

.ev-dash__card span {
	font-size: 13px;
	color: var(--ev-muted);
	line-height: 1.4;
}

.ev-dash__logout {
	margin: 20px 0 0;
	text-align: center;
	font-size: 13px;
}

.ev-dash__logout a {
	color: var(--ev-muted) !important;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ev-dash__logout a:hover {
	color: var(--ev-primary) !important;
}

/* Centered empty states */
.ev-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 20px;
	min-height: 240px;
	gap: 10px;
}

.ev-empty__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--ev-primary-soft);
	border: 1px solid rgba(45, 220, 122, 0.35);
	color: var(--ev-primary);
	margin-bottom: 6px;
}

.ev-empty__title {
	font-size: 1.15rem;
	color: var(--ev-ink);
	font-weight: 700;
}

.ev-empty__text {
	margin: 0 0 8px;
	max-width: 28em;
	color: var(--ev-muted);
	font-size: 14px;
	line-height: 1.5;
}

.ev-wishlist__head {
	margin-bottom: 16px;
}

.ev-wishlist__head h2 {
	margin: 0 0 4px;
	font-size: 1.25rem;
}

.ev-wishlist__head p {
	color: var(--ev-muted);
	margin: 0;
}

/* —— Cart / Checkout page polish —— */
.ev-page--cart,
.ev-page--checkout,
.ev-cart,
.ev-checkout {
	max-width: 1100px;
	margin: 24px auto 48px;
	padding: 0 20px;
}

.ev-cart-page .woocommerce,
.ev-checkout-page .woocommerce {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 20px;
}

.ev-cart-page .checkout-button,
.ev-checkout-page #place_order,
.ev-account-page .woocommerce-button,
.ev-account-page .button {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 8px !important;
}

@media (max-width: 700px) {
	.ev-dash__cards {
		grid-template-columns: 1fr;
	}

	.ev-account__content,
	.woocommerce-MyAccount-content {
		padding: 20px 16px;
	}
}

.ev-single-wish {
	margin-left: 10px;
	vertical-align: middle;
	gap: 8px;
}

.ev-single-wish.is-active {
	background: var(--ev-primary-soft) !important;
	border-color: rgba(45, 220, 122, 0.55) !important;
	color: var(--ev-ink) !important;
}

/* —— EV Cart / Checkout / Account widgets (Elementor & shortcodes) —— */
.ev-widget-cart,
.ev-widget-checkout,
.ev-widget-account {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.ev-widget-cart__layout,
.ev-widget-checkout__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: 28px;
	align-items: start;
}

.ev-widget-cart__main,
.ev-widget-checkout__main {
	min-width: 0;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 18px 20px;
}

.ev-widget-cart__side,
.ev-widget-checkout__side {
	min-width: 0;
}

.ev-widget-cart__sticky,
.ev-widget-checkout__sticky {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 18px 20px;
}

.ev-widget-cart--sticky .ev-widget-cart__sticky,
.ev-widget-checkout--sticky .ev-widget-checkout__sticky {
	position: sticky;
	top: 96px;
	z-index: 5;
}

.ev-widget-checkout__heading {
	margin: 0 0 14px;
	font-size: 1.15rem;
}

.ev-widget-cart .cart-collaterals .cart_totals,
.ev-widget-cart .cart-collaterals .cross-sells {
	width: 100% !important;
	float: none !important;
}

.ev-widget-cart .wc-proceed-to-checkout a.checkout-button,
.ev-widget-checkout #place_order {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	width: 100%;
}

.ev-widget-cart__empty {
	text-align: center;
	padding: 48px 24px;
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
}

.ev-widget-cart__empty strong {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.ev-widget-cart__empty p {
	margin: 0 0 18px;
	color: var(--ev-muted);
}

.ev-widget-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	width: 100% !important;
}

.ev-widget-checkout .col2-set .col-1,
.ev-widget-checkout .col2-set .col-2 {
	width: 100% !important;
	float: none !important;
}

.ev-widget-account .ev-account {
	max-width: none;
	margin: 0;
	padding: 0;
}

.ev-widget-account--sticky-nav .ev-account__top {
	position: sticky;
	top: 96px;
	z-index: 5;
}

.ev-widget-account .ev-account__content {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 22px 24px;
	min-height: 280px;
}

@media (max-width: 960px) {
	.ev-widget-cart__layout,
	.ev-widget-checkout__layout {
		grid-template-columns: 1fr;
	}

	.ev-widget-cart--sticky .ev-widget-cart__sticky,
	.ev-widget-checkout--sticky .ev-widget-checkout__sticky,
	.ev-widget-account--sticky-nav .ev-account__top {
		position: static;
	}
}

/* —— Shop pagination (EV design, not theme pink) —— */
body.ev-store-active .woocommerce-pagination,
body.ev-store-active .ev-shop .woocommerce-pagination,
body.ev-store-active nav.woocommerce-pagination {
	margin: 28px 0 8px !important;
	text-align: center;
}

body.ev-store-active .woocommerce-pagination ul.page-numbers,
body.ev-store-active ul.page-numbers {
	display: inline-flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body.ev-store-active .woocommerce-pagination ul.page-numbers li,
body.ev-store-active ul.page-numbers li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	float: none !important;
	display: inline-flex;
}

body.ev-store-active .woocommerce-pagination .page-numbers,
body.ev-store-active ul.page-numbers .page-numbers,
body.ev-store-active .woocommerce-pagination a.page-numbers,
body.ev-store-active .woocommerce-pagination span.page-numbers {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px !important;
	margin: 0 !important;
	border: 1px solid var(--ev-border) !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: var(--ev-ink) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

body.ev-store-active .woocommerce-pagination a.page-numbers:hover,
body.ev-store-active .woocommerce-pagination a.page-numbers:focus,
body.ev-store-active ul.page-numbers a.page-numbers:hover,
body.ev-store-active ul.page-numbers a.page-numbers:focus {
	background: var(--ev-primary-soft) !important;
	border-color: var(--ev-primary) !important;
	color: var(--ev-ink) !important;
	outline: none !important;
}

body.ev-store-active .woocommerce-pagination .page-numbers.current,
body.ev-store-active ul.page-numbers .page-numbers.current,
body.ev-store-active .woocommerce-pagination span.page-numbers.current {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
	cursor: default;
}

body.ev-store-active .woocommerce-pagination .page-numbers.dots,
body.ev-store-active ul.page-numbers .page-numbers.dots {
	border-color: transparent !important;
	background: transparent !important;
	color: var(--ev-muted) !important;
	min-width: 28px;
	pointer-events: none;
}

body.ev-store-active .woocommerce-pagination .page-numbers.prev,
body.ev-store-active .woocommerce-pagination .page-numbers.next {
	min-width: 44px;
	font-size: 16px !important;
}

body.ev-store-active .woocommerce-breadcrumb,
body.ev-store-active .woocommerce-breadcrumb a {
	color: var(--ev-muted) !important;
	font-size: 13px;
}

body.ev-store-active .woocommerce-breadcrumb a:hover {
	color: var(--ev-primary) !important;
}

body.ev-store-active .woocommerce-result-count {
	color: var(--ev-muted);
	font-size: 13px;
}

/* —— Shop toolbar (sort + filters) —— */
.ev-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
}

.ev-shop-toolbar .woocommerce-result-count {
	flex: 1 1 100%;
	margin: 0 !important;
}

.ev-shop-toolbar .woocommerce-ordering,
.ev-shop-toolbar .ev-select--orderby {
	flex: 1 1 auto;
	margin: 0 !important;
	min-width: 0;
	max-width: none;
	width: auto;
}

.ev-shop-toolbar__filter {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--ev-primary);
	border-radius: 10px;
	background: #fff;
	color: var(--ev-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.ev-shop-toolbar__filter .ev-icon {
	color: var(--ev-primary);
}

.ev-filters-drawer__head {
	display: none;
}

.ev-filters-backdrop {
	display: none;
}

.ev-bottom-nav {
	display: none;
}

/* —— Mobile Gjirafa-style patterns —— */
@media (max-width: 900px) {
	.ev-shop-toolbar__filter {
		display: inline-flex;
	}

	.ev-filters-drawer__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 14px 16px;
		border-bottom: 1px solid var(--ev-border);
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 2;
	}

	.ev-filters-drawer__head strong {
		font-size: 16px;
		color: var(--ev-ink);
	}

	.ev-filters-drawer__close {
		width: 36px;
		height: 36px;
		border: 0;
		border-radius: 50%;
		background: var(--ev-bg-soft);
		color: var(--ev-ink);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.ev-shop__sidebar {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(100%, 360px);
		max-width: 100%;
		z-index: 1300;
		background: #fff;
		border: 0;
		border-radius: 0;
		padding: 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(105%);
		transition: transform 0.22s ease;
		box-shadow: -8px 0 28px rgba(15, 15, 16, 0.12);
	}

	.ev-shop__sidebar .ev-filters {
		border: 0;
		border-radius: 0;
		padding: 12px 16px 28px;
	}

	body.ev-filters-open .ev-shop__sidebar {
		transform: translateX(0);
	}

	.ev-filters-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1250;
		background: rgba(15, 15, 16, 0.45);
		border: 0;
		padding: 0;
		margin: 0;
		cursor: pointer;
	}

	.ev-filters-backdrop[hidden] {
		display: none !important;
	}

	body.ev-filters-open {
		overflow: hidden;
	}

	/* Horizontal scroll chips / tabs */
	.ev-subchips {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0;
		padding-bottom: 2px;
	}

	.ev-subchips-wrap {
		margin: 0 0 14px;
	}

	.ev-subchips::-webkit-scrollbar {
		display: none;
	}

	.ev-subchips__item {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	body.ev-store-active .woocommerce-tabs ul.tabs {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 4px;
	}

	body.ev-store-active .woocommerce-tabs ul.tabs::-webkit-scrollbar {
		display: none;
	}

	body.ev-store-active .woocommerce-tabs ul.tabs li {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	body.ev-store-active .woocommerce-breadcrumb {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 4px;
		margin: 0 0 12px !important;
		padding: 0;
		font-size: 12px !important;
		white-space: nowrap;
	}

	body.ev-store-active .woocommerce-breadcrumb::-webkit-scrollbar {
		display: none;
	}

	.ev-archive-hero {
		padding: 16px;
		margin-bottom: 12px;
	}

	.ev-archive-hero__title {
		font-size: 1.35rem;
	}

	.ev-archive-hero__count {
		display: none;
	}

	/* Sticky bottom nav */
	.ev-bottom-nav {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1200;
		background: #fff;
		border-top: 1px solid var(--ev-border);
		padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
		box-shadow: 0 -6px 20px rgba(15, 15, 16, 0.06);
	}

	.ev-bottom-nav__item {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		padding: 6px 2px;
		border: 0;
		background: transparent;
		color: var(--ev-muted);
		text-decoration: none !important;
		font: inherit;
		font-size: 10px;
		font-weight: 600;
		cursor: pointer;
		min-height: 48px;
	}

	.ev-bottom-nav__item .ev-icon {
		font-size: 20px;
		line-height: 1;
		color: inherit;
	}

	.ev-bottom-nav__item.is-active,
	.ev-bottom-nav__item:hover,
	.ev-bottom-nav__item:focus {
		color: var(--ev-primary) !important;
	}

	.ev-bottom-nav__badge {
		position: absolute;
		top: 2px;
		right: calc(50% - 18px);
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		border-radius: 999px;
		background: var(--ev-primary);
		color: #0f0f10;
		font-size: 10px;
		font-style: normal;
		font-weight: 700;
		line-height: 16px;
		text-align: center;
	}
}

/* —— WooCommerce notices (success / error / info) —— */
body.ev-store-active .ev-notice,
body.ev-store-active .woocommerce-message,
body.ev-store-active .woocommerce-info,
body.ev-store-active .woocommerce-error,
body.ev-store-active .woocommerce-noreviews,
body.ev-store-active p.no-comments {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 16px !important;
	padding: 14px 16px !important;
	border: 1px solid var(--ev-border) !important;
	border-top: 1px solid var(--ev-border) !important;
	border-top-color: var(--ev-border) !important;
	border-radius: var(--ev-radius-lg) !important;
	background: #fff !important;
	box-shadow: 0 4px 16px rgba(26, 18, 77, 0.04);
	color: var(--ev-text) !important;
	font-size: 14px !important;
	line-height: 1.45 !important;
	list-style: none !important;
	outline: none !important;
}

body.ev-store-active .ev-notice--success,
body.ev-store-active .woocommerce-message {
	background: var(--ev-primary-soft) !important;
	border-color: rgba(45, 220, 122, 0.45) !important;
	border-top-color: rgba(45, 220, 122, 0.45) !important;
}

body.ev-store-active .ev-notice--info,
body.ev-store-active .woocommerce-info {
	background: #f8fafc !important;
	border-color: #dbe3ee !important;
	border-top-color: #dbe3ee !important;
}

body.ev-store-active .ev-notice--error,
body.ev-store-active .woocommerce-error {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fff5f5 !important;
	border-color: #fecaca !important;
	border-top-color: #fecaca !important;
	padding: 10px 14px !important;
}

body.ev-store-active .woocommerce-error .ev-notice__item,
body.ev-store-active .woocommerce-error li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 4px 0;
	border: 0;
	background: transparent;
	color: #991b1b;
	font-size: 14px;
	line-height: 1.45;
}

body.ev-store-active .ev-notice__ico {
	display: inline-flex;
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--ev-primary);
}

body.ev-store-active .ev-notice--info .ev-notice__ico,
body.ev-store-active .woocommerce-info .ev-notice__ico {
	color: #64748b;
}

body.ev-store-active .ev-notice--error .ev-notice__ico,
body.ev-store-active .woocommerce-error .ev-notice__ico {
	color: #dc2626;
}

body.ev-store-active .ev-notice__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 14px;
}

body.ev-store-active .ev-notice__body a,
body.ev-store-active .woocommerce-message a,
body.ev-store-active .woocommerce-info a,
body.ev-store-active .woocommerce-error a {
	color: var(--ev-ink) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.ev-store-active .ev-notice__body a:hover,
body.ev-store-active .woocommerce-message a:hover,
body.ev-store-active .woocommerce-info a:hover,
body.ev-store-active .woocommerce-error a:hover {
	color: var(--ev-primary) !important;
}

body.ev-store-active .woocommerce-message .button,
body.ev-store-active .woocommerce-info .button,
body.ev-store-active .woocommerce-error .button,
body.ev-store-active .ev-notice .button {
	display: inline-flex;
	align-items: center;
	order: 2;
	margin: 0 !important;
	padding: 8px 14px !important;
	border-radius: 8px !important;
	border: 1px solid transparent !important;
	background: var(--ev-primary) !important;
	color: #0f0f10 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	float: none !important;
	line-height: 1.2 !important;
	white-space: nowrap;
}

body.ev-store-active .woocommerce-message .button:hover,
body.ev-store-active .woocommerce-info .button:hover,
body.ev-store-active .ev-notice .button:hover {
	background: var(--ev-primary-hover) !important;
	color: #0f0f10 !important;
}

/* Coupon / login toggles */
body.ev-store-active .woocommerce-form-coupon-toggle .woocommerce-info,
body.ev-store-active .woocommerce-form-login-toggle .woocommerce-info {
	margin-bottom: 12px !important;
}

body.ev-store-active .checkout_coupon,
body.ev-store-active .woocommerce-form-login {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 16px 18px;
	margin: 0 0 18px;
}

/* Cart / checkout coupon row */
body.ev-store-active .coupon {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

body.ev-store-active .coupon .input-text,
body.ev-store-active #coupon_code {
	min-width: 160px;
	flex: 1 1 160px;
	height: 42px;
	padding: 0 12px !important;
	border: 1px solid var(--ev-border) !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: var(--ev-text) !important;
	box-shadow: none !important;
}

body.ev-store-active .coupon .button,
body.ev-store-active .coupon button,
body.ev-store-active button[name="apply_coupon"],
body.ev-store-active input[name="apply_coupon"],
body.ev-store-active .woocommerce-cart .coupon .button,
body.ev-store-active .woocommerce button.button:not(.alt):not(.checkout-button):not([name="update_cart"]):not(#place_order) {
	appearance: none !important;
	-webkit-appearance: none !important;
	background: #fff !important;
	border: 1px solid var(--ev-border) !important;
	border-radius: 8px !important;
	color: var(--ev-ink) !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	padding: 10px 16px !important;
	height: 42px !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	text-shadow: none !important;
}

body.ev-store-active .coupon .button:hover,
body.ev-store-active button[name="apply_coupon"]:hover,
body.ev-store-active .coupon .ev-btn--outline:hover {
	background: var(--ev-primary-soft) !important;
	border-color: rgba(45, 220, 122, 0.55) !important;
	color: var(--ev-ink) !important;
}

body.ev-store-active button[name="update_cart"],
body.ev-store-active .woocommerce button[name="update_cart"],
body.ev-store-active .ev-btn--primary,
body.ev-store-active .checkout-button,
body.ev-store-active #place_order {
	background: var(--ev-primary) !important;
	border: 1px solid var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	box-shadow: none !important;
	text-shadow: none !important;
}

body.ev-store-active .woocommerce a.button,
body.ev-store-active .woocommerce button.button,
body.ev-store-active .woocommerce input.button,
body.ev-store-active .woocommerce #respond input#submit {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	box-shadow: none !important;
	text-shadow: none !important;
}

body.ev-store-active .woocommerce a.button:hover,
body.ev-store-active .woocommerce button.button:hover,
body.ev-store-active .woocommerce input.button:hover {
	background: var(--ev-primary-hover) !important;
	border-color: var(--ev-primary-hover) !important;
	color: #0f0f10 !important;
}

/* Keep outline coupon secondary */
body.ev-store-active .coupon .button,
body.ev-store-active button[name="apply_coupon"] {
	background: #fff !important;
	border-color: var(--ev-border) !important;
	color: var(--ev-ink) !important;
}

/* Form validation */
body.ev-store-active .woocommerce form .form-row.woocommerce-invalid input.input-text,
body.ev-store-active .woocommerce form .form-row.woocommerce-invalid select,
body.ev-store-active .woocommerce form .form-row.woocommerce-invalid textarea,
body.ev-store-active .woocommerce form .form-row.woocommerce-invalid .ev-select__btn {
	border-color: #f87171 !important;
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

body.ev-store-active .woocommerce form .form-row.woocommerce-validated input.input-text,
body.ev-store-active .woocommerce form .form-row.woocommerce-validated select,
body.ev-store-active .woocommerce form .form-row.woocommerce-validated textarea,
body.ev-store-active .woocommerce form .form-row.woocommerce-validated .ev-select__btn {
	border-color: rgba(45, 220, 122, 0.7) !important;
}

body.ev-store-active .woocommerce-error[role="alert"] + .checkout,
body.ev-store-active .woocommerce-NoticeGroup-checkout {
	margin-bottom: 8px;
}

body.ev-store-active .required {
	color: #dc2626 !important;
	font-weight: 600;
	text-decoration: none !important;
}

/* Password strength */
body.ev-store-active .woocommerce-password-strength {
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	margin-top: 8px;
}

body.ev-store-active .woocommerce-password-strength.short,
body.ev-store-active .woocommerce-password-strength.bad {
	background: #fff5f5;
	color: #991b1b;
}

body.ev-store-active .woocommerce-password-strength.good {
	background: #fffbeb;
	color: #92400e;
}

body.ev-store-active .woocommerce-password-strength.strong {
	background: var(--ev-primary-soft);
	color: #166534;
}

/* —— Order received / thank you —— */
body.ev-store-active .ev-order,
body.ev-store-active .woocommerce-order {
	max-width: 920px;
	margin: 0 auto;
}

body.ev-store-active .ev-order-hero {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 0 0 24px;
	padding: 22px 24px;
	border-radius: var(--ev-radius-lg);
	border: 1px solid rgba(45, 220, 122, 0.4);
	background: linear-gradient(135deg, #ecfdf5 0%, #fff 70%);
	box-shadow: var(--ev-shadow);
}

body.ev-store-active .ev-order-hero--error {
	border-color: #fecaca;
	background: linear-gradient(135deg, #fff5f5 0%, #fff 70%);
}

body.ev-store-active .ev-order-hero__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(45, 220, 122, 0.35);
	color: var(--ev-primary);
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(45, 220, 122, 0.15);
}

body.ev-store-active .ev-order-hero--error .ev-order-hero__ico {
	border-color: #fecaca;
	color: #dc2626;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

body.ev-store-active .ev-order-hero__eyebrow {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ev-muted);
}

body.ev-store-active .ev-order-hero__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ev-ink);
	line-height: 1.35;
}

body.ev-store-active .ev-order-hero__sub {
	margin: 8px 0 0;
	font-size: 14px;
	color: var(--ev-muted);
}

body.ev-store-active .ev-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

body.ev-store-active .ev-order-overview,
body.ev-store-active .woocommerce-order-overview {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	list-style: none !important;
	margin: 0 0 28px !important;
	padding: 0 !important;
	border: 0 !important;
}

body.ev-store-active .ev-order-overview li,
body.ev-store-active .woocommerce-order-overview li {
	margin: 0 !important;
	padding: 14px 16px !important;
	border: 1px solid var(--ev-border) !important;
	border-radius: var(--ev-radius-lg) !important;
	background: #fff;
	list-style: none !important;
}

body.ev-store-active .ev-order-overview__label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ev-muted);
}

body.ev-store-active .ev-order-overview strong,
body.ev-store-active .woocommerce-order-overview strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--ev-ink);
	line-height: 1.3;
}

body.ev-store-active .woocommerce-order-details,
body.ev-store-active .woocommerce-customer-details {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	padding: 20px 22px;
	margin: 0 0 20px;
}

body.ev-store-active .woocommerce-order-details__title,
body.ev-store-active .woocommerce-column__title,
body.ev-store-active .woocommerce-order-downloads__title {
	margin: 0 0 14px;
	font-size: 1.05rem;
	color: var(--ev-ink);
}

body.ev-store-active .woocommerce-table--order-details,
body.ev-store-active .woocommerce-table--order-downloads,
body.ev-store-active .shop_table.order_details {
	width: 100%;
	border-collapse: collapse;
	border: 0;
}

body.ev-store-active .woocommerce-table--order-details th,
body.ev-store-active .woocommerce-table--order-details td,
body.ev-store-active .shop_table.order_details th,
body.ev-store-active .shop_table.order_details td {
	padding: 12px 0;
	border-top: 1px solid var(--ev-border);
	border-bottom: 0;
	font-size: 14px;
	vertical-align: top;
}

body.ev-store-active .woocommerce-table--order-details thead th,
body.ev-store-active .shop_table.order_details thead th {
	border-top: 0;
	color: var(--ev-muted);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

body.ev-store-active .woocommerce-table--order-details tfoot th,
body.ev-store-active .woocommerce-table--order-details tfoot td,
body.ev-store-active .shop_table.order_details tfoot th,
body.ev-store-active .shop_table.order_details tfoot td {
	font-weight: 600;
}

body.ev-store-active .woocommerce-table--order-details tfoot tr:last-child th,
body.ev-store-active .woocommerce-table--order-details tfoot tr:last-child td {
	color: var(--ev-ink);
	font-size: 15px;
}

body.ev-store-active .woocommerce-customer-details .woocommerce-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

body.ev-store-active address {
	font-style: normal;
	line-height: 1.55;
	color: var(--ev-text);
	margin: 0;
}

body.ev-store-active .woocommerce-MyAccount-content .woocommerce-Message,
body.ev-store-active .woocommerce-MyAccount-content .woocommerce-message {
	margin-top: 4px;
}

body.ev-store-active .woocommerce-orders-table,
body.ev-store-active .woocommerce-MyAccount-orders {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--ev-border);
	border-radius: var(--ev-radius-lg);
	overflow: hidden;
	background: #fff;
}

body.ev-store-active .woocommerce-orders-table th,
body.ev-store-active .woocommerce-orders-table td,
body.ev-store-active .woocommerce-MyAccount-orders th,
body.ev-store-active .woocommerce-MyAccount-orders td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--ev-border);
	font-size: 14px;
	text-align: left;
}

body.ev-store-active .woocommerce-orders-table thead th,
body.ev-store-active .woocommerce-MyAccount-orders thead th {
	background: #f8fafc;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ev-muted);
}

body.ev-store-active .woocommerce-orders-table tr:last-child td,
body.ev-store-active .woocommerce-MyAccount-orders tr:last-child td {
	border-bottom: 0;
}

body.ev-store-active .woocommerce-orders-table .woocommerce-button,
body.ev-store-active .woocommerce-MyAccount-orders .button,
body.ev-store-active .woocommerce-order-details .button {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px !important;
	border-radius: 8px !important;
	background: var(--ev-primary-soft) !important;
	border: 1px solid rgba(45, 220, 122, 0.45) !important;
	color: var(--ev-ink) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
}

body.ev-store-active .woocommerce-orders-table .woocommerce-button:hover,
body.ev-store-active .woocommerce-MyAccount-orders .button:hover {
	background: var(--ev-primary) !important;
	color: #0f0f10 !important;
}

body.ev-store-active mark,
body.ev-store-active .woocommerce-badge,
body.ev-store-active .order-status {
	background: var(--ev-primary-soft);
	color: #166534;
	border-radius: 6px;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 600;
}

@media (max-width: 700px) {
	body.ev-store-active .ev-order-hero {
		flex-direction: column;
		padding: 18px;
	}

	body.ev-store-active .woocommerce-customer-details .woocommerce-columns {
		grid-template-columns: 1fr;
	}

	body.ev-store-active .woocommerce-message .button,
	body.ev-store-active .woocommerce-info .button,
	body.ev-store-active .ev-notice .button {
		display: inline-flex;
		margin: 10px 0 0;
	}
}

/* —— Floating toasts (right) —— */
.ev-toasts {
	position: fixed;
	top: 96px;
	right: 20px;
	z-index: 10050;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: min(380px, calc(100vw - 32px));
	pointer-events: none;
}

.ev-toast {
	pointer-events: auto;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 14px 14px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--ev-border);
	box-shadow: 0 16px 40px rgba(15, 15, 16, 0.14);
	transform: translateX(24px);
	opacity: 0;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.ev-toast.is-in {
	transform: translateX(0);
	opacity: 1;
}

.ev-toast.is-out {
	transform: translateX(24px);
	opacity: 0;
}

.ev-toast--success {
	border-color: rgba(45, 220, 122, 0.45);
	background: linear-gradient(135deg, #ecfdf5 0%, #fff 55%);
}

.ev-toast--error {
	border-color: #fecaca;
	background: linear-gradient(135deg, #fff5f5 0%, #fff 55%);
}

.ev-toast--info {
	border-color: #e5e7eb;
	background: #fff;
}

.ev-toast__ico {
	display: inline-flex;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(45, 220, 122, 0.35);
	color: var(--ev-primary);
	font-size: 18px;
}

.ev-toast--error .ev-toast__ico {
	border-color: #fecaca;
	color: #dc2626;
}

.ev-toast--info .ev-toast__ico {
	border-color: #e5e7eb;
	color: #64748b;
}

.ev-toast__body {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--ev-text);
	padding-top: 6px;
}

.ev-toast__body a {
	color: var(--ev-ink) !important;
	font-weight: 600;
}

.ev-toast__body a:hover {
	color: var(--ev-primary) !important;
}

.ev-toast__body .button,
.ev-toast__body a.button {
	display: inline-flex !important;
	align-items: center;
	margin: 8px 0 0 !important;
	padding: 8px 12px !important;
	border-radius: 8px !important;
	background: var(--ev-primary) !important;
	border: 1px solid var(--ev-primary) !important;
	color: #0f0f10 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: none !important;
}

.ev-toast__close {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--ev-muted);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	border-radius: 6px;
}

.ev-toast__close:hover {
	color: var(--ev-ink);
	background: var(--ev-bg-soft);
}

body.ev-store-active .woocommerce-message::before,
body.ev-store-active .woocommerce-info::before,
body.ev-store-active .woocommerce-error::before,
body.ev-store-active .woocommerce-message::after,
body.ev-store-active .woocommerce-info::after,
body.ev-store-active .woocommerce-error::after {
	display: none !important;
	content: none !important;
	background: none !important;
}

body.ev-store-active .woocommerce-notices-wrapper:empty,
body.ev-store-active .woocommerce-NoticeGroup:empty {
	display: none !important;
}

/* —— Checkout aesthetic —— */
.ev-checkout--grid,
.ev-checkout {
	max-width: 1180px;
	margin: 24px auto 48px;
	padding: 0 20px;
}

.ev-checkout__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 400px);
	gap: 24px;
	align-items: start;
}

.ev-checkout__card,
.ev-checkout__summary,
.ev-widget-checkout__main,
.ev-widget-checkout__sticky {
	background: #fff;
	border: 1px solid var(--ev-border);
	border-radius: 16px;
	padding: 22px 22px 18px;
	box-shadow: 0 8px 24px rgba(26, 18, 77, 0.04);
}

.ev-checkout__summary {
	position: sticky;
	top: 96px;
}

.ev-checkout__summary h3,
.ev-checkout #order_review_heading,
.ev-widget-checkout__heading {
	margin: 0 0 12px;
	font-size: 1rem;
	color: var(--ev-ink);
}

body.ev-store-active .ev-checkout .woocommerce-billing-fields > h3,
body.ev-store-active .ev-checkout .woocommerce-shipping-fields > h3,
body.ev-store-active .ev-checkout .woocommerce-additional-fields > h3,
body.ev-store-active .ev-widget-checkout .woocommerce-billing-fields > h3,
body.ev-store-active .ev-widget-checkout .woocommerce-shipping-fields > h3 {
	margin: 0 0 14px;
	font-size: 1rem;
	color: var(--ev-ink);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ev-border);
}

body.ev-store-active .ev-checkout .form-row label,
body.ev-store-active .ev-widget-checkout .form-row label {
	font-size: 11px;
	font-weight: 600;
	color: var(--ev-muted);
	margin-bottom: 5px;
}

.ev-checkout__details.col2-set {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.ev-checkout__details .col-1,
.ev-checkout__details .col-2,
.ev-widget-checkout .col2-set .col-1,
.ev-widget-checkout .col2-set .col-2 {
	width: 100% !important;
	float: none !important;
}

body.ev-store-active .ev-checkout .woocommerce-billing-fields > h3,
body.ev-store-active .ev-checkout .woocommerce-shipping-fields > h3,
body.ev-store-active .ev-checkout .woocommerce-additional-fields > h3,
body.ev-store-active .ev-widget-checkout .woocommerce-billing-fields > h3,
body.ev-store-active .ev-widget-checkout .woocommerce-shipping-fields > h3 {
	margin: 0 0 16px;
	font-size: 1.05rem;
	color: var(--ev-ink);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ev-border);
}

body.ev-store-active .ev-checkout .form-row,
body.ev-store-active .ev-widget-checkout .form-row {
	margin: 0 0 14px;
	padding: 0;
}

body.ev-store-active .ev-checkout .form-row label,
body.ev-store-active .ev-widget-checkout .form-row label {
	font-size: 12px;
	font-weight: 600;
	color: var(--ev-muted);
	margin-bottom: 6px;
}

body.ev-store-active .ev-checkout .input-text,
body.ev-store-active .ev-checkout textarea,
body.ev-store-active .ev-widget-checkout .input-text,
body.ev-store-active .ev-widget-checkout textarea,
body.ev-store-active .ev-checkout .select2-selection--single {
	border: 1px solid var(--ev-border) !important;
	border-radius: 10px !important;
	min-height: 44px;
	padding: 10px 12px !important;
	background: #fafafa !important;
	box-shadow: none !important;
	color: var(--ev-text) !important;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

body.ev-store-active .ev-checkout .input-text:focus,
body.ev-store-active .ev-checkout textarea:focus,
body.ev-store-active .ev-widget-checkout .input-text:focus,
body.ev-store-active .ev-widget-checkout textarea:focus {
	background: #fff !important;
	border-color: rgba(45, 220, 122, 0.7) !important;
	box-shadow: 0 0 0 3px rgba(45, 220, 122, 0.15) !important;
	outline: none !important;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin: 0 0 14px;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table th,
body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table td,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table th,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table td {
	padding: 8px 0;
	border-top: 1px solid var(--ev-border);
	font-size: 12.5px;
	line-height: 1.35;
	vertical-align: top;
	word-break: break-word;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table thead th,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table thead th {
	border-top: 0;
	color: var(--ev-muted);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding-bottom: 10px;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table .product-name,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table .product-name {
	width: 68%;
	padding-right: 10px;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table .product-total,
body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table tfoot td,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table .product-total,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table tfoot td {
	width: 32%;
	text-align: right !important;
	white-space: nowrap;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table tfoot th,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table tfoot th {
	text-align: left !important;
	font-weight: 600;
	color: var(--ev-muted);
	font-size: 12px;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table .shipping td,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table .shipping td {
	text-align: right !important;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table .shipping ul,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table .shipping ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

body.ev-store-active .ev-checkout .woocommerce-checkout-review-order-table .shipping label,
body.ev-store-active .ev-widget-checkout .woocommerce-checkout-review-order-table .shipping label {
	font-size: 12px;
	font-weight: 500;
	color: var(--ev-text);
}

body.ev-store-active .ev-checkout .order-total th,
body.ev-store-active .ev-checkout .order-total td,
body.ev-store-active .ev-widget-checkout .order-total th,
body.ev-store-active .ev-widget-checkout .order-total td {
	font-size: 14px;
	font-weight: 700;
	color: var(--ev-ink);
	padding-top: 12px;
}

/* Coupon / login toggles */
.ev-checkout-coupon,
.ev-checkout-login-toggle {
	max-width: 1180px;
	margin: 0 auto 14px;
	padding: 0 20px;
}

.ev-checkout-coupon__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--ev-border);
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	font: inherit;
	box-shadow: 0 4px 14px rgba(26, 18, 77, 0.04);
	text-decoration: none !important;
	color: inherit !important;
	box-sizing: border-box;
}

.ev-checkout-coupon__toggle:hover,
.ev-checkout-coupon__toggle:focus {
	border-color: rgba(45, 220, 122, 0.5);
	background: var(--ev-primary-soft);
	color: inherit !important;
}

.ev-checkout-coupon__ico {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
	flex-shrink: 0;
}

.ev-checkout-coupon__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ev-checkout-coupon__text strong {
	font-size: 14px;
	color: var(--ev-ink);
	font-weight: 700;
	font-style: normal;
}

.ev-checkout-coupon__text em {
	font-size: 12px;
	color: var(--ev-muted);
	font-style: normal;
}

.ev-checkout-coupon__chev {
	color: var(--ev-muted);
	transition: transform 0.15s;
}

.ev-checkout-coupon.is-open .ev-checkout-coupon__chev,
.ev-checkout-coupon__toggle[aria-expanded="true"] .ev-checkout-coupon__chev {
	transform: rotate(90deg);
}

.ev-checkout-coupon__form {
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
	padding: 14px;
	border: 1px solid var(--ev-border);
	border-radius: 14px;
	background: #fafafa;
}

.ev-checkout-coupon__form[style*="display: block"],
.ev-checkout-coupon__form[style*="display:block"],
.ev-checkout-coupon.is-open .ev-checkout-coupon__form {
	display: flex !important;
}

.ev-checkout-coupon__form[style*="display: none"],
.ev-checkout-coupon__form[style*="display:none"] {
	display: none !important;
}

.ev-checkout-coupon__form .input-text {
	flex: 1 1 180px;
	min-height: 42px;
}

/* Payment methods */
body.ev-store-active .ev-payment,
body.ev-store-active #payment {
	background: #f8fafc;
	border: 1px solid var(--ev-border);
	border-radius: 14px;
	padding: 14px;
	margin-top: 8px;
}

body.ev-store-active .wc_payment_methods {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

body.ev-store-active .wc_payment_method {
	margin: 0 0 8px;
	padding: 12px 14px;
	border: 1px solid var(--ev-border);
	border-radius: 12px;
	background: #fff;
}

body.ev-store-active .wc_payment_method > label {
	font-weight: 600;
	color: var(--ev-ink);
}

body.ev-store-active .payment_box {
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--ev-bg-soft);
	border: 1px solid var(--ev-border);
	font-size: 13px;
	color: var(--ev-muted);
}

body.ev-store-active .ev-pay-alert {
	display: flex !important;
	align-items: flex-start;
	gap: 12px;
	padding: 14px !important;
	border: 1px solid rgba(45, 220, 122, 0.35) !important;
	border-radius: 12px !important;
	background: var(--ev-primary-soft) !important;
	color: var(--ev-text);
	font-size: 13px;
	line-height: 1.45;
	list-style: none !important;
}

body.ev-store-active .ev-pay-alert__text {
	flex: 1;
	min-width: 0;
}

body.ev-store-active .ev-pay-alert__text .e-description,
body.ev-store-active .ev-pay-alert .woocommerce-no-available-payment-methods-message {
	display: inline;
	font-size: inherit;
	color: inherit;
}

body.ev-store-active .ev-pay-alert__ico {
	color: var(--ev-primary);
	flex-shrink: 0;
}

body.ev-store-active #place_order {
	width: 100%;
	margin-top: 8px;
	padding: 14px 18px !important;
	font-size: 15px !important;
}

body.ev-store-active .woocommerce-privacy-policy-text {
	font-size: 12px;
	color: var(--ev-muted);
	line-height: 1.5;
	margin-bottom: 10px;
}

body.ev-store-active .woocommerce-shipping-methods {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.ev-store-active .woocommerce-shipping-methods li {
	padding: 8px 0;
}

@media (max-width: 900px) {
	.ev-toasts {
		top: auto;
		bottom: 84px;
		right: 12px;
		left: 12px;
		width: auto;
	}

	.ev-toast {
		transform: translateY(16px);
	}

	.ev-toast.is-in {
		transform: translateY(0);
	}

	.ev-toast.is-out {
		transform: translateY(16px);
	}

	.ev-checkout__layout {
		grid-template-columns: 1fr;
	}

	.ev-checkout__summary {
		position: static;
	}
}

/* —— Checkout fields: hide state / county —— */
body.ev-store-active #billing_state_field,
body.ev-store-active #shipping_state_field,
body.ev-store-active .woocommerce-billing-fields #billing_state_field,
body.ev-store-active .woocommerce-shipping-fields #shipping_state_field,
body.ev-store-active .ev-field-hidden,
body.ev-store-active .form-row.ev-field-hidden,
body.ev-store-active .wc-block-components-address-form__state,
body.ev-store-active .wc-block-components-address-form .wc-block-components-state-input,
body.ev-store-active .wc-block-checkout__billing-fields .wc-block-components-address-form__state,
body.ev-store-active .wc-block-checkout__shipping-fields .wc-block-components-address-form__state {
	display: none !important;
}

/* —— Classic checkout form polish —— */
body.ev-store-active.ev-checkout-fields .ev-checkout,
body.ev-store-active.ev-checkout-page .ev-checkout,
body.ev-store-active .ev-widget-checkout {
	font-family: var(--ev-font);
}

body.ev-store-active .ev-checkout .form-row-first,
body.ev-store-active .ev-checkout .form-row-last,
body.ev-store-active .ev-widget-checkout .form-row-first,
body.ev-store-active .ev-widget-checkout .form-row-last {
	width: 48% !important;
	float: left;
	clear: none;
}

body.ev-store-active .ev-checkout .form-row-last,
body.ev-store-active .ev-widget-checkout .form-row-last {
	float: right;
}

body.ev-store-active .ev-checkout .form-row-wide,
body.ev-store-active .ev-widget-checkout .form-row-wide {
	width: 100% !important;
	clear: both;
	float: none;
}

body.ev-store-active .ev-checkout .woocommerce-billing-fields__field-wrapper::after,
body.ev-store-active .ev-checkout .woocommerce-shipping-fields__field-wrapper::after,
body.ev-store-active .ev-widget-checkout .woocommerce-billing-fields__field-wrapper::after,
body.ev-store-active .ev-widget-checkout .woocommerce-shipping-fields__field-wrapper::after {
	content: "";
	display: table;
	clear: both;
}

body.ev-store-active .ev-checkout .select2-container .select2-selection--single,
body.ev-store-active .ev-widget-checkout .select2-container .select2-selection--single {
	height: 44px !important;
	border: 1px solid var(--ev-border) !important;
	border-radius: 10px !important;
	background: #fafafa !important;
}

body.ev-store-active .ev-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px !important;
	padding-left: 12px !important;
	color: var(--ev-text) !important;
}

body.ev-store-active .ev-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px !important;
}

/* Phone required marker */
body.ev-store-active #billing_phone_field label .optional,
body.ev-store-active #shipping_phone_field label .optional {
	display: none !important;
}

/* —— WooCommerce Blocks checkout (Contact / Order summary UI) —— */
body.ev-store-active .wp-block-woocommerce-checkout,
body.ev-store-active .wc-block-checkout,
body.ev-store-active .wc-block-components-sidebar-layout {
	max-width: 1180px;
	margin: 0 auto;
	font-family: var(--ev-font);
}

body.ev-store-active .wc-block-checkout__main,
body.ev-store-active .wc-block-components-main {
	padding-right: 12px;
}

body.ev-store-active .wc-block-checkout h2,
body.ev-store-active .wc-block-components-checkout-step__heading,
body.ev-store-active .wc-block-components-title {
	color: var(--ev-ink) !important;
	font-weight: 700 !important;
	letter-spacing: -0.01em;
}

body.ev-store-active .wc-block-components-checkout-step {
	border: 1px solid var(--ev-border);
	border-radius: 16px;
	padding: 20px 22px !important;
	margin: 0 0 16px !important;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 18, 77, 0.04);
}

body.ev-store-active .wc-block-components-checkout-step__container {
	margin: 0;
}

body.ev-store-active .wc-block-components-text-input input,
body.ev-store-active .wc-block-components-textarea textarea,
body.ev-store-active .wc-block-components-combobox input,
body.ev-store-active .wc-block-components-select select,
body.ev-store-active .wc-block-components-address-form input,
body.ev-store-active .wc-block-components-address-form select {
	border: 1px solid var(--ev-border) !important;
	border-radius: 10px !important;
	background: #fafafa !important;
	min-height: 48px !important;
	box-shadow: none !important;
	font-size: 14px !important;
	color: var(--ev-text) !important;
}

body.ev-store-active .wc-block-components-text-input.is-active input,
body.ev-store-active .wc-block-components-text-input input:focus,
body.ev-store-active .wc-block-components-textarea textarea:focus,
body.ev-store-active .wc-block-components-address-form input:focus {
	background: #fff !important;
	border-color: rgba(45, 220, 122, 0.75) !important;
	box-shadow: 0 0 0 3px rgba(45, 220, 122, 0.16) !important;
	outline: none !important;
}

body.ev-store-active .wc-block-components-text-input label,
body.ev-store-active .wc-block-components-textarea label {
	color: var(--ev-muted) !important;
}

body.ev-store-active .wc-block-components-sidebar,
body.ev-store-active .wc-block-checkout__sidebar {
	border: 1px solid var(--ev-border);
	border-radius: 16px;
	padding: 20px !important;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 18, 77, 0.04);
}

body.ev-store-active .wc-block-components-order-summary,
body.ev-store-active .wc-block-components-totals-wrapper {
	border: 0 !important;
}

body.ev-store-active .wc-block-components-panel,
body.ev-store-active .wc-block-components-totals-coupon {
	border: 1px solid var(--ev-border) !important;
	border-radius: 12px !important;
	background: #fafafa !important;
}

body.ev-store-active .wc-block-components-notice-banner,
body.ev-store-active .wc-block-components-validation-error,
body.ev-store-active .wc-block-checkout .wc-block-components-notice-banner.is-error {
	border: 1px solid rgba(45, 220, 122, 0.4) !important;
	border-left: 1px solid rgba(45, 220, 122, 0.4) !important;
	border-radius: 12px !important;
	background: var(--ev-primary-soft) !important;
	color: var(--ev-text) !important;
	box-shadow: none !important;
}

body.ev-store-active .wc-block-components-notice-banner.is-error {
	border-color: #fecaca !important;
	background: #fff5f5 !important;
}

body.ev-store-active .wc-block-components-notice-banner__content,
body.ev-store-active .wc-block-components-notice-banner svg {
	color: inherit !important;
	fill: currentColor;
}

body.ev-store-active .wc-block-components-checkout-place-order-button,
body.ev-store-active .wc-block-components-button:not(.is-link),
body.ev-store-active button.wc-block-components-checkout-place-order-button {
	background: var(--ev-primary) !important;
	border: 1px solid var(--ev-primary) !important;
	color: #0f0f10 !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	box-shadow: none !important;
	min-height: 48px !important;
}

body.ev-store-active .wc-block-components-checkout-place-order-button:hover,
body.ev-store-active .wc-block-components-button:not(.is-link):hover {
	background: var(--ev-primary-hover) !important;
	border-color: var(--ev-primary-hover) !important;
	color: #0f0f10 !important;
}

body.ev-store-active .wc-block-components-checkbox .wc-block-components-checkbox__label,
body.ev-store-active .wc-block-checkout__terms {
	font-size: 13px;
	color: var(--ev-muted);
}

body.ev-store-active .wc-block-components-radio-control-accordion-option,
body.ev-store-active .wc-block-components-radio-control__option {
	border: 1px solid var(--ev-border) !important;
	border-radius: 12px !important;
	background: #fff !important;
	margin-bottom: 8px !important;
	padding: 12px !important;
}

body.ev-store-active .wc-block-components-radio-control__input:checked + .wc-block-components-radio-control__option-layout,
body.ev-store-active .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border-color: rgba(45, 220, 122, 0.55) !important;
	background: var(--ev-primary-soft) !important;
}

/* Kill Elementor / theme pink on checkout buttons */
body.ev-store-active.woocommerce-checkout .button,
body.ev-store-active.woocommerce-checkout button[type="submit"],
body.ev-store-active.woocommerce-checkout #place_order,
body.ev-store-active .woocommerce-checkout #place_order {
	background: var(--ev-primary) !important;
	border-color: var(--ev-primary) !important;
	color: #0f0f10 !important;
}

@media (max-width: 700px) {
	body.ev-store-active .ev-checkout .form-row-first,
	body.ev-store-active .ev-checkout .form-row-last,
	body.ev-store-active .ev-widget-checkout .form-row-first,
	body.ev-store-active .ev-widget-checkout .form-row-last {
		width: 100% !important;
		float: none;
	}
}

/* —— Mini-cart drawer (right) —— */
.ev-drawer[hidden] { display: none !important; }

.ev-drawer.is-open {
	display: block !important;
}

.ev-drawer__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 15, 16, 0.4);
	z-index: 10060;
}

.ev-drawer__panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(400px, 100vw);
	background: #fff;
	z-index: 10061;
	display: flex;
	flex-direction: column;
	box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
	transform: translateX(100%);
	transition: transform 0.28s ease;
}

.ev-drawer.is-open .ev-drawer__panel {
	transform: translateX(0);
}

.ev-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--ev-border);
}

.ev-drawer__head h2 {
	margin: 0;
	font-size: 1rem;
	color: var(--ev-ink);
}

.ev-drawer__close {
	appearance: none;
	border: 0;
	background: var(--ev-bg-soft);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--ev-ink);
}

.ev-drawer__close:hover {
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
}

.ev-drawer__body {
	flex: 1;
	overflow: auto;
	padding: 12px 16px 20px;
}

body.ev-drawer-open { overflow: hidden; }

.ev-mini__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ev-mini__item {
	display: grid;
	grid-template-columns: 64px 1fr 24px;
	gap: 10px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px solid var(--ev-border);
}

.ev-mini__thumb {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background: #fafafa;
	border: 1px solid var(--ev-border);
}

.ev-mini__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ev-mini__name {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ev-ink) !important;
	line-height: 1.35;
	margin-bottom: 4px;
}

.ev-mini__qty,
.ev-mini__price {
	display: block;
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-mini__price {
	color: var(--ev-ink);
	font-weight: 600;
	margin-top: 2px;
}

.ev-mini__remove {
	color: var(--ev-muted) !important;
	font-size: 20px;
	line-height: 1;
	text-decoration: none !important;
	text-align: center;
}

.ev-mini__remove:hover {
	color: #dc2626 !important;
}

.ev-mini__footer {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--ev-border);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ev-mini__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.ev-mini__subtotal strong {
	font-size: 15px;
	color: var(--ev-ink);
}

.ev-mini__hint {
	margin: 0 0 4px;
	font-size: 12px;
	color: var(--ev-muted);
}

.ev-mini__empty {
	text-align: center;
	padding: 40px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.ev-mini__empty-ico {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ev-primary-soft);
	color: var(--ev-primary);
	margin-bottom: 4px;
}

.ev-mini__empty strong {
	font-size: 15px;
	color: var(--ev-ink);
}

.ev-mini__empty p {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--ev-muted);
}

/* —— Cart page: lighter table, smaller type —— */
body.ev-store-active.woocommerce-cart .shop_table.cart,
body.ev-store-active .ev-cart .shop_table,
body.ev-store-active .ev-widget-cart .shop_table {
	border: 0 !important;
	border-collapse: collapse;
	background: transparent !important;
	padding: 0 !important;
	font-size: 13px;
}

body.ev-store-active.woocommerce-cart .shop_table.cart th,
body.ev-store-active.woocommerce-cart .shop_table.cart td,
body.ev-store-active .ev-cart .shop_table th,
body.ev-store-active .ev-cart .shop_table td,
body.ev-store-active .ev-widget-cart .shop_table th,
body.ev-store-active .ev-widget-cart .shop_table td {
	border: 0 !important;
	border-bottom: 1px solid var(--ev-border) !important;
	padding: 12px 8px !important;
	font-size: 13px;
	background: transparent !important;
	vertical-align: middle;
}

body.ev-store-active.woocommerce-cart .shop_table.cart thead th,
body.ev-store-active .ev-cart .shop_table thead th,
body.ev-store-active .ev-widget-cart .shop_table thead th {
	font-size: 11px !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ev-muted) !important;
	border-bottom: 1px solid var(--ev-border) !important;
	padding-top: 0 !important;
}

body.ev-store-active.woocommerce-cart .shop_table.cart .actions,
body.ev-store-active .ev-cart .shop_table .actions,
body.ev-store-active .ev-widget-cart .shop_table .actions {
	border-bottom: 0 !important;
	padding-top: 16px !important;
}

body.ev-store-active .ev-cart,
body.ev-store-active .ev-widget-cart__main {
	font-size: 13px;
}

body.ev-store-active .ev-cart .product-name a,
body.ev-store-active .ev-widget-cart .product-name a {
	font-size: 13px;
	font-weight: 600;
	color: var(--ev-ink) !important;
}

body.ev-store-active .cart_totals h2,
body.ev-store-active .ev-widget-cart .cart_totals h2 {
	font-size: 1rem !important;
	margin: 0 0 12px !important;
}

body.ev-store-active .cart_totals .shop_table th,
body.ev-store-active .cart_totals .shop_table td {
	font-size: 13px !important;
	padding: 10px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid var(--ev-border) !important;
	background: transparent !important;
}

body.ev-store-active .cart_totals .shop_table {
	border: 0 !important;
}

body.ev-store-active .ev-cart-page .woocommerce,
body.ev-store-active .ev-widget-cart__main,
body.ev-store-active .ev-widget-cart__sticky {
	box-shadow: none;
}

body.ev-store-active .ev-cart .coupon .input-text,
body.ev-store-active .ev-widget-cart .coupon .input-text {
	font-size: 13px;
	min-height: 40px;
}

body.ev-store-active .ev-cart .quantity .qty,
body.ev-store-active .ev-widget-cart .quantity .qty {
	font-size: 13px;
	width: 56px;
	min-height: 36px;
	border-radius: 8px;
	border: 1px solid var(--ev-border);
}

@media (max-width: 700px) {
	.ev-drawer__panel {
		width: 100vw;
	}

	body.ev-store-active.woocommerce-cart .shop_table.cart td::before {
		font-size: 11px;
		color: var(--ev-muted);
	}
}
