/*
Theme Name: Omorfo Shop
Theme URI: https://omorfotechlabs.co.zw
Author: Omorfo Tech Labs
Author URI: https://omorfotechlabs.co.zw
Description: Custom storefront theme for Omorfo Shop, the e-commerce site for Omorfo Tech Labs (omorfotechlabs.co.zw). Built on the brand system from the main site — Poppins/Lato type, the red lightbulb-and-circuit mark, and the dark, red-accented palette.
Version: 0.2.0
Requires at least: 6.4
Requires PHP: 7.4
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: omorfo-shop
Tags: e-commerce, dark, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	/* Brand palette — carried over from omorfotechlabs.co.zw scss/_variables.scss */
	--omorfo-black: #000000;
	--omorfo-surface: #171717;
	--omorfo-surface-alt: #2c2c2c;
	--omorfo-primary: #df0000;
	--omorfo-primary-hover: #ff1a1a;
	--omorfo-danger: #ff0000;
	--omorfo-accent-sky: #87ceeb;
	--omorfo-accent-cyan: #4cd3e3;
	--omorfo-info: #38a4ff;
	--omorfo-warning: #f4e700;
	--omorfo-white: #ffffff;
	--omorfo-offwhite: #f9f9ff;

	/* Semantic text/surface roles */
	--omorfo-text: #ffffff;
	--omorfo-text-muted: rgba(255, 255, 255, 0.65);
	--omorfo-text-faint: rgba(255, 255, 255, 0.45);
	--omorfo-border: rgba(255, 255, 255, 0.1);
	--omorfo-border-strong: rgba(255, 255, 255, 0.2);

	/* Typography */
	--omorfo-font-heading: "Poppins", Arial, sans-serif;
	--omorfo-font-body: "Poppins", Arial, sans-serif;
	--omorfo-font-accent: "Lato", Arial, sans-serif;

	/* Shape + elevation */
	--omorfo-radius-sm: 4px;
	--omorfo-radius-md: 8px;
	--omorfo-radius-lg: 16px;
	--omorfo-radius-pill: 999px;
	--omorfo-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
	--omorfo-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.55);
	--omorfo-shadow-glow: 0 0 0 1px rgba(223, 0, 0, 0.35), 0 12px 28px rgba(223, 0, 0, 0.18);
	--omorfo-transition: 0.25s ease;

	/* Layout */
	--omorfo-container-width: 1280px;
	--omorfo-gutter: 1.25rem;
}

/* ==========================================================================
   2. Reset / base
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--omorfo-black);
	color: var(--omorfo-text);
	font-family: var(--omorfo-font-body);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: var(--omorfo-text);
	text-decoration: none;
	transition: color var(--omorfo-transition);
}

a:hover,
a:focus {
	color: var(--omorfo-primary);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--omorfo-font-heading);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.6em;
	color: var(--omorfo-text);
}

h1 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2.1rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
	margin: 0 0 1em;
	color: var(--omorfo-text-muted);
}

ul, ol {
	padding-left: 1.25em;
}

svg {
	display: block;
}

hr {
	border: none;
	border-top: 1px solid var(--omorfo-border);
	margin: 2rem 0;
}

::selection {
	background: var(--omorfo-primary);
	color: var(--omorfo-white);
}

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

.screen-reader-text:focus {
	position: fixed !important;
	top: 1rem;
	left: 1rem;
	clip: auto !important;
	width: auto;
	height: auto;
	display: inline-block;
	padding: 0.75em 1.25em;
	background: var(--omorfo-primary);
	color: var(--omorfo-white);
	border-radius: var(--omorfo-radius-sm);
	z-index: 100000;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.container {
	max-width: var(--omorfo-container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--omorfo-gutter);
	padding-right: var(--omorfo-gutter);
}

.site-content {
	padding: 3rem 0;
}

.home .site-content {
	padding: 0;
}

.home .site-content > .section:last-child {
	padding-bottom: 4.5rem;
}

.content-area {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

.content-area:has(.widget-area) {
	grid-template-columns: minmax(0, 1fr) 300px;
}

@media (max-width: 900px) {
	.content-area:has(.widget-area) {
		grid-template-columns: 1fr;
	}
}

.section {
	padding: 3.5rem 0;
}

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.section-eyebrow {
	display: inline-block;
	color: var(--omorfo-primary);
	font-family: var(--omorfo-font-heading);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.section-title {
	margin-bottom: 0;
}

.section-link {
	font-family: var(--omorfo-font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--omorfo-text);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

.section-link:hover {
	color: var(--omorfo-primary);
}

.section-link svg {
	width: 14px;
	height: 14px;
	transition: transform var(--omorfo-transition);
}

.section-link:hover svg {
	transform: translateX(3px);
}

/* ==========================================================================
   4. Buttons & forms
   ========================================================================== */

.button,
button,
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	background: var(--omorfo-primary);
	color: var(--omorfo-white);
	border: 1px solid var(--omorfo-primary);
	padding: 0.85em 1.75em;
	border-radius: var(--omorfo-radius-sm);
	font-family: var(--omorfo-font-heading);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background var(--omorfo-transition), border-color var(--omorfo-transition), color var(--omorfo-transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	background: var(--omorfo-primary-hover);
	border-color: var(--omorfo-primary-hover);
	color: var(--omorfo-white);
}

.button.is-outline {
	background: transparent;
	color: var(--omorfo-text);
}

.button.is-outline:hover {
	background: var(--omorfo-primary);
	color: var(--omorfo-white);
}

.button.is-ghost {
	background: transparent;
	border-color: var(--omorfo-border-strong);
	color: var(--omorfo-text);
}

.button.is-ghost:hover {
	border-color: var(--omorfo-primary);
	background: transparent;
	color: var(--omorfo-primary);
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	color: var(--omorfo-text);
	font-family: var(--omorfo-font-accent);
	font-size: 0.9rem;
	padding: 0.75em 1em;
	border-radius: var(--omorfo-radius-sm);
	transition: border-color var(--omorfo-transition);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--omorfo-primary);
}

::placeholder {
	color: var(--omorfo-text-faint);
}

label {
	display: block;
	font-size: 0.85rem;
	color: var(--omorfo-text-muted);
	margin-bottom: 0.4em;
}

/* ==========================================================================
   5. Topbar
   ========================================================================== */

.topbar {
	background: var(--omorfo-surface);
	border-bottom: 1px solid var(--omorfo-border);
	font-size: 0.78rem;
	color: var(--omorfo-text-muted);
}

.topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 38px;
}

.topbar-contact {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.topbar-contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: var(--omorfo-text-muted);
}

.topbar-contact a:hover {
	color: var(--omorfo-primary);
}

.topbar-contact svg {
	width: 13px;
	height: 13px;
	flex: none;
}

.topbar-social {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.topbar-social a {
	color: var(--omorfo-text-muted);
	display: inline-flex;
}

.topbar-social a:hover {
	color: var(--omorfo-primary);
}

.topbar-social svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 700px) {
	.topbar-contact span:not(.topbar-phone) {
		display: none;
	}
}

/* ==========================================================================
   6. Header
   ========================================================================== */

.site-header {
	background: var(--omorfo-black);
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--omorfo-border);
}

.site-header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1rem var(--omorfo-gutter);
	max-width: var(--omorfo-container-width);
	margin: 0 auto;
}

.site-branding {
	flex: none;
}

.site-branding a {
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo,
.site-branding .brand-logo {
	max-height: 46px;
	width: auto;
}

.site-branding .brand-logo-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
}

.site-branding .site-title {
	margin: 0;
	font-size: 1.4rem;
	font-family: var(--omorfo-font-heading);
	font-weight: 800;
}

.site-branding .site-title a {
	color: var(--omorfo-text);
}

.site-branding .site-title a b {
	color: var(--omorfo-primary);
}

.site-branding .site-description {
	margin: 0;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--omorfo-accent-sky);
}

.header-search {
	flex: 1 1 auto;
	max-width: 560px;
}

.header-search form {
	display: flex;
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-pill);
	overflow: hidden;
}

.header-search input[type="search"] {
	flex: 1 1 auto;
	background: transparent;
	border: none;
	border-radius: 0;
	padding-left: 1.25em;
}

.header-search input[type="search"]:focus {
	border: none;
}

.header-search button {
	flex: none;
	background: var(--omorfo-primary);
	border: none;
	border-radius: 0;
	padding: 0 1.25em;
}

.header-search button svg {
	width: 16px;
	height: 16px;
}

.header-actions {
	flex: none;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-left: auto;
}

.header-action {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	color: var(--omorfo-text);
}

.header-action:hover {
	color: var(--omorfo-primary);
}

.header-action-icon {
	position: relative;
	display: inline-flex;
}

.header-action-icon svg {
	width: 22px;
	height: 22px;
}

.header-action-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background: var(--omorfo-primary);
	color: var(--omorfo-white);
	font-family: var(--omorfo-font-heading);
	font-size: 0.65rem;
	font-weight: 700;
	min-width: 17px;
	height: 17px;
	border-radius: var(--omorfo-radius-pill);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.header-action-label {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	font-size: 0.75rem;
}

.header-action-label small {
	color: var(--omorfo-text-faint);
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.header-action-label strong {
	font-family: var(--omorfo-font-heading);
	font-size: 0.82rem;
}

@media (max-width: 900px) {
	.site-header-inner {
		flex-wrap: wrap;
	}

	.header-actions {
		order: 1;
	}

	.header-search {
		order: 2;
		flex: 1 1 100%;
		max-width: none;
		background: var(--omorfo-surface);
		margin-left: calc(-1 * var(--omorfo-gutter));
		margin-right: calc(-1 * var(--omorfo-gutter));
		padding: 0.75rem var(--omorfo-gutter);
	}

	.header-search form {
		background: var(--omorfo-surface-alt);
	}
}

/* Primary / category navigation */

.primary-nav-bar {
	background: var(--omorfo-surface);
	border-bottom: 1px solid var(--omorfo-border);
}

.primary-nav-bar .container {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.main-navigation {
	flex: 1 1 auto;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.main-navigation > ul > li > a {
	display: block;
	padding: 0.9rem 1rem;
	font-family: var(--omorfo-font-heading);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--omorfo-text);
}

.main-navigation li {
	position: relative;
}

.main-navigation > ul > li:first-child > a {
	padding-left: 0;
}

.main-navigation a:hover {
	color: var(--omorfo-primary);
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--omorfo-surface-alt);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-sm);
	box-shadow: var(--omorfo-shadow-md);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--omorfo-transition), transform var(--omorfo-transition), visibility var(--omorfo-transition);
	z-index: 40;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu a {
	padding: 0.6rem 1.1rem;
	text-transform: none;
	font-weight: 400;
	letter-spacing: normal;
	font-size: 0.85rem;
}

.main-navigation .menu-toggle {
	display: none;
	align-items: center;
	gap: 0.5em;
	background: transparent;
	border: 1px solid var(--omorfo-border-strong);
	color: var(--omorfo-text);
	padding: 0.5rem 0.9rem;
	font-size: 0.8rem;
	border-radius: var(--omorfo-radius-sm);
}

.main-navigation .menu-toggle svg {
	width: 16px;
	height: 16px;
}

.main-navigation .submenu-toggle {
	display: none;
}

@media (max-width: 900px) {
	.primary-nav-bar .container {
		padding-top: 0.6rem;
		padding-bottom: 0.6rem;
	}

	.main-navigation .menu-toggle {
		display: inline-flex;
	}

	.main-navigation ul {
		flex-direction: column;
		display: none;
		width: 100%;
		padding-bottom: 0.5rem;
	}

	.main-navigation.is-active ul {
		display: flex;
	}

	.main-navigation > ul > li > a {
		padding: 0.7rem 0;
	}

	.main-navigation > ul > li:first-child > a {
		padding-left: 0;
	}

	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: transparent;
		padding-left: 1rem;
		display: none;
	}

	.main-navigation li.is-open > .sub-menu {
		display: block;
	}

	.main-navigation li.menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.main-navigation li.menu-item-has-children > a {
		flex: 1 1 auto;
	}

	.main-navigation .submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: none;
		width: 32px;
		height: 32px;
		background: transparent;
		border: 1px solid var(--omorfo-border-strong);
		border-radius: var(--omorfo-radius-sm);
		color: var(--omorfo-text);
	}

	.main-navigation .submenu-toggle svg {
		width: 14px;
		height: 14px;
		transition: transform var(--omorfo-transition);
	}

	.main-navigation li.is-open > .submenu-toggle svg {
		transform: rotate(180deg);
	}
}

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
	position: relative;
	background:
		radial-gradient(circle at 85% 20%, rgba(223, 0, 0, 0.25), transparent 45%),
		linear-gradient(180deg, #0a0a0a, #000000);
	border-bottom: 1px solid var(--omorfo-border);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23df0000' stroke-opacity='0.18' stroke-width='1.5'%3E%3Cpath d='M10 10h30v20h20v30'/%3E%3Cpath d='M110 15v25H85v20'/%3E%3Cpath d='M15 110V80h25V60'/%3E%3Ccircle cx='10' cy='10' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='60' cy='30' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='80' cy='60' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='110' cy='15' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='85' cy='60' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='15' cy='110' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3Ccircle cx='40' cy='60' r='2.5' fill='%23df0000' fill-opacity='0.35' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 220px 220px;
	pointer-events: none;
}

.hero-carousel {
	position: relative;
}

.hero-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hero-track::-webkit-scrollbar {
	display: none;
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.hero-dots {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	z-index: 3;
}

.hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: var(--omorfo-radius-pill);
	background: var(--omorfo-border-strong);
	cursor: pointer;
	transition: background var(--omorfo-transition), width var(--omorfo-transition);
}

.hero-dot:hover {
	background: var(--omorfo-text-muted);
}

.hero-dot.is-active {
	width: 24px;
	background: var(--omorfo-primary);
}

.hero-price {
	font-family: var(--omorfo-font-heading);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--omorfo-primary);
}

.hero-product-frame {
	display: inline-flex;
	background: var(--omorfo-white);
	border-radius: var(--omorfo-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--omorfo-shadow-md);
}

.hero-media .hero-product-frame img {
	max-height: 300px;
	width: auto;
	margin: 0;
	filter: none;
}

@media (max-width: 900px) {
	.hero-dots {
		bottom: 1rem;
	}
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 3rem;
	padding: 4.5rem var(--omorfo-gutter);
	max-width: var(--omorfo-container-width);
	margin: 0 auto;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	color: var(--omorfo-accent-sky);
	font-family: var(--omorfo-font-heading);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hero-title {
	/* Explicit size (not inherited from h1/h2) so product slides — which use
	   an h2 to keep a single h1 per page — match the first slide exactly. */
	font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.75rem);
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.hero-title b {
	color: var(--omorfo-primary);
}

.hero-subtitle {
	color: var(--omorfo-text-muted);
	max-width: 40ch;
	margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-media img {
	max-height: 380px;
	width: auto;
	margin: 0 auto;
	filter: drop-shadow(0 20px 40px rgba(223, 0, 0, 0.25));
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
		padding-top: 3rem;
		padding-bottom: 3rem;
		text-align: center;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-media {
		order: -1;
	}

	.hero-media img {
		max-height: 220px;
	}

	.hero-media .hero-product-frame img {
		max-height: 200px;
	}
}

/* ==========================================================================
   8. Trust badges
   ========================================================================== */

.trust-badges {
	background: var(--omorfo-surface);
	border-bottom: 1px solid var(--omorfo-border);
}

.trust-badges .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.trust-badge svg {
	width: 26px;
	height: 26px;
	flex: none;
	color: var(--omorfo-primary);
}

.trust-badge strong {
	display: block;
	font-family: var(--omorfo-font-heading);
	font-size: 0.85rem;
}

.trust-badge span {
	display: block;
	font-size: 0.75rem;
	color: var(--omorfo-text-faint);
}

@media (max-width: 900px) {
	.trust-badges .container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.trust-badges .container {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   9. Promo tiles
   ========================================================================== */

.promo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.promo-tile {
	position: relative;
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-lg);
	padding: 2rem;
	overflow: hidden;
	transition: border-color var(--omorfo-transition), transform var(--omorfo-transition);
}

.promo-tile:hover {
	border-color: var(--omorfo-primary);
	transform: translateY(-3px);
}

.promo-tile-eyebrow {
	color: var(--omorfo-primary);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	display: block;
}

.promo-tile h3 {
	margin-bottom: 0.5rem;
}

.promo-tile p {
	font-size: 0.85rem;
	margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
	.promo-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */

.faq-list {
	max-width: 760px;
	margin: 0 auto;
}

.faq-item {
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-md);
	margin-bottom: 0.85rem;
	overflow: hidden;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.4rem;
	font-family: var(--omorfo-font-heading);
	font-weight: 600;
	font-size: 0.95rem;
}

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

.faq-item summary .faq-icon {
	flex: none;
	width: 18px;
	height: 18px;
	color: var(--omorfo-primary);
	transition: transform var(--omorfo-transition);
}

.faq-item[open] summary .faq-icon {
	transform: rotate(45deg);
}

.faq-item-body {
	padding: 0 1.4rem 1.25rem;
	color: var(--omorfo-text-muted);
	font-size: 0.9rem;
}

/* ==========================================================================
   11. Blog teaser
   ========================================================================== */

.blog-teaser-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.blog-teaser-card {
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-md);
	overflow: hidden;
	transition: border-color var(--omorfo-transition), transform var(--omorfo-transition);
}

.blog-teaser-card:hover {
	border-color: var(--omorfo-primary);
	transform: translateY(-3px);
}

.blog-teaser-thumb {
	aspect-ratio: 16 / 10;
	background-color: var(--omorfo-surface-alt);
	background-size: cover;
	background-position: center;
}

.blog-teaser-body {
	padding: 1.25rem 1.4rem 1.5rem;
}

.blog-teaser-meta {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--omorfo-primary);
	margin-bottom: 0.6rem;
}

.blog-teaser-body h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.blog-teaser-body h3 a {
	color: var(--omorfo-text);
}

.blog-teaser-body h3 a:hover {
	color: var(--omorfo-primary);
}

.blog-teaser-excerpt {
	font-size: 0.85rem;
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.blog-teaser-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   12. Newsletter
   ========================================================================== */

.newsletter {
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-lg);
	padding: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.newsletter-copy h3 {
	margin-bottom: 0.35rem;
}

.newsletter-copy p {
	margin-bottom: 0;
	font-size: 0.85rem;
	max-width: 42ch;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	flex: none;
	width: 100%;
	max-width: 420px;
}

.newsletter-form input[type="email"] {
	background: var(--omorfo-black);
}

@media (max-width: 700px) {
	.newsletter {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.newsletter-form {
		max-width: none;
	}
}

/* ==========================================================================
   13. Sidebar / widgets
   ========================================================================== */

.widget {
	margin-bottom: 2.5rem;
	background: var(--omorfo-surface);
	border: 1px solid var(--omorfo-border);
	border-radius: var(--omorfo-radius-md);
	padding: 1.5rem;
}

.widget-title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1.1rem;
	color: var(--omorfo-primary);
}

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

.widget li {
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--omorfo-border);
	font-size: 0.85rem;
}

.widget li:last-child {
	border-bottom: none;
}

/* ==========================================================================
   14. Post / page content
   ========================================================================== */

.entry-title {
	margin-bottom: 0.5rem;
}

.entry-meta {
	color: var(--omorfo-text-faint);
	font-size: 0.8rem;
	margin-bottom: 1.5rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.entry-content > * + * {
	margin-top: 1.25em;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--omorfo-border);
	font-size: 0.8rem;
	color: var(--omorfo-text-faint);
}

.post-thumbnail {
	margin-bottom: 1.5rem;
	border-radius: var(--omorfo-radius-md);
	overflow: hidden;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */

.site-footer {
	background: var(--omorfo-surface);
	color: var(--omorfo-text);
	border-top: 1px solid var(--omorfo-border);
	padding: 4rem 0 0;
}

.footer-top {
	padding-bottom: 3rem;
}

.footer-brand-col .footer-logo {
	display: inline-block;
	margin-bottom: 1rem;
}

.footer-brand-col .footer-logo img {
	width: 130px;
	height: auto;
	border-radius: var(--omorfo-radius-md);
}

.footer-brand-col p {
	font-size: 0.85rem;
	max-width: 32ch;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: var(--omorfo-radius-pill);
	border: 1px solid var(--omorfo-border-strong);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--omorfo-text);
}

.footer-social a:hover {
	background: var(--omorfo-primary);
	border-color: var(--omorfo-primary);
	color: var(--omorfo-white);
}

.footer-social svg {
	width: 16px;
	height: 16px;
}

.footer-payment {
	margin-top: 1.25rem;
}

.footer-payment img {
	max-width: 220px;
	width: 100%;
	height: auto;
}

.footer-widgets {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 2rem;
}

.footer-col-title {
	font-family: var(--omorfo-font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1.25rem;
}

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

.footer-col li {
	margin-bottom: 0.65rem;
}

.footer-col a {
	color: var(--omorfo-text-muted);
	font-size: 0.85rem;
}

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

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
}

.footer-contact svg {
	width: 15px;
	height: 15px;
	flex: none;
	margin-top: 0.2em;
	color: var(--omorfo-primary);
}

.site-info {
	border-top: 1px solid var(--omorfo-border);
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.78rem;
	color: var(--omorfo-text-faint);
}

.site-info a {
	color: var(--omorfo-text-faint);
}

.site-info a:hover {
	color: var(--omorfo-primary);
}

.footer-navigation ul {
	list-style: none;
	display: flex;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.footer-navigation a {
	font-size: 0.78rem;
	color: var(--omorfo-text-faint);
}

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

@media (max-width: 900px) {
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.footer-widgets {
		grid-template-columns: 1fr;
	}

	.site-info {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   16. WooCommerce baseline
   (full product/shop styling lives in assets/css/woocommerce.css, loaded
   only when WooCommerce is active — this is just the safety-net baseline)
   ========================================================================== */

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
}

.woocommerce ul.products li.product {
	text-align: left;
}

.woocommerce span.price {
	font-family: var(--omorfo-font-heading);
	font-weight: 700;
	color: var(--omorfo-primary);
}
