/**
 * Rir tools custom header/footer.
 *
 * @version 1.5.24
 */

.rrthf,
.rrthf-menu-panel,
.rrthf-locale,
.rrthf-cart {
	--rrthf-brand: #239add;
	--rrthf-navy: #1e3b66;
	--rrthf-text: #202020;
	--rrthf-soft: #f4f9fd;
	--rrthf-border: rgba(30, 59, 102, 0.14);
	--rrthf-shadow: 0 16px 44px rgba(30, 59, 102, 0.13);
	--rrthf-font-family: "Myriad Pro", "Myriad Web Pro", "Segoe UI", Arial, sans-serif;
	color: var(--rrthf-text);
	font-family: var(--rrthf-font-family);
	font-kerning: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
}

.rrthf *,
.rrthf *::before,
.rrthf *::after,
.rrthf-menu-panel *,
.rrthf-locale *,
.rrthf-cart * {
	box-sizing: border-box;
}

.rrthf-shell {
	width: min(100% - 28px, 1280px);
	margin-inline: auto;
}

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

.rrthf button,
.rrthf input,
.rrthf select {
	font: inherit;
}

.rrthf-header {
	position: relative;
	z-index: 9995;
	background: #fff;
}

@media (min-width: 961px) {
	.rrthf-header--main {
		min-height: calc(var(--rrthf-notice-height, 0px) + 128px);
	}
}

@media (max-width: 960px) {
	.rrthf-header--main {
		min-height: calc(var(--rrthf-notice-height, 0px) + 59px);
	}
}

.rrthf-notice {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.rrthf-notice--ocean { background: linear-gradient(135deg, #1e3b66, #239add); }
.rrthf-notice--sunrise { background: linear-gradient(135deg, #ff7a59, #ffc247); }
.rrthf-notice--mint { background: linear-gradient(135deg, #0f766e, #34d399); }
.rrthf-notice--berry { background: linear-gradient(135deg, #8b1e5d, #e05297); }
.rrthf-notice--night { background: linear-gradient(135deg, #121826, #334155); }

.rrthf-notice__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 38px;
	text-align: center;
}

.rrthf-notice__close,
.rrthf-round-btn {
	display: grid;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	color: currentColor;
	cursor: pointer;
	place-items: center;
}

.rrthf-main {
	background: #fff;
	border-bottom: 1px solid var(--rrthf-border);
}

.rrthf-main__inner {
	display: grid;
	grid-template-columns: minmax(120px, 190px) minmax(260px, 1fr) auto auto;
	align-items: center;
	gap: 18px;
	min-height: 76px;
}

.rrthf-main__inner > * {
	min-width: 0;
}

.rrthf-logo a {
	display: inline-flex;
	align-items: center;
	font-size: 26px;
	font-weight: 800;
	color: var(--rrthf-navy);
	line-height: 1;
}

.rrthf-logo__img {
	display: block;
	max-width: 180px;
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.rrthf-search {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--rrthf-border);
	border-radius: 999px;
	background: var(--rrthf-soft);
}

.rrthf-search input[type="search"] {
	width: 100%;
	min-height: 46px;
	padding: 0 16px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--rrthf-text);
}

.rrthf-search button {
	display: grid;
	width: 50px;
	min-height: 46px;
	border: 0;
	border-left: 1px solid var(--rrthf-border);
	background: #fff;
	color: var(--rrthf-navy);
	cursor: pointer;
	place-items: center;
}

.rrthf-search button:hover,
.rrthf-search button:focus-visible {
	background: var(--rrthf-soft);
	color: var(--rrthf-brand);
	outline: 0;
}

.rrthf-icon-btn,
.rrthf-cart-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--rrthf-border);
	border-radius: 999px;
	background: #fff;
	color: var(--rrthf-navy);
	font-weight: 700;
	cursor: pointer;
}

.rrthf-icon-btn:hover,
.rrthf-cart-toggle:hover {
	border-color: var(--rrthf-brand);
	color: var(--rrthf-brand);
}

.rrthf-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-width: max-content;
}

.rrthf-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--rrthf-navy);
	white-space: nowrap;
}

.rrthf-nav {
	--rrthf-panel-bg: #fff;
	--rrthf-panel-text: var(--rrthf-navy);
	--rrthf-panel-muted: var(--rrthf-soft);
	--rrthf-panel-card-bg: #fff;
	--rrthf-panel-border: var(--rrthf-border);
	--rrthf-panel-placeholder: #edf4fa;
	position: sticky;
	top: 0;
	z-index: 9994;
	background: var(--rrthf-nav-bg, #fff);
	border-bottom: 1px solid var(--rrthf-border);
	box-shadow: 0 8px 22px rgba(30, 59, 102, 0.06);
}

.admin-bar .rrthf-nav {
	top: 32px;
}

.rrthf-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
}

.rrthf-nav__tabs {
	display: flex;
	align-items: stretch;
	gap: 4px;
	min-width: 0;
}

.rrthf-nav__tab {
	position: relative;
}

.rrthf-nav__tab > button {
	height: 50px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: var(--rrthf-nav-text, var(--rrthf-navy));
	font-weight: 800;
	cursor: pointer;
}

.rrthf-nav__tab:hover > button,
.rrthf-nav__tab > button:focus-visible,
.rrthf-nav__tab.is-open > button {
	color: var(--rrthf-brand);
}

.rrthf-mega {
	position: fixed;
	top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
	left: 0;
	right: 0;
	width: min(900px, calc(100vw - 32px));
	margin-inline: auto;
	max-height: min(70vh, 560px);
	overflow: auto;
	padding: 18px;
	border: 1px solid var(--rrthf-border);
	border-radius: 0 0 18px 18px;
	background: #fff;
	box-shadow: var(--rrthf-shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
	contain: layout paint;
}

.rrthf-mega[hidden] {
	display: none !important;
}


.rrthf-mega__cols {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 16px;
}

.rrthf-mega__group {
	display: contents;
}

.rrthf-mega__group h3 {
	position: sticky;
	top: 0;
	align-self: start;
	margin: 0;
	padding: 10px;
	border-radius: 12px;
	background: var(--rrthf-soft);
	color: var(--rrthf-navy);
	font-size: 15px;
}

.rrthf-mega__items,
.rrthf-mobile-nav__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
	gap: 12px;
}

.rrthf-menu-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 70px;
	padding: 8px;
	border: 1px solid var(--rrthf-border);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(30, 59, 102, 0.06);
}

.rrthf-menu-card:hover {
	border-color: var(--rrthf-brand);
}

.rrthf-menu-card__image {
	display: block;
	width: 54px;
	height: 54px;
	overflow: hidden;
	border-radius: 12px;
	background: var(--rrthf-soft);
}

.rrthf-menu-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rrthf-menu-card__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--rrthf-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rrthf-menu-card__price {
	display: block;
	margin-top: 3px;
	color: var(--rrthf-brand);
	font-size: 12px;
	font-weight: 800;
}

.rrthf-cart-toggle {
	position: relative;
	min-width: 46px;
	padding-inline: 11px;
}

.rrthf-cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--rrthf-brand);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	place-items: center;
}

.rrthf-mobile {
	display: none;
}

.rrthf-mobilebar {
	position: sticky;
	top: 0;
	z-index: 9994;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr) 54px;
	align-items: center;
	gap: 8px;
	min-height: 58px;
	padding: 8px 12px;
	background: #fff;
	border-bottom: 1px solid var(--rrthf-border);
	box-shadow: 0 8px 22px rgba(30, 59, 102, 0.06);
}

.rrthf-mobilebar__logo {
	justify-self: center;
}

.rrthf-mobilebar__logo .rrthf-logo__img {
	max-height: 42px;
	max-width: 150px;
}

.rrthf-menu-panel,
.rrthf-locale,
.rrthf-cart {
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.rrthf-menu-panel[hidden],
.rrthf-locale[hidden],
.rrthf-cart[hidden] {
	display: none !important;
}

.rrthf-menu-panel__overlay,
.rrthf-locale__overlay,
.rrthf-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 18, 32, 0.54);
	backdrop-filter: blur(2px);
}

.rrthf-menu-panel__content,
.rrthf-locale__dialog,
.rrthf-cart__drawer {
	position: absolute;
	background: #fff;
	box-shadow: var(--rrthf-shadow);
}

.rrthf-menu-panel__content {
	inset: 0 0 0 auto;
	width: min(100vw, 460px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
	overflow: auto;
}

.rrthf-menu-panel__top,
.rrthf-locale__top,
.rrthf-cart__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--rrthf-navy);
}

.rrthf-menu-panel__top strong,
.rrthf-locale__top strong,
.rrthf-cart__top strong {
	font-size: 20px;
}

.rrthf-menu-panel .rrthf-search {
	flex: 0 0 auto;
}

.rrthf-mobile-nav {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 10px;
	min-height: 340px;
}

.rrthf-mobile-nav__tabs {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rrthf-mobile-nav__tabs button {
	padding: 10px 6px;
	border: 1px solid var(--rrthf-border);
	border-radius: 12px;
	background: var(--rrthf-soft);
	color: var(--rrthf-navy);
	font-size: 12px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.rrthf-mobile-nav__tabs button.is-active {
	border-color: var(--rrthf-brand);
	background: var(--rrthf-brand);
	color: #fff;
}

.rrthf-mobile-nav__panels {
	overflow: auto;
	max-height: 58vh;
	padding-right: 2px;
}

.rrthf-mobile-nav__panel {
	display: none;
}

.rrthf-mobile-nav__panel.is-active {
	display: block;
}

.rrthf-mobile-nav__group + .rrthf-mobile-nav__group {
	margin-top: 18px;
}

.rrthf-mobile-nav__group h3 {
	margin: 0 0 10px;
	color: var(--rrthf-navy);
	font-size: 15px;
}

.rrthf-menu-panel__quick {
	display: grid;
	gap: 12px;
	padding-bottom: 20px;
}

.rrthf-menu-panel__quick .rrthf-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.rrthf-menu-panel__quick .rrthf-links a,
.rrthf-menu-panel__quick .rrthf-locale-toggle {
	justify-content: flex-start;
	padding: 11px;
	border: 1px solid var(--rrthf-border);
	border-radius: 14px;
}

.rrthf-locale__dialog {
	top: 50%;
	left: 50%;
	width: min(92vw, 420px);
	padding: 20px;
	border-radius: 22px;
	transform: translate(-50%, -50%);
}

.rrthf-field {
	display: grid;
	gap: 7px;
	margin-top: 14px;
	color: var(--rrthf-navy);
	font-weight: 800;
}

.rrthf-field select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--rrthf-border);
	border-radius: 12px;
	background: #fff;
	color: var(--rrthf-text);
}

.rrthf-locale__confirm {
	width: 100%;
	margin-top: 18px;
}

.rrthf-cart__drawer {
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	width: min(100vw, 430px);
	padding: 18px;
}

.rrthf-cart__body {
	flex: 1;
	overflow: auto;
	padding-top: 12px;
}

.rrthf-mini-cart__items {
	display: grid;
	gap: 12px;
}

.rrthf-mini-cart__item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--rrthf-border);
	border-radius: 16px;
}

.rrthf-mini-cart__thumb img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	object-fit: cover;
}

.rrthf-mini-cart__name {
	display: -webkit-box;
	overflow: hidden;
	color: var(--rrthf-navy);
	font-weight: 800;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rrthf-mini-cart__qty,
.rrthf-mini-cart__price {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 800;
}

.rrthf-mini-cart__price {
	color: var(--rrthf-brand);
}

.rrthf-mini-cart__summary {
	display: flex;
	justify-content: space-between;
	margin: 18px 0 12px;
	padding-top: 14px;
	border-top: 1px solid var(--rrthf-border);
	color: var(--rrthf-navy);
	font-weight: 800;
}

.rrthf-mini-cart__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.rrthf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 999px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
}

.rrthf-button--secondary {
	background: var(--rrthf-soft);
	color: var(--rrthf-navy);
}

.rrthf-button--checkout {
	background: #239add;
	color: #fff;
}

.rrthf-mini-cart__actions .rrthf-button--cart-link {
	min-height: auto;
	padding: 4px 0;
	border-radius: 0;
	background: transparent;
	color: var(--rrthf-navy);
	text-decoration: none;
	text-underline-offset: 3px;
}

.rrthf-footer {
	margin-top: 32px;
	color: #fff;
}

.rrthf-footer--brand { background: linear-gradient(135deg, #1e3b66, #239add); }
.rrthf-footer--calm { background: linear-gradient(135deg, #eaf6ff, #d7efff); color: var(--rrthf-navy); }
.rrthf-footer--premium { background: linear-gradient(135deg, #202020, #1e3b66); }
.rrthf-footer--dark { background: #121826; }

.rrthf-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 22px;
	padding: clamp(28px, 5vw, 52px) 0;
}

.rrthf-footer__widget {
	min-width: 0;
}

.rrthf-footer__widget a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.rrthf-lock {
	overflow: hidden;
}

@media (max-width: 960px) {
	.rrthf-desktop {
		display: none;
	}

	.rrthf-mobile {
		display: block;
	}

	.admin-bar .rrthf-mobilebar {
		top: 46px;
	}

	.rrthf-notice__inner {
		min-height: 34px;
		font-size: 13px;
	}

	.rrthf-menu-card {
		grid-template-columns: 1fr;
		align-items: start;
		min-height: 0;
	}

	.rrthf-menu-card__image {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.rrthf-mobile-nav__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.admin-bar .rrthf-mobilebar {
		top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-mega {
		transition: none;
	}
}


/* Version 1.3.0 refinements: selective sticky nav, accessible drawers, larger touch targets. */
.rrthf-menu-panel,
.rrthf-locale,
.rrthf-cart {
	--rrthf-brand: #239add;
	--rrthf-navy: #1e3b66;
	--rrthf-text: #202020;
	--rrthf-soft: #f4f9fd;
	--rrthf-border: rgba(30, 59, 102, 0.14);
	--rrthf-shadow: 0 16px 44px rgba(30, 59, 102, 0.13);
	color: var(--rrthf-text);
	font-family: var(--rrthf-font-family, "Myriad Pro", "Myriad Web Pro", "Segoe UI", Arial, sans-serif);
}

body {
	--rrthf-admin-offset: 0px;
	--rrthf-notice-height: 0px;
}

body.admin-bar {
	--rrthf-admin-offset: 32px;
}

.rrthf-header {
	z-index: 9996;
}

.rrthf-notice {
	position: sticky;
	top: var(--rrthf-admin-offset);
	z-index: 9999;
}

.rrthf-nav {
	position: relative;
	top: auto;
	z-index: 9995;
}

.rrthf-nav.is-sticky {
	position: sticky;
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
}

.admin-bar .rrthf-nav {
	top: auto;
}

.admin-bar .rrthf-nav.is-sticky {
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
}

.rrthf-mobilebar {
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
	z-index: 9998;
}

.admin-bar .rrthf-mobilebar {
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
}

.rrthf-search {
	border-width: 2px;
	background: #fff;
}

.rrthf-search:focus-within {
	border-color: var(--rrthf-brand);
	box-shadow: 0 0 0 3px rgba(35, 154, 221, 0.14);
}

.rrthf-search button span {
	font-size: 18px;
	line-height: 1;
}

.rrthf-icon-btn,
.rrthf-links a {
	flex-direction: column;
	gap: 4px;
	min-width: 64px;
	min-height: 54px;
	padding: 7px 10px;
	text-align: center;
	line-height: 1.15;
}

.rrthf-icon-btn > span:first-child,
.rrthf-links a > span:first-child,
.rrthf-cart-toggle > span:first-child {
	font-size: 24px;
	line-height: 1;
}

.rrthf-locale-toggle {
	min-width: 78px;
}

.rrthf-nav__tab.is-open > button,
.rrthf-nav__tab.is-open:hover > button,
.rrthf-nav__tab.is-open > button:focus-visible {
	color: var(--rrthf-brand);
}

.rrthf-nav__tab.is-open > .rrthf-mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.rrthf-mega {
	width: min(1120px, calc(100vw - 32px));
}

.rrthf-mega__cols {
	grid-template-columns: 180px minmax(0, 1fr);
}

.rrthf-mega__items {
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 16px;
}

.rrthf-mega .rrthf-menu-card {
	grid-template-columns: 1fr;
	align-items: stretch;
	min-height: 0;
	padding: 12px;
	text-align: center;
}

.rrthf-mega .rrthf-menu-card__image {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}

.rrthf-mega .rrthf-menu-card__title {
	font-size: 15px;
	-webkit-line-clamp: 3;
}

.rrthf-round-btn {
	width: 42px;
	height: 42px;
	font-size: 30px;
	line-height: 1;
}

.rrthf-menu-panel__content {
	inset: 0 auto 0 0;
	animation: rrthf-slide-in-left 220ms ease both;
}

.rrthf-menu-panel__top .rrthf-round-btn,
.rrthf-cart__top .rrthf-round-btn,
.rrthf-locale__top .rrthf-round-btn {
	width: 46px;
	height: 46px;
	font-size: 34px;
}

.rrthf-menu-panel__quick {
	margin-top: 8px;
	padding: 14px;
	border: 1px solid var(--rrthf-border);
	border-radius: 18px;
	background: var(--rrthf-soft);
}

.rrthf-menu-panel__quick .rrthf-links a,
.rrthf-menu-panel__quick .rrthf-locale-toggle {
	align-items: center;
	justify-content: center;
	background: #fff;
}

.rrthf-menu-panel__quick .rrthf-links a:hover,
.rrthf-menu-panel__quick .rrthf-links a:focus-visible,
.rrthf-menu-panel__quick .rrthf-locale-toggle:hover,
.rrthf-menu-panel__quick .rrthf-locale-toggle:focus-visible {
	border-color: var(--rrthf-brand);
	color: var(--rrthf-brand);
}

.rrthf-locale__dialog {
	width: min(94vw, 460px);
	border: 1px solid rgba(255, 255, 255, 0.7);
	animation: rrthf-pop-in 180ms ease both;
}

.rrthf-field--select {
	position: relative;
}

.rrthf-field--select::after {
	position: absolute;
	right: 14px;
	bottom: 14px;
	color: var(--rrthf-navy);
	font-size: 13px;
	pointer-events: none;
	content: "▾";
}

.rrthf-field__label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
}

.rrthf-field select {
	appearance: none;
	min-height: 50px;
	padding: 0 42px 0 14px;
	border-width: 2px;
	font-weight: 800;
}

.rrthf-field select:focus {
	border-color: var(--rrthf-brand);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(35, 154, 221, 0.14);
}

.rrthf-language-select {
	width: 100%;
}

.rrthf-field--language::after {
	display: none;
}

.rrthf-field--language .rrthf-language-select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.rrthf-field--language .rrthf-language-select[hidden] {
	display: none !important;
}

.rrthf-language-picker {
	display: none;
	position: relative;
	width: 100%;
}

.rrthf-js .rrthf-field--language .rrthf-language-picker {
	display: block;
}

.rrthf-language-picker__button,
.rrthf-language-picker__option {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 50px;
	gap: 10px;
	border: 2px solid var(--rrthf-border);
	background: #fff;
	color: var(--rrthf-navy);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.rrthf-language-picker__button {
	justify-content: flex-start;
	padding: 0 42px 0 14px;
	border-radius: 14px;
	position: relative;
}

.rrthf-language-picker__button::after {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	content: "▾";
}

.rrthf-language-picker__button[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(180deg);
}

.rrthf-language-picker__button:focus-visible,
.rrthf-language-picker__option:focus-visible {
	border-color: var(--rrthf-brand);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(35, 154, 221, 0.14);
}

.rrthf-language-picker__list {
	position: absolute;
	z-index: 4;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	max-height: min(52vh, 340px);
	padding: 6px;
	border: 1px solid var(--rrthf-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--rrthf-shadow);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.rrthf-language-picker__option {
	min-height: 44px;
	padding: 10px;
	border: 0;
	border-radius: 12px;
}

.rrthf-language-picker__option:hover,
.rrthf-language-picker__option.is-active {
	background: var(--rrthf-soft);
	color: var(--rrthf-brand);
}

.rrthf-language-picker__flag {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 20px;
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px rgba(30, 59, 102, 0.12);
	overflow: hidden;
}

.rrthf-language-picker__flag svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rrthf-language-picker__current,
.rrthf-language-picker__name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.rrthf-language-picker__list {
		max-height: 46vh;
	}
}


.rrthf-cart__drawer {
	right: auto;
	left: 0;
	width: min(100vw, 460px);
	padding: 0;
	animation: rrthf-slide-in-left 220ms ease both;
}

.rrthf-cart__top {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 18px;
	background: #fff;
	border-bottom: 1px solid var(--rrthf-border);
}

.rrthf-cart__body {
	display: flex;
	min-height: 0;
	padding: 0;
	overflow: hidden;
}

.rrthf-mini-cart {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	width: 100%;
}

.rrthf-mini-cart__items {
	flex: 1;
	min-height: 0;
	overflow: auto;
	padding: 14px;
	-webkit-overflow-scrolling: touch;
}

.rrthf-mini-cart__summary {
	flex: 0 0 auto;
	margin: 0;
	padding: 14px 18px;
	border-top: 1px solid var(--rrthf-border);
	background: #fff;
}

.rrthf-mini-cart__actions {
	display: grid;
	flex: 0 0 auto;
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 0 18px 18px;
	background: #fff;
}

.rrthf-mini-cart__actions .rrthf-button,
.rrthf-mini-cart__empty .rrthf-button {
	width: 100%;
}

.rrthf-mini-cart__empty {
	display: grid;
	gap: 14px;
	align-content: center;
	height: 100%;
	padding: 24px;
	text-align: center;
}

@keyframes rrthf-slide-in-left {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes rrthf-pop-in {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 8px)) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media (max-width: 960px) {
	.rrthf-mobilebar {
		position: sticky;
		top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
	}

	.admin-bar .rrthf-mobilebar {
		top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height));
	}

	.rrthf-menu-panel__content {
		width: min(92vw, 430px);
	}

	.rrthf-mobile-nav {
		grid-template-columns: 106px minmax(0, 1fr);
	}

	.rrthf-mobile-nav__tabs button {
		padding: 13px 8px;
		font-size: 15px;
		line-height: 1.25;
	}

	.rrthf-mobile-nav__group h3 {
		font-size: 17px;
	}

	.rrthf-mobile-nav__items {
		gap: 12px;
	}

	.rrthf-menu-card {
		padding: 10px;
	}

	.rrthf-menu-card__title {
		font-size: 16px;
		line-height: 1.3;
	}

	.rrthf-menu-card__price {
		font-size: 14px;
	}

	.rrthf-menu-card:active,
	.rrthf-menu-card:focus-visible {
		border-color: var(--rrthf-brand);
		box-shadow: 0 0 0 3px rgba(35, 154, 221, 0.14);
	}

	.rrthf-menu-panel__quick .rrthf-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		min-height: 76px;
		font-size: 14px;
	}
}

@media (max-width: 782px) {
	body.admin-bar {
		--rrthf-admin-offset: 46px;
	}
}

@media (max-width: 600px) {
	body.admin-bar {
		--rrthf-admin-offset: 0px;
	}

	.admin-bar .rrthf-mobilebar {
		top: var(--rrthf-notice-height);
	}

	.rrthf-cart__drawer,
	.rrthf-menu-panel__content {
		width: min(94vw, 430px);
	}

	.rrthf-mobile-nav__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-menu-panel__content,
	.rrthf-cart__drawer,
	.rrthf-locale__dialog {
		animation: none;
	}
}

/* v1.3.6 sticky, drawer, block-footer, and performance refinements. */
.rrthf-sticky-marker {
	display: block;
	height: 0;
	pointer-events: none;
}

.rrthf-sticky-marker--mobile {
	display: none;
}

.rrthf-notice.is-stuck {
	position: fixed !important;
	top: var(--rrthf-admin-offset) !important;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 2147483000;
}

.rrthf-nav.is-sticky {
	position: sticky !important;
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height)) !important;
}

.rrthf-nav.is-stuck {
	position: fixed !important;
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height)) !important;
	left: var(--rrthf-stuck-left, 0);
	right: auto;
	width: var(--rrthf-stuck-width, 100%);
	z-index: 2147482990;
	will-change: auto;
}

.rrthf-mobilebar.is-stuck {
	position: fixed !important;
	top: calc(var(--rrthf-admin-offset) + var(--rrthf-notice-height)) !important;
	left: var(--rrthf-mobile-stuck-left, 0);
	right: auto;
	width: var(--rrthf-mobile-stuck-width, 100%);
	z-index: 2147482980;
	will-change: auto;
}

.rrthf-nav__inner {
	justify-content: flex-start;
	gap: 10px;
}

.rrthf-nav__brand {
	display: none;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}

.rrthf-nav.is-stuck .rrthf-nav__brand {
	display: inline-flex;
}

.rrthf-nav__brand a,
.rrthf-nav__brand span {
	display: inline-flex;
	align-items: center;
	color: var(--rrthf-nav-text, var(--rrthf-navy));
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

.rrthf-nav__brand .rrthf-logo__img {
	max-width: 112px;
	max-height: 34px;
}

.rrthf-nav__tabs {
	flex: 1 1 auto;
}

.rrthf-nav__cart {
	margin-left: auto;
}

.rrthf-menu-panel,
.rrthf-locale,
.rrthf-cart {
	z-index: 2147483600;
}

.rrthf-menu-panel[hidden],
.rrthf-locale[hidden],
.rrthf-cart[hidden] {
	display: none !important;
}

.rrthf-cart__drawer {
	right: 0 !important;
	left: auto !important;
	width: min(100vw, 460px);
	padding: 0;
	animation: rrthf-slide-in-right 140ms ease-out both;
	will-change: auto;
}

@keyframes rrthf-slide-in-right {
	from {
		transform: translate3d(100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.rrthf-main .rrthf-icon-btn,
.rrthf-main .rrthf-locale-toggle,
.rrthf-mobilebar__menu,
.rrthf-cart-toggle {
	flex-direction: row;
}

.rrthf-main .rrthf-icon-btn > span:first-child,
.rrthf-main .rrthf-locale-toggle > span:first-child,
.rrthf-mobilebar__menu > span:first-child,
.rrthf-cart-toggle > span:first-child {
	order: 0;
}

.rrthf-main .rrthf-icon-btn > span:last-child,
.rrthf-main .rrthf-locale-toggle > span:last-child,
.rrthf-mobilebar__menu > span:last-child,
.rrthf-cart-toggle > span:last-child {
	order: 1;
}

.rrthf-mega {
	left: 0;
	right: 0;
	width: min(1120px, calc(100vw - 32px));
	margin-inline: auto;
	max-height: min(74vh, 620px);
	overflow: hidden;
	padding: 0;
	transform: translateY(8px);
}

.rrthf-mega__layout,
.rrthf-mega__cols {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 0;
	max-height: inherit;
	min-height: 360px;
}

.rrthf-mega__labels {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	padding: 14px;
	overflow: auto;
	border-right: 1px solid var(--rrthf-border);
	background: var(--rrthf-soft);
	-webkit-overflow-scrolling: touch;
}

.rrthf-mega__label {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: transparent;
	color: var(--rrthf-navy);
	font-weight: 800;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
}

.rrthf-mega__label.is-active,
.rrthf-mega__label:hover,
.rrthf-mega__label:focus-visible {
	border-color: var(--rrthf-border);
	outline: 1px solid rgba(30, 59, 102, 0.22);
	background: #fff;
	color: var(--rrthf-brand);
}

.rrthf-mega__groups {
	min-height: 0;
	max-height: min(74vh, 620px);
	padding: 14px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.rrthf-mega__group {
	display: block;
	padding: 12px;
	border: 1px solid var(--rrthf-border);
	border-radius: 16px;
	background: #fff;
}

.rrthf-mega__group + .rrthf-mega__group {
	margin-top: 16px;
}

.rrthf-mega__group.is-active {
	outline: 2px solid rgba(35, 154, 221, 0.18);
	outline-offset: 1px;
}

.rrthf-mega__group h3 {
	position: static;
	margin: 0 0 12px;
	padding: 0 0 10px;
	border-bottom: 1px solid var(--rrthf-border);
	border-radius: 0;
	background: transparent;
}

.rrthf-mega__items {
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 14px;
}

.rrthf-footer__widget--block {
	display: block;
	min-width: 0;
}

.rrthf-footer__widget--wide {
	grid-column: 1 / -1;
}

.rrthf-footer__widget--block > :first-child {
	margin-top: 0;
}

.rrthf-footer__widget--block > :last-child {
	margin-bottom: 0;
}

.rrthf-footer__widget--block img,
.rrthf-footer__widget--block svg,
.rrthf-footer__widget--block video,
.rrthf-footer__widget--block iframe {
	max-width: 100%;
	height: auto;
}

.rrthf-footer__widget--block table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

@media (max-width: 960px) {
	.rrthf-nav.is-sticky,
	.rrthf-nav.is-stuck {
		position: relative !important;
		top: auto !important;
		left: auto;
		width: auto;
	}

	.rrthf-sticky-marker--mobile {
		display: block;
	}

	.rrthf-mobilebar.is-stuck {
		display: grid;
	}

	.rrthf-menu-panel__content {
		display: grid;
		grid-template-rows: auto auto minmax(0, 1fr) auto;
		gap: 8px;
		width: min(94vw, 430px);
		padding: 10px;
		overflow: hidden;
	}

	.rrthf-menu-panel__top {
		gap: 8px;
		padding-bottom: 6px;
	}

	.rrthf-menu-panel__top strong {
		font-size: 18px;
	}

	.rrthf-menu-panel .rrthf-search input[type="search"],
	.rrthf-menu-panel .rrthf-search button {
		min-height: 40px;
	}

	.rrthf-mobile-nav {
		grid-template-columns: 78px minmax(0, 1fr);
		min-height: 0;
		height: 100%;
	}

	.rrthf-mobile-nav__tabs {
		gap: 5px;
		overflow: auto;
	}

	.rrthf-mobile-nav__tabs button {
		padding: 9px 6px;
		font-size: 12px;
	}

	.rrthf-mobile-nav__panels {
		min-height: 0;
		max-height: none;
		overflow: auto;
	}

	.rrthf-mobile-nav__items {
		gap: 10px;
	}

	.rrthf-mobile-nav .rrthf-menu-card__image {
		width: 68px;
		height: 68px;
	}

	.rrthf-menu-panel__quick {
		gap: 6px;
		max-height: 112px;
		margin-top: 0;
		padding: 8px;
		overflow: auto;
	}

	.rrthf-menu-panel__quick .rrthf-links {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 6px;
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		min-height: 42px;
		padding: 6px;
		font-size: 12px;
	}
}

@media (max-width: 600px) {
	.rrthf-mobile-nav {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.rrthf-mobile-nav__items {
		grid-template-columns: 1fr;
	}

	.rrthf-mobile-nav .rrthf-menu-card {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.rrthf-mobile-nav .rrthf-menu-card__image {
		width: 78px;
		height: 78px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-cart__drawer {
		animation: none;
	}
}

.rrthf-nav__brand .rrthf-nav-logo__img {
	display: block;
	max-width: 112px;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* v1.3.6 footer block CSS support and full-width copyright block. */
.rrthf-footer-inline-css {
	display: none !important;
}

.rrthf-footer__copyright {
	grid-column: 1 / -1;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

.rrthf-footer--calm .rrthf-footer__copyright {
	border-top-color: rgba(30, 59, 102, 0.18);
}

.rrthf-footer__copyright > :first-child {
	margin-top: 0;
}

.rrthf-footer__copyright > :last-child {
	margin-bottom: 0;
}

.rrthf-footer__copyright a {
	color: inherit;
	font-weight: 800;
}

@media (max-width: 767px) {
	.rrthf-footer__inner {
		gap: 18px;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.rrthf-footer__copyright {
		font-size: 13px;
	}
}


/* v1.3.6 mega-menu CLS, panel color, and language flag refinements. */
.rrthf-nav .rrthf-mega {
	border-color: var(--rrthf-panel-border);
	background: var(--rrthf-panel-bg);
	color: var(--rrthf-panel-text);
}

.rrthf-nav .rrthf-mega__labels {
	border-right-color: var(--rrthf-panel-border);
	background: var(--rrthf-panel-muted);
}

.rrthf-nav .rrthf-mega__group h3,
.rrthf-nav .rrthf-mega__label,
.rrthf-nav .rrthf-menu-card__title {
	color: var(--rrthf-panel-text);
}

.rrthf-nav .rrthf-mega__label.is-active,
.rrthf-nav .rrthf-mega__label:hover,
.rrthf-nav .rrthf-mega__label:focus-visible {
	border-color: var(--rrthf-brand);
	background: rgba(35, 154, 221, 0.18);
	color: var(--rrthf-brand);
}

.rrthf-nav .rrthf-menu-card {
	border-color: var(--rrthf-panel-border);
	background: var(--rrthf-panel-card-bg);
	color: var(--rrthf-panel-text);
	box-shadow: none;
}

.rrthf-nav .rrthf-menu-card:hover,
.rrthf-nav .rrthf-menu-card:focus-visible {
	border-color: var(--rrthf-brand);
}

.rrthf-nav .rrthf-menu-card__price {
	color: var(--rrthf-brand);
}

.rrthf-menu-card__image.is-lazy-image::before {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: var(--rrthf-panel-placeholder, #edf4fa);
	content: "";
}

.rrthf-menu-card__image.is-loaded::before {
	display: none;
}

.rrthf-menu-card__img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.rrthf-field--language {
	display: grid;
	gap: 8px;
}



/* v1.3.6 controlled desktop navigation state and CLS-safe centered mega panels. */
.rrthf-nav {
	background: var(--rrthf-nav-bg, #fff);
}

.rrthf-nav__tab > button {
	color: var(--rrthf-nav-text, var(--rrthf-navy));
}

.rrthf-nav__tab:hover > button,
.rrthf-nav__tab > button:focus-visible,
.rrthf-nav__tab.is-open > button {
	color: var(--rrthf-brand);
}

.rrthf-nav__tab:not(.is-open) > .rrthf-mega {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transform: translateY(8px) !important;
}

.rrthf-nav__tab.is-open > .rrthf-mega {
	position: fixed;
	top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
	left: 0;
	right: 0;
	margin-inline: auto;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.rrthf-nav .rrthf-mega {
	background: var(--rrthf-panel-bg, #fff);
	color: var(--rrthf-panel-text, var(--rrthf-navy));
}

/* v1.3.7 sticky containment and mobile quick-action refinements. */
.rrthf-header {
	contain: none;
}

.rrthf-notice,
.rrthf-nav,
.rrthf-mobilebar {
	position: sticky;
}

.rrthf-main .rrthf-locale-toggle {
	max-width: min(210px, 18vw);
	min-width: 0;
	min-height: 50px;
	padding-inline: 10px;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
}

.rrthf-main .rrthf-locale-toggle > span:first-child {
	font-size: 20px;
}

.rrthf-main .rrthf-locale-toggle > span:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 961px) and (max-width: 1180px) {
	.rrthf-main__inner {
		grid-template-columns: minmax(112px, 170px) minmax(220px, 1fr) auto auto;
		gap: 12px;
	}

	.rrthf-main .rrthf-locale-toggle {
		max-width: 150px;
		padding-inline: 8px;
	}

	.rrthf-links {
		gap: 8px;
	}
}

.rrthf-locale__top strong {
	font-size: clamp(18px, 4.6vw, 20px);
	line-height: 1.2;
}

@media (max-width: 960px) {
	.rrthf-menu-panel__quick {
		display: grid;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 8px;
		max-height: none;
		overflow: visible;
	}

	.rrthf-menu-panel__quick .rrthf-links {
		display: contents;
	}

	.rrthf-menu-panel__quick > .rrthf-locale-toggle,
	.rrthf-menu-panel__quick .rrthf-links a:first-child {
		grid-column: span 3;
	}

	.rrthf-menu-panel__quick .rrthf-links a:nth-child(n+2) {
		grid-column: span 2;
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 56px;
		padding: 8px 6px;
		border-radius: 14px;
		font-size: 12px;
		line-height: 1.15;
		text-align: center;
		white-space: normal;
	}

	.rrthf-menu-panel__quick .rrthf-links a > span:first-child,
	.rrthf-menu-panel__quick .rrthf-locale-toggle > span:first-child {
		font-size: 20px;
	}

	.rrthf-mobile-nav__panels {
		scroll-behavior: auto;
		overscroll-behavior: contain;
	}
}

@media (max-width: 380px) {
	.rrthf-menu-panel__quick {
		gap: 6px;
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		min-height: 52px;
		font-size: 11px;
	}
}



/* v1.4.2 SVG icons, compact sticky mobile header, and resilient small-device menu controls. */
.rrthf-svg-icon {
	display: block;
	flex: 0 0 auto;
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.rrthf-svg-icon circle:not([r=".9"]),
.rrthf-svg-icon rect,
.rrthf-svg-icon path {
	vector-effect: non-scaling-stroke;
}

.rrthf-search button .rrthf-svg-icon {
	width: 18px;
	height: 18px;
}

.rrthf-svg-icon--palette circle {
	fill: currentColor;
	stroke: none;
}

.rrthf-icon-btn .rrthf-svg-icon,
.rrthf-links a .rrthf-svg-icon,
.rrthf-cart-toggle .rrthf-svg-icon {
	width: 22px;
	height: 22px;
}


.rrthf-mini-cart__empty {
	flex: 1 1 auto;
	width: 100%;
	min-height: 100%;
	align-content: center;
	justify-items: center;
	place-content: center;
}

.rrthf-mini-cart__empty p {
	margin: 0;
	color: var(--rrthf-navy);
	font-size: 16px;
	font-weight: 800;
}

.rrthf-mini-cart__empty .rrthf-button {
	width: min(100%, 240px);
}

@media (max-width: 960px) {
	.rrthf-mobilebar {
		grid-template-columns: 78px minmax(0, 1fr) 48px;
		min-height: 52px;
		padding: 6px 10px;
	}

	.rrthf-mobilebar__logo .rrthf-logo__img {
		max-width: 142px;
		max-height: 38px;
	}

	.rrthf-mobilebar__menu,
	.rrthf-mobilebar .rrthf-cart-toggle {
		min-height: 42px;
		border: 0;
		box-shadow: none;
		outline: 0;
	}

	.rrthf-mobilebar__menu:focus,
	.rrthf-mobilebar__menu:focus-visible,
	.rrthf-mobilebar .rrthf-cart-toggle:focus,
	.rrthf-mobilebar .rrthf-cart-toggle:focus-visible {
		outline: 0;
		box-shadow: none;
	}

	.rrthf-mobilebar .rrthf-svg-icon {
		width: 21px;
		height: 21px;
	}

	.rrthf-mobilebar .rrthf-cart-count {
		top: -4px;
		right: -4px;
	}

	.rrthf-menu-panel__content {
		grid-template-rows: auto auto minmax(0, 1fr) auto;
		gap: 6px;
		padding-top: 8px;
	}

	.rrthf-menu-panel__top {
		padding-bottom: 0;
	}

	.rrthf-menu-panel .rrthf-search {
		margin-top: -3px;
	}

	.rrthf-menu-panel__quick {
		position: sticky;
		bottom: 0;
		z-index: 2;
		max-height: min(25vh, 132px);
		overflow: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		min-height: 54px;
	}

	.rrthf-menu-panel__quick .rrthf-links a .rrthf-svg-icon,
	.rrthf-menu-panel__quick .rrthf-locale-toggle .rrthf-svg-icon {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 960px) and (max-height: 680px) {
	.rrthf-menu-panel__content {
		gap: 5px;
		padding: 7px 9px;
	}

	.rrthf-menu-panel__top strong {
		font-size: 17px;
	}

	.rrthf-menu-panel .rrthf-search input[type="search"],
	.rrthf-menu-panel .rrthf-search button {
		min-height: 38px;
	}

	.rrthf-menu-panel__quick {
		max-height: 106px;
		padding: 6px;
	}

	.rrthf-menu-panel__quick .rrthf-links a,
	.rrthf-menu-panel__quick .rrthf-locale-toggle {
		min-height: 44px;
		padding: 5px 4px;
		font-size: 11px;
	}

	.rrthf-menu-panel__quick .rrthf-links a .rrthf-svg-icon,
	.rrthf-menu-panel__quick .rrthf-locale-toggle .rrthf-svg-icon {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 380px) {
	.rrthf-mobilebar {
		grid-template-columns: 72px minmax(0, 1fr) 46px;
		padding-inline: 8px;
	}

	.rrthf-mobilebar__logo .rrthf-logo__img {
		max-width: 132px;
	}
}


/* v1.4.2 nav chevrons, pointed mobile nav tabs, larger cart affordance, and AJAX mini-cart quantities. */
.rrthf,
.rrthf-menu-panel,
.rrthf-locale,
.rrthf-cart {
	font-family: var(--rrthf-font-family, "Myriad Pro", "Myriad Web Pro", "Segoe UI", Arial, sans-serif);
}

.rrthf-nav__tab > button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.rrthf-nav__tab > button .rrthf-svg-icon--chevron {
	width: 13px;
	height: 13px;
	transition: transform 140ms ease;
}

.rrthf-nav__tab.is-open > button .rrthf-svg-icon--chevron,
.rrthf-nav__tab > button[aria-expanded="true"] .rrthf-svg-icon--chevron {
	transform: rotate(180deg);
}

.rrthf-cart-toggle {
	min-width: 50px;
}

.rrthf-cart-toggle .rrthf-svg-icon--cart {
	width: 28px;
	height: 28px;
}

.rrthf-cart-count {
	top: -8px;
	right: -8px;
	min-width: 23px;
	height: 23px;
	padding-inline: 6px;
	font-size: 13px;
	line-height: 1;
}

.rrthf-mini-cart__item {
	align-items: start;
}

.rrthf-mini-cart__options {
	margin-top: 5px;
	color: #526376;
	font-size: 12px;
	line-height: 1.28;
}

.rrthf-mini-cart__options dl,
.rrthf-mini-cart__options p {
	margin: 0;
}

.rrthf-mini-cart__options .variation {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	align-items: baseline;
	gap: 2px 4px;
	margin: 4px 0 0;
}

.rrthf-mini-cart__options .variation dt,
.rrthf-mini-cart__options .variation dd {
	min-width: 0;
	margin: 0;
	line-height: 1.25;
}

.rrthf-mini-cart__options .variation dt {
	color: var(--rrthf-navy);
	font-weight: 800;
}

.rrthf-mini-cart__options .variation dd {
	overflow-wrap: anywhere;
}

.rrthf-mini-cart__options .variation dd p {
	display: inline;
}

.rrthf-mini-cart__options .variation dd a {
	white-space: normal;
}

.rrthf-mini-cart__quantity {
	display: inline-grid;
	grid-template-columns: 30px 42px 30px;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	padding: 3px;
	border: 1px solid var(--rrthf-border);
	border-radius: 999px;
	background: var(--rrthf-soft);
}

.rrthf-mini-cart__quantity button,
.rrthf-mini-cart__quantity input {
	min-width: 0;
	height: 28px;
	border: 0;
	background: transparent;
	color: var(--rrthf-navy);
	font-weight: 900;
	text-align: center;
}

.rrthf-mini-cart__quantity button {
	display: grid;
	border-radius: 999px;
	cursor: pointer;
	place-items: center;
}

.rrthf-mini-cart__quantity button:hover,
.rrthf-mini-cart__quantity button:focus-visible {
	background: #fff;
	color: var(--rrthf-brand);
	outline: 0;
}

.rrthf-mini-cart__quantity input {
	padding: 0;
	-moz-appearance: textfield;
}

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

.rrthf-mini-cart__quantity.is-updating {
	opacity: 0.65;
	pointer-events: none;
}

@media (max-width: 960px) {
	.rrthf-mobile-nav__tabs {
		padding-right: 8px;
	}

	.rrthf-mobile-nav__tabs button {
		position: relative;
		margin-right: 6px;
		padding-right: 10px;
		border-radius: 12px 7px 7px 12px;
	}

	.rrthf-mobile-nav__tabs button::after {
		position: absolute;
		top: 50%;
		right: -7px;
		width: 0;
		height: 0;
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		border-left: 7px solid var(--rrthf-soft);
		content: "";
		transform: translateY(-50%);
	}

	.rrthf-mobile-nav__tabs button.is-active::after {
		border-left-color: var(--rrthf-brand);
	}

	.rrthf-mobilebar .rrthf-cart-toggle {
		min-width: 48px;
		padding-inline: 8px;
	}

	.rrthf-mobilebar .rrthf-cart-toggle .rrthf-svg-icon--cart {
		width: 26px;
		height: 26px;
	}

	.rrthf-mobilebar .rrthf-cart-count {
		top: -6px;
		right: -6px;
		min-width: 22px;
		height: 22px;
		font-size: 12px;
	}

	.rrthf-mini-cart__item {
		grid-template-columns: 58px minmax(0, 1fr) max-content;
		align-items: start;
		gap: 8px;
	}

	.rrthf-mini-cart__price {
		grid-column: 3;
		grid-row: 1;
		align-self: start;
		justify-self: end;
		margin-top: 0;
		text-align: right;
		white-space: nowrap;
	}
}

@media (max-width: 380px) {
	.rrthf-mini-cart__quantity {
		grid-template-columns: 28px 38px 28px;
	}
}


/* v1.4.2 nested mobile locale, sticky mega alignment, cart visibility, and mobile nav tab polish. */
.rrthf-nav__tab.is-open > .rrthf-mega {
	top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.rrthf-cart-toggle {
	overflow: visible;
}

.rrthf-cart-toggle .rrthf-svg-icon--cart {
	width: 31px;
	height: 31px;
}

.rrthf-cart-count {
	top: -3px;
	right: 0;
	min-width: 24px;
	height: 24px;
	font-size: 13px;
}

@media (max-width: 960px) {
	.rrthf-menu-panel__top,
	.rrthf-menu-panel .rrthf-search {
		position: relative;
		z-index: 3;
		transform: translateY(-5px);
	}

	.rrthf-menu-panel .rrthf-search {
		margin-top: -2px;
		margin-bottom: 4px;
	}

	.rrthf-mobile-nav {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.rrthf-mobile-nav__tabs {
		padding-right: 11px;
	}

	.rrthf-mobile-nav__tabs button {
		margin-right: 9px;
		padding: 9px 9px 9px 8px;
		border-color: var(--rrthf-border);
		border-radius: 12px 8px 8px 12px;
		white-space: nowrap;
	}

	.rrthf-mobile-nav__tabs button::before,
	.rrthf-mobile-nav__tabs button::after {
		position: absolute;
		top: 50%;
		width: 0;
		height: 0;
		content: "";
		transform: translateY(-50%);
	}

	.rrthf-mobile-nav__tabs button::before {
		right: -10px;
		border-top: 9px solid transparent;
		border-bottom: 9px solid transparent;
		border-left: 9px solid var(--rrthf-border);
	}

	.rrthf-mobile-nav__tabs button::after {
		right: -8px;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-left: 8px solid var(--rrthf-soft);
	}

	.rrthf-mobile-nav__tabs button.is-active::before {
		border-left-color: var(--rrthf-brand);
	}

	.rrthf-mobile-nav__tabs button.is-active::after {
		border-left-color: var(--rrthf-brand);
	}

	.rrthf-mobilebar .rrthf-cart-toggle .rrthf-svg-icon--cart {
		width: 29px;
		height: 29px;
	}

	.rrthf-mobilebar .rrthf-cart-count {
		top: -1px;
		right: 0;
		min-width: 23px;
		height: 23px;
	}
}

@media (max-width: 380px) {
	.rrthf-mobile-nav {
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.rrthf-mobile-nav__tabs button {
		padding-inline: 7px 8px;
		font-size: 11px;
	}
}
/* v1.4.2 mobile menu, sticky mega overlay, and CLS refinements. */
.rrthf-mega-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2147482980;
	background: rgba(7, 18, 32, 0.58);
	opacity: 0;
	pointer-events: none;
	transition: opacity 120ms ease;
}

.rrthf-mega-backdrop.is-active,
body.rrthf-mega-open .rrthf-mega-backdrop {
	opacity: 1;
	pointer-events: auto;
}

body.rrthf-mega-lock {
	overscroll-behavior: contain;
}

.rrthf-nav.is-overlay-open {
	z-index: 2147482990;
}

.rrthf-nav.is-overlay-open .rrthf-mega {
	z-index: 2147482991;
	overscroll-behavior: contain;
}

.rrthf-nav.is-overlay-open .rrthf-mega__groups,
.rrthf-nav.is-overlay-open .rrthf-mega__labels {
	overscroll-behavior: contain;
}

.rrthf-menu-card--no-image,
.rrthf-menu-card--type-custom {
	grid-template-columns: 1fr;
	align-items: center;
	justify-items: center;
	text-align: center;
}

.rrthf-menu-card--no-image .rrthf-menu-card__text,
.rrthf-menu-card--type-custom .rrthf-menu-card__text {
	display: grid;
	align-items: center;
	justify-items: center;
	min-height: 42px;
}

.rrthf-menu-card--no-image .rrthf-menu-card__title,
.rrthf-menu-card--type-custom .rrthf-menu-card__title {
	display: block;
	overflow: visible;
	-webkit-line-clamp: initial;
}

.rrthf-links a {
	min-width: 74px;
	min-height: 52px;
	line-height: 1.15;
	text-align: center;
}

.rrthf-links a .rrthf-svg-icon {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
}

.rrthf-links a > span:last-child {
	display: block;
	min-height: 15px;
}

@media (min-width: 961px) {
	.rrthf-nav.is-overlay-open {
		position: relative;
	}

	.rrthf-nav.is-sticky.is-overlay-open {
		position: sticky !important;
	}

	.rrthf-nav.is-stuck.is-overlay-open {
		position: fixed !important;
	}
}

@media (max-width: 960px) {
	.rrthf-mobile-nav__tabs button {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		font-size: 13px;
		line-height: 1.12;
		text-align: center;
		word-break: normal;
		overflow-wrap: normal;
	}

	.rrthf-mobile-nav__tab:not(.rrthf-mobile-nav__tab--kids) {
		white-space: nowrap;
	}

	.rrthf-mobile-nav__tab--kids {
		white-space: normal;
	}

	.rrthf-mobile-nav__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		align-items: stretch;
	}

	.rrthf-mobile-nav .rrthf-menu-card {
		min-width: 0;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product {
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 7px;
		min-height: 0;
		padding: 6px;
		text-align: center;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__image {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 12px;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__text {
		display: grid;
		gap: 2px;
		align-content: start;
		min-width: 0;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__title {
		font-size: 13.5px;
		line-height: 1.18;
		-webkit-line-clamp: 2;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__price {
		margin-top: 0;
		font-size: 12px;
		line-height: 1.15;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category,
	.rrthf-mobile-nav .rrthf-menu-card--type-custom,
	.rrthf-mobile-nav .rrthf-menu-card--no-image {
		grid-column: 1 / -1;
		justify-content: center;
		min-height: 52px;
		text-align: center;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category:not(.rrthf-menu-card--no-image) {
		grid-template-columns: 64px minmax(0, 1fr);
		text-align: left;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category .rrthf-menu-card__image {
		width: 64px;
		height: 64px;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-custom .rrthf-menu-card__text,
	.rrthf-mobile-nav .rrthf-menu-card--no-image .rrthf-menu-card__text {
		place-items: center;
		width: 100%;
		min-height: 36px;
	}
}

@media (max-width: 600px) {
	.rrthf-mobile-nav__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product {
		grid-template-columns: 1fr;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__image {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 380px) {
	.rrthf-mobile-nav__tabs button {
		font-size: 12px;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-product .rrthf-menu-card__title {
		font-size: 12.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-mega-backdrop {
		transition: none;
	}
}


/* v1.4.2 stable hover, two-column menu marker, and mobile header refinements. */
.rrthf-nav.is-stuck {
	position: sticky !important;
	top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
}

.rrthf-nav.is-stuck .rrthf-nav__brand {
	display: inline-flex;
}

.rrthf-nav__tab.is-open > .rrthf-mega {
	top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
	margin-top: 0;
	border-top: 0;
	transform: none;
}

.rrthf-nav__tab.is-open::after {
	position: fixed;
	top: calc(var(--rrthf-mega-top, 0px) - 8px);
	left: 0;
	right: 0;
	z-index: 2147482992;
	display: block;
	height: 10px;
	pointer-events: auto;
	content: "";
}

body.rrthf-mega-lock {
	overflow: hidden;
}

.rrthf-menu-card--two-col-equal {
	grid-template-columns: 1fr;
	align-items: stretch;
	justify-items: center;
	min-height: 82px;
	text-align: center;
}

.rrthf-menu-card--two-col-equal .rrthf-menu-card__text {
	display: grid;
	align-content: center;
	justify-items: center;
	width: 100%;
	min-height: 54px;
}

.rrthf-menu-card--two-col-equal .rrthf-menu-card__title {
	display: block;
	overflow: visible;
	text-align: center;
	-webkit-line-clamp: initial;
}

@media (min-width: 961px) {
	.rrthf-mega .rrthf-menu-card--two-col-equal {
		min-height: 96px;
	}
}

@media (max-width: 960px) {
	.rrthf-mobilebar .rrthf-cart-toggle {
		justify-self: start;
		transform: translateX(-8px);
	}

	.rrthf-mobilebar .rrthf-cart-count {
		transform: translateX(-2px);
	}

	.rrthf-mobile-nav__label-split {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1px;
		line-height: 1.04;
		white-space: normal;
	}

	.rrthf-mobile-nav__tab--kids {
		min-height: 50px;
		white-space: normal;
	}

	.rrthf-mobile-nav .rrthf-menu-card--two-col-equal {
		grid-column: auto;
		grid-template-columns: 1fr;
		align-items: stretch;
		justify-content: center;
		min-height: clamp(132px, 42vw, 190px);
		padding: 6px;
		text-align: center;
	}

	.rrthf-mobile-nav .rrthf-menu-card--two-col-equal .rrthf-menu-card__text {
		align-content: center;
		min-height: 100%;
	}

	.rrthf-mobile-nav .rrthf-menu-card--two-col-equal .rrthf-menu-card__title {
		font-size: 13.5px;
		line-height: 1.18;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-nav__tab.is-open > .rrthf-mega {
		transition: none;
	}
}


/* v1.4.2 final hover-gap and equal-card layout hardening. */
.rrthf-nav.is-stuck.is-overlay-open {
	position: sticky !important;
	top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
}

.rrthf-mega__items--two-col-equal {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 560px;
}

.rrthf-mega .rrthf-menu-card--two-col-equal {
	min-height: clamp(190px, 22vw, 250px);
}

.rrthf-mobile-nav__items--two-col-equal {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
	.rrthf-mobilebar .rrthf-cart-toggle {
		transform: translateX(5px);
	}

	.rrthf-mobilebar .rrthf-cart-count {
		transform: translateX(0);
	}

	.rrthf-mobile-nav__tab--kids .rrthf-mobile-nav__label-split > span {
		display: block;
	}

	.rrthf-mobile-nav .rrthf-menu-card--two-col-equal {
		min-height: clamp(170px, 48vw, 230px);
	}
}


/* v1.4.3 checkout header, stable desktop navigation, checkout progress, and mobile cart polish. */
.rrthf-checkout-header {
	background: #fff;
	border-bottom: 1px solid var(--rrthf-border);
	box-shadow: 0 8px 22px rgba(30, 59, 102, 0.06);
}

.rrthf-checkout-header__inner {
	display: grid;
	grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 76px;
}

.rrthf-checkout-header__title {
	justify-self: end;
	color: var(--rrthf-navy);
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 900;
	line-height: 1.1;
}

.rrthf-checkout-progress {
	--rrthf-progress-scale: 0;
	width: min(100% - 28px, 880px);
	margin: clamp(16px, 3vw, 30px) auto;
	color: var(--rrthf-navy);
	font-family: var(--rrthf-font-family, "Myriad Pro", "Myriad Web Pro", "Segoe UI", Arial, sans-serif);
}

.rrthf-checkout-progress,
.rrthf-checkout-progress * {
	box-sizing: border-box;
}

.rrthf-checkout-progress__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rrthf-checkout-progress__list::before,
.rrthf-checkout-progress__list::after {
	position: absolute;
	top: 18px;
	left: calc(16.666% + 18px);
	right: calc(16.666% + 18px);
	height: 4px;
	border-radius: 999px;
	content: "";
}

.rrthf-checkout-progress__list::before {
	background: rgba(30, 59, 102, 0.14);
}

.rrthf-checkout-progress__list::after {
	background: var(--rrthf-brand);
	transform: scaleX(var(--rrthf-progress-scale, 0));
	transform-origin: left center;
	transition: transform 180ms ease;
}

.rrthf-checkout-progress__item {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 8px;
	min-width: 0;
	text-align: center;
}

.rrthf-checkout-progress__dot {
	display: grid;
	width: 40px;
	height: 40px;
	border: 2px solid rgba(30, 59, 102, 0.22);
	border-radius: 999px;
	background: #fff;
	color: var(--rrthf-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	place-items: center;
}

.rrthf-checkout-progress__item.is-current .rrthf-checkout-progress__dot,
.rrthf-checkout-progress__item.is-complete .rrthf-checkout-progress__dot {
	border-color: var(--rrthf-brand);
	background: var(--rrthf-brand);
	color: #fff;
}

.rrthf-checkout-progress__label {
	display: block;
	color: var(--rrthf-navy);
	font-size: clamp(12px, 1.5vw, 15px);
	font-weight: 800;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.rrthf-checkout-progress__item.is-upcoming .rrthf-checkout-progress__label {
	opacity: 0.68;
}

@media (min-width: 961px) {
	body.rrthf-mega-lock {
		overflow: visible;
	}

	.rrthf-mega-backdrop,
	.rrthf-mega-backdrop.is-active,
	body.rrthf-mega-open .rrthf-mega-backdrop {
		opacity: 0;
		pointer-events: none;
	}

	.rrthf-nav,
	.rrthf-nav.is-sticky,
	.rrthf-nav.is-stuck,
	.rrthf-nav.is-stuck.is-overlay-open {
		position: sticky !important;
		top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
		right: auto !important;
		left: auto !important;
		z-index: 2147482990;
		width: auto !important;
	}

	.rrthf-nav__tab.is-open > .rrthf-mega {
		top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
		z-index: 2147482991;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.rrthf-nav__tab.is-open::after {
		pointer-events: none;
	}
}

@media (max-width: 960px) {
	.rrthf-checkout-header__inner {
		display: flex;
		justify-content: center;
		min-height: 58px;
		padding-block: 8px;
	}

	.rrthf-checkout-header__title {
		display: none;
	}

	.rrthf-checkout-header .rrthf-logo__img {
		max-height: 44px;
	}

	.rrthf-mini-cart__item {
		grid-template-columns: 58px minmax(0, 1fr) max-content;
		align-items: start;
		gap: 8px;
	}

	.rrthf-mini-cart__price {
		grid-column: 3;
		grid-row: 1;
		align-self: start;
		justify-self: end;
		margin-top: 0;
		text-align: right;
		white-space: nowrap;
	}

	.rrthf-mini-cart__meta {
		min-width: 0;
	}

	.rrthf-mobilebar .rrthf-cart-toggle {
		transform: translateX(5px);
	}

	.rrthf-mobilebar .rrthf-cart-count {
		transform: translateX(0);
	}
}

@media (max-width: 480px) {
	.rrthf-checkout-progress {
		width: min(100% - 20px, 880px);
	}

	.rrthf-checkout-progress__list {
		gap: 4px;
	}

	.rrthf-checkout-progress__dot {
		width: 34px;
		height: 34px;
		font-size: 13px;
	}

	.rrthf-checkout-progress__list::before,
	.rrthf-checkout-progress__list::after {
		top: 15px;
		left: calc(16.666% + 15px);
		right: calc(16.666% + 15px);
		height: 3px;
	}

	.rrthf-checkout-progress__label {
		font-size: 11px;
	}
}

@media (max-width: 380px) {
	.rrthf-mini-cart__item {
		grid-template-columns: 54px minmax(0, 1fr) max-content;
	}

	.rrthf-mini-cart__price {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-checkout-progress__list::after {
		transition: none;
	}
}

/* v1.4.4 sticky notice/header hardening and desktop mega-menu hover selection. */
.rrthf-sticky-marker--notice,
.rrthf-sticky-marker--nav,
.rrthf-sticky-marker--mobile {
	display: block;
	height: 0;
	visibility: hidden;
	pointer-events: none;
}

.rrthf-notice {
	position: sticky !important;
	top: var(--rrthf-admin-offset, 0px) !important;
	z-index: 2147483000;
}

.rrthf-notice.is-stuck {
	position: fixed !important;
	top: var(--rrthf-admin-offset, 0px) !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 2147483000;
}

.rrthf-mega__label {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 44px;
}

.rrthf-mega__label::after {
	display: inline-grid;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(35, 154, 221, 0.11);
	color: currentColor;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	content: "›";
	place-items: center;
	transition: transform 140ms ease, background-color 140ms ease;
}

.rrthf-mega__label.is-active::after,
.rrthf-mega__label:hover::after,
.rrthf-mega__label:focus-visible::after {
	background: rgba(35, 154, 221, 0.2);
	transform: translateX(2px);
}

@media (min-width: 961px) {
	.rrthf-nav,
	.rrthf-nav.is-sticky {
		position: sticky !important;
		top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
		z-index: 2147482990;
	}

	.rrthf-nav.is-stuck,
	.rrthf-nav.is-stuck.is-overlay-open {
		position: fixed !important;
		top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
		left: var(--rrthf-stuck-left, 0px) !important;
		right: auto !important;
		width: var(--rrthf-stuck-width, 100%) !important;
		z-index: 2147482990;
	}

	.rrthf-nav__tab.is-open > .rrthf-mega {
		top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px));
		margin-top: 0;
		border-top: 0;
		z-index: 2147482991;
	}
}

@media (max-width: 960px) {
	.rrthf-mobilebar {
		position: sticky !important;
		top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
		z-index: 2147482980;
	}

	.rrthf-mobilebar.is-stuck {
		position: fixed !important;
		top: calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px)) !important;
		left: var(--rrthf-mobile-stuck-left, 0px) !important;
		right: auto !important;
		width: var(--rrthf-mobile-stuck-width, 100%) !important;
		z-index: 2147482980;
	}
}


/* v1.4.5 checkout progress, non-sticky checkout header, sticky conflict, menu, cart, and responsive polish. */
.rrthf-checkout-header,
.rrthf-checkout-header.is-sticky,
.rrthf-checkout-header.is-stuck {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
	transform: none !important;
	will-change: auto;
}

body.rrthf-checkout-header-active .entry-title,
body.rrthf-checkout-header-active .page-title,
body.rrthf-checkout-header-active .wp-block-post-title,
body.rrthf-checkout-header-active .ct-page-title,
body.rrthf-checkout-header-active .hero-section[data-type="type-1"] {
	display: none !important;
}

.rrthf-header + .rrthf-checkout-progress {
	margin-top: clamp(14px, 2.6vw, 26px);
}

.rrthf-nav.is-main-visible,
.rrthf-nav.is-main-visible.is-sticky,
.rrthf-nav.is-main-visible.is-stuck {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
	transform: none !important;
	will-change: auto;
}

.rrthf-nav.is-main-visible .rrthf-nav__brand {
	display: none;
}

.rrthf-nav .rrthf-mega {
	left: 0;
	right: 0;
	width: min(1232px, calc(100vw - 24px));
	margin-inline: auto;
}

.rrthf-nav__cart .rrthf-cart-toggle {
	border-color: transparent;
	background: transparent;
	color: #fff;
	box-shadow: none;
}

.rrthf-nav__cart .rrthf-cart-toggle:hover,
.rrthf-nav__cart .rrthf-cart-toggle:focus-visible {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
}

.rrthf-nav .rrthf-mega__label.is-active {
	border-color: rgba(12, 95, 156, 0.92);
	outline: 0;
	box-shadow: none;
}

.rrthf-nav .rrthf-mega__label:hover,
.rrthf-nav .rrthf-mega__label:focus-visible {
	border-color: var(--rrthf-brand);
	outline: 0;
	box-shadow: inset 0 0 0 2px var(--rrthf-brand);
}

@media (max-width: 960px) {
	.rrthf-mobilebar .rrthf-cart-toggle {
		transform: translateX(2px);
	}

	.rrthf-mobilebar .rrthf-cart-count {
		transform: translateX(0);
	}
}


/* v1.4.6 desktop sticky stack, menu focus overlay, and mini-cart sizing fixes. */
.rrthf-mega-backdrop {
	position: fixed;
	inset: 0;
	z-index: 2147482980;
	background: rgba(7, 18, 32, 0.34);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 140ms ease, visibility 140ms ease;
}

.rrthf-mega-backdrop.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.rrthf-mega-open .rrthf-header,
body.rrthf-mega-open .rrthf-notice,
body.rrthf-mega-open .rrthf-nav,
body.rrthf-mega-open .rrthf-mega {
	isolation: isolate;
}

.rrthf-nav.is-main-visible,
.rrthf-nav.is-main-visible.is-sticky,
.rrthf-nav.is-main-visible.is-stuck {
	transform: none !important;
	will-change: auto;
}

.rrthf-mini-cart__items {
	align-content: start;
	grid-auto-rows: max-content;
}

.rrthf-mini-cart__item {
	align-self: start;
	height: auto;
	min-height: 0;
}

.rrthf-mini-cart__meta {
	min-width: 0;
}

.rrthf-mini-cart__actions .rrthf-button--checkout:hover,
.rrthf-mini-cart__actions .rrthf-button--checkout:focus-visible,
.rrthf-mini-cart__actions .rrthf-button--checkout:active {
	background: #1e3b66;
	color: #fff;
}

.rrthf-mini-cart__actions .rrthf-button--cart-link:hover,
.rrthf-mini-cart__actions .rrthf-button--cart-link:focus-visible,
.rrthf-mini-cart__actions .rrthf-button--cart-link:active {
	background: transparent;
	color: var(--rrthf-navy);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-mega-backdrop {
		transition: none;
	}
}


/* v1.4.7 notice-dismissal CLS guard, sticky mega alignment, and stronger desktop focus overlay. */
.rrthf-mega-backdrop {
	z-index: 2147482988;
	background: rgba(7, 18, 32, 0.5);
	backdrop-filter: none;
}

.rrthf-mega-backdrop.is-active,
body.rrthf-mega-open .rrthf-mega-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.rrthf-mega-open .rrthf-header,
body.rrthf-mega-open .rrthf-notice,
body.rrthf-mega-open .rrthf-nav {
	z-index: 2147482990;
}

body.rrthf-mega-open .rrthf-mega,
.rrthf-nav.is-overlay-open .rrthf-mega {
	z-index: 2147482992;
}

.rrthf-nav__tab.is-open > .rrthf-mega {
	top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px)) !important;
	margin-top: 0 !important;
	transform: none !important;
}

@media (max-width: 960px) {
	.rrthf-mega-backdrop {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rrthf-mega-backdrop {
		transition: none;
	}
}


/* v1.4.9 desktop CLS and sticky measurement refinements.
 *
 * Keep the fixed-position mega panel anchored to the viewport. A transformed or
 * transform-promoted sticky nav can become the containing block for fixed
 * descendants in modern browsers, which pushes the desktop mega panel down by
 * the sticky notice/header offset after scrolling.
 */
@media (min-width: 961px) {
	.rrthf-nav.is-stuck,
	.rrthf-nav.is-stuck.is-overlay-open {
		contain: none !important;
		transform: none !important;
		will-change: auto !important;
	}

	.rrthf-nav__tab.is-open > .rrthf-mega {
		position: fixed !important;
		top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px)) !important;
		margin-top: 0 !important;
	}
}


/* v1.5.0 footer trust badge, structured footer widgets, and review/social widgets. */
.rrthf-footer {
	--rrthf-footer-text: #fff;
	--rrthf-footer-muted: rgba(255, 255, 255, 0.78);
	--rrthf-footer-line: rgba(255, 255, 255, 0.18);
	--rrthf-footer-card: rgba(255, 255, 255, 0.1);
	--rrthf-footer-card-border: rgba(255, 255, 255, 0.2);
	--rrthf-review-star: #f7b731;
	--rrthf-review-star-muted: rgba(255, 255, 255, 0.34);
	margin-top: 32px;
	color: var(--rrthf-footer-text);
}

.rrthf-footer--brand {
	background:
		radial-gradient(circle at 12% 0, rgba(255, 255, 255, 0.18), transparent 28%),
		linear-gradient(135deg, #1e3b66, #239add);
}

.rrthf-footer--calm {
	--rrthf-footer-text: #1e3b66;
	--rrthf-footer-muted: rgba(30, 59, 102, 0.72);
	--rrthf-footer-line: rgba(30, 59, 102, 0.16);
	--rrthf-footer-card: rgba(255, 255, 255, 0.72);
	--rrthf-footer-card-border: rgba(30, 59, 102, 0.12);
	--rrthf-review-star-muted: rgba(30, 59, 102, 0.25);
	background:
		radial-gradient(circle at 85% 15%, rgba(35, 154, 221, 0.16), transparent 30%),
		linear-gradient(135deg, #eaf6ff, #d7efff);
	color: var(--rrthf-footer-text);
}

.rrthf-footer--premium {
	background:
		radial-gradient(circle at 15% 0, rgba(35, 154, 221, 0.25), transparent 28%),
		radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.12), transparent 24%),
		linear-gradient(135deg, #202020, #1e3b66);
}

.rrthf-footer--dark {
	background:
		radial-gradient(circle at 80% 0, rgba(35, 154, 221, 0.2), transparent 26%),
		#121826;
}

.rrthf-footer--pearl {
	--rrthf-footer-text: #1e3b66;
	--rrthf-footer-muted: rgba(30, 59, 102, 0.74);
	--rrthf-footer-line: rgba(30, 59, 102, 0.14);
	--rrthf-footer-card: rgba(255, 255, 255, 0.86);
	--rrthf-footer-card-border: rgba(30, 59, 102, 0.12);
	--rrthf-review-star-muted: rgba(30, 59, 102, 0.24);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 253, 0.98)),
		linear-gradient(135deg, #fff, #edf4fa);
	color: var(--rrthf-footer-text);
}

.rrthf-footer--midnight {
	background:
		radial-gradient(circle at 10% 0, rgba(35, 154, 221, 0.28), transparent 26%),
		radial-gradient(circle at 85% 16%, rgba(247, 183, 49, 0.16), transparent 22%),
		linear-gradient(135deg, #080f1d, #1e3b66 64%, #0b1220);
}

.rrthf-footer--emerald {
	background:
		radial-gradient(circle at 12% 0, rgba(255, 255, 255, 0.15), transparent 28%),
		linear-gradient(135deg, #064e3b, #0f766e 54%, #1e3b66);
}

.rrthf-footer__inner {
	display: grid;
	grid-template-columns: minmax(220px, 1.15fr) minmax(180px, 0.9fr) minmax(170px, 0.85fr) minmax(270px, 1.3fr);
	align-items: start;
	gap: clamp(18px, 3vw, 34px);
	padding: clamp(30px, 5vw, 58px) 0 clamp(20px, 4vw, 34px);
}

.rrthf-footer__widget {
	min-width: 0;
}

.rrthf-footer__widget--block > :first-child {
	margin-top: 0;
}

.rrthf-footer__widget--block > :last-child {
	margin-bottom: 0;
}

.rrthf-footer__widget a {
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease, opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.custom-footer-title,
.rrthf-review-badge__title {
	margin: 0 0 14px;
	color: inherit;
	font-size: clamp(17px, 1.7vw, 21px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.custom-footer-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0;
	padding: 0;
	color: var(--rrthf-footer-muted);
	font-size: 14px;
	line-height: 1.55;
}

.custom-footer-links a {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	color: var(--rrthf-footer-muted);
	font-weight: 650;
}

.custom-footer-links a:hover,
.custom-footer-links a:focus-visible {
	color: var(--rrthf-footer-text);
	opacity: 1;
	transform: none;
}

.custom-footer-links.no-bullets {
	list-style: none;
}

.custom-footer-links--business li {
	display: grid;
	gap: 12px;
	margin: 0;
	color: var(--rrthf-footer-muted);
}

.custom-footer-logo {
	display: block;
	width: 140px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}


.rrthf-footer--calm .custom-footer-logo,
.rrthf-footer--pearl .custom-footer-logo {
	padding: 6px 8px;
	border-radius: 12px;
	background: #1e3b66;
}

.custom-footer-address {
	display: block;
	max-width: 260px;
}

.custom-footer-address strong {
	color: var(--rrthf-footer-text);
}

.rrthf-review-badge {
	--rrthf-review-bg: rgba(255, 255, 255, 0.12);
	--rrthf-review-text: var(--rrthf-footer-text);
	--rrthf-review-muted: var(--rrthf-footer-muted);
	--rrthf-review-border: rgba(255, 255, 255, 0.22);
	position: relative;
	display: grid;
	gap: 14px;
	overflow: hidden;
	padding: clamp(16px, 2.6vw, 22px);
	border: 1px solid var(--rrthf-review-border);
	border-radius: 22px;
	background: var(--rrthf-review-bg);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
	color: var(--rrthf-review-text);
	isolation: isolate;
}

.rrthf-review-badge::before {
	content: "";
	position: absolute;
	inset: -40% auto auto 50%;
	z-index: -1;
	width: 180px;
	height: 180px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	transform: translateX(-20%);
}

.rrthf-review-badge--clean {
	--rrthf-review-bg: #fff;
	--rrthf-review-text: #1e3b66;
	--rrthf-review-muted: rgba(30, 59, 102, 0.72);
	--rrthf-review-border: rgba(30, 59, 102, 0.12);
	--rrthf-review-star-muted: rgba(30, 59, 102, 0.22);
}

.rrthf-review-badge--glass {
	--rrthf-review-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
	backdrop-filter: blur(8px);
}

.rrthf-review-badge--gold {
	--rrthf-review-bg: linear-gradient(135deg, rgba(247, 183, 49, 0.22), rgba(255, 255, 255, 0.1));
	--rrthf-review-border: rgba(247, 183, 49, 0.42);
	--rrthf-review-star: #ffd166;
}

.rrthf-review-badge--midnight {
	--rrthf-review-bg: linear-gradient(135deg, rgba(8, 15, 29, 0.92), rgba(30, 59, 102, 0.84));
	--rrthf-review-border: rgba(255, 255, 255, 0.16);
}

.rrthf-review-badge--emerald {
	--rrthf-review-bg: linear-gradient(135deg, rgba(6, 78, 59, 0.9), rgba(15, 118, 110, 0.76));
	--rrthf-review-border: rgba(52, 211, 153, 0.34);
}

.rrthf-review-badge__media {
	position: relative;
	width: min(200px, 100%);
}

.rrthf-review-badge__media img {
	display: block;
	width: min(200px, 100%);
	height: auto;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.rrthf-review-badge__check {
	position: absolute;
	right: 2px;
	bottom: 1px;
	display: grid;
	width: 28px;
	height: 28px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #16a34a;
	color: #fff;
	place-items: center;
	box-shadow: 0 8px 18px rgba(22, 163, 74, 0.32);
}

.rrthf-review-badge__check .rrthf-svg-icon {
	width: 16px;
	height: 16px;
	stroke-width: 3;
}

.rrthf-review-badge__title {
	margin-bottom: 8px;
}

.rrthf-review-badge__rating {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: var(--rrthf-review-muted);
	font-size: 13.5px;
	font-weight: 800;
	line-height: 1.35;
}

.rrthf-review-badge__rating:hover,
.rrthf-review-badge__rating:focus-visible {
	color: var(--rrthf-review-text);
}

.rrthf-review-badge__stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.01em;
}

.rrthf-review-badge__star--full {
	color: var(--rrthf-review-star, #f7b731);
}

.rrthf-review-badge__star--half {
	color: transparent;
	background: linear-gradient(90deg, var(--rrthf-review-star, #f7b731) 0 52%, var(--rrthf-review-star-muted, rgba(255, 255, 255, 0.34)) 52% 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.rrthf-review-badge__star--empty {
	color: var(--rrthf-review-star-muted, rgba(255, 255, 255, 0.34));
}

.footer-follow-us {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--rrthf-footer-line);
}

.follow-text {
	color: var(--rrthf-footer-muted);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.social-icons {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.social-icons a {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid var(--rrthf-footer-card-border);
	border-radius: 999px;
	background: var(--rrthf-footer-card);
	color: var(--rrthf-footer-text);
	place-items: center;
}

.social-icons a:hover,
.social-icons a:focus-visible {
	background: var(--rrthf-footer-text);
	color: #1e3b66;
	transform: translateY(-2px);
}

.social-icons .rrthf-svg-icon {
	width: 17px;
	height: 17px;
	fill: currentColor;
	stroke: none;
}

.rrthf-footer__copyright {
	grid-column: 1 / -1;
	margin-top: 6px;
	padding-top: 18px;
	border-top: 1px solid var(--rrthf-footer-line);
	color: var(--rrthf-footer-muted);
	font-size: 13px;
	text-align: center;
}

@media (max-width: 1120px) {
	.rrthf-footer__inner {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}
}

@media (max-width: 680px) {
	.rrthf-footer {
		margin-top: 20px;
	}

	.rrthf-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 30px 0 22px;
		text-align: center;
	}

	.custom-footer-links,
	.custom-footer-links--business li,
	.rrthf-review-badge,
	.footer-follow-us {
		align-items: center;
		justify-items: center;
	}

	.custom-footer-links a,
	.custom-footer-address,
	.rrthf-review-badge__media {
		margin-inline: auto;
	}

	.custom-footer-links a:hover,
	.custom-footer-links a:focus-visible {
		transform: none;
	}

	.rrthf-review-badge {
		width: min(100%, 360px);
		margin-inline: auto;
	}

	.rrthf-review-badge__rating {
		justify-content: center;
	}

	.footer-follow-us {
		flex-direction: column;
		justify-content: center;
	}
}

/* v1.5.1 footer badge and desktop mega-menu polish. */
.rrthf-review-badge__summary {
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-decoration-color: currentColor;
	text-underline-offset: 0.22em;
}

.rrthf-review-badge__rating:hover .rrthf-review-badge__summary,
.rrthf-review-badge__rating:focus-visible .rrthf-review-badge__summary {
	text-decoration-thickness: 0.12em;
}

@media (min-width: 681px) {
	.rrthf-review-badge {
		align-content: center;
		justify-items: center;
		gap: 10px;
		padding: clamp(14px, 2vw, 18px);
		text-align: center;
	}

	.rrthf-review-badge__media {
		width: min(184px, 100%);
		margin-inline: auto;
	}

	.rrthf-review-badge__media img {
		width: min(184px, 100%);
	}

	.rrthf-review-badge__content {
		display: grid;
		width: 100%;
		min-width: 0;
		justify-items: center;
	}

	.rrthf-review-badge__title {
		max-width: 100%;
		margin-bottom: 6px;
		font-size: clamp(15px, 1.16vw, 17px);
		line-height: 1.15;
		letter-spacing: -0.02em;
		white-space: nowrap;
	}

	.rrthf-review-badge__rating {
		max-width: 100%;
		justify-content: center;
		gap: 6px;
	}
}

@media (max-width: 680px) {
	.custom-footer-section .custom-footer-title {
		margin-bottom: 8px;
	}

	.custom-footer-section .custom-footer-links {
		gap: 5px;
		line-height: 1.35;
	}
}

.rrthf-nav .rrthf-mega__group.is-active {
	border-color: rgba(35, 154, 221, 0.72);
	outline: 0;
	outline-offset: 0;
	box-shadow:
		inset 3px 0 0 var(--rrthf-brand),
		0 8px 22px rgba(30, 59, 102, 0.08);
}

.rrthf-nav .rrthf-menu-card {
	transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.rrthf-nav .rrthf-menu-card:hover,
.rrthf-nav .rrthf-menu-card:focus-visible {
	border-color: #0c5f9c;
	box-shadow:
		0 0 0 1px rgba(12, 95, 156, 0.52),
		0 8px 20px rgba(30, 59, 102, 0.12);
	transform: translateY(-1px);
}

.rrthf-nav .rrthf-mega__label {
	border-color: rgba(30, 59, 102, 0.1);
	background: rgba(255, 255, 255, 0.62);
	color: var(--rrthf-panel-text, var(--rrthf-navy));
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.rrthf-nav .rrthf-mega__label::after {
	border: 1px solid rgba(35, 154, 221, 0.22);
	background: #fff;
	color: var(--rrthf-brand);
	font-size: 18px;
}

.rrthf-nav .rrthf-mega__label.is-active {
	border-color: var(--rrthf-brand);
	background: rgba(35, 154, 221, 0.16);
	color: #0c5f9c;
	box-shadow: inset 3px 0 0 var(--rrthf-brand);
}

.rrthf-nav .rrthf-mega__label:hover,
.rrthf-nav .rrthf-mega__label:focus-visible {
	border-color: var(--rrthf-brand);
	background: rgba(35, 154, 221, 0.2);
	color: #0c5f9c;
	box-shadow:
		inset 3px 0 0 var(--rrthf-brand),
		0 0 0 1px rgba(35, 154, 221, 0.2);
}


/* v1.5.11 custom background-image menu cards. */
.rrthf-nav .rrthf-menu-card--custom-height,
.rrthf-menu-panel .rrthf-menu-card--custom-height {
	min-height: var(--rrthf-menu-bg-height, 70px);
}

.rrthf-nav .rrthf-menu-card--has-bg,
.rrthf-menu-panel .rrthf-menu-card--has-bg {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	justify-items: stretch;
	overflow: hidden;
	min-height: var(--rrthf-menu-bg-height, 112px);
	padding: 0;
	border-color: rgba(30, 59, 102, 0.18);
	background:
		linear-gradient(180deg, rgba(12, 35, 62, 0.22), rgba(12, 35, 62, 0.54)),
		var(--rrthf-menu-bg-image, linear-gradient(135deg, #239add, #1e3b66));
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.rrthf-nav .rrthf-menu-card--has-bg .rrthf-menu-card__image,
.rrthf-menu-panel .rrthf-menu-card--has-bg .rrthf-menu-card__image {
	display: none;
}

.rrthf-nav .rrthf-menu-card--has-bg .rrthf-menu-card__text,
.rrthf-menu-panel .rrthf-menu-card--has-bg .rrthf-menu-card__text {
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 100%;
	min-width: 0;
	padding: 14px;
	background: linear-gradient(180deg, rgba(30, 59, 102, 0.08), rgba(30, 59, 102, 0.28));
}

.rrthf-nav .rrthf-menu-card--has-bg .rrthf-menu-card__title,
.rrthf-menu-panel .rrthf-menu-card--has-bg .rrthf-menu-card__title,
.rrthf-nav .rrthf-menu-card--has-bg .rrthf-menu-card__price,
.rrthf-menu-panel .rrthf-menu-card--has-bg .rrthf-menu-card__price {
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.38);
}

.rrthf-nav .rrthf-menu-card--has-bg:hover,
.rrthf-nav .rrthf-menu-card--has-bg:focus-visible,
.rrthf-menu-panel .rrthf-menu-card--has-bg:hover,
.rrthf-menu-panel .rrthf-menu-card--has-bg:focus-visible {
	border-color: rgba(255, 255, 255, 0.72);
	box-shadow:
		0 0 0 1px rgba(35, 154, 221, 0.42),
		0 10px 24px rgba(30, 59, 102, 0.16);
}

@media (max-width: 960px) {
	.rrthf-nav .rrthf-menu-card--custom-height,
	.rrthf-menu-panel .rrthf-menu-card--custom-height,
	.rrthf-nav .rrthf-menu-card--has-bg,
	.rrthf-menu-panel .rrthf-menu-card--has-bg {
		min-height: var(--rrthf-menu-bg-height-mobile, var(--rrthf-menu-bg-height, 104px));
	}
}


/* v1.5.3 desktop mega-menu hover stability. */
@media (min-width: 961px) {
	.rrthf-nav__tab.is-open::after {
		top: calc(var(--rrthf-mega-top, 0px) - 10px);
		z-index: 2147482991;
		height: 12px;
	}

	.rrthf-nav__tab.is-open > .rrthf-mega {
		top: var(--rrthf-mega-top, calc(var(--rrthf-admin-offset, 0px) + var(--rrthf-notice-height, 0px) + 50px)) !important;
		margin-top: 0 !important;
		will-change: auto;
	}
}


/* v1.5.3 Myriad Pro text clarity and transform de-promotion.
 *
 * The header/footer inherit the site's Myriad Pro stack without loading new font
 * files. Text-heavy containers avoid persistent transform layers because those
 * can make small bold Myriad Pro text render slightly soft in Chromium/WebKit.
 */
.rrthf-header,
.rrthf-main,
.rrthf-nav,
.rrthf-mobilebar,
.rrthf-footer,
.rrthf-footer__inner,
.rrthf-menu-panel__content,
.rrthf-locale__dialog,
.rrthf-cart__drawer {
	font-family: var(--rrthf-font-family, "Myriad Pro", "Myriad Web Pro", "Segoe UI", Arial, sans-serif);
	font-kerning: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 961px) {
	.rrthf-nav__tab.is-open > .rrthf-mega {
		transform: none !important;
		will-change: auto !important;
	}
}

/* Version 1.5.12: tighter cart drawer header and compact mini-cart delivery line. */
.rrthf-cart__top {
	min-height: 52px;
	padding: 12px 16px;
}

.rrthf-cart__top strong {
	font-size: 18px;
	line-height: 1.2;
}

.rrthf-cart__top .rrthf-round-btn {
	width: 28px;
	height: 28px;
}

.rrthf-mini-cart__summary {
	padding: 12px 18px 8px;
}

.rrthf-mini-cart > .rrttw-mini-cart-estimate {
	flex: 0 0 auto;
	width: auto;
	margin-right: 18px;
	margin-left: 18px;
}



/* v1.5.19 separate mobile menus, custom menu thumbnails, and button menu cards. */
.rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) {
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	justify-items: stretch;
	text-align: left;
}

.rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__text {
	display: grid;
	align-content: center;
	justify-items: start;
	min-height: 54px;
	min-width: 0;
}

.rrthf-menu-card--button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: auto;
	min-width: 128px;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--rrthf-brand);
	color: #fff;
	box-shadow: 0 8px 18px rgba(35, 154, 221, 0.18);
	text-align: center;
}

.rrthf-menu-card--button-view-all {
	background: var(--rrthf-navy);
}

.rrthf-menu-card--button .rrthf-menu-card__text {
	display: inline-grid;
	align-content: center;
	justify-items: center;
	min-height: 1px;
}

.rrthf-menu-card--button .rrthf-menu-card__title {
	display: block;
	overflow: visible;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	text-align: center;
	-webkit-line-clamp: initial;
}

.rrthf-menu-card--button:hover,
.rrthf-menu-card--button:focus-visible {
	border-color: transparent;
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 960px) {
	.rrthf-mobile-nav__tabs {
		gap: 6px;
	}

	.rrthf-mobile-nav__tabs button {
		min-height: 42px;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg),
	.rrthf-mobile-nav .rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) {
		grid-column: 1 / -1;
		grid-template-columns: 64px minmax(0, 1fr);
		align-items: center;
		justify-content: stretch;
		text-align: left;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__image {
		width: 64px;
		height: 64px;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__text,
	.rrthf-mobile-nav .rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__text {
		display: grid;
		align-content: center;
		justify-items: start;
		min-height: 64px;
		min-width: 0;
	}

	.rrthf-mobile-nav .rrthf-menu-card--type-category.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__title,
	.rrthf-mobile-nav .rrthf-menu-card--type-custom.rrthf-menu-card--has-image:not(.rrthf-menu-card--button):not(.rrthf-menu-card--has-bg) .rrthf-menu-card__title {
		display: -webkit-box;
		text-align: left;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.rrthf-mobile-nav .rrthf-menu-card--button {
		grid-column: 1 / -1;
		min-height: 42px;
		padding-block: 0;
	}

	.rrthf-mobile-nav .rrthf-menu-card--button .rrthf-menu-card__text {
		min-height: 1px;
	}
}


/* v1.5.20 desktop-safe subtle secondary-color menu action buttons. */
.rrthf-nav .rrthf-mega .rrthf-menu-card--button,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button {
	display: inline-flex;
	grid-template-columns: none;
	align-items: center;
	justify-content: center;
	justify-self: center;
	align-self: center;
	width: max-content;
	max-width: 100%;
	min-width: 112px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(30, 59, 102, 0.24);
	border-radius: 999px;
	background: rgba(30, 59, 102, 0.06);
	color: var(--rrthf-navy);
	box-shadow: none;
	line-height: 1;
	text-align: center;
	transform: none;
}

.rrthf-nav .rrthf-mega .rrthf-menu-card--button-view-more,
.rrthf-nav .rrthf-mega .rrthf-menu-card--button-view-all,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button-view-more,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button-view-all {
	background: rgba(30, 59, 102, 0.06);
	color: var(--rrthf-navy);
}

.rrthf-nav .rrthf-mega .rrthf-menu-card--button .rrthf-menu-card__text,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button .rrthf-menu-card__text {
	display: inline-grid;
	align-content: center;
	justify-items: center;
	width: auto;
	min-height: 1px;
}

.rrthf-nav .rrthf-mega .rrthf-menu-card--button .rrthf-menu-card__title,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button .rrthf-menu-card__title {
	display: block;
	overflow: visible;
	color: var(--rrthf-navy);
	font-size: 13px;
	line-height: 1;
	text-align: center;
	-webkit-line-clamp: initial;
}

.rrthf-nav .rrthf-mega .rrthf-menu-card--button:hover,
.rrthf-nav .rrthf-mega .rrthf-menu-card--button:focus-visible,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button:hover,
.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button:focus-visible {
	border-color: rgba(30, 59, 102, 0.34);
	background: rgba(30, 59, 102, 0.1);
	color: var(--rrthf-navy);
	box-shadow: none;
	transform: none;
}

@media (min-width: 961px) {
	.rrthf-nav .rrthf-mega .rrthf-menu-card--button {
		min-height: 38px;
		padding-block: 0;
	}
}

@media (max-width: 960px) {
	.rrthf-menu-panel .rrthf-mobile-nav .rrthf-menu-card--button {
		grid-column: 1 / -1;
		min-height: 40px;
		padding-block: 0;
	}
}
