/*
Theme Name: Otsar Seamless
Theme URI:
Author: Ori Kaufman
Author URI:
Description: Experimental copy of Otsar with seamless in-site navigation so header radio keeps playing between pages.
Version: 1.0.0-seamless
Requires at least: 6.0
Tested up to: 6.7
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: otsar
Tags: custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, rtl-language-support
*/

:root {
	--otsar-top-height: 8rem;
	--otsar-bottom-banner-height: 1.75rem;
	--otsar-header-bg: #ffffff;
	--otsar-menu-bg: #f7f7f7;
	--otsar-footer-bg: #f0f0f0;
	--otsar-banner-bg: #111111;
	--otsar-text: #1a1a1a;
	--otsar-text-muted: #666666;
	--otsar-text-inverse: #ffffff;
	--otsar-border: #000;
	--otsar-gutter: clamp(1rem, 3vw, 2rem);
	--otsar-shop-gutter: 0.625rem;
	--otsar-font-body: "narkiss-tam", sans-serif;
	--otsar-font-variable: "narkiss-yair-variable", sans-serif;
}

html {
	direction: rtl;
	font-family: var(--otsar-font-body);
}

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

body {
	margin: 0;
	/* padding-bottom: var(--otsar-bottom-banner-height); */
	font-family: var(--otsar-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--otsar-text);
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

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

@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: underline;
	}
}

a:focus {
	text-decoration: underline;
}

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

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#otsar-seamless-swap {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	min-width: 0;
}

.site-menu__component--hidden {
	display: none !important;
}

/* Fixed header + menu */
.site-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	overflow: hidden;
}

.site-header {
	background: var(--otsar-header-bg);
	border-bottom: 1px solid var(--otsar-border);
	padding-right: 0.625rem;
	max-height: 3.75rem;
}

.site-menu__option-row .site-menu__option:first-child {
	padding-right:0;
}

.site-header__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
	padding: 0;
	direction: ltr;
	min-height: 3.5rem;
	max-height: inherit;
}

.site-header__controls {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: stretch;
}

.site-header__brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	/* border-left: 1px solid #000; */
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0;
	text-decoration: none;
}

.site-header__logo-link:hover,
.site-header__logo-link:focus {
	text-decoration: none;
}

.site-logo {
	display: block;
	height: auto;
	width: auto;
	max-height: 50px;
	max-width: 131px;
	filter: invert(1);
}

.site-header__divider--vertical {
	display: block;
	width: 1px;
	min-height: 100%;
	align-self: stretch;
	background: var(--otsar-border);
	flex-shrink: 0;
}

/* Desktop radio placeholder */
.site-header__radio--desktop {
	display: flex;
	align-items: stretch;
	flex: 1;
	max-width: 28rem;
	min-width: 0;
	height: 100%;
	border: 0;
	border-right: 1px solid var(--otsar-border);;
}

.site-header__radio-section {
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-header__radio-play {
	flex-shrink: 0;
	width:4.5rem;
}

.site-header__radio-info {
	flex: 1;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 0.35rem;
	padding: 0 0.85rem;
	min-width: 0;
}

.site-header__radio-live {
	display: block;
	direction: ltr;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: var(--otsar-font-variable);
	color: inherit;
	text-decoration: none;
}

.site-header__radio-live:hover,
.site-header__radio-live:focus-visible {
	text-decoration: underline;
}

.site-header__radio-live strong {
	font-weight: 800;
}

.site-header__radio-live.is-playing {
	animation: otsar-radio-live-pulse 1.8s linear infinite;
}

@keyframes otsar-radio-live-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.25;
	}
}

.site-header__radio-progress {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	padding: 0.5rem 0;
}

.site-header__radio-progress-track {
	position: relative;
	flex: 1;
	min-width: 0;
	height: 1px;
	background: #000;
	cursor: pointer;
	touch-action: none;
}

.site-header__radio-progress-thumb {
	position: absolute;
	top: 50%;
	left: 0%;
	width: 11px;
	height: 11px;
	border-radius: 100%;
	background: #000;
	border: 0;
	transform: translate(-50%, -50%);
	cursor: grab;
	touch-action: none;
}

.site-header__radio-progress-thumb.is-dragging {
	cursor: grabbing;
}

.site-header__radio-progress-time {
	flex-shrink: 0;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.site-header__radio-soundcloud {
	position: fixed;
	left: -9999px;
	top: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.site-header__radio-soundcloud iframe {
	width: 1px;
	height: 1px;
	border: 0;
}

.site-header__radio-volume {
	flex-shrink: 0;
	width: 4rem;
}

.site-header__volume-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__volume-img {
	width: 1.30rem;
	height: auto;
	max-width: none;
}

.site-header__play-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	padding-right: 0.5rem;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__play-icon {
	display: block;
	width: 3rem;
	height: auto;
	max-width: none;
}

.site-header__play-icon[hidden] {
	display: none;
}

/* Mobile header tools */
.site-header__mobile-tools {
	display: none;
	align-items: stretch;
	align-self: stretch;
	height: 100%;
	border-right: 1px solid #000;
}

.site-header__mobile-tools .menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100%;
	padding: 0 0.85rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--otsar-text);
	cursor: pointer;
	font: inherit;
}

.site-header__mobile-tools .menu-toggle__icon {
	display: block;
	width: 1.5rem;
	height: auto;
	filter: invert(1);
	transition: opacity 0.15s ease;
}

body.menu-open .site-header__mobile-tools .menu-toggle__icon {
	opacity: 0;
}

.site-header__mobile-tools .menu-toggle::before,
.site-header__mobile-tools .menu-toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.35rem;
	height: 2px;
	background: #000;
	border-radius: 1px;
	opacity: 0;
	transition: opacity 0.15s ease, transform 0.15s ease;
	pointer-events: none;
}

body.menu-open .site-header__mobile-tools .menu-toggle::before {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .site-header__mobile-tools .menu-toggle::after {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__radio-link {
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 0 1rem;
	direction: rtl;
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__radio-link:hover,
.site-header__radio-link:focus {
	text-decoration: none;
}

body.menu-radio-open .site-header__radio-link {
	font-weight: 700;
}

@media (min-width: 768px) {
	.site-header__radio--desktop {
		display: flex;
	}

	.site-header__mobile-tools {
		display: none;
	}

	.site-header__brand {
		/*padding: 0.5rem;*/
	}

	.site-logo {
	}

	.site-header__desktop-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		align-self: center;
		margin-inline-end: 0.75rem;
		width: 2.25rem;
		height: 2.25rem;
		padding: 0;
		border: 1px solid var(--otsar-border);
		border-radius: 999px;
		background: #fff;
		cursor: pointer;
	}

	.site-header__desktop-menu-toggle-icon {
		display: block;
		width: 0.625rem;
		height: 0.625rem;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		transform: rotate( 45deg );
		margin-top: -0.2rem;
		transition: transform 0.2s ease;
	}

	body.site-menu-collapsed .site-header__desktop-menu-toggle-icon {
		transform: rotate( -135deg );
		margin-top: 0.15rem;
	}

	.site-menu {
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	body.site-menu-collapsed .site-menu {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
	}
}

.site-header__desktop-menu-toggle {
	display: none;
}

.menu-toggle {
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--otsar-border);
	border-radius: 999px;
	background: #fff;
	color: var(--otsar-text);
	cursor: pointer;
	font: inherit;
}

.site-menu {
	background: #fff;

}

.site-menu__top {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0.3125rem;
	padding-right: 0.625rem;
	overflow: hidden;
	border-bottom: 1px solid var(--otsar-border);
}

.site-menu__top-nav {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	min-width: 0;
}

.site-menu__top-static {
	display: flex;
	flex: 0 1 auto;
	align-items: stretch;
	justify-content: flex-end;
	direction: rtl;
	/* border-left: 1px solid var(--otsar-border); */
	 --otsar-menu-static-padding-y: 0.2rem; 
	--otsar-menu-static-back-separator-gap: 0.7rem;
	/* padding: var(--otsar-menu-static-padding-y) 0.2rem; */
}

.site-menu__component--static-back {
	display: flex;
	align-items: center;
	align-self: stretch;
	position: relative;
	margin-left: var(--otsar-menu-static-back-separator-gap);
	border-left: 1px solid var(--otsar-border);
}


.site-menu__static-filters {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	align-self: stretch;
	justify-content: flex-end;
	gap: 0.3125rem;
	border-left: 1px solid var(--otsar-border);
}

.site-menu__static-back {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 0.9375rem 0 0.7rem;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
}

.otsar-variable-font {
	font-family: var(--otsar-font-variable);

}

.otsar-recipe-single__instructions-title { font-weight: 600; }
.otsar-recipe-single__part-ingredients p { font-size: 1.125rem !important; line-height: 1.8 !important; }

.site-menu__option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4375rem;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 800;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.site-menu__option--active {
	font-weight: 800;
}

.site-menu__back-link {
	display: flex;
	align-items: center;
	gap: 0.9375rem;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
	direction: rtl;
	flex-direction: row-reverse;
}

.site-menu__back-link:hover,
.site-menu__back-link:focus {
	text-decoration: none;
	color: #000;
}

.site-menu__back-label {
	flex-shrink: 0;
}

.site-menu__back-arrow {
	display: block;
	min-width: 3rem;
	height: 0.5rem;
	align-self: center;
}

.site-menu__back-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.site-menu__static-group {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
}

.site-menu__static-label {
	font-size: 0.8125rem;
	color: #000;
	white-space: nowrap;
	position: relative;
	bottom:4px;
}

.site-menu__static-group-left-padding {
	padding-left: 1rem;
}

.site-menu__static-separator {
	font-size: 0.8125rem;
	line-height: 1.4375rem;
	color: #000;
	padding: 0 0.25rem;
}

.site-menu__option-row {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.site-menu__top-nav .menu-item a::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(100% + 1.75rem);
	height: calc(100% + 0.85rem);
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	opacity: 0;
	transition: opacity 0.15s ease;
	pointer-events: none;
	background-image: url('assets/images/menu-circle-inyan.png');
}

.site-menu__top-nav .menu-item a:hover::before,
.site-menu__top-nav .menu-item a:focus-visible::before {
	opacity: 1;
}

.site-menu__top-nav .current-menu-item > a::before,
.site-menu__top-nav .current_page_item > a::before,
.site-menu__top-nav .current-menu-ancestor > a::before,
.site-menu__top-nav .current-menu-parent > a::before,
.site-menu__top-nav .current_page_ancestor > a::before,
.site-menu__top-nav .current_page_parent > a::before {
	opacity: 1;
}

.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-item > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current-menu-item > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_item > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current_page_item > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-ancestor > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current-menu-ancestor > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-parent > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current-menu-parent > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_ancestor > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current_page_ancestor > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_parent > a::before,
.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:focus-visible ) .current_page_parent > a::before {
	opacity: 0;
}

.site-menu__list--secondary .menu-item a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0.1rem;
	width: 100%;
	height: 0.75rem;
	transform: translateX( -50% );
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	opacity: 0;
	transition: opacity 0.15s ease;
	pointer-events: none;
	/* filter: invert(1); */
}

.site-menu__list.site-menu__list--secondary a {
	font-weight: normal;
	font-size: 1rem;
}

.site-menu__list--secondary .menu-item a[data-line-size="xs"]::after {
	/* background-image: url('assets/images/menu-line-xs.png'); */
	background-image: url('assets/images/menu-line-xs2.png'); 
}

.site-menu__list--secondary .menu-item a[data-line-size="sm"]::after {
	background-image: url('assets/images/menu-line-sm.png');
}

.site-menu__list--secondary .menu-item a[data-line-size="md"]::after {
	background-image: url('assets/images/menu-line-md.png');
}

.site-menu__list--secondary .menu-item a[data-line-size="lg"]::after {
	background-image: url('assets/images/menu-line-lg.png');
}

.site-menu__list--secondary .menu-item--current a::after {
	opacity: 1;
}

.site-menu__list--secondary:has( .menu-item:not( .menu-item--current ) a:hover ) .menu-item--current a::after,
.site-menu__list--secondary:has( .menu-item:not( .menu-item--current ) a:focus-visible ) .menu-item--current a::after {
	opacity: 0;
}

.site-menu__list--secondary .menu-item a:hover::after,
.site-menu__list--secondary .menu-item a:focus-visible::after {
	opacity: 1;
}

.site-menu__list--secondary .menu-item a,
.site-menu__top-nav .menu-item a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-menu__option:hover,
.site-menu__option:focus {
	text-decoration: none;
}

.site-menu__toggle {
	display: inline-block;
	width: 0.875rem;
	height: 0.5rem;
	border: 1px solid #000;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}

.site-menu__toggle::after {
	content: "";
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	background: #000;
	transition: left 0.15s ease, right 0.15s ease;
}

/* RTL option rows: index 0 is on the physical right, so --left (first
   option active) paints the black half on the right toward the selection. */
.site-menu__toggle--left::after {
	right: 0;
	left: auto;
}

.site-menu__toggle--right::after {
	left: 0;
	right: auto;
}

.site-menu__divider--vertical {
	width: 1px;
	align-self: stretch;
	min-height: 2.5rem;
	background: #000;
	flex-shrink: 0;
}

.site-menu__divider--horizontal {
	display: block;
	width: 100%;
	height: 1px;
	background: #000;
}

.site-menu__bottom {
	padding: 0.2375rem 0.325rem;
	direction: rtl;
	border-bottom: 1px solid var(--otsar-border);
}

.site-menu__bottom-empty {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6875rem;
	color: #000;
	text-align: right;
}

.site-menu__list--secondary {
	direction: rtl;
}

.site-menu__list--secondary .menu-item--cart a::after {
	display: none;
}

.menu-item--cart .site-menu__cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	min-height: 1.25rem;
	padding: 0.125rem;
	color: inherit;
}

@keyframes otsar-cart-pop-shake {
	0% {
		transform: scale(1) rotate(0deg);
	}
	15% {
		transform: scale(1.22) rotate(-10deg);
	}
	30% {
		transform: scale(1.22) rotate(10deg);
	}
	45% {
		transform: scale(1.16) rotate(-7deg);
	}
	60% {
		transform: scale(1.12) rotate(5deg);
	}
	75% {
		transform: scale(1.06) rotate(-3deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}

.menu-item--cart .site-menu__cart-link.is-adding {
	animation: otsar-cart-pop-shake 0.7s ease;
}

.site-menu__cart-icon {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.site-menu__cart-count {
	position: absolute;
	top: -0.2rem;
	inset-inline-start: -0.35rem;
	min-width: 0.875rem;
	height: 0.875rem;
	padding: 0 0.2rem;
	border-radius: 999px;
	background: #000;
	color: #fff;
	font-size: 0.625rem;
	line-height: 0.875rem;
	text-align: center;
	pointer-events: none;
}

.site-menu__list,
.site-menu ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	height:100%
}

.site-menu__list--primary {
	direction: rtl;
}

.site-menu__list .menu-item {
	margin: 0;
}

.site-menu__list a,
.site-menu__top-nav a {
	display: block;
	padding: 0.4375rem;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 800;
	text-decoration: none;
	color: #000;
}

.site-menu__list a:hover,
.site-menu__list a:focus,
.site-menu__top-nav a:hover,
.site-menu__top-nav a:focus {
	text-decoration: none;
}

.menu-item--search {
	position: relative;
}

.menu-item--search-active {
	flex: 1 1 auto;
	min-width: 0;
}

.site-menu__top:has( .menu-item--search-active ) {
	overflow: visible;
}

.site-menu__search-form {
	display: flex;
	align-items: center;
	min-width: 0;
	margin: 0;
}

.site-menu__search-field {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	max-width: 18rem;
}

.site-menu__search-label {
	flex: 0 0 auto;
	font: inherit;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 800;
	color: #000;
	white-space: nowrap;
	padding-right: 0.7375rem;
	display: none;
}

.site-menu--search .site-menu__search-label,
.menu-item--search.current-menu-item .site-menu__search-label {
	display: inline;
}

.site-menu--search .site-menu__search-field {
	max-width: 22rem;
}

.site-menu__search-icon {
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
	color: #000;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-50%);
	transition: opacity 0.15s ease;
}

.menu-item--search-active .site-menu__search-field > .site-menu__search-icon,
.site-menu__search-form:focus-within .site-menu__search-field > .site-menu__search-icon {
	opacity: 1;
}

.site-menu__search-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.site-menu__search-clear {
	position: absolute;
	left: 0;
	top: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	cursor: pointer;
	transform: translateY(-50%);
}

.site-menu__search-clear .site-menu__search-icon {
	position: static;
	opacity: 1;
	pointer-events: none;
	transform: none;
}

.site-menu--search .site-menu__search-clear,
.menu-item--search.current-menu-item .site-menu__search-clear {
	display: inline-flex;
	opacity: 1;
}

.site-menu--search .site-menu__search-field > .site-menu__search-icon,
.menu-item--search.current-menu-item .site-menu__search-field > .site-menu__search-icon {
	display: none;
}

.search .site-menu__search-input {
	font-weight: 400;
}

.site-menu__static-group-inner { 
	display: flex;
    align-items: center;
    gap: 0.275rem;
 }

.site-menu__search-input {
	min-width: 4.5rem;
	border: 0;
	/* border-bottom: 1px solid transparent; */
	background: transparent;
	padding: 0.4375rem;
	font: inherit;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 800;
	color: #000;
	caret-color: #000;
	direction: rtl;
	text-align: right;
	transition: width 0.15s ease, padding 0.15s ease, border-color 0.15s ease;
}

.search .menu-item--search {
	/*border-right: 1px solid #000;
	border-left: 1px solid #000;
	margin-right: 0.4375rem;
	padding-right: 0.4375rem;
	padding-left: 0.7375rem;*/
	height: 100%;
  display: flex;
}

.menu-item--search-active .site-menu__search-input,
.site-menu__search-form:focus-within .site-menu__search-input {
	width: 100%;
	min-width: 10rem;
	padding-left: 1.75rem;
	border-bottom-color: #000;
}

.site-menu__search-input:focus {
	outline: none;
}

.site-menu__search-input::placeholder {
	color: #000;
	opacity: 1;
}

.menu-item--search-active .site-menu__search-input::placeholder,
.site-menu__search-form:focus-within .site-menu__search-input::placeholder {
	opacity: 0.35;
}

/* Full-width main content */
.site-content {
	flex: 1;
	width: 100%;
	padding: var(--otsar-top-height) 0 0;
}

/* Hero slider */
.homepage-widgets {
	width: 100%;
}

.widget_otsar_separator {
	margin: 0;
	padding: 0;
}

.otsar-separator {
	display: block;
	/*width: calc(100% + (2 * var(--otsar-gutter)));*/
	max-width: 100vw;
	margin: 0;
	border: 0;
	border-top: 1px solid var(--otsar-border);
}

.widget_otsar_hero_slider {
	margin: 0;
	padding: 0;
}

.widget_otsar_store_items {
	margin: 0;
	padding: 0;
}

.widget_otsar_filtered_posts {
	margin: 0;
	padding: 0;
}

.otsar-filter-posts-widget {
	width: 100%;
	padding: 0 var(--otsar-gutter) 3rem;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: calc(100svh - var(--otsar-top-height));
	min-height: 16rem;
	overflow: hidden;
	background: #000;
	direction: ltr;
}

.hero-slider__viewport {
	width: 100%;
	height: 100%;
	overflow: hidden;
	touch-action: pan-y;
}

.hero-slider__track {
	display: flex;
	height: 100%;
	direction: ltr;
	transition: transform 0.55s ease;
	will-change: transform;
}

.hero-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	height: 100%;
}

.hero-slider__slide--clone {
	pointer-events: none;
}

.hero-slider__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.hero-slider__media {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: calc(var(--otsar-bottom-banner-height) + 1.5rem);
	z-index: 2;
	display: flex;
	flex-direction: row;
	direction: ltr;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	transform: translateX(-50%);
}

.hero-slider__dot {
	width: 0.625rem;
	height: 0.625rem;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider__dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
	background: rgba(255, 255, 255, 0.75);
	outline: none;
}

.site-main {
	width: 100%;
	min-width: 0;
	padding: 0 var(--otsar-gutter) 3rem;
}

.otsar-featured-post-container {
	padding: 1rem;
}

.site-main--event-archive {
	padding-inline: 0;
}

.site-main--event-archive .otsar-event-archive.otsar-filter-posts {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
}

.otsar-filter-status {
	margin: 1.5rem 0 2rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--otsar-border);
	background: #fff;
}

.otsar-filter-status__list {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 12rem, 1fr ) );
	gap: 0.75rem 1.5rem;
	margin: 0;
}

.otsar-filter-status__item {
	margin: 0;
}

.otsar-filter-status__item dt {
	margin: 0 0 0.15rem;
	font-size: 0.8125rem;
	color: var(--otsar-text-muted);
}

.otsar-filter-status__item dd {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
}

.otsar-filter-status__query {
	margin-top: 1rem;
}

.otsar-filter-status__query-output {
	margin: 0.75rem 0 0;
	padding: 0.75rem;
	overflow: auto;
	font-size: 0.8125rem;
	line-height: 1.5;
	background: #f7f7f7;
	border: 1px solid var(--otsar-border);
}

.otsar-filter-posts {
	width: 100%;
	margin: 0 0 2rem;
	width: calc(100% + (2 * var(--otsar-gutter)));
	max-width: 100vw;
	margin-inline: calc(-1 * var(--otsar-gutter));
}

/* Full-bleed related strip (always table; rendered outside .site-main). */
.otsar-related-posts.otsar-filter-posts {
	width: 100%;
	max-width: 100%;
	margin: 2.5rem 0 0;
	margin-inline: 0;
}

.otsar-related-posts__header {
	padding-inline: var(--otsar-gutter);
	margin-bottom: 0.75rem;
}

.otsar-related-posts__title {
	margin: 0;
	font-family: var(--otsar-font-body), sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
}

/* Single-row related strip — 9:13 blocks, drag-scroll. */
.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post {
	border-top: 0 !important;
	border-bottom: 0 !important;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post:first-child {
	border-right: 0 solid black !important;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-posts__grid {
	--otsar-related-block-width: 320px;
	--otsar-related-block-height: calc( var( --otsar-related-block-width ) * 13 / 9 );
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	grid-template-columns: none;
	grid-auto-rows: auto;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	touch-action: manipulation;
	border-top: 1px solid black;
	border-left: 0;
}

.entry-header { margin-top: 0.75rem; }
.otsar-intro-paragraph, .entry-header { min-width: 67%; }
.otsar-intro-paragraph p,.entry-content h2 { font-size: clamp(1.5rem, 2vw, 1.75rem) !important; line-height: 1.215 !important; font-weight: 600 !important; }
.entry-content h2 { margin-top:0 !important; }

.single .entry-header--thumb-bg {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin-top: 0.75rem;
	padding: 0;
	line-height: 0;
	overflow: hidden;
	border-bottom: 1px solid #000;
}

.wp-block-paragraph strong { font-weight: 600 !important; }

.otsar-featured-content h1 {
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.2;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	margin-block:0 !important;
}

.single .entry-header--thumb-bg .entry-header__bg-image {
	display: block;
	position: relative;
	z-index: 0;
	width: auto;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	padding: 0;
	object-fit: contain;
}

.single .entry-header--thumb-bg .entry-header__text {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	box-sizing: border-box;
	width: max-content;
	max-width: min( 45vh, 100% );
	padding: 0;
	line-height: normal;
	direction: rtl;
	z-index: 1;
}

@media ( max-width: 781px ) {
	.single .entry-header--thumb-bg {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: calc( 100% + ( 2 * var( --otsar-gutter ) ) );
		max-width: 100vw;
		margin: 0 calc( -1 * var( --otsar-gutter ) );
		overflow: visible;
		line-height: normal;
	}

	.single .entry-header--thumb-bg .entry-header__bg-image {
		order: 2;
		width: 100%;
		max-width: none;
		margin: 0.75rem 0 0;
		object-fit: cover;
	}

	.single .entry-header--thumb-bg .entry-header__text {
		order: 1;
		position: static;
		top: auto;
		right: auto;
		transform: none;
		width: auto;
		max-width: 65vh;
		margin: 0.75rem var( --otsar-gutter ) 0;
	}
}

.entry-hero {
	width: calc( 100% + ( 2 * var( --otsar-gutter ) ) );
	max-width: 100vw;
	margin: 0 calc( -1 * var( --otsar-gutter ) ) 1.5rem;
	padding: 0;
	overflow: hidden;
}

.entry-hero__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	line-height: 0;
}

.entry-hero__caption {
	display: block;
	width: fit-content;
	max-width: calc( 100% - ( 2 * var( --otsar-gutter ) ) );
	margin: 0.5rem auto 0 0;
	padding: 0 var( --otsar-gutter );
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 0.8125rem;
	font-variation-settings: "MONO" 0, "wght" 600;
	line-height: 1.35;
	color: #000;
	text-align: left;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-posts__grid::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-posts__grid.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-posts__grid.is-dragging a {
	pointer-events: none;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post,
.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post--featured {
	box-sizing: border-box;
	flex: 0 0 var( --otsar-related-block-width );
	flex-shrink: 0;
	width: var( --otsar-related-block-width ) !important;
	min-width: var( --otsar-related-block-width ) !important;
	max-width: var( --otsar-related-block-width ) !important;
	grid-row: auto !important;
	aspect-ratio: 9 / 13;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	border-top: 1px solid #000;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post:last-child {
	border-left: 1px solid #000;
}

.otsar-related-posts.otsar-filter-posts--table .otsar-filter-post--featured .otsar-filter-post__thumbnail {
	height: auto;
}

.otsar-related-posts .otsar-filter-post--placeholder {
	display: none !important;
}

.otsar-filter-posts--table, .ostar-filter-posts--list {
	width: calc(100% + (2 * var(--otsar-gutter)));
	max-width: 100vw;
	margin-inline: calc(-1 * var(--otsar-gutter));
}

/* Table grid blocks are always 9:13 (width:height); height follows column width. */
.otsar-filter-posts--table {
	container-type: inline-size;
	container-name: otsar-filter-posts-table;
}

.otsar-filter-posts__grid {
	list-style: none;
	margin: 0;
	padding: 0;
}

.otsar-filter-posts--table .otsar-filter-posts__grid {
	--otsar-table-columns: 5;
	--otsar-table-block-height: calc( 100cqw / var( --otsar-table-columns ) * 13 / 9 );
	display: grid;
	grid-template-columns: repeat( var( --otsar-table-columns ), minmax( 0, 1fr ) );
	grid-auto-rows: calc( var( --otsar-table-block-height ) / 2 );
	width: 100%;
	direction: rtl;
	border-left: 1px solid var(--otsar-border);
}

.otsar-filter-posts--table .otsar-filter-post {
	grid-row: span 2;
	aspect-ratio: 9 / 13;
	height: auto;
	min-height: 0;
	max-height: none;
	min-width: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	border-right: 1px solid var(--otsar-border);
	border-bottom: 1px solid var(--otsar-border);
	scroll-margin-top: calc( var( --otsar-site-top-height, 8rem ) + 1rem );
}

.otsar-filter-posts--table .otsar-filter-post--featured {
	grid-row: span 4;
	aspect-ratio: 9 / 26;
	height: auto;
	min-height: 0;
	max-height: none;
}

.otsar-filter-posts--list .otsar-filter-post--featured {
	min-height: 0;
}

.otsar-filter-posts--table .otsar-filter-post--placeholder {
	grid-row: span 2;
	aspect-ratio: 9 / 13;
	height: auto;
	min-height: 0;
	max-height: none;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-right: 1px solid var(--otsar-border);
	border-bottom: 1px solid var(--otsar-border);
	pointer-events: none;
}

.otsar-filter-posts--list .otsar-filter-posts__grid {
	display: flex;
	flex-direction: column;
}

.otsar-filter-posts--list .otsar-filter-post {
	margin: 0;
	border: 1px solid var(--otsar-border);
	border-bottom: 0;
	scroll-margin-top: calc( var( --otsar-site-top-height, 8rem ) + 1rem );
	border-right: 0;
}

.otsar-filter-posts--list .otsar-filter-post:first-child {
	border-top: none;
}

.otsar-filter-posts--list .otsar-filter-post:last-child {
	border-bottom: 1px solid var(--otsar-border);
}


.otsar-filter-post__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.otsar-filter-posts--list .otsar-filter-post__link {
	padding: 0.17rem;
}

.otsar-filter-post__thumbnail {
	flex-shrink: 0;
	overflow: hidden;
	/*	aspect-ratio: 3 / 2; */
	/* background: #f2f2f2; */
	margin-bottom: 0.75rem;
}

.otsar-filter-posts--list .otsar-filter-post:hover .otsar-filter-post__thumbnail-image-bg {
	display: block;
}

.site-main--list .otsar-filter-post__thumbnail-image-bg {
	position: absolute;
	bottom:0;
	left:20rem;
	display: none;
	width:185px !important;
	height:230px !important;
	background-size: cover;
	background-position: center;
	z-index: 9999999;
}

.site-main--list .otsar-filter-post__thumbnail {
	display: none;
}

.otsar-filter-post--featured .otsar-filter-post__thumbnail {
	aspect-ratio: auto;
	height: 430px;
}

@media (max-width: 767px) {
	.otsar-filter-post--featured .otsar-filter-post__thumbnail {
		height: 240px;
	}
}

.otsar-filter-post--no-excerpt .otsar-filter-post__thumbnail {
	flex: 1 1 auto;
	aspect-ratio: auto;
	min-height: 0;
	height: auto;
}

.otsar-filter-post--no-excerpt.otsar-filter-post--featured .otsar-filter-post__thumbnail {
	height: auto;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__body {
	height: 100%;
	min-height: 0;
	display: grid;
	grid-template-rows: 1fr;
	align-content: stretch;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__thumbnail {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	margin: 0;
	min-height: 0;
	height: 100%;
	width: 100%;
	flex: none;
	z-index: 0;
	align-self: stretch;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__title {
	display: none;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__info {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	z-index: 2;
	align-self: end;
	justify-self: start;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	margin: 0;
	padding-inline: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
	padding: 0.75rem;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__author {
	font-family: var(--otsar-font-body);
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 800;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__date {
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: 0.9em;
	line-height: 1.2;
	font-weight: 400;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__body::before {
	content: "";
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: 1;
	pointer-events: none;
	transition: background-color 0.2s ease;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:hover,
.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:focus-visible {
	background: transparent;
	color: inherit;
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:hover .otsar-filter-post__body::before,
.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:focus-visible .otsar-filter-post__body::before {
	background: rgba( 255, 255, 255, 0.72 );
}

.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:hover .otsar-filter-post__info,
.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:focus-visible .otsar-filter-post__info {
	opacity: 1;
}

.otsar-filter-post--no-excerpt .otsar-filter-post__read-more {
	margin-top: 0;
}

.otsar-filter-post__thumbnail-image {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.otsar-filter-post__thumbnail-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.otsar-filter-post__thumbnail-image-bg {
	display: none;
	background-size: cover;
	background-position: center;
}

.otsar-filter-post__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	padding: 0.625rem;
	position: relative;
}

.site-main--list .otsar-filter-post__body {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	padding: 0.4375rem !important;
}

.otsar-filter-post__info {
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-content: space-between;
	font-size: 0.9em;
	margin-bottom: 0.4rem;

}

.site-main--list .otsar-filter-post__info {
	display: flex;
	padding-left:1rem;
}

.otsar-filter-post__info span:nth-child(2) {
	text-align: left;
}

.site-main--list .otsar-filter-post__info span:nth-child(2) {
	text-align: right;
}

.site-main--list .otsar-filter-post__info {
	min-width: 20rem;
	margin:0;
	font-size: 0.875rem;
}

.site-main--list .type-photoshoot .otsar-filter-post__info {
	flex-direction: row-reverse;
}

.site-main--list .otsar-filter-post__info span {
	width: 50%;
}

.otsar-filter-post__link:hover,
.otsar-filter-post__link:focus-visible {
	background: #000;
	color: #fff;
	text-decoration: none;
}

.otsar-filter-post__title {
	margin: 0 0 0.2rem;
	padding: 0;
	font-size: 1.7rem;
	line-height: 1;
	font-weight: 800;
	max-width: 30rem;
	/*	overflow: hidden; */
}

.otsar-filter-posts--list .otsar-filter-post__title {
	font-size: 1.3125rem;
	line-height: 1.14;
	font-weight: 700;
	margin:0;
}

.otsar-filter-posts--list .otsar-filter-post__body {
	padding: 0.2675rem !important;
}

.otsar-filter-post__excerpt {
	flex: 1 1 auto;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.375;
	font-weight: 400;
}

.site-main--list .otsar-filter-post__excerpt {
	display: none;
}

.otsar-filter-post__excerpt p {
	margin: 0;
}

.otsar-filter-post__read-more {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: nowrap;
	min-width: 0;
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.9rem;
}

.site-main--list .otsar-filter-post__read-more {
	display: none;
}

.otsar-filter-post__read-more-text {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
}

.otsar-filter-posts--list .otsar-filter-post__read-more-text {
	display: none;
}

.otsar-filter-post__read-more-arrow {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	line-height: 0;
}

.otsar-filter-post__read-more-arrow svg {
	display: block;
	width: 100%;
	/*max-width: 179px;*/
	height: 8px;
	transform: scaleX( -1 );
}

.otsar-filter-posts__pagination {
	margin-top: 1.5rem;
}

.otsar-filter-posts__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	margin: 0 0.15rem;
	padding: 0.35rem 0.5rem;
	border: 1px solid var(--otsar-border);
	text-decoration: none;
	color: inherit;
}

.otsar-filter-posts__pagination .page-numbers.current {
	font-weight: 800;
}

.otsar-empty-archive {
	padding: 3rem var(--otsar-gutter) 4rem;
	text-align: center;
}

.otsar-empty-archive__message {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 800;
}

.otsar-filter-posts__load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.otsar-filter-posts__load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc( 100% / var( --otsar-table-columns, 5 ) );
	min-width: 200px;
	max-width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	border: 1px solid #000;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.otsar-filter-posts__load-more:hover,
.otsar-filter-posts__load-more:focus-visible {
	background: #000;
	color: #fff;
}

.otsar-filter-posts__load-more:disabled {
	cursor: wait;
	opacity: 0.7;
}

.otsar-filter-posts--list .otsar-filter-posts__load-more {
	/*width: 100%;*/
	min-width: 0;
}

/* Store items widget */
.otsar-store-items {
	--otsar-store-columns: 4;
	width: 100%;
	padding: 0 var(--otsar-gutter) 2rem;
}

.otsar-store-items__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 3vw, 2rem);
	line-height: 1.2;
	font-weight: 800;
}

.otsar-store-items__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 1rem;
	width: 100%;
}

.otsar-store-item {
	display: flex;
	flex: 0 0 calc( ( 100% - ( var( --otsar-store-columns ) - 1 ) * 1rem ) / var( --otsar-store-columns ) );
	flex-direction: column;
	/* max-width: calc( ( 100% - ( var( --otsar-store-columns ) - 1 ) * 1rem ) / var( --otsar-store-columns ) );*/
	min-width: 0;
	max-width:470px;
}

.otsar-store-item__thumb-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.otsar-store-item__thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f2f2f2;
}

.otsar-store-item__thumbnail-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.otsar-store-item__details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	/* padding-top: 0.75rem; */
}

.otsar-store-item__info {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	background: #fff;
}

.otsar-store-item__info, .otsar-store-item__actions {
	padding: 0.25rem;
}

.otsar-store-item__title {
	margin: 0;
	font-size: 1.325rem;
	line-height: 1.3;
	font-weight: 800;
	text-wrap: nowrap;
	overflow:hidden;
	text-overflow: ellipsis;
}

.otsar-store-item__title a {
	color: inherit;
	text-decoration: none;
}

.otsar-store-item__title a:hover,
.otsar-store-item__title a:focus-visible {
	text-decoration: underline;
}

.otsar-store-item__price {
	flex: 0 0 auto;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: 1.125rem;
	line-height: 1.2;
	white-space: nowrap;
}

.otsar-store-item__actions {
	display: flex;
	justify-content: flex-end;
	padding-top: 0;
	padding-bottom: 0;
}

.otsar-store-item__cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: 1rem;
	line-height: 1.2;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.otsar-store-item__cart-link:hover,
.otsar-store-item__cart-link:focus-visible {
	text-decoration-thickness: 2px;
}

.otsar-store-item__cart-link.is-busy {
	opacity: 0.55;
	pointer-events: none;
}

.otsar-store-items__load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.otsar-store-items__load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc( 100% / var( --otsar-store-columns, 3 ) );
	min-width: 200px;
	max-width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	border: 1px solid #000;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.otsar-store-items__load-more:hover,
.otsar-store-items__load-more:focus-visible {
	background: #000;
	color: #fff;
}

.otsar-store-items__load-more:disabled {
	cursor: wait;
	opacity: 0.7;
}

@media (max-width: 767px) {
	.otsar-store-items {
		--otsar-store-columns: 1;
	}

	.otsar-store-items__load-more {
		width: 100%;
		min-width: 0;
	}
}

/* Shop archive — full-width product grid */
.woocommerce-cart .site-main, .woocommerce-checkout .site-main { padding: 0 !important; }
.woocommerce-checkout .entry-header { padding-right: var(--otsar-shop-gutter); }
.site-main--shop {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.otsar-store-items--shop {
	padding: var(--otsar-shop-gutter);
	padding-top:0;
}

.otsar-shop-archive {
	width: 100%;
}

.otsar-store-items--shop .otsar-store-item {
	max-width: none;
}

/* Cart page */
.woocommerce-error, .woocommerce-info, .woocommerce-message {
	border:none;
	background:none
}

.woocommerce-info::before { color:black; }

/* Single product — full-height layout below fixed header/menu */
.site-main--product {
	width: 100%;
	max-width: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: calc(100svh - var(--otsar-top-height));
}

.site-main--product > .woocommerce-notices-wrapper,
.site-main--product > .woocommerce-message,
.site-main--product > .woocommerce-info,
.site-main--product > .woocommerce-error {
	margin: 0;
	padding: 0.75rem var(--otsar-gutter);
}

.otsar-single-product {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
	min-height: calc(100svh - var(--otsar-top-height));
	height: calc(100svh - var(--otsar-top-height));
}

.otsar-single-product__top {
	flex: 0 0 auto;
	width: 100%;
	padding: 0.75rem 0.625rem;
	border-bottom: 1px solid var(--otsar-border);
}

.otsar-single-product__archive-title,
.woocommerce-cart .entry-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.2;
	font-weight: 800;
	color: inherit;
	text-decoration: none;
}
.otsar-single-product__archive-title:hover,
.otsar-single-product__archive-title:focus-visible {
	text-decoration: underline;
}

.otsar-single-product__main {
	display: flex;
	flex-direction: row;
	flex: 1;
	width: 100%;
	min-height: 0;
	justify-content: space-between;
	padding: 0.625rem 0 0.625rem 0.625rem;
}

.otsar-single-product__info {
	display: flex;
	flex-direction: column;
	width: 50%;
	min-width: 0;
	min-height: 0;
	padding: 0 0.625rem;

	gap: 1.25rem;
	overflow: auto;
}

.otsar-single-product__title-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}

.otsar-single-product__title {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.2;
	min-width: 0;
}

.otsar-single-product__price {
	flex-shrink: 0;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	line-height: 1.2;
}

.otsar-single-product__description {
	/* flex: 1; */
	min-height: 0;
	font-size: 1rem;
	line-height: 1.5;
	overflow: auto;
}

.otsar-single-product__description > *:first-child {
	margin-top: 0;
}

.otsar-single-product__description > *:last-child {
	margin-bottom: 0;
}

.otsar-single-product__actions {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-top: 125px;
}

.otsar-single-product__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 290px;
	padding: 0.25rem 0.65rem;
	border: 1px solid #000;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	margin: auto
}

.otsar-single-product__btn:hover,
.otsar-single-product__btn:focus-visible {
	background: #000;
	color: #fff;
	text-decoration: none;
}

.otsar-single-product__media {
	display: flex;
	flex-direction: column;
	/* width: 70%; */
	width: 50%;
	/* min-height: 0; */
}

.otsar-single-product__stage {
	width: 100%;
    aspect-ratio: 710 / 720;
    background: #d9d9d9; center/cover no-repeat;
    overflow: hidden;
}

.site-main--product .woocommerce-notices-wrapper {
	display:none;
}

.otsar-single-product__stage-image {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: contain;
	object-position: center;
}

.otsar-single-product__thumbs {
	display: flex;
    gap: 0.625rem;
    margin-top: 0.625rem;
}

.otsar-single-product__thumb {
	flex: 1 1 0;
    aspect-ratio: 710 / 720;
    background: #ccc center/cover no-repeat;
    overflow: hidden;
    cursor: pointer;
	background: #d9d9d9;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity 0.15s ease, border-color 0.15s ease;
	border: none;
	padding: 0;
}

.otsar-single-product__thumb:hover,
.otsar-single-product__thumb:focus-visible {
	opacity: 0.85;
}

.otsar-single-product__thumb.is-active {
	opacity: 1;
	/* border-color: #000; */
}

.otsar-single-product__thumb img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
	.site-main--product {
		min-height: 0;
	}

	.otsar-single-product {
		height: auto;
		min-height: 0;
	}

	.otsar-single-product__main {
		flex-direction: column;
		padding: 0.625rem;
	}

	.otsar-single-product__info,
	.otsar-single-product__media {
		flex: none;
		width: 100%;
		max-width: 100%;
		height: auto;
		padding:0;
	}

	.otsar-single-product__media {
		margin-top: 0.625rem;
	}

	.otsar-single-product__stage {
		flex: none;
	}

	.otsar-single-product__thumbs {
		flex: none;
		height: auto;
		aspect-ratio: auto;
		grid-auto-rows: minmax(4.5rem, 22vw);
	}

	.otsar-single-product__info {
		overflow: visible;
	}

	.otsar-single-product__description {
		overflow: visible;
	}
}

.otsar-store-item:hover .otsar-store-item__info {
	filter: invert(1);
}

.site-main > article {
	margin-bottom: 2.5rem;
}

.site-main > article:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.page-header {
	padding: 2rem var(--otsar-gutter) 0;
}

.entry-title {
	margin: 0;
	font-size: clamp( 1.85rem, 7vw, 3.7rem );
	line-height: 1.1;
	font-weight: 800;
}

.entry-subtitle,
.otsar-secondary-title {
	margin: -0.35rem 0 0.75rem;
	font-family: var(--otsar-font-body), sans-serif;
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 400;
	line-height: 1.35;
	color: var(--otsar-text-muted);
}

.otsar-filter-post__secondary-title {
	margin: 0 0 0.35rem;
	padding: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
	max-width: 30rem;
	color: inherit;
}

.otsar-share {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.65rem;
	margin: 1.5rem 0 0;
}

.otsar-share__label {
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 0.875rem;
	font-variation-settings: "MONO" 0, "wght" 800;
	color: #000;
}

.otsar-share__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.otsar-share__link {
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 0.875rem;
	font-variation-settings: "MONO" 0, "wght" 800;
	text-decoration: none;
}

.otsar-share__link:hover,
.otsar-share__link:focus-visible {
	text-decoration: underline;
}

.entry-meta {
	margin-bottom: 1rem;
	font-size: clamp(1rem, 2vw, 1.3125rem);
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-variation-settings: "MONO" 0, "wght" 800;
}

.entry-meta__line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5em;
}

.entry-meta__thumbnail {
	display: inline-block;
	flex: 0 0 auto;
	line-height: 0;
}

.entry-meta__thumbnail-image {
	display: block;
	width: 3rem;
	height: 3rem;
	object-fit: cover;
}

.entry-meta__byline {
	min-width: 0;
}

.entry-meta__excerpt {
	margin: 0.45rem 0 0;
	max-width: 40rem;
	font-family: var(--otsar-font-body), sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	font-variation-settings: normal;
	line-height: 1.4;
	color: var(--otsar-text-muted, #555);
}

.entry-meta__terms {
	display: inline;
}

.entry-meta__term {
	color: inherit;
	text-decoration: none;
}

.entry-meta__term:hover,
.entry-meta__term:focus-visible {
	text-decoration: underline;
}

.entry-content {
	line-height: 1.45;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content pre,
.entry-content .wp-block-paragraph,
.entry-content .wp-block-list,
.entry-content .wp-block-quote {
	margin-block: 0.65em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content .wp-block-heading {
	margin-block: 1em 0.35em;
	line-height: 1.2;
}

.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content h3.wp-block-heading,
.entry-content h4.wp-block-heading,
.entry-content h5.wp-block-heading,
.entry-content h6.wp-block-heading {
	font-weight: 600;
	font-variation-settings: "MONO" 0, "wght" 600;
}

.entry-content h1 + p,
.entry-content h2 + p,
.entry-content h3 + p,
.entry-content h4 + p,
.entry-content h5 + p,
.entry-content h6 + p,
.entry-content .wp-block-heading + p,
.entry-content .wp-block-heading + .wp-block-paragraph {
	margin-top: 0.35em;
}

.entry-content p + h1,
.entry-content p + h2,
.entry-content p + h3,
.entry-content p + h4,
.entry-content p + h5,
.entry-content p + h6,
.entry-content p + .wp-block-heading,
.entry-content .wp-block-paragraph + .wp-block-heading {
	margin-top: 1em;
}

.single .entry-content p,
.single .entry-content .wp-block-paragraph {
	font-size: 1.175rem;
	line-height: 1.50;
}

.entry-content blockquote,
.entry-content .wp-block-quote,
.entry-content .wp-block-pullquote,
.entry-content blockquote p,
.entry-content .wp-block-quote p,
.entry-content .wp-block-pullquote p,
.entry-content .wp-block-pullquote__citation,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-quote .wp-block-quote__citation,
.entry-content .wp-block-quote strong,
.entry-content .wp-block-quote b,
.entry-content blockquote strong,
.entry-content blockquote b,
.entry-content .wp-block-pullquote strong,
.entry-content .wp-block-pullquote b {
	font-weight: 400 !important;
	font-variation-settings: "MONO" 0, "wght" 400;
	font-style: normal;
	text-align: right;
}

.entry-content blockquote,
.entry-content .wp-block-quote,
.entry-content .wp-block-pullquote {
	font-size: 1.3rem;
	line-height: 1.4;
	margin-inline: 0;
}

.entry-content blockquote p,
.entry-content .wp-block-quote p,
.entry-content .wp-block-pullquote p {
	font-size: inherit;
}

/* Footer */
.site-footer {
	width: 100%;
	background: none;
	color: #000;
	border-top: 1px solid var(--otsar-border);
	padding-bottom: var(--otsar-bottom-banner-height);
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4rem;
	padding: 0.625rem;
	direction: ltr;
}
.site-footer__inner,.site-footer__inner.footer-top {
	/* padding-bottom: 0; */
}
.site-footer__inner.footer-bottom {
	display: flex;
	align-items: end;
	padding-top: 0;
	font-size: 0.875rem;
	padding-bottom: 10px;
}
.site-footer__brand-col {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-width: 0;
}

.site-footer__logo-link {
	display: inline-flex;
	flex-shrink: 0;
	text-decoration: none;
}

.site-footer__logo-link:hover,
.site-footer__logo-link:focus {
	text-decoration: none;
}

.site-footer__logo {
	display: block;
	width: 6.375rem;
	height: 2.875rem;
	max-width: none;
	object-fit: contain;
	filter: invert(1);
}

.site-footer__credit {
	display: flex;
	align-items: flex-end;
	gap: 0.625rem;
}

.site-footer__partner-logo {
	display: block;
	width: 3.5rem;
	height: 3rem;
	max-width: none;
	flex-shrink: 0;
	object-fit: contain;
}

.site-footer__credit-text {
	margin: 0;
	font-size: inherit;
	text-align: right;
	direction: rtl;
}

.site-footer__nav {
	flex-shrink: 0;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__menu-item {
	margin: 0;
	color: #000;
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
}

.site-footer__menu-item:hover {
	background-color: #000;
	color: #fff;
}


.site-footer__menu a {
	display: block;
	/* width: 13.25rem; */
	padding: 0 0.9375rem;
	font-size: 1rem;
	line-height: 1.6875rem;
	font-weight: 400;
	text-align: right;
	text-decoration: none;
	color: inherit;
	direction: rtl;
	font-family: var(--otsar-font-variable);
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
	
}

.site-footer__info-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	flex-shrink: 0;
	/* min-height: 11.25rem; */
}

.site-footer__about {
	display: flex;
	flex-direction: column;;
	justify-content: space-between;
	/* min-height: 5.6875rem; */
	text-align: right;
	direction: rtl;
}

.site-footer__title {
	margin: 0;
	font-size: 1.175rem;
	line-height: 1.875rem;
	font-weight: 800;
	/* white-space: nowrap; */
}

.site-footer__tagline {
	margin: 0;
	font-size: 1.1125rem;
	line-height: 1.875rem;
	font-weight: 400;
	white-space: pre-line;
}

.site-footer__copyright {
	margin: 0;
	font-size: inherit;
	text-align: right;
	direction: rtl;
}

@media (max-width: 767px) {
	.site-footer__inner {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
	}

	.site-footer__brand-col,
	.site-footer__info-col {
		min-height: 0;
		gap: 1.5rem;
	}

	.site-footer__info-col {
		align-items: flex-start;
		gap: 12rem;
	}

	.site-footer__about {
		align-items: flex-start;
		min-height: 0;
	}

	.site-footer__title {
		white-space: normal;
	}

	.site-footer__tagline,
	.site-footer__copyright {
		width: auto;
		max-width: 100%;
	}
}

/* Bottom banner */
.site-bottom-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: #000;
	color: #fff;
	padding: 0.1rem;
	padding-top: 0.4rem;
}

.site-bottom-banner__viewport {
	overflow: hidden;
	width: 100%;
	direction: ltr;
}

.site-bottom-banner__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: otsar-bottom-banner-marquee var(--otsar-marquee-duration, 35s) linear infinite;
}

.site-bottom-banner__group {
	flex: 0 0 auto;
	white-space: nowrap;
	direction: rtl;
	font-size: 1.2rem;
	line-height: 1.4;
	font-weight: bold;
}

@keyframes otsar-bottom-banner-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-bottom-banner__track {
		animation: none;
		justify-content: center;
		width: 100%;
	}

	.site-bottom-banner__group[aria-hidden="true"] {
		display: none;
	}

	@media (min-width: 768px) {
		.site-menu {
			transition: none;
		}

		.site-header__desktop-menu-toggle-icon {
			transition: none;
		}
	}

	.hero-slider__track {
		transition: none;
	}

	.site-header__radio-live.is-playing {
		animation: none;
	}
}

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

/* Mobile */
@media (max-width: 767px) {

	.site-main--list .otsar-filter-post__body {
		flex-direction: column;
	}

	.site-header__logo-link { /*padding-right: 0.625rem; */}

	.site-logo {
		max-height: 35px;
		max-width: calc(35px * 146 / 66);
		width: auto;
		height: auto;
	}

	.site-top {
		overflow: visible;
	}

	.site-header__radio--desktop {
		display: none;
	}

	/* Mobile radio bar: sibling under sticky header, independent of #site-menu */
	body.menu-radio-open .site-top > .site-header__radio--desktop {
		display: flex;
		flex: none;
		flex-shrink: 0;
		max-width: none;
		width: 100%;
		min-width: 0;
		height: auto;
		min-height: 3.5rem;
		border-right: 0;
		border-top: 0;
		border-bottom: 1px solid var(--otsar-border);
		background: #fff;
		z-index: 2;
	}

	body.menu-radio-open .site-top > .site-header__radio--desktop .site-header__radio-play {
		width: 3.75rem;
	}

	body.menu-radio-open .site-top > .site-header__radio--desktop .site-header__play-icon {
		width: 2.25rem;
	}

	body.menu-radio-open .site-top > .site-header__radio--desktop .site-header__play-btn {
		padding-right: 0.25rem;
	}

	.site-header__mobile-tools {
		display: flex;
	}

	.site-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 1;
		max-height: calc(100vh - var(--otsar-top-height));
		overflow-y: auto;
		background: #fff;
		border-top: 1px solid var(--otsar-border);
	}

	body.menu-open .site-menu {
		display: block;
	}

	.site-menu__top {
		flex-direction: column;
		align-items: stretch;
		overflow: hidden;
	}

	.site-menu__divider--vertical {
		display: none;
	}

	.site-menu__top-static {
		justify-content: flex-start;
		min-width: 0;
		max-width: 100%;
		border-top: 1px solid var(--otsar-border);
		--otsar-menu-static-padding-y: 0.75rem;
		/* padding-top: var(--otsar-menu-static-padding-y); */
	}

	.site-menu__list,
	.site-menu ul {
		flex-direction: column;
		align-items: stretch;
	}

	.site-menu__list a,
	.site-menu__top-nav a {
		padding: 0.75rem 0.4375rem;
	}

	.menu-item--search {
		flex: 1 1 100%;
		width: 100%;
		min-width: 0;
	}

	.menu-item--search .site-menu__search-form {
		width: 100%;
	}

	.menu-item--search .site-menu__search-field {
		width: 100%;
		max-width: none;
	}

	.site-menu--search .site-menu__search-label {
		padding-right: 0;
	}

	.menu-item--search .site-menu__search-field > .site-menu__search-icon {
		opacity: 1;
	}

	.menu-item--search .site-menu__search-input {
		width: 100%;
		max-width: none;
		min-width: 0;
		padding: 0.75rem 0.4375rem;
		padding-left: 1.75rem;
		font-weight: 800;
	}

	.menu-item--search .site-menu__search-input::placeholder {
		opacity: 0.35;
	}

	.site-menu__static-filters {
		flex: 1 1 auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		min-width: 0;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		scrollbar-width: none;
	}

	.site-menu__static-filters::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}

	.site-menu__static-filters > * {
		flex-shrink: 0;
	}
	.site-footer { padding-bottom: 2.2rem; }
	.site-footer__inner {
		flex-direction: column-reverse;
		gap:0;
		padding-bottom: 0;
	}

	.site-footer__brand-col {
		display: none;
	}

	.site-footer__info-col {
		align-items: end;
		width:	100%;
		padding-bottom: 0.7rem;
		line-height: 1;
	}

	.site-footer__about {
		width:100%;
	}

	.site-footer__about p { line-height: 1.7; }

	.site-footer__about p, .site-footer__menu a, .site-footer__inner.footer-bottom p {
		font-size: 0.9em;
	}

	.site-footer__title { font-size: 1.15em !important; }

	.site-footer__menu a {
		width:100%;
		padding:0;
	}
	.site-footer__inner.footer-bottom { 
		flex-direction: column;
	}

	.site-footer__partner-logo { height: 2.5rem; }

	.site-menu__top-static, .site-menu { border:none; }

	.site-menu__top-static {
		border-bottom: 1px solid var(--otsar-border);
	}

	.site-menu__list, .site-menu ul { flex-direction: row; }

	.site-menu__bottom { border-bottom: 1px solid var(--otsar-border); }
	.site-menu__static-back {
		padding-right: 0.4375rem;
	}

	.site-menu__back-arrow {
		display: none;
	}

	.site-menu__top-nav a { padding-top:0;}

	.site-menu__top-nav .menu-item a::before {
		top: 30%;
	}

	.otsar-event-archive__layout--list .otsar-event-item__trigger {
		display: grid;
		grid-template-columns: 0.5fr 0.7fr 2.5fr 1fr;
  		gap: 1rem;
	}

}

/* -------------------------------------------------------------------------
   Recipe single layout
   ------------------------------------------------------------------------- */

.otsar-recipe-single__container {
	max-width: 80%;
	margin:0 auto;
}

@media ( max-width: 781px ) {
	.otsar-recipe-single__container {
		max-width: 100%;
	}
}

.otsar-recipe-single__instructions p br { display: none; }

.otsar-recipe-single__instructions p {
	font-size: clamp(1.1rem,4vw, 1.3125rem) !important;
	line-height: 1.4275 !important;
}

.otsar-recipe-single__featured {
	/* width: calc( 100% + ( 2 * var( --otsar-gutter ) ) ); */
	max-width: 100vw;
	/* margin: 0 calc( -1 * var( --otsar-gutter ) ) 1.5rem; */
	padding: 0;
	overflow: hidden;
	line-height: 0;
}

.otsar-recipe-single__featured-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.otsar-recipe-single__entry {
	max-width: none;
}

.otsar-recipe-single__post-content {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
}

.otsar-recipe-single__post-content .wp-block-paragraph {
	font-size: clamp(1.2rem, 4vw, 1.375rem) !important;
	line-height: 1.75 !important;
}

.otsar-about-container h2,.otsar-about-container h1 {
	margin-top:0 !important;
	font-weight:800;
}

.otsar-about-container .otsar-variable-font {
	font-size: 0.925rem;
	line-height: 1.45;
}

.otsar-recipe-single__row {
	display: grid;
	grid-template-columns: minmax( 0, 2fr ) minmax( 0, 3fr );
	gap: 0;
	align-items: start;
	box-sizing: border-box;
	width: 100%;
}

.otsar-recipe-single__row + .otsar-recipe-single__row {
	margin-top: 2rem;
}

.otsar-recipe-single__info,
.otsar-recipe-single__content,
.otsar-recipe-single__ingredients,
.otsar-recipe-single__instructions {
	min-width: 0;
	box-sizing: border-box;
}

.otsar-recipe-single__info,
.otsar-recipe-single__ingredients {
	padding-inline-end: clamp( 0.75rem, 2vw, 1.5rem );
}

.otsar-recipe-single__content,
.otsar-recipe-single__instructions {
	padding-inline-start: clamp( 0.75rem, 2vw, 1.5rem );
}

.otsar-recipe-single__info {
	font-family: var( --otsar-font-variable ), sans-serif;
	/*font-variation-settings: "MONO" 0, "wght" 400;*/
}

.otsar-recipe-single__ingredients {
	font-family: var( --otsar-font-variable ), sans-serif;
	font-variation-settings: "MONO" 0, "wght" 400;
}

.otsar-recipe-single__ingredients h1,
.otsar-recipe-single__ingredients h2,
.otsar-recipe-single__ingredients h3,
.otsar-recipe-single__ingredients h4,
.otsar-recipe-single__ingredients h5,
.otsar-recipe-single__ingredients h6,
.otsar-recipe-single__ingredients .otsar-recipe-single__part-title {
	font-family: var( --otsar-font-body ), sans-serif;
	font-variation-settings: normal;
}

.otsar-recipe-single__instructions {
	font-family: var( --otsar-font-body ), sans-serif;
}

.otsar-recipe-single__part + .otsar-recipe-single__part {
	margin-top: 1.5rem;
}

.otsar-recipe-single__info > *:first-child,
.otsar-recipe-single__content > *:first-child,
.otsar-recipe-single__post-content > *:first-child,
.otsar-recipe-single__ingredients > *:first-child,
.otsar-recipe-single__instructions > *:first-child,
.otsar-recipe-single__part > *:first-child,
.otsar-recipe-single__part-ingredients > *:first-child {
	margin-top: 0;
}

.otsar-recipe-single__info > *:last-child,
.otsar-recipe-single__content > *:last-child,
.otsar-recipe-single__post-content > *:last-child,
.otsar-recipe-single__ingredients > *:last-child,
.otsar-recipe-single__instructions > *:last-child,
.otsar-recipe-single__part > *:last-child,
.otsar-recipe-single__part-ingredients > *:last-child {
	margin-bottom: 0;
}

@media ( max-width: 781px ) {
	.otsar-recipe-single__row {
		grid-template-columns: minmax( 0, 1fr );
	}

	.otsar-recipe-single__info,
	.otsar-recipe-single__content,
	.otsar-recipe-single__ingredients,
	.otsar-recipe-single__instructions {
		padding-inline: 0;
	}

	/* Row 1 mobile: content (70%) on top, then info (30%). */
	.otsar-recipe-single__row--intro .otsar-recipe-single__content {
		order: -1;
	}

	.otsar-recipe-single__row--intro .otsar-recipe-single__info {
		margin-top: 1.5rem;
	}

	.otsar-recipe-single__row--body .otsar-recipe-single__instructions {
		margin-top: 1.5rem;
	}
}

.otsar-event-single__header {
	margin-bottom: 1.5rem;
}

.otsar-event-single__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.75rem;
	font-size: 1.125rem;
}

.otsar-event-single__thumbnail {
	margin-bottom: 1.5rem;
}

.otsar-event-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.otsar-event-item__terms {
	font-family: var(--otsar-font-variable);
	font-variation-settings: "MONO" 0, "wght" 400;
	font-size: 0.9em;
	line-height: 1.4;
	margin-top: 0.4rem;
}

.otsar-event-date-bar {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin: 0;
	background: #000;
	color: var(--otsar-text-inverse);
	min-height: 4.5rem;
	/*border-bottom: 1px solid var(--otsar-border);*/
}

.otsar-event-date-bar__inner {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	width: 100%;
	align-items: stretch;
	padding-right: 0.625rem;
	padding-left: 0.625rem;
}

.otsar-event-date-bar__tell-us {
	display: flex;
	align-items: baseline;
	min-height: 4.5rem;
}

.otsar-event-date-bar__tell-us-link {
	color: inherit;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

@media ( max-width: 781px ) {
	.otsar-event-date-bar__inner{
		flex-direction: column ;
	}

	.otsar-event-date-bar__tell-us {
		align-items: baseline;
		width:100%;
	}

	.otsar-event-date-selector {
		justify-content: center;
	}

	.otsar-event-date-selector__control {
		height: auto !important;
	}
}

.otsar-event-date-bar__tell-us-link:hover,
.otsar-event-date-bar__tell-us-link:focus-visible {
	text-decoration: none; 
}

.otsar-event-date-selector {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-right: 0.625rem;
}

.otsar-event-date-selector__control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	height:100%;
	/*padding: 0.5rem 0.25rem;*/
	direction: ltr;
}

.otsar-event-date-selector__control--year {
	min-width: 8.5rem;
}

.otsar-event-date-selector__control--month {
	min-width: 10.5rem;
}

.otsar-event-date-selector__value {
	flex: 1 1 auto;
	min-width: 0;
	text-align: center;
	font-size: 2.5rem;
	line-height: 1.1;
	font-weight: 800;
	white-space: nowrap;
}

.otsar-event-date-selector__arrow {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0.25rem;
	border: 0;
	background: black;
	color: #fff;
	text-decoration: none;
	line-height: 0;
	transition: opacity 0.2s ease;
	height:100%;
}

.otsar-event-date-selector__arrow:hover,
.otsar-event-date-selector__arrow:focus-visible {
	filter: invert(1);
}

.otsar-event-date-selector__arrow img,
.otsar-event-date-selector__arrow-icon {
	display: block;
	width: 23px;
	height: 15px;
	flex-shrink: 0;
	object-fit: contain;
}

.otsar-event-date-selector__arrow-icon--left {
	transform: scaleX( -1 );
}

.otsar-event-archive .otsar-filter-posts__grid {
	margin-top: 0;
}

.otsar-event-archive__layouts {
	width: 100%;
	max-width: 100%;
}

.otsar-event-archive__layout--list {
	width: 100%;
	max-width: 100%;
}

.otsar-event-archive__layout[hidden] {
	display: none !important;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-event-archive__layout--table,
.otsar-event-archive.otsar-filter-posts--table .otsar-filter-posts__grid {
	grid-auto-rows: 1px;
	align-items: start;
	--otsar-table-columns: 4;
}

@media (max-width: 767px) {
	.otsar-event-archive.otsar-filter-posts--table .otsar-event-archive__layout--table,
	.otsar-event-archive.otsar-filter-posts--table .otsar-filter-posts__grid {
		--otsar-table-columns: 1;
	}
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post {
	grid-row: span 1;
	aspect-ratio: auto;
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.otsar-event-archive .otsar-event-item__block {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
}

.otsar-event-archive .otsar-event-item__trigger {
	appearance: none;
	border: 0;
	background: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	text-align: inherit;
	cursor: pointer;
}

.otsar-event-archive .otsar-event-item__panel {
	display: none;
	padding: 0.75rem;
}

.otsar-event-archive .otsar-event-item.is-open .otsar-event-item__panel {
	display: block;
}

.otsar-event-archive .otsar-event-item__content {
	font-size: 1rem;
	line-height: 1.55;
}

.otsar-event-archive .otsar-event-item__content > :first-child {
	margin-top: 0;
}

.otsar-event-archive .otsar-event-item__content > :last-child {
	margin-bottom: 0;
}

.otsar-event-archive .otsar-event-item__content img,
.otsar-event-archive .otsar-event-item__content video,
.otsar-event-archive .otsar-event-item__content iframe {
	max-width: 100%;
	height: auto;
}

.otsar-event-archive .otsar-filter-post__link,
.otsar-event-archive .otsar-filter-post__link:hover,
.otsar-event-archive .otsar-filter-post__link:focus,
.otsar-event-archive .otsar-filter-post__link:focus-visible,
.otsar-event-archive .otsar-filter-post__link:active {
	text-decoration: none;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post__link {
	height: auto;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post__body {
	flex: none;
	min-height: 0;
	height: auto;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post__thumbnail {
	flex: none;
	width: 100%;
	aspect-ratio: var( --otsar-event-thumb-ratio );
	height: auto;
	min-height: 0;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post__thumbnail-image {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.otsar-event-archive.otsar-filter-posts--table .otsar-filter-post__thumbnail-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.otsar-event-archive.otsar-filter-posts--list .otsar-event-archive__layout--list {
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
}

.otsar-event-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.otsar-event-list-day {
	display: grid;
	grid-template-columns: 6.5rem 4.5rem minmax(0, 1fr);
	gap: 0.75rem 1.5rem;
	align-items: start;
	width: 100%;
	max-width: 100%;
	padding: 0.41rem var(--otsar-gutter);
	border-bottom: 1px solid var(--otsar-border);
	border-right: 0;
	background: #fff;
	font-family: var(--otsar-font-body);
	font-size: 1rem;
	line-height: 1.55;
}

.otsar-event-list-day + .otsar-event-list-day {
	border-top: 0;
}

.otsar-event-list-day__date,
.otsar-event-list-day__weekday {
	white-space: nowrap;
}

.otsar-event-list-day__events {
	display: grid;
	grid-template-columns: 3rem 4rem minmax(0, 14rem) minmax(0, 1fr);
	column-gap: 1rem;
	row-gap: 0;
	min-width: 0;
}

.otsar-event-list-item {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1 / -1;
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
}

.otsar-event-list-item .otsar-event-item__block {
	display: contents;
}

.otsar-event-list-item__trigger {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1 / -1;
	align-items: baseline;
	width: 100%;
	padding: 0.35rem 0;
	text-decoration: none;
	color: inherit;
	font: inherit;
}

.otsar-event-list-item__trigger:hover,
.otsar-event-list-item__trigger:focus-visible,
.otsar-event-list-item.is-open .otsar-event-list-item__trigger {
	background: none;
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.otsar-event-list-item__time {
	white-space: nowrap;
	font: inherit;
}

.otsar-event-list-item__title {
	margin: 0;
	padding: 0;
	font: inherit;
	min-width: 0;
}

.otsar-event-list-item__location {
	text-align: right;
	font: inherit;
}

.otsar-event-archive.otsar-filter-posts--list .otsar-event-list-item .otsar-event-item__panel {
	grid-column: 1 / -1;
	padding: 0.5rem 0 0.5rem;
}

.otsar-event-list-item__panel-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem 1.5rem;
	align-items: start;
}

.otsar-event-list-item__panel-body:not(:has(.otsar-event-list-item__panel-media)) {
	grid-template-columns: 1fr;
}

.otsar-event-list-item__panel-content {
	min-width: 0;
}

.otsar-event-archive.otsar-filter-posts--list .otsar-event-list-item .otsar-event-list-item__panel-content {
	font-size: 0.875rem;
	line-height: 1.4;
}

.otsar-event-list-item__panel-media {
	min-width: 0;
}

.otsar-event-list-item__panel-thumbnail {
	width: 100%;
	aspect-ratio: var(--otsar-event-thumb-ratio);
}

.otsar-event-list-item__panel-thumbnail .otsar-filter-post__thumbnail-image {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.otsar-event-list-item__panel-thumbnail .otsar-filter-post__thumbnail-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 767px) {
	.otsar-event-list-day {
		grid-template-columns: 0.5fr 2.5fr;
		gap: 0.5rem 0.75rem;
		padding: 0.35rem var(--otsar-gutter);
	}

	.otsar-event-list-day__events {
		grid-column: span 2;
	}

	.otsar-event-list-item__location {
		text-align: start;
	}

	.otsar-event-list-item__panel-body {
		grid-template-columns: 1fr;
	}

	.otsar-event-list-item__panel-media {
		order: -1;
	}
}

.otsar-event-archive .otsar-empty-archive {
	margin-top: 1.5rem;
	padding-inline: var(--otsar-gutter);
}

.otsar-event-archive__months {
	padding: 1rem var(--otsar-gutter);
}

.otsar-event-archive__months-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.otsar-event-archive__months-item {
	flex: 0 0 auto;
	white-space: nowrap;
}

.otsar-event-archive__months-link {
	display: inline-block;
	white-space: nowrap;
	font-weight: 700;
	color: var(--otsar-text);
	text-decoration: none;
}

.otsar-event-archive__months-link:hover,
.otsar-event-archive__months-link:focus-visible {
	text-decoration: underline;
}

.otsar-event-archive__months-link.is-current {
	text-decoration: underline;
}

/*
 * Disable sticky hover visuals on touch / coarse-pointer devices.
 * :focus / :focus-visible rules stay intact (these selectors target :hover only).
 */
@media (hover: none), (pointer: coarse) {
	.site-header__radio-live:hover {
		text-decoration: none;
	}

	.site-menu__top-nav .menu-item a:hover::before {
		opacity: 0;
	}

	.site-menu__top-nav .current-menu-item > a:hover::before,
	.site-menu__top-nav .current_page_item > a:hover::before,
	.site-menu__top-nav .current-menu-ancestor > a:hover::before,
	.site-menu__top-nav .current-menu-parent > a:hover::before,
	.site-menu__top-nav .current_page_ancestor > a:hover::before,
	.site-menu__top-nav .current_page_parent > a:hover::before {
		opacity: 1;
	}

	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-item > a::before,
	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_item > a::before,
	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-ancestor > a::before,
	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current-menu-parent > a::before,
	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_ancestor > a::before,
	.site-menu__top-nav:has( .menu-item:not( .current-menu-item ):not( .current_page_item ):not( .current-menu-ancestor ):not( .current-menu-parent ):not( .current_page_ancestor ):not( .current_page_parent ) a:hover ) .current_page_parent > a::before {
		opacity: 1;
	}

	.site-menu__list--secondary .menu-item a:hover::after {
		opacity: 0;
	}

	.site-menu__list--secondary .menu-item--current a:hover::after {
		opacity: 1;
	}

	.site-menu__list--secondary:has( .menu-item:not( .menu-item--current ) a:hover ) .menu-item--current a::after {
		opacity: 1;
	}

	.hero-slider__dot:hover {
		background: transparent;
	}

	.hero-slider__dot.is-active:hover {
		background: #fff;
	}

	.otsar-filter-posts--list .otsar-filter-post:hover .otsar-filter-post__thumbnail-image-bg {
		display: none;
	}

	.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:hover .otsar-filter-post__body::before {
		background: transparent;
	}

	.otsar-filter-posts--table .otsar-filter-post--thumbnail-grid-cover .otsar-filter-post__link:hover .otsar-filter-post__info {
		opacity: 0;
	}

	.otsar-filter-post__link:hover {
		background: transparent;
		color: inherit;
		text-decoration: none;
	}

	.otsar-filter-posts__load-more:hover,
	.otsar-store-items__load-more:hover,
	.otsar-single-product__btn:hover {
		background: transparent;
		color: inherit;
	}

	.otsar-store-item__title a:hover,
	.otsar-share__link:hover,
	.entry-meta__term:hover {
		text-decoration: none;
	}

	.otsar-store-item__cart-link:hover {
		text-decoration-thickness: auto;
	}

	.site-footer__menu-item:hover {
		background-color: transparent;
		color: #000;
	}

	.otsar-event-date-selector__arrow:hover {
		opacity: 1;
	}

	.otsar-event-archive__months-link:hover {
		text-decoration: none;
	}

	.otsar-event-archive__months-link.is-current:hover {
		text-decoration: underline;
	}

	.otsar-event-list-item__trigger:hover {
		background: none;
		color: inherit;
		text-decoration: none;
	}

	.otsar-event-list-item.is-open .otsar-event-list-item__trigger:hover {
		text-decoration: underline;
	}

	.otsar-event-list-item {

	}
}

/* Event suggestion form — full-bleed row borders (page template zeros .site-main gutter). */
.site-main--event-submit {
	padding-inline: 0;
}

.site-main--event-submit .otsar-event-submit-page > .entry-header,
.site-main--event-submit .otsar-event-submit-page > .entry-content {
	max-width: none;
	padding-inline: var(--otsar-gutter);
}

.otsar-event-submit {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0 0 3rem;
	padding: 0;
	overflow-x: clip;
	font-family: var(--otsar-font-variable), sans-serif;
	direction: rtl;
}

/* Shortcode embed inside padded .site-main: break out for full-width borders. */
.site-main:not(.site-main--event-submit) .otsar-event-submit {
	width: calc(100% + (2 * var(--otsar-gutter)));
	margin-inline: calc(-1 * var(--otsar-gutter));
}

.otsar-event-submit__success {
	margin: 0;
	padding: 1.5rem var(--otsar-gutter);
	border-top: 1px solid var(--otsar-border);
	border-bottom: 1px solid var(--otsar-border);
	background: #fff;
	color: #000;
	font-size: 18px;
	line-height: 27px;
	text-align: center;
}

.otsar-event-submit__notice {
	margin: 0;
	padding: 0.75rem var(--otsar-gutter);
	border-top: 1px solid var(--otsar-border);
	border-bottom: 1px solid var(--otsar-border);
	background: #fff;
	font-size: 18px;
	line-height: 27px;
}

.otsar-event-submit__notice--error {
	background: #fff5f5;
}

.otsar-event-submit__form {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	border: 0;
	background: #fff;
	color: #000;
}

.otsar-event-submit__honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.otsar-event-submit__row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	width: 100%;
	box-sizing: border-box;
	padding: 15px var(--otsar-gutter);
	border: 0;
	border-top: 1px solid var(--otsar-border);
	background: #fff;
	margin: 0;
}

.otsar-event-submit__row:last-child {
	border-bottom: 0 solid var(--otsar-border);
	
}

.otsar-event-submit__row--textarea,
.otsar-event-submit__row--file {
	align-items: flex-start;
}

.otsar-event-submit__row--actions {
	justify-content: flex-start;
}

.otsar-event-submit__label {
	flex: 0 0 140px;
	width: 140px;
	margin: 0;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-align: right;
	color: #000;
}

.otsar-event-submit__label--stacked {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 140px;
	width: 170px;
	min-width: 170px;
	max-width: 170px;
}

.otsar-event-submit__label--stacked label {
	margin: 0;
	font-family: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-align: right;
	cursor: pointer;
}

.otsar-event-submit__hint {
	display: block;
	margin: 0;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 16px;
	line-height: 20px;
	text-align: right;
	color: #000;
}

.otsar-event-submit__control {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	max-width: 340px;
	display: flex;
	align-items: stretch;
}

.otsar-event-submit__control--file {
	position: relative;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	align-items: center;
}

.otsar-event-submit__control input,
.otsar-event-submit__control select,
.otsar-event-submit__control textarea {
	display: block;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0 10px;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 16px;
	line-height: 20px;
	appearance: none;
	-webkit-appearance: none;
}

.otsar-event-submit__control input,
.otsar-event-submit__control select {
	height: 34px;
	min-height: 34px;
}

.otsar-event-submit__control textarea {
	height: 250px;
	min-height: 250px;
	padding: 10px;
	resize: vertical;
}

.otsar-event-submit__control select {
	padding-inline-end: 10px;
	padding-inline-start: 1.75rem;
	background-image: linear-gradient(45deg, transparent 50%, #000 50%),
		linear-gradient(135deg, #000 50%, transparent 50%);
	background-position: 12px calc(50% - 2px), 17px calc(50% - 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.otsar-event-submit__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.otsar-event-submit__file-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 3px 10px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}

.otsar-event-submit__file-input:focus-visible + .otsar-event-submit__file-button {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.otsar-event-submit__submit {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 106px;
	height: 41px;
	padding: 3px 10px;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	cursor: pointer;
}

.otsar-event-submit__submit:hover,
.otsar-event-submit__submit:focus-visible {
	background: #f5f5f5;
	text-decoration: none;
}

@media (max-width: 40rem) {
	.otsar-event-submit__row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.otsar-event-submit__label,
	.otsar-event-submit__label--stacked {
		flex: none;
		width: 100%;
		min-width: 0;
		max-width: none;
		align-items: flex-end;
	}

	.otsar-event-submit__control {
		width: 100%;
		max-width: 100%;
	}

	.otsar-event-submit__control--file {
		justify-content: flex-start;
	}

	.otsar-event-submit__row--actions {
		justify-content: flex-start;
	}
}

/* -------------------------------------------------------------------------
   Cart
   ------------------------------------------------------------------------- */

.menu-item--cart {
	margin-right: 0.5rem !important;
	position:	relative;
	top: 3px;
}

.woocommerce-cart .entry-header {
	padding-right: var(--otsar-shop-gutter);
	border-bottom: 1px solid var(--otsar-border);
	padding-bottom: 0.65rem;
}

.otsar-cart {
	width: 100%;
	font-family: var(--otsar-font-variable);
	color: var(--otsar-text);
}

.otsar-cart__items {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.otsar-cart__item,
.otsar-cart__shipping,
.otsar-cart__sum,
.otsar-cart__checkout-actions {
	gap: 1rem;
	max-width: 100%;
	padding: 0.85rem var(--otsar-gutter);
	padding-right: var(--otsar-shop-gutter);
	border-bottom: 1px solid var(--otsar-border);
	box-sizing: border-box;
}

.otsar-cart__checkout-actions {
	display: flex;
	justify-content: center;
	padding-block: 1.25rem;
}

.otsar-cart__checkout-toggle {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.otsar-cart-checkout {
	width: 100%;
	box-sizing: border-box;
	padding: 1.5rem var(--otsar-gutter) 2.5rem;
	padding-right: var(--otsar-shop-gutter);
	font-family: var(--otsar-font-variable);
	color: var(--otsar-text);
}

.otsar-cart__checkout-actions .otsar-single-product__btn {
	max-width: 290px;
	margin:auto;
}

.otsar-cart-checkout[hidden] {
	display: none !important;
}

.otsar-cart-checkout .woocommerce {
	width: 100%;
	max-width: 640px;
}

.otsar-cart-checkout .woocommerce-checkout .form-row input.input-text,
.otsar-cart-checkout .woocommerce-checkout .form-row textarea,
.otsar-cart-checkout .woocommerce-checkout .form-row select {
	width: 100%;
	box-sizing: border-box;
}

.otsar-cart-checkout .woocommerce-checkout #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	border: 1px solid #000;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.otsar-cart-checkout .woocommerce-checkout #place_order:hover,
.otsar-cart-checkout .woocommerce-checkout #place_order:focus-visible {
	background: #000;
	color: #fff;
}

.otsar-cart__item-inner,
.otsar-cart__shipping-inner,
.otsar-cart__sum-inner {
	max-width: 425px;
}
.otsar-cart__price { 
	text-align: left;
}

.otsar-cart__sum-inner {
	display: flex;
}

.otsar-cart__shipping-inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.otsar-cart__item-inner {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr 0.5fr;
	align-items: center;
	gap: 0.5rem;
}

.otsar-cart__qty-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	flex: 0 0 auto;
}

.otsar-cart__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	border: 1px solid #000;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.otsar-cart__qty-btn:hover,
.otsar-cart__qty-btn:focus-visible {
	background: #000;
	color: #fff;
}

.otsar-cart__qty-btn:disabled {
	cursor: wait;
	opacity: 0.6;
}

.otsar-cart__qty-wrap.is-updating {
	opacity: 0.7;
}

.otsar-cart__qty {
	flex: 0 0 auto;
	min-width: 1.5rem;
	text-align: center;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 1rem;
	line-height: 1.4;
	white-space: nowrap;
}

.otsar-cart__name {
	/*flex: 1 1 auto; */
	min-width: 0;
	font-size: 1rem;
	line-height: 1.4;
}

.otsar-cart__price,
.otsar-cart__sum-value,
.otsar-cart__shipping-value {
	flex: 0 0 auto;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 1rem;
	line-height: 1.4;
	white-space: nowrap;
	text-align: left;
}

.otsar-cart__shipping-label,
.otsar-cart__sum-label {
	flex: 0 0 auto;
	font-size: 1rem;
	line-height: 1.4;
}

.otsar-cart__sum-label {
	flex: 1 1 auto;
}

.otsar-cart__shipping-methods {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1 1 auto;
	min-width: 0;
}

.otsar-cart__shipping-select {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.4rem 0.6rem;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 1rem;
	line-height: 1.4;
	cursor: pointer;
	direction: rtl;
	text-align: right;
}

.otsar-cart__shipping-select:disabled {
	cursor: wait;
	opacity: 0.6;
}

.otsar-cart__shipping-value {
	margin-inline-start: auto;
}

.otsar-cart__shipping.is-updating {
	opacity: 0.7;
	pointer-events: none;
}

.otsar-cart__sum {
	font-weight: 600;
}

.otsar-cart__empty {
	margin: 0;
	padding: 1.25rem var(--otsar-gutter);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--otsar-text-muted);
}

/* Order received (thank you) — matches .otsar-cart item vibe */
.woocommerce-order-received .entry-title {
	display: none;
}

.otsar-order-received {
	width: 100%;
	box-sizing: border-box;
	font-family: var(--otsar-font-variable);
	color: var(--otsar-text);
	padding-bottom: 2.5rem;
}

.otsar-order-received__title {
	margin: 0;
	padding: 1.5rem var(--otsar-gutter) 1rem;
	padding-right: var(--otsar-shop-gutter);
	font-family: var(--otsar-font-variable), sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.3;
}

.otsar-order-received__box {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.85rem var(--otsar-gutter);
	padding-right: var(--otsar-shop-gutter);
	border-top: 1px solid var(--otsar-border);
}

.otsar-order-received__order-number,
.otsar-order-received__email-note {
	margin: 0;
	max-width: 425px;
	font-size: 1rem;
	line-height: 1.4;
}

.otsar-order-received__order-number {
	margin-bottom: 0.35rem;
}

.otsar-order-received__email-note {
	font-weight: 600;
}

.otsar-order-received__message {
	margin: 0;
	padding: 1.25rem var(--otsar-gutter);
	padding-right: var(--otsar-shop-gutter);
	font-size: 1rem;
	line-height: 1.5;
}

.otsar-order-received__message--error {
	color: var(--otsar-text);
}

.otsar-order-received__actions {
	margin: 0;
	padding: 0.85rem var(--otsar-gutter) 1.25rem;
	padding-right: var(--otsar-shop-gutter);
}

.otsar-order-received__actions .otsar-single-product__btn {
	display: inline-flex;
	max-width: 290px;
}
