/* مسيوم — واجهة عامة، جوال أولاً */

:root {
	--mseom-green-900: #14532d;
	--mseom-green-800: #166534;
	--mseom-green-700: #15803d;
	--mseom-accent: #a3e635;
	--mseom-accent-dark: #84cc16;
	--mseom-red: #dc2626;
	--mseom-bg: #f4f6f5;
	--mseom-surface: #ffffff;
	--mseom-text: #1f2937;
	--mseom-muted: #6b7280;
	--mseom-border: #e5ebe7;
	--mseom-radius: 14px;
	--mseom-radius-sm: 10px;
	--mseom-shadow: 0 8px 24px rgba(16, 24, 20, 0.08);
	--mseom-container: 1180px;
	--mseom-header-h: 64px;
	--mseom-font: Tahoma, "Segoe UI", Arial, sans-serif;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body.mseom-site {
	margin: 0;
	font-family: var(--mseom-font);
	color: var(--mseom-text);
	background: var(--mseom-bg);
	line-height: 1.6;
	direction: rtl;
}

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

a {
	color: inherit;
}

.mseom-container {
	width: min(100% - 24px, var(--mseom-container));
	margin-inline: auto;
}

.mseom-skip-link {
	position: absolute;
	inset-inline-start: 12px;
	top: -40px;
	background: var(--mseom-green-800);
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	z-index: 9999;
}

.mseom-skip-link:focus {
	top: 12px;
}

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

/* Header */
.mseom-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--mseom-surface);
	box-shadow: 0 1px 0 var(--mseom-border);
	overflow: visible;
}

.mseom-header__top-inner {
	display: grid;
	gap: 12px;
	padding-block: 12px;
	align-items: center;
}

.mseom-hide-mobile {
	display: none !important;
}

.mseom-header__search-wrap {
	min-width: 0;
}

.mseom-header__overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 20, 0.45);
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.mseom-header__overlay:not([hidden]) {
	opacity: 1;
	pointer-events: auto;
}

body.mseom-header-locked {
	overflow: hidden;
}

.mseom-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: auto;
	width: min(320px, 88vw);
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--mseom-surface);
	box-shadow: -8px 0 32px rgba(16, 24, 20, 0.18);
	z-index: 210;
	transform: translate3d(105%, 0, 0);
	visibility: hidden;
	pointer-events: none;
	transition: transform 0.24s ease, visibility 0.24s ease;
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.mseom-drawer.is-open {
	transform: translate3d(0, 0, 0);
	visibility: visible;
	pointer-events: auto;
}

.mseom-drawer__inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.mseom-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--mseom-border);
	position: sticky;
	top: 0;
	background: var(--mseom-surface);
	z-index: 1;
}

.mseom-drawer__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--mseom-green-900);
}

.mseom-drawer__body {
	flex: 1;
	padding: 8px 16px;
}

.mseom-drawer__foot {
	padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--mseom-border);
}

.mseom-drawer .mseom-nav {
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 0;
	padding: 0;
}

.mseom-drawer .mseom-nav a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 4px;
	font-size: 15px;
	border-bottom: 1px solid var(--mseom-border);
}

.mseom-drawer .mseom-nav li:last-child a {
	border-bottom: 0;
}

.mseom-icon-btn {
	width: 44px;
	height: 44px;
	border: 1px solid var(--mseom-border);
	border-radius: 12px;
	background: #fff;
	color: var(--mseom-green-900);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.mseom-search-toggle {
	display: none;
}

.mseom-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	min-width: 0;
}

.mseom-brand__mark {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	flex-shrink: 0;
	display: block;
	object-fit: cover;
}

.mseom-brand__text strong {
	display: block;
	color: var(--mseom-green-900);
	font-size: 18px;
	line-height: 1.2;
}

.mseom-brand__text small {
	display: block;
	color: var(--mseom-muted);
	font-size: 11px;
}

.mseom-brand__logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 44px;
	max-width: min(100%, 180px);
	object-fit: contain;
}

.mseom-brand--account .mseom-brand__logo {
	max-height: 52px;
	max-width: min(100%, 200px);
}

.mseom-search {
	display: flex;
	gap: 8px;
	min-width: 0;
}

.mseom-search input {
	flex: 1;
	min-width: 0;
	height: 44px;
	border: 1px solid var(--mseom-border);
	border-radius: var(--mseom-radius-sm);
	padding: 0 14px;
	font: inherit;
	background: #fff;
}

.mseom-header__actions {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.mseom-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	border: 0;
	font: inherit;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.mseom-btn:active {
	transform: scale(0.98);
}

.mseom-btn--primary {
	background: var(--mseom-green-800);
	color: #fff;
}

.mseom-btn--accent {
	background: var(--mseom-accent);
	color: var(--mseom-green-900);
}

.mseom-btn--ghost {
	background: transparent;
	color: var(--mseom-green-800);
	border: 1px solid var(--mseom-border);
}

.mseom-btn--outline {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
}

.mseom-btn--sm {
	min-height: 38px;
	padding: 0 14px;
	font-size: 14px;
}

.mseom-btn--block {
	width: 100%;
}

.mseom-btn--account .mseom-btn__icon {
	display: none;
}

.mseom-nav-toggle {
	width: 44px;
	height: 44px;
	border: 1px solid var(--mseom-border);
	border-radius: 12px;
	background: #fff;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	cursor: pointer;
}

.mseom-nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: var(--mseom-green-900);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.mseom-nav-toggle.is-open .mseom-nav-toggle__bar:nth-child(3) {
	opacity: 0;
}

.mseom-nav-toggle.is-open .mseom-nav-toggle__bar:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.mseom-nav-toggle.is-open .mseom-nav-toggle__bar:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.mseom-header__nav {
	border-top: 1px solid var(--mseom-border);
}

.mseom-nav {
	list-style: none;
	margin: 0;
	padding: 8px 0 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
}

.mseom-nav a {
	text-decoration: none;
	color: var(--mseom-muted);
	font-size: 14px;
	padding: 8px 4px;
	display: inline-block;
}

.mseom-nav a:hover,
.mseom-nav .current-menu-item > a,
.mseom-nav a.is-active {
	color: var(--mseom-accent-dark);
	font-weight: 700;
}

.mseom-nav__link--live,
.mseom-nav .mseom-nav__link--live {
	color: var(--mseom-green-800);
	font-weight: 700;
}

.mseom-nav__live-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mseom-nav__live-dot,
.mseom-live-pill__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mseom-red);
	flex-shrink: 0;
	animation: mseom-live-pulse 1.5s ease-in-out infinite;
}

.mseom-nav__live-tag {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.12);
	color: var(--mseom-red);
	font-size: 11px;
	font-weight: 700;
}

.mseom-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(220, 38, 38, 0.1);
	color: var(--mseom-red);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.mseom-live-pill:hover {
	background: rgba(220, 38, 38, 0.16);
}

.mseom-btn--wallet {
	gap: 8px;
	padding-inline: 12px;
}

.mseom-btn--wallet .mseom-btn__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

.mseom-btn--wallet .mseom-btn__label {
	font-size: 13px;
}

.mseom-btn--wallet .mseom-btn__meta {
	font-size: 11px;
	color: var(--mseom-muted);
	font-weight: 600;
}

.mseom-btn--wallet .mseom-btn__icon {
	display: none;
}

.mseom-btn--wallet-drawer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.mseom-btn--wallet-drawer strong {
	font-size: 14px;
}

@keyframes mseom-live-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.55;
		transform: scale(0.86);
	}
}

/* Hero */
.mseom-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(20, 83, 45, 0.92), rgba(22, 101, 52, 0.75)),
		var(--mseom-hero-image, none) center/cover no-repeat;
	color: #fff;
	padding: 20px 0 28px;
}

.mseom-hero--slider {
	background: var(--mseom-green-800);
	padding: 0;
	min-height: 424px;
	height: 424px;
}

.mseom-hero__backgrounds {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mseom-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(20, 83, 45, 0.88), rgba(22, 101, 52, 0.72)),
		var(--mseom-hero-image, none) center/cover no-repeat;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.mseom-hero__bg.is-active {
	opacity: 1;
}

.mseom-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 16px;
	align-items: stretch;
	flex: 1;
	min-height: 0;
}

.mseom-hero--slider .mseom-hero__grid {
	gap: 0;
	height: 100%;
	min-height: 0;
	flex: 1 1 auto;
	align-content: stretch;
	grid-template-rows: minmax(0, 1fr);
}

.mseom-hero--slider .mseom-hero__featured {
	padding: 24px 20px 56px;
	height: 100%;
	min-height: 0;
}

.mseom-hero--slider .mseom-hero__auctions {
	height: 100%;
	min-height: 0;
	align-self: stretch;
	border-radius: 0;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 0;
	border-bottom: 0;
	border-inline-end: 0;
	padding: 20px 18px;
}

.mseom-hero__featured {
	position: relative;
	height: 100%;
	min-height: 0;
}

.mseom-hero__slide {
	width: 100%;
	padding: 12px 4px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mseom-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.mseom-hero__controls {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	width: min(100% - 24px, var(--mseom-container));
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0;
	pointer-events: none;
}

.mseom-hero__controls > * {
	pointer-events: auto;
}

.mseom-hero__arrow {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.mseom-hero__dots {
	display: flex;
	gap: 8px;
}

.mseom-hero__dot {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
}

.mseom-hero__dot.is-active {
	background: var(--mseom-accent);
	transform: scale(1.15);
}

.mseom-hero__auctions {
	background: rgba(17, 24, 39, 0.72);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--mseom-radius);
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.mseom-hero__auctions--has-live {
	border-color: rgba(255, 255, 255, 0.14);
}

.mseom-hero__auctions-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 12px;
	margin-bottom: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	flex-shrink: 0;
}

.mseom-hero__auctions-head h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.mseom-hero__auctions-more {
	color: var(--mseom-accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.mseom-hero__auctions-more:hover {
	color: #d9f99d;
}

.mseom-hero-auctions-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.mseom-hero-auctions-list::-webkit-scrollbar {
	width: 4px;
}

.mseom-hero-auctions-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 999px;
}

.mseom-hero-auction {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	flex: 1;
	min-height: 0;
	display: flex;
	align-items: center;
}

.mseom-hero-auction:last-child {
	border-bottom: 0;
}

.mseom-hero-auction__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	width: 100%;
	padding: 12px 0;
}

.mseom-hero-auction__info {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.mseom-hero-auction__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 8px;
}

.mseom-hero-auction__title {
	font-size: 14px;
	line-height: 1.35;
	color: #fff;
	font-weight: 700;
}

.mseom-hero-auction__live-badge {
	gap: 5px;
	padding: 3px 8px 3px 6px;
	font-size: 10px;
	line-height: 1;
}

.mseom-hero-auction__live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	flex-shrink: 0;
}

.mseom-hero-auction__time {
	font-size: 13px;
	font-weight: 600;
	color: var(--mseom-accent);
	line-height: 1.3;
}

.mseom-hero-auction__countdown {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mseom-hero-auction__btn {
	min-height: 44px;
	min-width: 96px;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
	text-align: center;
	white-space: nowrap;
}

.mseom-hero-auctions-empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding: 24px 8px;
}

.mseom-hero-auctions-empty__title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.mseom-hero-auctions-empty__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	max-width: 26ch;
}

.mseom-live-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	max-height: 320px;
	overflow: auto;
	overscroll-behavior: contain;
}

.mseom-live-list__item {
	display: grid;
	gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--mseom-radius-sm);
}

.mseom-live-list__meta {
	display: grid;
	gap: 4px;
	font-size: 13px;
}

.mseom-live-list__meta strong {
	font-size: 14px;
}

.mseom-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
}

.mseom-badge--live {
	background: var(--mseom-red);
	color: #fff;
}

.mseom-hero__eyebrow {
	color: var(--mseom-accent);
	margin: 0 0 6px;
	font-size: 14px;
}

.mseom-hero__slide h2 {
	margin: 0 0 8px;
	font-size: clamp(22px, 5vw, 34px);
	line-height: 1.25;
}

.mseom-hero__slide p {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	max-width: 52ch;
}

.mseom-hero__price {
	font-weight: 700;
}

.mseom-hero__live-pill {
	display: inline-block;
	margin-bottom: 8px;
	background: var(--mseom-red);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.mseom-empty {
	margin: 0;
	color: var(--mseom-muted);
	text-align: center;
	padding: 20px 0;
}

/* Sections */
.mseom-section {
	padding: 28px 0;
	content-visibility: auto;
	contain-intrinsic-size: 360px;
}

.mseom-section--muted {
	background: #eef2ef;
}

.mseom-section--features {
	background: var(--mseom-surface);
}

.mseom-section__title {
	margin: 0 0 16px;
	color: var(--mseom-accent-dark);
	font-size: clamp(18px, 3vw, 22px);
}

.mseom-section__title--center {
	text-align: center;
}

.mseom-section__subtitle {
	text-align: center;
	margin: -8px 0 20px;
	color: var(--mseom-muted);
}

.mseom-section__head {
	display: grid;
	gap: 12px;
	justify-items: center;
	margin-bottom: 8px;
}

.mseom-section__head--split {
	grid-template-columns: 1fr;
}

.mseom-section__icon {
	margin-inline-end: 6px;
}

.mseom-link-more {
	color: var(--mseom-green-800);
	text-decoration: none;
	font-size: 14px;
}

.mseom-scroll-row {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.mseom-chip-card {
	flex: 0 0 108px;
	scroll-snap-align: start;
	background: var(--mseom-surface);
	border: 1px solid var(--mseom-border);
	border-radius: var(--mseom-radius-sm);
	padding: 14px 10px;
	text-align: center;
	text-decoration: none;
	box-shadow: var(--mseom-shadow);
}

.mseom-chip-card img,
.mseom-chip-card__fallback,
.mseom-chip-card__car,
.mseom-chip-card__plus {
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	display: grid;
	place-items: center;
	font-size: 22px;
}

.mseom-chip-card__fallback {
	border-radius: 50%;
	background: #ecfdf5;
	color: var(--mseom-green-800);
	font-weight: 700;
}

.mseom-chip-card span:last-child {
	display: block;
	font-size: 13px;
	color: var(--mseom-text);
}

.mseom-chip-card--more .mseom-chip-card__plus {
	border: 2px dashed var(--mseom-green-700);
	border-radius: 12px;
	color: var(--mseom-green-800);
	font-size: 28px;
}

/* Tabs */
.mseom-tabs {
	display: inline-flex;
	background: #fff;
	border-radius: 999px;
	padding: 4px;
	border: 1px solid var(--mseom-border);
}

.mseom-tabs__btn {
	min-height: 40px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font: inherit;
	cursor: pointer;
	color: var(--mseom-muted);
}

.mseom-tabs__btn.is-active {
	background: var(--mseom-accent);
	color: var(--mseom-green-900);
	font-weight: 700;
}

.mseom-tab-panel[hidden] {
	display: none !important;
}

.mseom-auction-grid {
	display: grid;
	gap: 12px;
}

.mseom-auction-card {
	background: #fff;
	border: 1px solid var(--mseom-border);
	border-radius: var(--mseom-radius);
	padding: 16px;
	box-shadow: var(--mseom-shadow);
}

.mseom-auction-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
}

.mseom-auction-card p {
	margin: 0 0 8px;
	color: var(--mseom-muted);
	font-size: 14px;
}

.mseom-auction-card__meta {
	font-size: 13px !important;
}

.mseom-dealer-card {
	flex: 0 0 220px;
	scroll-snap-align: start;
	display: block;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--mseom-border);
	border-radius: var(--mseom-radius);
	padding: 16px;
	text-align: center;
	box-shadow: var(--mseom-shadow);
}

.mseom-dealer-card__logo {
	width: 64px;
	height: 64px;
	margin: 0 auto 10px;
	border-radius: 50%;
	overflow: hidden;
	background: #f3f6f4;
	display: grid;
	place-items: center;
	font-size: 28px;
}

.mseom-dealer-card h3 {
	margin: 0 0 6px;
	font-size: 15px;
}

.mseom-dealer-card p,
.mseom-dealer-card small {
	display: block;
	margin: 0;
	color: var(--mseom-muted);
	font-size: 13px;
}

.mseom-features {
	display: grid;
	gap: 12px;
}

.mseom-feature {
	background: var(--mseom-bg);
	border-radius: var(--mseom-radius);
	padding: 16px;
	text-align: center;
}

.mseom-feature span {
	font-size: 28px;
	display: block;
	margin-bottom: 8px;
}

.mseom-feature h3 {
	margin: 0 0 6px;
	font-size: 16px;
}

.mseom-feature p {
	margin: 0;
	color: var(--mseom-muted);
	font-size: 14px;
}

/* Footer + pages */
.mseom-footer {
	background: var(--mseom-green-900);
	color: #fff;
	margin-top: 24px;
}

.mseom-footer__inner {
	display: grid;
	gap: 16px;
	padding: 24px 0;
}

.mseom-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.mseom-footer__links a {
	color: #d9f99d;
	text-decoration: none;
	font-size: 14px;
}

.mseom-footer__copy {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 12px 0 18px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.mseom-page {
	padding: 28px 0 40px;
}

.mseom-page--center {
	text-align: center;
}

.mseom-article__content {
	background: #fff;
	border-radius: var(--mseom-radius);
	padding: 20px;
	border: 1px solid var(--mseom-border);
}

/* Tablet */
@media (min-width: 640px) {
	.mseom-header__top-inner {
		grid-template-columns: auto 1fr auto;
	}

	.mseom-hero {
		min-height: 424px;
	}

	.mseom-hero--slider {
		min-height: 424px;
		height: 424px;
	}

	.mseom-hero--slider .mseom-hero__grid {
		height: 100%;
		min-height: 0;
	}

	.mseom-hero__grid {
		grid-template-columns: 1fr minmax(280px, 380px);
		align-items: stretch;
	}

	.mseom-hero-auctions-list {
		display: flex;
		flex-direction: column;
	}

	.mseom-hero-auction {
		flex: 1;
	}

	.mseom-hero-auction__btn {
		min-height: 48px;
		min-width: 102px;
	}

	.mseom-live-list__item {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.mseom-auction-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mseom-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mseom-footer__inner {
		grid-template-columns: 1.2fr 1fr;
		align-items: start;
	}
}

/* Desktop */
@media (min-width: 960px) {
	.mseom-hide-mobile {
		display: inline-flex !important;
	}

	.mseom-search-toggle {
		display: none !important;
	}

	.mseom-header__search-wrap {
		display: block;
	}

	.mseom-nav-toggle,
	.mseom-drawer,
	.mseom-header__overlay {
		display: none !important;
	}

	.mseom-header__nav {
		display: block;
	}

	.mseom-btn--account {
		width: auto;
		min-width: 0;
		padding: 0 16px;
	}

	.mseom-btn--account .mseom-btn__icon {
		display: none;
	}

	.mseom-btn--account .mseom-btn__label {
		position: static !important;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
	}

	.mseom-btn--wallet .mseom-btn__icon {
		display: inline-flex;
	}

	.mseom-hero {
		padding: 28px 0 36px;
		min-height: 424px;
	}

	.mseom-hero--slider {
		padding: 0;
		height: 424px;
		min-height: 424px;
	}

	.mseom-hero__grid {
		gap: 20px;
	}

	.mseom-hero--slider .mseom-hero__grid {
		gap: 0;
		height: 100%;
	}

	.mseom-hero__auctions {
		padding: 18px 20px;
	}

	.mseom-hero--slider .mseom-hero__auctions {
		padding: 20px 18px;
	}

	.mseom-auction-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mseom-features {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.mseom-section__head--split {
		grid-template-columns: 1fr auto;
		align-items: center;
		justify-items: stretch;
	}

	.mseom-link-more {
		justify-self: end;
	}
}

/* Mobile + tablet shared */
@media (max-width: 959px) {
	.mseom-header__top {
		position: relative;
	}

	.mseom-header__nav {
		display: none;
	}
}

/* Mobile only */
@media (max-width: 639px) {
	.mseom-header__top-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.mseom-brand__text small {
		display: none;
	}

	.mseom-header__search-wrap {
		display: none;
	}

	.mseom-search-toggle {
		display: inline-flex;
	}

	.mseom-btn--account,
	.mseom-btn--wallet {
		min-width: 44px;
		width: 44px;
		padding: 0;
	}

	.mseom-btn--account .mseom-btn__icon,
	.mseom-btn--wallet .mseom-btn__icon {
		display: inline-flex;
	}

	.mseom-btn--wallet .mseom-btn__text {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		border: 0;
	}

	.mseom-btn--account .mseom-btn__label {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		border: 0;
	}

	.mseom-header.is-search-open .mseom-header__search-wrap {
		display: flex;
		position: absolute;
		inset-inline: 0;
		top: 100%;
		padding: 12px;
		background: var(--mseom-surface);
		border-top: 1px solid var(--mseom-border);
		box-shadow: var(--mseom-shadow);
		z-index: 120;
	}

	.mseom-hero-auction__btn {
		min-width: 84px;
		padding-inline: 10px;
		font-size: 12px;
	}

	.mseom-hero--slider {
		height: auto;
		min-height: 0;
		padding: 20px 0 24px;
	}

	.mseom-hero--slider .mseom-hero__grid {
		min-height: 0;
		height: auto;
		gap: 16px;
	}

	.mseom-hero--slider .mseom-hero__featured {
		padding: 0;
		min-height: 220px;
	}

	.mseom-hero--slider .mseom-hero__auctions {
		min-height: 320px;
		height: auto;
		border-radius: var(--mseom-radius);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/* Tablet only */
@media (min-width: 640px) and (max-width: 959px) {
	.mseom-header__search-wrap {
		display: flex;
	}

	.mseom-search-toggle {
		display: none !important;
	}

	.mseom-search input {
		height: 40px;
		font-size: 14px;
	}

	.mseom-btn--account {
		width: auto;
		min-width: 0;
		padding: 0 14px;
	}

	.mseom-btn--account .mseom-btn__icon {
		display: none;
	}

	.mseom-btn--account .mseom-btn__label {
		position: static !important;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
	}

	.mseom-btn--wallet .mseom-btn__icon {
		display: inline-flex;
	}

	.mseom-btn--wallet .mseom-btn__text {
		display: none;
	}

	.mseom-header__actions {
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.mseom-btn,
	.mseom-nav-toggle__bar,
	.mseom-drawer,
	.mseom-header__overlay,
	.mseom-nav__live-dot,
	.mseom-live-pill__dot,
	.mseom-hero__bg,
	.mseom-hero__slide {
		transition: none;
		animation: none;
	}
}
