/*
 * SulavMart theme stylesheet.
 * Mobile-first: base rules target the smallest screens; larger
 * breakpoints are added with min-width media queries. No CSS
 * framework — plain CSS with custom properties keeps the payload
 * small for shoppers on cellular connections.
 */

/* ------------------------------------------------------------------ */
/* 1. Design tokens                                                   */
/* ------------------------------------------------------------------ */
:root {
	--color-bg: #ffffff;
	--color-surface: #f6f8f5;
	--color-surface-alt: #eef2ea;
	--color-text: #16241c;
	--color-muted: #5c6b63;
	--color-border: #e3e8e0;
	--color-primary: #1f7a4d;
	--color-primary-dark: #14512f;
	--color-primary-contrast: #ffffff;
	--color-accent: #e8623a;
	--color-danger: #c62828;
	--color-success: #1f7a4d;

	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-7: 48px;
	--space-8: 64px;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;

	--shadow-sm: 0 1px 2px rgba(22, 36, 28, 0.06);
	--shadow-md: 0 4px 16px rgba(22, 36, 28, 0.10);
	--shadow-lg: 0 12px 32px rgba(22, 36, 28, 0.14);

	--container-max: 1280px;
	--touch-target: 44px;
	--header-height: 56px;
}

/* ------------------------------------------------------------------ */
/* 2. Reset & base                                                    */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.5;
	font-size: 16px;
}

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

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

h1, h2, h3, h4 {
	line-height: 1.2;
	margin: 0 0 var(--space-3);
}

p {
	margin: 0 0 var(--space-3);
}

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

.skip-link:focus {
	position: fixed;
	top: var(--space-2);
	left: var(--space-2);
	width: auto;
	height: auto;
	padding: var(--space-2) var(--space-3);
	background: var(--color-primary);
	color: var(--color-primary-contrast);
	z-index: 10000;
	border-radius: var(--radius-sm);
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4);
}

.container--narrow {
	max-width: 760px;
}

.section-title {
	font-size: 1.375rem;
	margin-bottom: var(--space-4);
}

/* ------------------------------------------------------------------ */
/* 3. Buttons                                                         */
/* ------------------------------------------------------------------ */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--touch-target);
	padding: 0 var(--space-4);
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.9375rem;
	background: var(--color-primary);
	color: var(--color-primary-contrast);
	transition: background-color 0.15s ease, transform 0.05s ease;
}

.button:active {
	transform: scale(0.98);
}

.button--primary {
	background: var(--color-primary);
	color: var(--color-primary-contrast);
}

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

.button--secondary {
	background: var(--color-surface-alt);
	color: var(--color-text);
}

.button--large {
	min-height: 52px;
	padding: 0 var(--space-6);
	font-size: 1rem;
}

.button--small {
	min-height: 36px;
	padding: 0 var(--space-3);
	font-size: 0.8125rem;
}

/* WooCommerce core add-to-cart buttons inherit our button look. */
.add_to_cart_button,
.single_add_to_cart_button,
a.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--touch-target);
	border-radius: var(--radius-md);
	background: var(--color-primary);
	color: var(--color-primary-contrast) !important;
	border: none;
	font-weight: 600;
	padding: 0 var(--space-4);
}

/* ------------------------------------------------------------------ */
/* 4. Trust bar + header                                              */
/* ------------------------------------------------------------------ */
.sulavmart-trust-bar {
	background: var(--color-primary-dark);
	color: var(--color-primary-contrast);
	font-size: 0.75rem;
	overflow-x: auto;
	white-space: nowrap;
}

.sulavmart-trust-bar__inner {
	display: flex;
	gap: var(--space-5);
	padding: var(--space-2) var(--space-4);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.site-header__row {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-4);
	min-height: var(--header-height);
}

.site-branding {
	flex: 0 0 auto;
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
}

.mobile-nav-toggle {
	flex: 0 0 auto;
	width: var(--touch-target);
	height: var(--touch-target);
	border: none;
	background: transparent;
	position: relative;
}

.mobile-nav-toggle__bars,
.mobile-nav-toggle__bars::before,
.mobile-nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	height: 2px;
	background: var(--color-text);
}

.mobile-nav-toggle__bars {
	top: 50%;
	transform: translateY(-1px);
}

.mobile-nav-toggle__bars::before {
	top: -7px;
}

.mobile-nav-toggle__bars::after {
	top: 7px;
}

.site-header__search {
	flex: 1 1 auto;
	position: relative;
	min-width: 0;
}

.sulavmart-live-search__input {
	width: 100%;
	min-height: var(--touch-target);
	padding: 0 var(--space-4);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	font-size: 0.9375rem;
}

.sulavmart-live-search__input:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 1px;
}

.sulavmart-live-search__results {
	position: absolute;
	top: calc(100% + var(--space-2));
	left: 0;
	right: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	max-height: 70vh;
	overflow-y: auto;
	z-index: 200;
}

.sulavmart-live-search__result {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3) var(--space-4);
	border-bottom: 1px solid var(--color-border);
}

.sulavmart-live-search__result:last-child {
	border-bottom: none;
}

.sulavmart-live-search__result img {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	object-fit: cover;
	flex: 0 0 auto;
}

.sulavmart-live-search__empty,
.sulavmart-live-search__loading {
	padding: var(--space-4);
	color: var(--color-muted);
	font-size: 0.875rem;
}

.site-header__actions {
	flex: 0 0 auto;
	display: flex;
	gap: var(--space-1);
}

.header-icon-link {
	position: relative;
	width: var(--touch-target);
	height: var(--touch-target);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	border-radius: 8px;
	background: var(--color-accent);
	color: #fff;
	font-size: 0.625rem;
	line-height: 16px;
	text-align: center;
}

.site-header__primary-nav {
	display: none;
}

.mobile-nav {
	border-top: 1px solid var(--color-border);
	padding: var(--space-2) var(--space-4) var(--space-4);
}

.mobile-nav[hidden] {
	display: none;
}

.mobile-menu li,
.primary-menu li {
	padding: var(--space-2) 0;
}

.primary-menu {
	display: flex;
	gap: var(--space-5);
}

/* ------------------------------------------------------------------ */
/* 5. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
	background: var(--color-surface);
	padding: var(--space-7) 0;
}

.hero__inner {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.hero__title {
	font-size: 1.75rem;
}

.hero__subtitle {
	color: var(--color-muted);
	max-width: 480px;
}

.hero__media img {
	border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------------ */
/* 6. Category grid                                                    */
/* ------------------------------------------------------------------ */
.category-grid {
	padding: var(--space-6) 0;
}

.category-grid__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
}

.category-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	min-height: var(--touch-target);
}

.category-card__media {
	aspect-ratio: 3 / 2;
	background: var(--color-surface-alt);
	display: block;
}

.category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-card__name {
	padding: var(--space-3);
	font-weight: 600;
	font-size: 0.9375rem;
}

/* ------------------------------------------------------------------ */
/* 7. Product grid / cards                                            */
/* ------------------------------------------------------------------ */
.sulavmart-product-grid,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: var(--space-4) !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sulavmart-product-grid--compact {
	grid-template-columns: repeat(2, 1fr) !important;
}

.sulavmart-product-card,
ul.products li.product {
	list-style: none;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.sulavmart-product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-surface);
}

.sulavmart-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sulavmart-product-card__body {
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.sulavmart-product-card__title-link {
	font-size: 0.875rem;
	font-weight: 600;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.sulavmart-product-card .price {
	color: var(--color-primary);
	font-weight: 700;
}

.sulavmart-badge {
	position: absolute;
	top: var(--space-2);
	left: var(--space-2);
	background: var(--color-accent);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: var(--space-1) var(--space-2);
	border-radius: var(--radius-sm);
	z-index: 2;
}

.sulavmart-favorite-button {
	position: absolute;
	top: var(--space-2);
	right: var(--space-2);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.sulavmart-favorite-button[aria-pressed="true"] {
	color: var(--color-accent);
}

.sulavmart-reorder-card {
	position: relative;
	padding: var(--space-3);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.sulavmart-reorder-card__qty {
	font-size: 0.75rem;
	color: var(--color-muted);
}

/* ------------------------------------------------------------------ */
/* 8. Trust signals section                                            */
/* ------------------------------------------------------------------ */
.trust-signals {
	background: var(--color-surface);
	padding: var(--space-7) 0;
}

.trust-signals__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
	text-align: center;
}

.trust-signals__item h3 {
	font-size: 1rem;
	margin: var(--space-2) 0 var(--space-1);
}

.trust-signals__item p {
	color: var(--color-muted);
	font-size: 0.875rem;
}

/* ------------------------------------------------------------------ */
/* 9. Sticky add-to-cart bar                                           */
/* ------------------------------------------------------------------ */
.sticky-add-to-cart {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100px;
	background: var(--color-bg);
	border-top: 1px solid var(--color-border);
	box-shadow: var(--shadow-lg);
	z-index: 500;
	transition: bottom 0.2s ease;
	padding: var(--space-2) var(--space-4);
	padding-bottom: calc(var(--space-2) + env(safe-area-inset-bottom));
}

.sticky-add-to-cart.is-visible {
	bottom: 0;
}

.sticky-add-to-cart__inner {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.sticky-add-to-cart__inner img {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	object-fit: cover;
}

.sticky-add-to-cart__info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.sticky-add-to-cart__name {
	font-size: 0.8125rem;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/* 10. Mini-cart drawer                                                */
/* ------------------------------------------------------------------ */
.widget_shopping_cart_content,
.sulavmart-mini-cart-list {
	max-height: 50vh;
	overflow-y: auto;
}

.sulavmart-mini-cart-item {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: var(--space-3);
	align-items: center;
	padding: var(--space-3) 0;
	border-bottom: 1px solid var(--color-border);
}

.sulavmart-mini-cart-item__thumb img {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	object-fit: cover;
}

.sulavmart-mini-cart-item__name {
	font-size: 0.875rem;
	font-weight: 600;
	display: block;
}

.sulavmart-mini-cart-item__qty-price {
	display: block;
	font-size: 0.75rem;
	color: var(--color-muted);
}

.sulavmart-mini-cart-delivery-note {
	background: var(--color-surface);
	border-radius: var(--radius-sm);
	padding: var(--space-3);
	font-size: 0.8125rem;
	margin: var(--space-3) 0;
}

/* ------------------------------------------------------------------ */
/* 11. Checkout: delivery slot & pickup                                */
/* ------------------------------------------------------------------ */
.sulavmart-fulfillment-method {
	display: flex;
	gap: var(--space-3);
	margin-bottom: var(--space-4);
}

.sulavmart-fulfillment-method__option {
	flex: 1 1 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-3);
	min-height: var(--touch-target);
	display: flex;
	align-items: center;
	gap: var(--space-2);
	cursor: pointer;
}

.sulavmart-fulfillment-method__option:has(input:checked) {
	border-color: var(--color-primary);
	background: var(--color-surface);
}

.sulavmart-delivery-slot-select {
	width: 100%;
	min-height: var(--touch-target);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 0 var(--space-3);
	background: var(--color-bg);
}

.sulavmart-slot-unavailable {
	color: var(--color-danger);
	font-size: 0.8125rem;
}

/* ------------------------------------------------------------------ */
/* 12. Footer                                                          */
/* ------------------------------------------------------------------ */
.site-footer {
	background: var(--color-primary-dark);
	color: rgba(255, 255, 255, 0.9);
	padding-top: var(--space-6);
}

.site-footer__trust {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4) var(--space-6);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-size: 0.875rem;
}

.site-footer__columns {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-4);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: var(--space-6);
}

.footer-widget-title {
	font-size: 0.9375rem;
	margin-bottom: var(--space-3);
}

.site-footer__bottom {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-5) var(--space-4);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------------------------ */
/* 13. Icons (inline currentColor mask backgrounds, no icon font)      */
/* ------------------------------------------------------------------ */
.icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.icon-account { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-5 0-9 2.5-9 5.5V22h18v-2.5c0-3-4-5.5-9-5.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-5 0-9 2.5-9 5.5V22h18v-2.5c0-3-4-5.5-9-5.5z'/%3E%3C/svg%3E"); }
.icon-heart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.5 8 2 4.5 5.6 4a5 5 0 0 1 6.4 2.3A5 5 0 0 1 18.4 4C22 4.5 23.5 8 22 11.7 19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.5 8 2 4.5 5.6 4a5 5 0 0 1 6.4 2.3A5 5 0 0 1 18.4 4C22 4.5 23.5 8 22 11.7 19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E"); }
.icon-cart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h2l2.5 12h9L20 8H7'/%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h2l2.5 12h9L20 8H7'/%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3C/svg%3E"); }
.icon-truck { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M1 6h13v9H1zM14 10h4l4 4v1h-8zM4 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM18 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M1 6h13v9H1zM14 10h4l4 4v1h-8zM4 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM18 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E"); }
.icon-leaf { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C10 4 4 10 4 20c10 0 16-6 16-16z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C10 4 4 10 4 20c10 0 16-6 16-16z'/%3E%3C/svg%3E"); }
.icon-lock { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 1 1 8 0v4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 1 1 8 0v4'/%3E%3C/svg%3E"); }
.icon-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h4l1 5-3 2a12 12 0 0 0 6 6l2-3 5 1v4a2 2 0 0 1-2 2C10 20 4 14 4 5a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h4l1 5-3 2a12 12 0 0 0 6 6l2-3 5 1v4a2 2 0 0 1-2 2C10 20 4 14 4 5a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); }
.icon-return { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4v6h6M4 10a8 8 0 1 1 2.3 5.7'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4v6h6M4 10a8 8 0 1 1 2.3 5.7'/%3E%3C/svg%3E"); }

/* ------------------------------------------------------------------ */
/* 14. Breadcrumbs, forms, misc                                        */
/* ------------------------------------------------------------------ */
.sulavmart-breadcrumbs {
	font-size: 0.8125rem;
	color: var(--color-muted);
	padding: var(--space-3) 0;
}

.sulavmart-filter-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3) 0;
	flex-wrap: wrap;
}

input,
select,
textarea {
	font-family: inherit;
	font-size: 0.9375rem;
}

/* ------------------------------------------------------------------ */
/* 15. Breakpoints                                                     */
/* ------------------------------------------------------------------ */
@media (min-width: 600px) {
	.category-grid__list {
		grid-template-columns: repeat(4, 1fr);
	}

	.sulavmart-product-grid,
	ul.products {
		grid-template-columns: repeat(3, 1fr) !important;
	}

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

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

@media (min-width: 768px) {
	.hero__inner {
		flex-direction: row;
		align-items: center;
	}

	.hero__copy,
	.hero__media {
		flex: 1 1 50%;
	}

	.hero__title {
		font-size: 2.25rem;
	}

	.site-footer__columns {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.mobile-nav-toggle,
	#mobile-nav {
		display: none;
	}

	.site-header__primary-nav {
		display: block;
	}

	.sulavmart-product-grid,
	ul.products {
		grid-template-columns: repeat(4, 1fr) !important;
	}

	.category-grid__list {
		grid-template-columns: repeat(8, 1fr);
	}

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

	.site-footer__trust {
		grid-template-columns: repeat(4, 1fr);
	}
}
