/*
Theme Name: Gift of Kindness
Theme URI: https://giftofkindness.org
Author: Gift of Kindness
Author URI: https://giftofkindness.org
Description: A premium, editorial WordPress theme for Gift of Kindness — a nonprofit initiative that turns unused, second-hand and recyclable items into meaningful support. Built for Elementor Free with accessible, fast, fully editable pages, header and footer.
Version: 1.6.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gift-of-kindness
Tags: nonprofit, charity, one-column, custom-logo, custom-menu, editor-style, featured-images, threaded-comments, translation-ready, accessibility-ready
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
	--gok-forest: #16332a;
	--gok-forest-deep: #0d1f19;
	--gok-forest-mid: #1f4438;
	--gok-cream: #f6f1e6;
	--gok-paper: #fffdf9;
	--gok-ink: #1b241f;
	--gok-muted: #5c6a61;
	--gok-muted-on-dark: rgba(246, 241, 230, 0.66);
	--gok-line: #ddd4bf;
	--gok-line-on-dark: rgba(246, 241, 230, 0.18);
	--gok-gold: #b8813f;
	--gok-gold-text: #8a5a1f;
	--gok-gold-soft: #ecdcc0;
	--gok-white: #ffffff;

	--gok-font-display: "DM Serif Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--gok-font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--gok-radius-s: 4px;
	--gok-radius-m: 8px;
	--gok-shadow-soft: 0 12px 32px rgba(13, 31, 25, 0.08);

	--gok-container: 1200px;
	--gok-gutter: 24px;

	--gok-speed: 0.2s ease;
}

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

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

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: var(--gok-font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--gok-ink);
	background: var(--gok-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

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

figure {
	margin: 0;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

input,
select,
textarea {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: var(--gok-font-display);
	line-height: 1.12;
	margin: 0 0 0.5em;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--gok-forest-deep);
}

h1 {
	font-size: clamp(2.4rem, 4.6vw, 4.4rem);
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.9rem, 3.2vw, 2.9rem);
	letter-spacing: -0.015em;
}

h3 {
	font-size: 1.3rem;
}

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

p:last-child {
	margin-bottom: 0;
}

/* Screen-reader only utility */
.screen-reader-text,
.gok-visually-hidden {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--gok-forest-deep);
	color: var(--gok-white);
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	width: auto;
	padding: 14px 20px;
	left: 8px;
	top: 8px;
	z-index: 100000;
	text-decoration: none;
	border-radius: var(--gok-radius-s);
}

*:focus-visible {
	outline: 2px solid var(--gok-gold);
	outline-offset: 3px;
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */
.gok-container {
	width: min(100% - (var(--gok-gutter) * 2), var(--gok-container));
	margin-inline: auto;
}

.gok-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gok-gold-text);
	margin-bottom: 18px;
}

.gok-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: currentColor;
}

.gok-section-head {
	max-width: 720px;
	margin-bottom: 48px;
}

.gok-section-head p {
	font-size: 18px;
	margin-top: 16px;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.gok-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 0 28px;
	border-radius: var(--gok-radius-s);
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: background var(--gok-speed), color var(--gok-speed), border-color var(--gok-speed), transform var(--gok-speed);
	white-space: normal;
}

.gok-btn-primary {
	background: var(--gok-gold);
	color: var(--gok-forest-deep);
}

.gok-btn-primary:hover,
.gok-btn-primary:focus-visible {
	background: var(--gok-forest-deep);
	color: var(--gok-white);
}

.gok-btn-outline {
	border-color: var(--gok-line);
	color: var(--gok-ink);
	background: transparent;
}

.gok-btn-outline:hover,
.gok-btn-outline:focus-visible {
	border-color: var(--gok-forest-deep);
	background: var(--gok-forest-deep);
	color: var(--gok-white);
}

/* ==========================================================================
   5. Site header
   ========================================================================== */
.gok-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid #e8e8e5;
	box-shadow: 0 8px 30px rgba(20, 28, 24, 0.06);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.admin-bar .gok-site-header {
	top: 32px;
}

.gok-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 28px;
}

.gok-header-branding {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 64px;
	flex-shrink: 0;
}

.gok-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--gok-ink);
	font-family: var(--gok-font-display);
	font-weight: 600;
	font-size: 21px;
	letter-spacing: -0.01em;
	flex-shrink: 0;
}

.gok-brand-logo-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 4px;
	border: 1px solid #e8e8e5;
	border-radius: 12px;
	box-shadow: 0 5px 16px rgba(20, 28, 24, 0.08);
}

.gok-brand-logo-card img,
.gok-brand-logo-card .custom-logo {
	height: 46px;
	width: auto;
	display: block;
}

.gok-brand-logo-card .custom-logo-link {
	display: block;
}

.gok-brand-copy {
	display: grid;
	gap: 1px;
	color: #171717;
	text-decoration: none;
	line-height: 1.1;
}

.gok-brand-copy strong {
	font-family: var(--gok-font-display);
	font-size: 19px;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.gok-brand-copy span {
	font-family: var(--gok-font-body);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #77776f;
}

.gok-brand img,
.gok-brand svg {
	height: 46px;
	width: auto;
}

.gok-primary-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.gok-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
}

.gok-primary-nav a {
	display: inline-flex;
	align-items: center;
	padding: 11px 15px;
	font-size: 14.5px;
	font-weight: 700;
	color: #272724;
	text-decoration: none;
	border-radius: var(--gok-radius-s);
	transition: color var(--gok-speed), background var(--gok-speed);
}

.gok-primary-nav a:hover,
.gok-primary-nav a:focus-visible {
	color: #111111;
	background: #f4f4f1;
}

.gok-primary-nav .current-menu-item > a,
.gok-primary-nav .current_page_item > a {
	color: #111111;
}

.gok-primary-nav .current-menu-item > a::after,
.gok-primary-nav .current_page_item > a::after {
	content: "";
	display: block;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 5px;
	height: 2px;
	border-radius: 2px;
	background: #c3311b;
}

.gok-primary-nav li {
	position: relative;
}

.gok-primary-nav .menu-item-has-children {
	position: relative;
}

.gok-primary-nav .gok-sub-menu {
	display: none;
	min-width: 220px;
	padding: 8px;
	background: #ffffff;
	border: 1px solid #e8e8e5;
	box-shadow: 0 18px 50px rgba(20, 28, 24, 0.12);
	border-radius: var(--gok-radius-s);
}

@media (min-width: 861px) {
	.gok-primary-nav .gok-sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 5;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.gok-primary-nav .menu-item-has-children:hover > .gok-sub-menu,
	.gok-primary-nav .menu-item-has-children:focus-within > .gok-sub-menu {
		display: flex;
	}

	.gok-primary-nav .gok-sub-menu a {
		width: 100%;
	}
}

@media (max-width: 860px) {
	.gok-primary-nav .gok-sub-menu {
		display: flex;
		flex-direction: column;
		margin: 4px 0 8px 14px;
	}
}

.gok-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.gok-header-actions-mobile {
	display: none;
}

.gok-header-actions .gok-btn {
	min-height: 46px;
	padding: 0 21px;
	border-radius: 999px;
}

.gok-header-actions .gok-btn-outline {
	border-color: #171717;
	background: #171717;
	color: #ffffff;
}

.gok-header-actions .gok-btn-outline:hover,
.gok-header-actions .gok-btn-outline:focus-visible {
	border-color: #c3311b;
	background: #c3311b;
	color: #ffffff;
	transform: translateY(-1px);
}

.gok-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #171717;
	flex-shrink: 0;
}

.gok-menu-toggle:hover {
	background: #f2f2ef;
}

.gok-menu-toggle-icon {
	position: relative;
	width: 22px;
	height: 16px;
}

.gok-menu-toggle-icon span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform var(--gok-speed), opacity var(--gok-speed), top var(--gok-speed);
}

.gok-menu-toggle-icon span:nth-child(1) { top: 0; }
.gok-menu-toggle-icon span:nth-child(2) { top: 7px; }
.gok-menu-toggle-icon span:nth-child(3) { top: 14px; }

.gok-menu-open .gok-menu-toggle-icon span:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}

.gok-menu-open .gok-menu-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.gok-menu-open .gok-menu-toggle-icon span:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}

@media (max-width: 860px) {
	.gok-primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(340px, 86vw);
		height: 100vh;
		background: #ffffff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 96px 28px 40px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
	}

	.gok-menu-open .gok-primary-nav {
		transform: translateX(0);
	}

	.gok-primary-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.gok-primary-nav a {
		padding: 15px 4px;
		font-size: 17px;
		color: #171717;
		border-bottom: 1px solid #ecece8;
		border-radius: 0;
	}

	.gok-primary-nav .gok-header-actions-mobile {
		display: block;
		margin-top: 20px;
	}

	.gok-primary-nav .gok-header-actions-mobile .gok-btn {
		width: 100%;
		border-radius: 999px;
		background: #171717;
		color: #ffffff;
	}

	.gok-header-actions .gok-btn-outline {
		display: none;
	}

	.gok-menu-toggle {
		display: inline-flex;
	}

	.gok-header-branding {
		min-width: 0;
	}

	.gok-brand-copy span {
		display: none;
	}
}

.gok-menu-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(17, 17, 17, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 39;
}

.gok-menu-open .gok-menu-backdrop {
	opacity: 1;
	pointer-events: auto;
}

@media (min-width: 861px) {
	.gok-menu-backdrop {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .gok-site-header {
		top: 46px;
	}
}

@media (max-width: 560px) {
	.gok-header-inner {
		min-height: 72px;
	}

	.gok-brand-logo-card img,
	.gok-brand-logo-card .custom-logo {
		height: 38px;
	}

	.gok-brand-copy strong {
		font-size: 16px;
	}
}

/* Simple inline menu — used by [gok_primary_menu] / [gok_footer_menu] when
   dropped into a custom Elementor-built header/footer page. */
.gok-inline-menu ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 20px;
}

.gok-inline-menu a {
	display: inline-block;
	padding: 6px 0;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
}

/* ==========================================================================
   6. Site footer (default / fallback)
   ========================================================================== */
.gok-site-footer {
	position: relative;
	background: #101713;
	color: var(--gok-muted-on-dark);
	padding: 78px 0 32px;
}

.gok-site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #c3311b 0 25%, #e2a740 25% 50%, #3388b3 50% 75%, #81a16b 75%);
}

.gok-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.75fr 0.75fr;
	gap: clamp(40px, 7vw, 84px);
	padding-bottom: 54px;
}

.gok-footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--gok-white);
	font-family: var(--gok-font-display);
	font-size: 20px;
	margin-bottom: 14px;
	text-decoration: none;
}

.gok-footer-brand img {
	height: 48px;
	width: auto;
}

.gok-footer-col h4 {
	color: var(--gok-white);
	font-family: var(--gok-font-body);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	margin-bottom: 20px;
}

.gok-footer-col ul {
	display: grid;
	gap: 12px;
}

.gok-footer-col a {
	text-decoration: none;
	color: var(--gok-muted-on-dark);
	font-size: 14px;
	transition: color var(--gok-speed);
}

.gok-footer-col a:hover,
.gok-footer-col a:focus-visible {
	color: var(--gok-white);
}

.gok-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 30px;
	border-top: 1px solid var(--gok-line-on-dark);
	font-size: 13.5px;
}

@media (max-width: 720px) {
	.gok-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ==========================================================================
   7. Generic page (non-front) content
   ========================================================================== */
.gok-page-content {
	padding: 72px 0 96px;
}

.gok-page-content .gok-container {
	max-width: 820px;
}

.gok-page-content h1 {
	font-size: clamp(2.1rem, 4vw, 3rem);
	margin-bottom: 0.6em;
}

.gok-page-content > .gok-container > * + * {
	margin-top: 1.2em;
}

.gok-archive-entry + .gok-archive-entry {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--gok-line);
}

/* ==========================================================================
   8. Forms base (used by donation shortcode area, Contact Form 7 / WPForms / Fluent Forms wrapper)
   ========================================================================== */
.gok-form-wrap input[type="text"],
.gok-form-wrap input[type="email"],
.gok-form-wrap input[type="tel"],
.gok-form-wrap input[type="number"],
.gok-form-wrap input[type="file"],
.gok-form-wrap select,
.gok-form-wrap textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid var(--gok-line);
	border-radius: var(--gok-radius-s);
	padding: 12px 14px;
	background: var(--gok-paper);
	margin-bottom: 16px;
}

.gok-form-wrap textarea {
	min-height: 120px;
	resize: vertical;
}

.gok-form-wrap label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 8px;
}

.gok-form-wrap input:focus,
.gok-form-wrap select:focus,
.gok-form-wrap textarea:focus {
	border-color: var(--gok-forest-mid);
	box-shadow: 0 0 0 3px rgba(31, 68, 56, 0.1);
	outline: none;
}

.gok-form-wrap button,
.gok-form-wrap input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 28px;
	border-radius: var(--gok-radius-s);
	background: var(--gok-forest-deep);
	color: var(--gok-white);
	font-weight: 700;
	border: 0;
	width: 100%;
}

.gok-form-wrap button:hover,
.gok-form-wrap input[type="submit"]:hover {
	background: var(--gok-forest-mid);
}

.gok-form-placeholder {
	border: 1px dashed var(--gok-line);
	border-radius: var(--gok-radius-m);
	padding: 32px;
	text-align: center;
	color: var(--gok-muted);
	background: var(--gok-paper);
}

.gok-form-placeholder strong {
	display: block;
	color: var(--gok-forest-deep);
	margin-bottom: 6px;
	font-size: 16px;
}

/* ==========================================================================
   9. WordPress core alignment + gallery support (block editor compatibility)
   ========================================================================== */
.alignwide {
	width: min(100% , 1400px);
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.wp-caption,
.wp-block-image {
	max-width: 100%;
}

/* ==========================================================================
   10. Editable Elementor header and footer (v1.3)
   ========================================================================== */

/* Native Elementor kicker headings remain individually editable while
   retaining the compact editorial label treatment used throughout the site. */
.elementor-widget-heading.gok-kicker {
	display: inline-block;
	width: auto;
	margin: 0 0 18px;
	color: #256788;
}

.elementor-widget-heading.gok-kicker .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: inherit !important;
	font-family: var(--gok-font-body) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase;
}

.elementor-widget-heading.gok-kicker .elementor-heading-title::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 12%, transparent);
	flex: 0 0 auto;
}

.elementor-widget-heading.gok-kicker.is-red { color: #9a2615; }
.elementor-widget-heading.gok-kicker.is-gold { color: #b78129; }
.elementor-widget-heading.gok-kicker.is-green { color: #5c7a49; }
.elementor-widget-heading.gok-kicker.is-blue { color: #256788; }

/* White, black-type, site-wide Elementor header. */
.gok-custom-header:not(body) {
	position: sticky;
	top: 0;
	z-index: 200;
	display: block;
	background: #ffffff;
	color: #171717;
	border-bottom: 1px solid #e8e8e4;
	box-shadow: 0 10px 34px rgba(19, 28, 23, 0.07);
}

.admin-bar .gok-custom-header {
	top: 32px;
}

.gok-custom-header .gok-elementor-header {
	padding: 12px 0;
	background: #ffffff;
}

.gok-custom-header .gok-elementor-header > .elementor-container {
	display: grid;
	grid-template-columns: minmax(250px, 0.9fr) minmax(280px, 1.15fr) minmax(170px, 0.55fr);
	align-items: center;
	gap: 24px;
	width: min(calc(100% - 48px), 1200px);
	max-width: 1200px;
	min-height: 62px;
	margin-inline: auto;
}

.gok-custom-header .gok-elementor-header > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-custom-header .gok-eh-brand > .elementor-widget-wrap {
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: nowrap;
	gap: 13px;
}

.gok-custom-header .gok-eh-brand .elementor-widget-shortcode,
.gok-custom-header .gok-eh-brand .elementor-widget-heading,
.gok-custom-header .gok-eh-brand .elementor-widget-container {
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-elementor-logo {
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-elementor-logo .elementor-widget-container,
.gok-custom-header .gok-elementor-logo a {
	display: block;
	width: auto;
	height: 50px;
}

.gok-custom-header .gok-elementor-logo img {
	display: block;
	width: auto;
	height: 50px;
	padding: 3px;
	border: 1px solid #e8e8e5;
	border-radius: 11px;
	background: #ffffff;
	box-shadow: 0 5px 16px rgba(20, 28, 24, 0.07);
	object-fit: contain;
}

.gok-custom-header .gok-brand-logo-card {
	padding: 3px;
	border-radius: 11px;
	box-shadow: 0 5px 16px rgba(20, 28, 24, 0.07);
}

.gok-custom-header .gok-brand-logo-card img,
.gok-custom-header .gok-brand-logo-card .custom-logo {
	width: auto;
	height: 44px;
}

.gok-custom-header .gok-elementor-brand-title .elementor-heading-title {
	margin: 0;
	color: #171717 !important;
	font-family: var(--gok-font-display) !important;
	font-size: 19px !important;
	font-weight: 400 !important;
	line-height: 1.1 !important;
	white-space: nowrap;
}

.gok-custom-header .gok-eh-nav > .elementor-widget-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.gok-custom-header .gok-eh-nav .elementor-widget-shortcode,
.gok-custom-header .gok-eh-nav .elementor-widget-container {
	width: 100%;
	margin: 0;
}

.gok-custom-header .gok-elementor-nav-link,
.gok-custom-header .gok-elementor-nav-link .elementor-widget-container {
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-elementor-nav-link .elementor-button {
	padding: 11px 15px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #171717;
	font-family: var(--gok-font-body);
	font-size: 13.5px;
	font-weight: 750;
	line-height: 1.2;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gok-custom-header .gok-elementor-nav-link .elementor-button:hover,
.gok-custom-header .gok-elementor-nav-link .elementor-button:focus-visible {
	background: #f3f4f0;
	color: #000000;
}

.gok-custom-header .gok-inline-menu ul {
	justify-content: center;
	gap: 4px;
}

.gok-custom-header .gok-inline-menu a {
	position: relative;
	padding: 11px 15px;
	border-radius: 8px;
	color: #171717;
	font-family: var(--gok-font-body);
	font-size: 13.5px;
	font-weight: 750;
	line-height: 1.2;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gok-custom-header .gok-inline-menu a:hover,
.gok-custom-header .gok-inline-menu a:focus-visible {
	background: #f3f4f0;
	color: #000000;
}

.gok-custom-header .gok-inline-menu .current-menu-item > a::after,
.gok-custom-header .gok-inline-menu .current_page_item > a::after {
	content: "";
	position: absolute;
	right: 15px;
	bottom: 5px;
	left: 15px;
	height: 2px;
	border-radius: 4px;
	background: #c3311b;
}

.gok-custom-header .gok-eh-action > .elementor-widget-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.gok-custom-header .gok-eh-action .elementor-widget-button,
.gok-custom-header .gok-eh-action .elementor-widget-container {
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-eh-action .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 23px;
	border: 1px solid #171717;
	border-radius: 999px;
	background: #171717;
	color: #ffffff;
	font-family: var(--gok-font-body);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.gok-custom-header .gok-eh-action .elementor-button:hover,
.gok-custom-header .gok-eh-action .elementor-button:focus-visible {
	border-color: #c3311b;
	background: #c3311b;
	transform: translateY(-1px);
}

/* Professional Elementor footer. */
.gok-custom-footer:not(body) {
	position: relative;
	display: block;
	overflow: hidden;
	background: #101713;
	color: rgba(255, 255, 255, 0.7);
}

.gok-custom-footer:not(body)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #c3311b 0 25%, #e2a740 25% 50%, #3388b3 50% 75%, #81a16b 75%);
}

.gok-custom-footer .gok-elementor-footer-main {
	padding: clamp(68px, 8vw, 96px) 0 54px;
	background: #101713;
}

.gok-custom-footer .gok-elementor-footer-main > .elementor-container,
.gok-custom-footer .gok-elementor-footer-bottom > .elementor-container {
	display: grid;
	width: min(calc(100% - 48px), 1200px);
	max-width: 1200px;
	margin-inline: auto;
}

.gok-custom-footer .gok-elementor-footer-main > .elementor-container {
	grid-template-columns: minmax(0, 1.7fr) minmax(160px, 0.65fr) minmax(160px, 0.65fr);
	gap: clamp(40px, 7vw, 88px);
}

.gok-custom-footer .gok-elementor-footer-main > .elementor-container > .elementor-column,
.gok-custom-footer .gok-elementor-footer-bottom > .elementor-container > .elementor-column {
	width: 100% !important;
}

.gok-custom-footer .gok-ef-brand .gok-brand-logo-card img,
.gok-custom-footer .gok-ef-brand .gok-brand-logo-card .custom-logo {
	width: auto;
	height: 52px;
}

.gok-custom-footer .gok-ef-brand .gok-brand-logo-card {
	margin-bottom: 24px;
}

.gok-custom-footer .gok-elementor-footer-logo {
	width: auto;
	margin: 0 0 24px;
}

.gok-custom-footer .gok-elementor-footer-logo .elementor-widget-container,
.gok-custom-footer .gok-elementor-footer-logo a {
	display: block;
	width: auto;
	height: 60px;
}

.gok-custom-footer .gok-elementor-footer-logo img {
	display: block;
	width: auto;
	height: 60px;
	padding: 4px;
	border-radius: 12px;
	background: #ffffff;
	object-fit: contain;
}

.gok-custom-footer .gok-elementor-footer-statement .elementor-heading-title {
	max-width: 460px;
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(2rem, 3vw, 3rem) !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
}

.gok-custom-footer .gok-elementor-footer-copy {
	max-width: 520px;
	margin-top: 18px;
}

.gok-custom-footer .gok-elementor-footer-copy p,
.gok-custom-footer .gok-elementor-footer-links p,
.gok-custom-footer .gok-elementor-copyright p,
.gok-custom-footer .gok-elementor-footer-signoff p {
	margin: 0;
	color: inherit;
}

.gok-custom-footer .gok-elementor-footer-label .elementor-heading-title {
	margin: 8px 0 18px;
	color: #ffffff !important;
	font-family: var(--gok-font-body) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.gok-custom-footer .gok-ef-links > .elementor-widget-wrap {
	display: flex;
	flex-direction: column;
}

.gok-custom-footer .gok-elementor-footer-nav-link,
.gok-custom-footer .gok-elementor-footer-nav-link .elementor-widget-container {
	width: auto;
	margin: 0;
}

.gok-custom-footer .gok-elementor-footer-nav-link .elementor-button {
	display: inline-flex;
	min-height: 0;
	padding: 5px 0;
	border: 0;
	background: transparent;
	color: #b9c0bc;
	font-family: var(--gok-font-body);
	font-size: 14px;
	font-weight: 550;
	line-height: 1.35;
	text-align: left;
}

.gok-custom-footer .gok-elementor-footer-nav-link .elementor-button:hover,
.gok-custom-footer .gok-elementor-footer-nav-link .elementor-button:focus-visible {
	background: transparent;
	color: #ffffff;
}

.gok-custom-footer .gok-inline-menu ul {
	display: grid;
	gap: 11px;
}

.gok-custom-footer .gok-inline-menu a,
.gok-custom-footer .gok-elementor-footer-links a {
	padding: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 550;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gok-custom-footer .gok-inline-menu a:hover,
.gok-custom-footer .gok-inline-menu a:focus-visible,
.gok-custom-footer .gok-elementor-footer-links a:hover,
.gok-custom-footer .gok-elementor-footer-links a:focus-visible {
	color: #ffffff;
}

.gok-custom-footer .gok-elementor-footer-links p + p {
	margin-top: 11px;
}

.gok-custom-footer .gok-elementor-footer-bottom {
	padding: 28px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #101713;
}

.gok-custom-footer .gok-elementor-footer-bottom > .elementor-container {
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
	gap: 24px;
}

.gok-custom-footer .gok-elementor-footer-bottom .elementor-widget-text-editor,
.gok-custom-footer .gok-elementor-footer-bottom .elementor-widget-container {
	margin: 0;
}

.gok-custom-footer .gok-elementor-footer-signoff {
	text-align: right;
	letter-spacing: 0.08em;
}

.gok-elementor-header-fallback {
	display: flex;
	align-items: center;
	gap: 18px;
	width: min(calc(100% - 48px), 1200px);
	min-height: 84px;
	margin-inline: auto;
}

.gok-elementor-header-fallback .gok-inline-menu {
	margin-left: auto;
}

.gok-elementor-footer-fallback {
	display: grid;
	gap: 18px;
	width: min(calc(100% - 48px), 1200px);
	margin-inline: auto;
	padding: 68px 0;
}

@media (max-width: 900px) {
	.gok-custom-header .gok-elementor-header > .elementor-container {
		grid-template-columns: minmax(210px, 1fr) auto;
		gap: 12px 20px;
	}

	.gok-custom-header .gok-eh-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		padding-top: 8px;
		border-top: 1px solid #ededE9;
	}

	.gok-custom-header .gok-eh-action {
		grid-column: 2;
		grid-row: 1;
	}

	.gok-custom-footer .gok-elementor-footer-main > .elementor-container {
		grid-template-columns: 1.4fr 0.8fr 0.8fr;
		gap: 34px;
	}
}

@media (max-width: 782px) {
	.admin-bar .gok-custom-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.gok-custom-header .gok-elementor-header {
		padding: 10px 0 8px;
	}

	.gok-custom-header .gok-elementor-header > .elementor-container,
	.gok-custom-footer .gok-elementor-footer-main > .elementor-container,
	.gok-custom-footer .gok-elementor-footer-bottom > .elementor-container {
		width: min(calc(100% - 32px), 1200px);
	}

	.gok-custom-header .gok-elementor-brand-title {
		display: none;
	}

	.gok-custom-header .gok-brand-logo-card img,
	.gok-custom-header .gok-brand-logo-card .custom-logo,
	.gok-custom-header .gok-elementor-logo .elementor-widget-container,
	.gok-custom-header .gok-elementor-logo a,
	.gok-custom-header .gok-elementor-logo img {
		height: 38px;
	}

	.gok-custom-header .gok-eh-action .elementor-button {
		min-height: 42px;
		padding-inline: 18px;
		font-size: 12px;
	}

	.gok-custom-header .gok-inline-menu ul {
		justify-content: flex-start;
		gap: 2px;
	}

	.gok-custom-header .gok-inline-menu a {
		padding: 9px 10px;
		font-size: 12.5px;
	}

	.gok-custom-footer .gok-elementor-footer-main > .elementor-container,
	.gok-custom-footer .gok-elementor-footer-bottom > .elementor-container {
		grid-template-columns: 1fr;
	}

	.gok-custom-footer .gok-elementor-footer-main > .elementor-container {
		gap: 34px;
	}

	.gok-custom-footer .gok-elementor-footer-signoff {
		text-align: left;
	}
}

@supports not (color: color-mix(in srgb, black, white)) {
	.elementor-widget-heading.gok-kicker .elementor-heading-title::before {
		box-shadow: 0 0 0 4px rgba(51, 136, 179, 0.1);
	}
}

/* ==========================================================================
   11. Simplified editable header (v1.4)
   ========================================================================== */
.gok-custom-header .gok-elementor-header {
	padding: 9px 0;
}

.gok-custom-header .gok-elementor-header > .elementor-container {
	grid-template-columns: minmax(90px, 0.55fr) minmax(300px, 1.35fr) minmax(190px, 0.7fr);
	gap: 24px;
	width: min(calc(100% - 48px), 1240px);
	max-width: 1240px;
	min-height: 60px;
}

.gok-custom-header .gok-eh-brand > .elementor-widget-wrap {
	gap: 0;
}

.gok-custom-header .gok-elementor-logo .elementor-widget-container,
.gok-custom-header .gok-elementor-logo a,
.gok-custom-header .gok-elementor-logo img {
	height: 46px;
}

.gok-custom-header .gok-elementor-logo img {
	padding: 2px;
	border: 0;
	border-radius: 8px;
	box-shadow: none;
}

.gok-custom-header .gok-eh-action > .elementor-widget-wrap {
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 9px;
}

.gok-custom-header .gok-elementor-menu-toggle {
	display: none;
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-elementor-menu-toggle .elementor-widget-container {
	width: auto;
	margin: 0;
}

.gok-custom-header .gok-elementor-menu-toggle .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid #d9d9d4;
	border-radius: 999px;
	background: #ffffff;
	color: #171717;
	font-family: var(--gok-font-body);
	font-size: 12px;
	font-weight: 800;
}

@media (min-width: 781px) {
	.gok-custom-header .gok-eh-nav,
	.gok-custom-header .gok-eh-action {
		grid-column: auto;
		grid-row: auto;
		padding-top: 0;
		border-top: 0;
	}

	.gok-custom-header .gok-eh-nav {
		display: block !important;
	}
}

@media (max-width: 780px) {
	.gok-custom-header .gok-elementor-header {
		padding: 9px 0;
	}

	.gok-custom-header .gok-elementor-header > .elementor-container {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 9px 16px;
		width: min(calc(100% - 32px), 1240px);
		min-height: 52px;
	}

	.gok-custom-header .gok-eh-brand {
		grid-column: 1;
		grid-row: 1;
	}

	.gok-custom-header .gok-eh-action {
		grid-column: 2;
		grid-row: 1;
	}

	.gok-custom-header .gok-elementor-menu-toggle {
		display: block;
	}

	.gok-custom-header .gok-eh-nav {
		display: none !important;
		grid-column: 1 / -1;
		grid-row: 2;
		padding: 10px 0 2px;
		border-top: 1px solid #ecece8;
	}

	.gok-custom-header.gok-header-nav-open .gok-eh-nav,
	body.gok-custom-header.gok-header-nav-open .gok-eh-nav {
		display: block !important;
	}

	.gok-custom-header.gok-header-nav-open .gok-elementor-menu-toggle .elementor-button,
	body.gok-custom-header.gok-header-nav-open .gok-elementor-menu-toggle .elementor-button {
		border-color: #171717;
		background: #171717;
		color: #ffffff;
	}

	.gok-custom-header .gok-eh-nav > .elementor-widget-wrap {
		align-items: stretch;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 2px;
	}

	.gok-custom-header .gok-elementor-nav-link,
	.gok-custom-header .gok-elementor-nav-link .elementor-widget-container,
	.gok-custom-header .gok-elementor-nav-link .elementor-button-wrapper,
	.gok-custom-header .gok-elementor-nav-link .elementor-button {
		width: 100%;
	}

	.gok-custom-header .gok-elementor-nav-link .elementor-button {
		justify-content: flex-start;
		padding: 12px 10px;
		border-radius: 7px;
		font-size: 14px;
		text-align: left;
	}

	.gok-custom-header .gok-elementor-logo .elementor-widget-container,
	.gok-custom-header .gok-elementor-logo a,
	.gok-custom-header .gok-elementor-logo img {
		height: 40px;
	}
}

@media (max-width: 420px) {
	.gok-custom-header .gok-eh-action .elementor-button {
		min-height: 40px;
		padding-inline: 14px;
		font-size: 11px;
	}

	.gok-custom-header .gok-elementor-menu-toggle .elementor-button {
		padding-inline: 12px;
	}
}

/* ==========================================================================
   12. Elementor 4 header hardening (v1.5)

   Elementor 4 can omit widget-level custom classes from Image and Button
   markup while retaining the section/column classes. These structural
   selectors keep both newly generated and already-saved v1.4 headers compact.
   ========================================================================== */
.gok-custom-header .gok-eh-brand .elementor-widget-image {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

.gok-custom-header .gok-eh-brand .elementor-widget-image a,
.gok-custom-header .gok-eh-brand .elementor-widget-image img {
	display: block;
	width: auto !important;
	height: 46px !important;
	max-width: none !important;
	max-height: 46px !important;
}

.gok-custom-header .gok-eh-brand .elementor-widget-image img {
	padding: 2px;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: none;
	object-fit: contain;
}

.gok-custom-header .gok-eh-nav > .elementor-widget-wrap {
	align-items: center;
	justify-content: center;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 4px;
}

.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button {
	flex: 0 0 auto;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button .elementor-button {
	padding: 11px 15px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #171717;
	font-family: var(--gok-font-body);
	font-size: 13.5px;
	font-weight: 750;
	line-height: 1.2;
}

.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button .elementor-button:hover,
.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button .elementor-button:focus-visible {
	background: #f3f4f0;
	color: #000000;
}

.gok-custom-header .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button {
	flex: 0 0 auto;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

/* The second action is the native Elementor mobile Menu button. */
.gok-custom-header .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) {
	display: none;
}

@media (max-width: 780px) {
	.gok-custom-header .gok-eh-brand .elementor-widget-image a,
	.gok-custom-header .gok-eh-brand .elementor-widget-image img {
		height: 40px !important;
		max-height: 40px !important;
	}

	.gok-custom-header .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) {
		display: block;
	}

	.gok-custom-header .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) .elementor-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		padding: 0 15px;
		border: 1px solid #d9d9d4;
		border-radius: 999px;
		background: #ffffff;
		color: #171717;
		font-family: var(--gok-font-body);
		font-size: 12px;
		font-weight: 800;
	}

	.gok-custom-header.gok-header-nav-open .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) .elementor-button,
	body.gok-custom-header.gok-header-nav-open .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) .elementor-button {
		border-color: #171717;
		background: #171717;
		color: #ffffff;
	}

	.gok-custom-header .gok-eh-nav > .elementor-widget-wrap {
		align-items: stretch;
		flex-direction: column !important;
		gap: 2px;
	}

	.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button {
		width: 100% !important;
	}

	.gok-custom-header .gok-eh-nav > .elementor-widget-wrap > .elementor-widget-button .elementor-button {
		justify-content: flex-start;
		width: 100%;
		padding: 12px 10px;
		border-radius: 7px;
		font-size: 14px;
		text-align: left;
	}
}

@media (max-width: 420px) {
	.gok-custom-header .gok-eh-action > .elementor-widget-wrap > .elementor-widget-button:last-child:not(:first-child) .elementor-button {
		min-height: 40px;
		padding-inline: 12px;
		font-size: 11px;
	}
}

/* ==========================================================================
   14. WhatsApp contact system (v1.6)
   ========================================================================== */
.gok-site-header,
.gok-custom-header:not(body),
.gok-custom-header .gok-elementor-header {
	background: #ffffff;
	color: #171717;
}

.gok-whatsapp-inline {
	padding: clamp(26px, 4vw, 38px);
	border: 1px solid #dfe5df;
	border-radius: 20px;
	background: #f7faf7;
	box-shadow: 0 14px 36px rgba(20, 39, 31, 0.08);
}

.gok-whatsapp-inline-label {
	display: block;
	margin-bottom: 9px;
	color: #1d7046;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gok-whatsapp-inline > strong {
	display: block;
	color: #171717;
	font-family: var(--gok-font-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 400;
	line-height: 1.12;
}

.gok-whatsapp-inline > p {
	margin: 13px 0 22px;
	color: #5c655f;
}

.gok-whatsapp-inline .gok-btn {
	border-color: #1d7046;
	background: #1d7046;
	color: #ffffff;
}

.gok-whatsapp-float {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(20px, env(safe-area-inset-bottom));
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-height: 58px;
	padding: 8px 18px 8px 9px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: #1d7046;
	color: #ffffff;
	font-family: var(--gok-font-body);
	text-decoration: none;
	box-shadow: 0 16px 40px rgba(13, 44, 29, 0.3);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.gok-whatsapp-float:hover,
.gok-whatsapp-float:focus-visible {
	background: #145737;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(13, 44, 29, 0.36);
}

.gok-whatsapp-float:focus-visible {
	outline: 3px solid #f0bd5e;
	outline-offset: 3px;
}

.gok-whatsapp-float-icon {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	flex: 0 0 auto;
}

.gok-whatsapp-float-icon svg {
	width: 24px;
	height: 24px;
	color: #ffffff;
}

.gok-whatsapp-float-icon path:first-child {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.gok-whatsapp-float-icon path:last-child {
	fill: currentColor;
}

.gok-whatsapp-float-copy {
	display: grid;
	gap: 1px;
	line-height: 1.1;
}

.gok-whatsapp-float-copy small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gok-whatsapp-float-copy strong {
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
}

@media (max-width: 480px) {
	.gok-whatsapp-float {
		right: max(12px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
		min-height: 52px;
		padding: 6px 14px 6px 7px;
	}

	.gok-whatsapp-float-icon {
		width: 38px;
		height: 38px;
	}

	.gok-whatsapp-float-copy small {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gok-whatsapp-float {
		transition: none;
	}
}
