/* ═══════════════════════════════════════════════════════════
   13-PAGES.CSS  —  Inner Pages Unified Layout
   ─────────────────────────────────────────────────────────────
   სტრუქტურა: header + inner-nav (floating) + main(left + right)
   მარცხნივ:   scrollable WP editor content
   მარჯვნივ:   search form (იგივე რაც მთავარზე)
   ─────────────────────────────────────────────────────────── */

/* ─── 1. ძველი side-nav-ის სრული გადანაცვლება ახალი inner-nav-ით (ყველგან) ─── */
.side-nav,
.drawer-backdrop,
.hamburger,
.nav-popup,
.nav-popup-backdrop,
.mt-page-close-btn {
	display: none !important;
}

/* Newsletter popup აღარ ვაჩვენოთ inner გვერდებზე (მთავარზე რჩება) */
body.mt-inner-page .nl-popup,
body.mt-inner-page .nl-backdrop {
	display: none !important;
}
/* deals-footer ჩანს ყველგან — საერთო ფუტერი მთავარისა და inner-ის */

/* ─── 2. Inner main layout (იგივე გრიდი რაც მთავარზე) ─── */
body.mt-inner-page .inner-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
	/* მარცხნივ 100px ვუტოვებთ ფლუტინგ-ნავს რომ კონტენტს არ დაეფაროს */
	padding: calc(var(--header-h, 80px) + 24px) 32px calc(var(--footer-h, 104px) + 24px) 100px;
	box-sizing: border-box;
	align-items: stretch;
}

/* ─── 3. Left panel — სიმაღლე = right panel (search form-ის სიმაღლე) ─── */
body.mt-inner-page .inner-left {
	position: relative;          /* შიდა scroll-ის anchor */
	background: linear-gradient(150deg, rgba(30, 58, 138, 0.45) 0%, rgba(15, 26, 46, 0.55) 100%);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 24px;
	overflow: hidden;
	min-height: 0;
}

/* შინაარსი ვსებთ მთლიან .inner-left-ს და scroll-ი ხდება შიგნით */
.inner-content-scroll {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 36px;
	scrollbar-width: thin;
	scrollbar-color: rgba(96, 165, 250, 0.5) transparent;
}

.inner-content-scroll::-webkit-scrollbar { width: 8px; }
.inner-content-scroll::-webkit-scrollbar-track { background: transparent; }
.inner-content-scroll::-webkit-scrollbar-thumb {
	background: rgba(96, 165, 250, 0.45);
	border-radius: 8px;
}
.inner-content-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(96, 165, 250, 0.75);
}

/* ─── 4. Page head ─── */
.inner-page-head {
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-page-title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.inner-page-lead {
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(219, 234, 254, 0.78);
	margin: 0;
}

.inner-404-icon {
	width: 72px;
	height: 72px;
	margin-bottom: 16px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(96, 165, 250, 0.18));
	border: 1px solid rgba(34, 211, 238, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #67e8f9;
	font-size: 1.6rem;
}

/* ─── 5. Content body — WP editor output styling ─── */
.inner-content-body {
	color: rgba(219, 234, 254, 0.92);
	font-size: 0.98rem;
	line-height: 1.7;
}

.inner-content-body > *:first-child { margin-top: 0; }
.inner-content-body > *:last-child  { margin-bottom: 0; }

.inner-content-body h1,
.inner-content-body h2,
.inner-content-body h3,
.inner-content-body h4,
.inner-content-body h5,
.inner-content-body h6 {
	font-family: 'Sora', system-ui, sans-serif;
	color: #fff;
	font-weight: 700;
	line-height: 1.25;
	margin: 1.8em 0 0.6em;
	letter-spacing: -0.01em;
}

.inner-content-body h1 { font-size: 1.7rem; }
.inner-content-body h2 { font-size: 1.4rem; color: #93c5fd; }
.inner-content-body h3 { font-size: 1.18rem; color: #bfdbfe; }
.inner-content-body h4 { font-size: 1.05rem; }
.inner-content-body h5,
.inner-content-body h6 { font-size: 0.96rem; text-transform: uppercase; letter-spacing: 0.06em; }

.inner-content-body p {
	margin: 0 0 1em;
	color: rgba(219, 234, 254, 0.88);
}

.inner-content-body strong,
.inner-content-body b {
	color: #fff;
	font-weight: 700;
}

.inner-content-body em,
.inner-content-body i {
	color: #a5f3fc;
	font-style: italic;
}

.inner-content-body a {
	color: #67e8f9;
	text-decoration: underline;
	text-decoration-color: rgba(103, 232, 249, 0.4);
	text-underline-offset: 3px;
	transition: color 0.18s, text-decoration-color 0.18s;
	word-break: break-word;       /* გრძელი URL-ები მობაილზე არ გადადის ეკრანიდან */
	overflow-wrap: anywhere;
}
.inner-content-body a:hover {
	color: #a5f3fc;
	text-decoration-color: #a5f3fc;
}

.inner-content-body ul,
.inner-content-body ol {
	margin: 0 0 1.2em;
	padding-left: 1.4em;
	color: rgba(219, 234, 254, 0.88);
}

.inner-content-body ul { list-style: disc; }
.inner-content-body ol { list-style: decimal; }

.inner-content-body li { margin-bottom: 0.4em; }
.inner-content-body li::marker { color: #60a5fa; }

.inner-content-body blockquote {
	margin: 1.4em 0;
	padding: 16px 20px;
	background: rgba(96, 165, 250, 0.08);
	border-left: 3px solid #60a5fa;
	border-radius: 0 12px 12px 0;
	color: rgba(219, 234, 254, 0.95);
	font-style: italic;
}

.inner-content-body code {
	padding: 2px 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	font-size: 0.88em;
	color: #fbbf24;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.inner-content-body pre {
	margin: 1.2em 0;
	padding: 16px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow-x: auto;
	font-size: 0.88rem;
	color: #e0e7ff;
}
.inner-content-body pre code { padding: 0; background: transparent; color: inherit; }

.inner-content-body hr {
	margin: 2em 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	border: 0;
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM ACCORDION — <details>/<summary> (FAQ-ისთვის)
   ─────────────────────────────────────────────────────────── */
.inner-content-body details,
.inner-content-body .wp-block-details {
	background: linear-gradient(135deg, rgba(15, 26, 46, 0.55), rgba(30, 58, 138, 0.35));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	margin: 10px 0;
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.inner-content-body details:hover,
.inner-content-body .wp-block-details:hover {
	border-color: rgba(96, 165, 250, 0.28);
	background: linear-gradient(135deg, rgba(15, 26, 46, 0.65), rgba(30, 58, 138, 0.45));
}

.inner-content-body details[open],
.inner-content-body .wp-block-details[open] {
	border-color: rgba(34, 211, 238, 0.45);
	background: linear-gradient(135deg, rgba(15, 26, 46, 0.78), rgba(30, 58, 138, 0.58));
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(34, 211, 238, 0.12) inset;
}

.inner-content-body details summary,
.inner-content-body .wp-block-details summary {
	cursor: pointer;
	padding: 16px 52px 16px 20px;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.45;
	list-style: none;
	position: relative;
	user-select: none;
	transition: color 0.18s;
}

/* WebKit-ის ნაგულისხმევი marker-ის დამალვა */
.inner-content-body details summary::-webkit-details-marker,
.inner-content-body .wp-block-details summary::-webkit-details-marker { display: none; }
.inner-content-body details summary::marker,
.inner-content-body .wp-block-details summary::marker { content: ''; }

/* Plus/Minus ანიმაცია მარჯვნივ */
.inner-content-body details summary::after,
.inner-content-body .wp-block-details summary::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(34, 211, 238, 0.2)),
		rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(96, 165, 250, 0.4);
	transform: translateY(-50%);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
	            background 0.25s, border-color 0.25s;
}

/* ➕ ნიშანი (horizontal + vertical line) */
.inner-content-body details summary::before,
.inner-content-body .wp-block-details summary::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 23px;
	width: 12px;
	height: 12px;
	transform: translateY(-50%);
	z-index: 2;
	background-image:
		linear-gradient(#67e8f9, #67e8f9),
		linear-gradient(#67e8f9, #67e8f9);
	background-size: 12px 2px, 2px 12px;
	background-position: center, center;
	background-repeat: no-repeat;
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
	            background-size 0.25s;
}

/* ღია: minus → rotate */
.inner-content-body details[open] summary::before,
.inner-content-body .wp-block-details[open] summary::before {
	background-size: 12px 2px, 0 12px; /* ვერტიკალური ხაზი ქრება */
	transform: translateY(-50%) rotate(180deg);
}

.inner-content-body details[open] summary::after,
.inner-content-body .wp-block-details[open] summary::after {
	background:
		linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(96, 165, 250, 0.4));
	border-color: rgba(34, 211, 238, 0.7);
	transform: translateY(-50%) rotate(180deg);
}

.inner-content-body details summary:hover,
.inner-content-body .wp-block-details summary:hover {
	color: #a5f3fc;
}

.inner-content-body details summary:focus-visible,
.inner-content-body .wp-block-details summary:focus-visible {
	outline: 2px solid rgba(34, 211, 238, 0.6);
	outline-offset: 2px;
	border-radius: 14px;
}

/* შინაარსის ანიმაცია გახსნაზე */
.inner-content-body details > *:not(summary),
.inner-content-body .wp-block-details > *:not(summary) {
	padding: 0 20px;
	color: rgba(219, 234, 254, 0.88);
}

.inner-content-body details[open] > *:not(summary),
.inner-content-body .wp-block-details[open] > *:not(summary) {
	animation: faqContentFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ბოლო ელემენტს padding-bottom */
.inner-content-body details[open] > *:last-child,
.inner-content-body .wp-block-details[open] > *:last-child {
	padding-bottom: 18px;
}

@keyframes faqContentFadeIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* შიდა paragraph-ის font უფრო პატარა */
.inner-content-body details p,
.inner-content-body .wp-block-details p {
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 0 0 10px;
}

.inner-content-body details ul,
.inner-content-body details ol,
.inner-content-body .wp-block-details ul,
.inner-content-body .wp-block-details ol {
	margin: 0 0 12px;
	padding-left: 1.3em;
	font-size: 0.92rem;
}

.inner-content-body details li,
.inner-content-body .wp-block-details li {
	margin-bottom: 4px;
	color: rgba(219, 234, 254, 0.85);
}

/* Images */
.inner-content-body img,
.inner-content-body figure img,
.inner-content-body .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	margin: 1.2em 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.inner-content-body figure { margin: 1.4em 0; }

.inner-content-body figcaption,
.inner-content-body .wp-caption-text {
	margin-top: 8px;
	font-size: 0.85rem;
	color: rgba(219, 234, 254, 0.6);
	text-align: center;
	font-style: italic;
}

/* WP alignments */
.inner-content-body .alignleft,
.inner-content-body .alignright,
.inner-content-body .aligncenter,
.inner-content-body .alignwide,
.inner-content-body .alignfull {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.inner-content-body .alignleft  { float: left;  margin: 0.5em 1.2em 0.8em 0; }
.inner-content-body .alignright { float: right; margin: 0.5em 0 0.8em 1.2em; }
.inner-content-body .aligncenter { float: none; }

/* Tables — figure wrapper-ისთვის horizontal scroll */
.inner-content-body figure.wp-block-table,
.inner-content-body .wp-block-table {
	margin: 1.4em 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(15, 23, 42, 0.45);
}

.inner-content-body table,
.inner-content-body .wp-block-table table {
	width: 100%;
	min-width: 100%;
	margin: 0;
	border-collapse: collapse;
	background: transparent;
	border: 0;
}

.inner-content-body th,
.inner-content-body td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(219, 234, 254, 0.9);
}

.inner-content-body th {
	background: rgba(96, 165, 250, 0.12);
	color: #fff;
	font-weight: 600;
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.inner-content-body tr:last-child td { border-bottom: 0; }
.inner-content-body tr:hover td { background: rgba(96, 165, 250, 0.05); }

/* Buttons */
.inner-content-body .wp-block-button__link,
.inner-content-body .wp-element-button,
.inner-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
	color: #0b1426 !important;
	font-weight: 700;
	font-size: 0.96rem;
	border-radius: 12px;
	text-decoration: none !important;
	transition: transform 0.18s, box-shadow 0.18s;
	box-shadow: 0 6px 18px rgba(96, 165, 250, 0.35);
	margin: 0.8em 0;
}

.inner-content-body .wp-block-button__link:hover,
.inner-content-body .wp-element-button:hover,
.inner-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(96, 165, 250, 0.5);
}

/* Embeds */
.inner-content-body iframe,
.inner-content-body .wp-block-embed iframe {
	max-width: 100%;
	border-radius: 12px;
	margin: 1.2em 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.inner-content-body .wp-block-embed { margin: 1.4em 0; }

/* Columns */
.inner-content-body .wp-block-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 1.4em 0;
}

.inner-content-body .wp-block-column {
	padding: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
}

/* Separator */
.inner-content-body .wp-block-separator {
	margin: 2em auto;
	max-width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #60a5fa, transparent);
	border: 0;
}

/* ═══════════════════════════════════════════════════════════
   INNER FLOATING NAV (left vertical bar like side-nav)
   ─────────────────────────────────────────────────────────── */
.inner-nav {
	position: fixed;
	left: 20px;
	/* top/height გასწორებულია JS-ით — match search form height */
	top: calc(var(--header-h, 80px) + 24px);
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 14px 8px;
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.88), rgba(30, 58, 138, 0.72));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	z-index: 90;
}

/* შიდა scroll-buffer ვერტიკალურად ცენტრში-მოლავი ღილაკებისთვის */
.inner-nav-inner {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.inner-nav-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	color: rgba(219, 234, 254, 0.78);
	background: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
	text-decoration: none;
	font-size: 0.95rem;
}

.inner-nav-btn:hover {
	background: rgba(96, 165, 250, 0.16);
	color: #fff;
	border-color: rgba(96, 165, 250, 0.32);
	transform: translateX(2px);
}

.inner-nav-btn.is-active {
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(34, 211, 238, 0.3));
	color: #fff;
	border-color: rgba(34, 211, 238, 0.45);
	box-shadow: 0 4px 12px rgba(34, 211, 238, 0.2);
}

.inner-nav-btn i { font-size: 1.05rem; }

.inner-nav-label {
	position: absolute;
	left: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%) translateX(-6px);
	padding: 6px 12px;
	background: rgba(15, 26, 46, 0.96);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 500;
	white-space: nowrap;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s, transform 0.18s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.inner-nav-btn:hover .inner-nav-label,
.inner-nav-btn:focus-visible .inner-nav-label {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.inner-nav-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.10);
	margin: 4px 6px;
}

/* "სხვა" — hover flyout */
.inner-nav-more { position: relative; }

.inner-nav-flyout {
	position: absolute;
	left: calc(100% + 14px);
	top: 50%;
	transform: translateY(-50%) translateX(-8px);
	min-width: 240px;
	padding: 8px;
	background: linear-gradient(150deg, rgba(15, 26, 46, 0.97), rgba(30, 58, 138, 0.92));
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 95;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.inner-nav-more:hover .inner-nav-flyout,
.inner-nav-more:focus-within .inner-nav-flyout {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

/* invisible hover bridge */
.inner-nav-more::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 18px;
	height: 100%;
	pointer-events: none;
}
.inner-nav-more:hover::after { pointer-events: auto; }

.inner-nav-flyout-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	color: rgba(219, 234, 254, 0.82);
	text-decoration: none;
	border-radius: 10px;
	transition: background 0.16s, color 0.16s;
	font-size: 0.92rem;
}

.inner-nav-flyout-item i {
	font-size: 0.95rem;
	width: 20px;
	text-align: center;
	color: #67e8f9;
}

.inner-nav-flyout-item:hover {
	background: rgba(96, 165, 250, 0.16);
	color: #fff;
}

.inner-nav-flyout-item.is-active {
	background: rgba(34, 211, 238, 0.18);
	color: #fff;
}

/* ─── Hide default homepage main on inner pages ─── */
body.mt-inner-page > main:not(.inner-main) {
	display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM MOBILE DESIGN
   ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

	/* ─── Layout — stacked, no overlap with bottom nav ─── */
	body.mt-inner-page .inner-main {
		grid-template-columns: 1fr;
		gap: 16px;
		padding:
			calc(var(--header-h, 56px) + 14px)
			14px
			calc(var(--footer-h, 90px) + 78px + env(safe-area-inset-bottom, 0px));
	}

	body.mt-inner-page .inner-left {
		overflow: visible;
		border-radius: 20px;
		min-height: 280px;
	}

	.inner-content-scroll {
		position: static;
		padding: 22px 20px 26px;
	}

	.inner-page-head {
		margin-bottom: 20px;
		padding-bottom: 16px;
	}

	.inner-page-title {
		font-size: 1.45rem;
		letter-spacing: -0.015em;
	}

	.inner-page-lead {
		font-size: 0.94rem;
		line-height: 1.55;
	}

	/* ─── მობაილზე floating nav დამალულია (hamburger sidebar-ი ცვლის) ─── */
	.inner-nav {
		display: none !important;
	}

	@keyframes innerNavSlideUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}

	.inner-nav-btn {
		flex: 1 1 0;
		width: auto;
		min-width: 44px;
		max-width: 64px;
		height: 48px;
		border-radius: 14px;
		padding: 0;
		transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
		            color 0.22s, transform 0.22s, box-shadow 0.22s;
	}

	.inner-nav-btn i {
		font-size: 1.1rem;
		transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.inner-nav-btn:hover,
	.inner-nav-btn:focus-visible {
		transform: none; /* მობაილზე translateX არ გვინდა */
	}

	.inner-nav-btn:active i {
		transform: scale(0.88);
	}

	/* აქტიური ღილაკი — premium glow */
	.inner-nav-btn.is-active {
		background: linear-gradient(135deg, rgba(96, 165, 250, 0.32), rgba(34, 211, 238, 0.28));
		border-color: rgba(34, 211, 238, 0.55);
		box-shadow:
			0 4px 14px rgba(34, 211, 238, 0.25),
			0 0 0 1px rgba(34, 211, 238, 0.35) inset;
	}

	.inner-nav-btn.is-active i {
		color: #67e8f9;
		filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.6));
	}

	/* Divider — წვრილი vertical */
	.inner-nav-divider {
		width: 1px;
		height: 24px;
		margin: 0 2px;
		background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	}

	/* მობაილზე label-ი (ერთი tooltip) ღილაკის ზემოთ */
	.inner-nav-label {
		left: 50%;
		top: auto;
		bottom: calc(100% + 12px);
		padding: 7px 13px;
		font-size: 0.78rem;
		font-weight: 600;
		background: rgba(15, 26, 46, 0.98);
		border-radius: 10px;
		transform: translateX(-50%) translateY(6px) scale(0.92);
	}

	.inner-nav-btn:hover .inner-nav-label,
	.inner-nav-btn:focus-visible .inner-nav-label,
	.inner-nav-btn:active .inner-nav-label {
		opacity: 1;
		transform: translateX(-50%) translateY(0) scale(1);
	}

	/* Flyout — slide-up from above the "more" button */
	.inner-nav-more { flex: 1 1 0; max-width: 64px; }

	.inner-nav-flyout {
		left: auto;
		right: 0;
		top: auto;
		bottom: calc(100% + 16px);
		min-width: 260px;
		transform: translateY(12px) scale(0.96);
		transform-origin: bottom right;
		padding: 10px;
		border-radius: 18px;
		box-shadow:
			0 24px 60px rgba(0, 0, 0, 0.6),
			0 0 0 1px rgba(96, 165, 250, 0.08);
	}

	.inner-nav-more:hover .inner-nav-flyout,
	.inner-nav-more:focus-within .inner-nav-flyout {
		transform: translateY(0) scale(1);
	}

	.inner-nav-more::after {
		top: -18px;
		left: 0;
		width: 100%;
		height: 18px;
	}

	.inner-nav-flyout-item {
		padding: 12px 14px;
		font-size: 0.95rem;
		gap: 14px;
	}

	.inner-nav-flyout-item i {
		font-size: 1rem;
	}

	/* WP კონტენტი — მობაილზე უფრო კომფორტული */
	.inner-content-body h1 { font-size: 1.45rem; }
	.inner-content-body h2 { font-size: 1.22rem; }
	.inner-content-body h3 { font-size: 1.08rem; }
	.inner-content-body p { font-size: 0.96rem; }

	.inner-content-body .wp-block-columns { grid-template-columns: 1fr; gap: 14px; }
	/* Tables — მობაილზე horizontal scroll + compact padding */
	.inner-content-body table { font-size: 0.84rem; min-width: 520px; }
	.inner-content-body th, .inner-content-body td {
		padding: 9px 11px;
		white-space: nowrap;
	}
	/* პირველი სვეტი (Cookie name) — wrap, რომ ძალიან არ იწელოს */
	.inner-content-body td:first-child {
		white-space: normal;
		word-break: break-word;
		max-width: 180px;
	}
	/* scroll cue — visual hint რომ ცხრილი scrollable-ია */
	.inner-content-body .wp-block-table,
	.inner-content-body figure.wp-block-table {
		position: relative;
	}
	.inner-content-body .wp-block-table::after,
	.inner-content-body figure.wp-block-table::after {
		content: '→';
		position: absolute;
		right: 8px;
		top: 8px;
		font-size: 0.7rem;
		color: rgba(103, 232, 249, 0.5);
		pointer-events: none;
		opacity: 0.7;
	}
}

/* ─── Small phones ─── */
@media (max-width: 600px) {
	body.mt-inner-page .inner-main {
		gap: 12px;
		padding:
			calc(var(--header-h, 56px) + 10px)
			10px
			calc(var(--footer-h, 90px) + 72px + env(safe-area-inset-bottom, 0px));
	}

	body.mt-inner-page .inner-left {
		border-radius: 18px;
	}

	.inner-content-scroll {
		padding: 18px 16px 22px;
	}

	.inner-page-title {
		font-size: 1.3rem;
	}

	.inner-page-lead {
		font-size: 0.88rem;
	}

	.inner-nav {
		left: 8px;
		right: 8px;
		bottom: calc(var(--footer-h, 88px) + 8px + env(safe-area-inset-bottom, 0px));
		padding: 5px;
		border-radius: 18px;
	}

	.inner-nav-btn {
		height: 44px;
		max-width: 56px;
		border-radius: 12px;
	}

	.inner-nav-btn i {
		font-size: 1rem;
	}

	.inner-nav-divider {
		height: 20px;
	}

	.inner-nav-flyout {
		left: 8px;
		right: 8px;
		min-width: 0;
		transform-origin: bottom center;
	}
}

/* ─── Tiny phones ─── */
@media (max-width: 380px) {
	.inner-nav-btn { height: 42px; }
	.inner-nav-divider { height: 18px; }
	.inner-page-title { font-size: 1.18rem; }
}


/* ─── WordPress core override: stripes table background ─── */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd),
.inner-content-body .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: transparent !important;
}
