/* ============================================================
   Rhino Boxing — Full-Page Mobile Menu
   ============================================================ */

/* === Trigger (hamburger) — only visible on mobile ===================== */

.rhino-mobile-trigger {
	display: none;
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 99998;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 10px;
}

.rhino-mobile-trigger__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

/* Show only on mobile/tablet */
@media (max-width: 1024px) {
	.rhino-mobile-trigger {
		display: flex;
	}
}

/* When menu is open, animate to X */
.rhino-mobile-trigger.is-active .rhino-mobile-trigger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.rhino-mobile-trigger.is-active .rhino-mobile-trigger__bar:nth-child(2) {
	opacity: 0;
}
.rhino-mobile-trigger.is-active .rhino-mobile-trigger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* === Full-page overlay menu =========================================== */

.rhino-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: #000;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.rhino-mobile-menu.is-open {
	transform: translateX(0);
}

/* Desktop: never show */
@media (min-width: 1025px) {
	.rhino-mobile-menu {
		display: none !important;
	}
}

/* === Header (logo + close) ============================================ */

.rhino-mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #1A1A1A;
	flex-shrink: 0;
}

.rhino-mobile-menu__logo img {
	height: 48px;
	width: auto;
}

.rhino-mobile-menu__logo-text {
	font-family: 'Anton', system-ui, sans-serif;
	text-transform: uppercase;
	font-size: 20px;
	color: #fff;
}

.rhino-mobile-menu__close {
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.2s;
}

.rhino-mobile-menu__close:hover {
	background: #1A1A1A;
}

/* === Nav links ========================================================= */

.rhino-mobile-menu__nav {
	flex: 1;
	padding: 24px 0;
}

.rhino-mobile-menu__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rhino-mobile-menu__nav li {
	border-bottom: 1px solid #1A1A1A;
}

.rhino-mobile-menu__nav li:first-child {
	border-top: 1px solid #1A1A1A;
}

.rhino-mobile-menu__nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}

.rhino-mobile-menu__nav a:hover,
.rhino-mobile-menu__nav a:active {
	color: #E59744;
	background: #0A0A0A;
}

.rhino-mobile-menu__nav a svg {
	color: #6D6D6D;
	flex-shrink: 0;
}

/* === Footer (language + book) ========================================== */

.rhino-mobile-menu__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-top: 1px solid #1A1A1A;
	flex-shrink: 0;
	gap: 16px;
}

.rhino-mobile-menu__lang {
	display: flex;
	gap: 8px;
}

.rhino-mobile-menu__lang a {
	color: #6D6D6D;
	font-size: 14px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 6px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}

.rhino-mobile-menu__lang a.is-active {
	color: #E59744;
	background: #1A1A1A;
}

.rhino-mobile-menu__lang a:hover {
	color: #E59744;
}

.rhino-mobile-menu__book {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	background: #E59744;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 10px 20px;
	border-radius: 9999px;
	text-decoration: none;
	transition: background 0.2s;
}

.rhino-mobile-menu__book:hover {
	background: #F36E36;
}

.rhino-mobile-menu__book svg {
	flex-shrink: 0;
}
