:root {
	--global-border-radius: 4px;
	--global-spacing-xs: 0.25rem;
	--global-spacing-s: 0.5rem;
	--global-spacing-m: 0.75rem;
	--global-spacing-l: 1rem;
	--global-spacing-xl: 1.5rem;
	--global-spacing-xxl: 2rem;
	--global-spacing-xxxl: 4rem;
}

body {
	max-width: 100vw;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

#page {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 0;
	background: var(--e-global-color-background);
	min-height: 100vh;
}

.site-content {
	flex: 1;
}

#wpadminbar {
	position: fixed !important;
}

p {
	text-wrap: balance;
}

/* Typography
--------------------------------------------- */
body {
	font-family: var(--e-global-typography-body-base-font-family, sans-serif);
	font-size: var(--e-global-typography-body-base-font-size, 16px);
	font-weight: var(--e-global-typography-body-base-font-weight, 400);
	line-height: var(--e-global-typography-body-base-line-height, 1.6);
	color: var(--e-global-color-body-text);
}

button,
input,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

::placeholder {
	color: var(--e-global-color-muted);
	opacity: 0.5;
}

input {
	transition:
		color calc(infinity * 1s) step-end,
		background-color calc(infinity * 1s) step-end;
	background-color: transparent;
}

p, h1, h2, h3, h4, h5, h6, em, ol, ul, li, tr, th, td, dl, img, ins, sub, sup, big, cite, code, form, small, label, table, figure, button, legend, strike, address, caption, fieldset, blockquote {
	margin: 0;
	padding: 0;
	border: none;
	font-size: inherit;
	text-align: inherit;
	line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: calc(0.25em + 4px);
	color: var(--e-global-color-heading);
}

p {
	margin-bottom: var(--global-spacing-l);
}

p:last-child,
ul li:last-child,
ol li:last-child {
	margin-bottom: 0;
}

h1 {
	font-family: var(--e-global-typography-h1-font-family, inherit);
	font-size: var(--e-global-typography-h1-font-size, 51px);
	font-weight: var(--e-global-typography-h1-font-weight, 700);
	line-height: var(--e-global-typography-h1-line-height, 1.2);
	letter-spacing: var(--e-global-typography-h1-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h1-word-spacing, normal);
}

h2 {
	font-family: var(--e-global-typography-h2-font-family, inherit);
	font-size: var(--e-global-typography-h2-font-size, 38px);
	font-weight: var(--e-global-typography-h2-font-weight, 700);
	line-height: var(--e-global-typography-h2-line-height, 1.25);
	letter-spacing: var(--e-global-typography-h2-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h2-word-spacing, normal);
}

h3 {
	font-family: var(--e-global-typography-h3-font-family, inherit);
	font-size: var(--e-global-typography-h3-font-size, 28px);
	font-weight: var(--e-global-typography-h3-font-weight, 600);
	line-height: var(--e-global-typography-h3-line-height, 1.3);
	letter-spacing: var(--e-global-typography-h3-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h3-word-spacing, normal);
}

h4 {
	font-family: var(--e-global-typography-h4-font-family, inherit);
	font-size: var(--e-global-typography-h4-font-size, 20px);
	font-weight: var(--e-global-typography-h4-font-weight, 600);
	line-height: var(--e-global-typography-h4-line-height, 1.35);
	letter-spacing: var(--e-global-typography-h4-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h4-word-spacing, normal);
}

h5 {
	font-family: var(--e-global-typography-h5-font-family, inherit);
	font-size: var(--e-global-typography-h5-font-size, 18px);
	font-weight: var(--e-global-typography-h5-font-weight, 600);
	line-height: var(--e-global-typography-h5-line-height, 1.4);
	letter-spacing: var(--e-global-typography-h5-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h5-word-spacing, normal);
}

h6 {
	font-family: var(--e-global-typography-h6-font-family, inherit);
	font-size: var(--e-global-typography-h6-font-size, 16px);
	font-weight: var(--e-global-typography-h6-font-weight, 600);
	line-height: var(--e-global-typography-h6-line-height, 1.45);
	letter-spacing: var(--e-global-typography-h6-letter-spacing, normal);
	word-spacing: var(--e-global-typography-h6-word-spacing, normal);
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
}


a,
time,
pre,
time.published,
figcaption.entry-image-caption,
.excerpt-content,
.author-name a,
.author-name-classic a {
	clear: both;
	color: var(--e-global-color-body-text);
}

ul li,
ol li {
	margin-bottom: var(--global-spacing-s);
}

ul,
ol {
	padding-inline-start: var(--global-spacing-xxl);
	margin-bottom: var(--global-spacing-l);
}


dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

ins {
	text-decoration: none ;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
	appearance: textfield;
}

/* Links
--------------------------------------------- */
a {
	color: var(--e-global-color-brand);
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: var(--e-global-color-brand-hover);
}

a:hover,
a:active {
	outline: 0;
}

.button,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.wp-block-button__link,
.wp-element-button,
a.button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button,
.woocommerce #review_form #respond .form-submit input,
.woocommerce-page button.button,
.woocommerce-page a.button,
.woocommerce-page input.button,
.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a,
.woocommerce-mini-cart__buttons a,
.added_to_cart,
.checkout-button,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
	border-radius: var(--global-border-radius);
	background-color: var(--e-global-color-brand);
	color: #fff;
	font-weight: 500;
}

.site-header {
	width: 100%;
	z-index: 99999;
}

.solares-container {
	width: 100%;
	max-width: 1240px;
	padding: 24px;
	gap: 2em;
	display: flex;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
}

.content-area {
	width: 100%;
}

.entry-image {
	overflow: hidden;
	position: relative;
}

.has-sidebar .solares-container {
	display: flex;
	gap: 1.25rem 4rem;
}

.sticky-sidebar .widget-area {
	position: sticky;
	top: 4em;
	overflow-y: auto;
}

.has-sidebar #primary {
	flex: 1;
	min-width: 0;
}

.has-sidebar .widget-area {
	display: flex;
	flex-direction: column;
	width: clamp(150px, 25%, 350px);
	flex-shrink: 0;
	gap: var(--global-spacing-xxl);
}

.sidebar-left .solares-container {
	flex-direction: row-reverse;
}

.widget-title:not(:empty) {
	margin-bottom: var(--global-spacing-l);
}

.unclethemes-widget ul {
	list-style: none;
	padding-inline-start: 0;
}

@media (max-width: 1200px) {
	.has-sidebar .solares-container {
		flex-direction: column;
	}

	.has-sidebar .widget-area {
		width: 100%;
	}
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
input[type=search],
input[type=date],
input[type=time],
input[type=datetime-local],
select,
textarea,
.woocommerce div.product form.cart div.quantity,
.woocommerce .woocommerce-ordering select {
	border: 1px solid var(--e-global-color-border);
	border-radius: var(--global-border-radius);
	background-color: var(--e-global-color-background) !important;
	padding-inline: 1rem;
	height: 36px;
	max-width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime-local]:focus,
select:focus,
textarea:focus,
.woocommerce div.product form.cart div.quantity:focus-within,
.woocommerce .woocommerce-ordering select:focus {
	border: 2px solid var(--e-global-color-brand);
	outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-text-fill-color: var(--e-global-color-body-text) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	caret-color: var(--e-global-color-body-text);
}

textarea {
	min-height: 150px;
	padding-block: 0.5rem;
}

select {
	appearance: none;
	-webkit-appearance: none;
	padding-inline-end: 2.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 2l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 0.75em auto;
	cursor: pointer;
}

.single-post .single-post-title { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }
.single-post .entry-content h1 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); }       /* 24px → 32px */
.single-post .entry-content h2 { font-size: clamp(1.375rem, 1.125rem + 1vw, 1.75rem); } /* 22px → 28px */
.single-post .entry-content h3 { font-size: clamp(1.25rem, 1rem + 0.75vw, 1.5rem); }    /* 20px → 24px */
.single-post .entry-content h4 { font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem); }  /* 18px → 22px */
.single-post .entry-content h5 { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); }     /* 16px → 20px */
.single-post .entry-content h6 { font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem); }   /* 16px → 18px */

