/* ═══════════════════════════════════════════════════════════
   Moderncar Tyres — unified theme
   ═══════════════════════════════════════════════════════════ */
:root {
	--mc-red: #e30613;
	--mc-red-dark: #b8050f;
	--mc-red-light: #ff2a36;
	--mc-red-glow: rgba(227, 6, 19, 0.38);
	--mc-orange: var(--mc-red);
	--mc-orange-dark: var(--mc-red-dark);
	--mc-orange-glow: var(--mc-red-glow);
	--mc-dark: #000000;
	--mc-dark-soft: #121212;
	--mc-dark-rich: #080808;
	--mc-dark-mid: #141414;
	--mc-dark-band: #2a2a2a;
	--mc-h-page: clamp(2rem, 4.5vw, 2.85rem);
	--mc-h-section: clamp(1.85rem, 3.8vw, 2.5rem);
	--mc-h-card: clamp(1.1rem, 2vw, 1.35rem);
	--mc-h-eyebrow: 12px;
	--mc-white: #ffffff;
	--mc-bg: #f2f2f2;
	--mc-surface: #1c1c1c;
	--mc-surface-raised: #262626;
	--mc-surface-deep: #141414;
	--mc-text: #111111;
	--mc-text-on-dark: #f4f4f4;
	--mc-muted: #5c5c5c;
	--mc-muted-on-dark: rgba(255, 255, 255, 0.7);
	--mc-border: #e0e0e0;
	--mc-radius: 8px;
	--mc-radius-lg: 12px;
	--mc-radius-pill: 50px;
	--mc-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
	--mc-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.18);
	--mc-topbar-h: 36px;
	--mc-header-h: 76px;
	--mc-hero-overlay: linear-gradient(160deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(227, 6, 19, 0.55) 100%);
}

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

body.mc-site {
	font-family: 'Raleway', sans-serif;
	color: var(--mc-text);
	background: var(--mc-white);
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

body.mc-nav-open { overflow: hidden; }

a { color: var(--mc-red); transition: color 0.2s; }
a:hover, a:focus { color: var(--mc-red-dark); text-decoration: none; }

/* ── Topbar ── */
.mc-topbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1100;
	height: var(--mc-topbar-h);
	background: var(--mc-dark);
	font-size: 12px;
	display: flex;
	align-items: center;
}
.mc-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}
.mc-topbar__left, .mc-topbar__right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.mc-topbar a, .mc-topbar span { color: rgba(255,255,255,0.85); text-decoration: none; }
.mc-topbar a:hover { color: #fff; }
.mc-topbar i { color: var(--mc-red); margin-right: 5px; }
.mc-topbar__sep { opacity: 0.35; }
.mc-topbar__phone { font-weight: 600; }

/* ── Header ── */
.mc-header {
	position: fixed;
	top: var(--mc-topbar-h);
	left: 0; right: 0;
	z-index: 1090;
	background: var(--mc-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.25s;
}
.mc-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.mc-header--over-hero:not(.is-scrolled) {
	background: rgba(0, 0, 0, 0.55);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}
.mc-header--over-hero:not(.is-scrolled) .mc-nav > li > a,
.mc-header .mc-nav > li > a {
	color: rgba(255, 255, 255, 0.9) !important;
}
.mc-header--over-hero:not(.is-scrolled) .mc-nav > li > a:hover,
.mc-header--over-hero:not(.is-scrolled) .mc-nav > li > a.is-active,
.mc-header .mc-nav > li > a:hover,
.mc-header .mc-nav > li > a.is-active {
	color: var(--mc-red) !important;
}
.mc-header--over-hero:not(.is-scrolled) .mc-header__toggle span,
.mc-header .mc-header__toggle span {
	background: #fff;
}
.mc-header .mc-logo--on-dark { display: block; }
.mc-header .mc-logo--on-light { display: none; }

.mc-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas: "brand nav cta";
	align-items: center;
	gap: 12px 16px;
	min-height: var(--mc-header-h);
}
.mc-header__brand { grid-area: brand; flex-shrink: 0; }
.mc-header__nav {
	grid-area: nav;
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}
.mc-header__cta { grid-area: cta; flex-shrink: 0; }
.mc-header__toggle {
	grid-area: cta;
	justify-self: end;
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--mc-radius);
	background: transparent;
	cursor: pointer;
}
.mc-logo { height: 50px; width: auto; max-width: 180px; object-fit: contain; }
.mc-header__toggle span {
	display: block; height: 2px;
	background: #fff;
	border-radius: 2px;
}
.mc-nav {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	align-items: center;
	gap: 2px;
}
.mc-nav > li > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.9) !important;
	text-decoration: none;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}
.mc-nav > li > a:hover,
.mc-nav > li > a.is-active { color: var(--mc-red) !important; }
.mc-nav__drop { position: relative; }
.mc-nav__sub {
	position: absolute;
	top: 100%; left: 0;
	min-width: 180px;
	background: var(--mc-dark-soft);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--mc-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	padding: 6px 0;
	margin: 4px 0 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s;
}
.mc-nav__drop:hover .mc-nav__sub {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.mc-nav__sub a {
	display: block;
	padding: 10px 18px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85) !important;
}
.mc-nav__sub a:hover,
.mc-nav__sub a.is-active {
	color: var(--mc-red) !important;
	background: rgba(227, 6, 19, 0.12);
}
.mc-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--mc-red);
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: var(--mc-radius-pill);
	white-space: nowrap;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px var(--mc-red-glow);
}
.mc-header__cta:hover {
	background: var(--mc-red-dark);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px var(--mc-red-glow);
}

body.mc-site { padding-top: calc(var(--mc-topbar-h) + var(--mc-header-h)); }
body.mc-home { padding-top: 0; background: var(--mc-surface); color: var(--mc-text-on-dark); }
body.mc-inner,
body.mc-shop { background: var(--mc-surface); color: var(--mc-text-on-dark); }

/* ── Homepage hero ── */
.mc-hero-home {
	position: relative;
	background: url("../img/bb.jpg") center/cover no-repeat;
	min-height: 520px;
	padding-top: calc(var(--mc-topbar-h) + var(--mc-header-h));
}
.mc-hero-home::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--mc-hero-overlay);
	pointer-events: none;
}
.mc-hero-home__inner {
	position: relative;
	z-index: 2;
}

#mogo-slider { padding: 20px 0 0; }
#mogo-slider .carousel-inner > .item { text-align: center; color: #fff; }
.mogo-slider-title {
	font-size: var(--mc-h-page);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 20px;
}
.mogo-slider-sub {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	margin-bottom: 12px;
}
.slider-btn {
	display: inline-block;
	padding: 12px 28px;
	background: var(--mc-red);
	color: #fff !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: var(--mc-radius-pill);
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px var(--mc-red-glow);
}
.slider-btn:hover {
	background: var(--mc-red-dark);
	color: #fff !important;
	transform: translateY(-2px);
}
#mogo-slider .carousel-indicators {
	width: 100%; left: 0;
	position: static;
	margin: 50px 0 0;
	display: flex;
}
#mogo-slider .carousel-indicators li,
#mogo-slider .carousel-indicators li.active {
	flex: 1; width: auto; height: auto;
	margin: 0; text-indent: 0;
	background: none; border: none;
}
#mogo-slider .carousel-indicators li .inner {
	border-top: 2px solid rgba(255,255,255,0.35);
	padding: 12px 0;
	margin: 0 10px;
	color: rgba(255,255,255,0.7);
	transition: border-color 0.2s, color 0.2s;
}
#mogo-slider .carousel-indicators li:hover .inner,
#mogo-slider .carousel-indicators li.active .inner {
	border-color: var(--mc-red);
	color: #fff;
}
#mogo-slider .carousel-indicators li .number {
	font-weight: 800;
	font-size: 18px;
	display: block;
}

/* ── Inner page hero band ── */
.mc-page-hero {
	position: relative;
	background: url("../img/bb.jpg") center/cover no-repeat;
	padding: 48px 0;
	text-align: center;
	color: #fff;
}
.mc-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--mc-hero-overlay);
}
.mc-page-hero .container { position: relative; z-index: 1; }
.mc-page-hero h1 {
	margin: 0;
	font-size: var(--mc-h-page);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.15;
}
.mc-page-hero__tagline {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--mc-red-light);
}
.mc-page-hero__desc {
	margin: 14px auto 0;
	max-width: 620px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
}

.mogo-slider-desc {
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	max-width: 540px;
	margin: 0 auto 22px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* ── Section intros ── */
.mc-section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 44px;
}
.mc-section-head__label {
	display: inline-block;
	color: var(--mc-red);
	font-size: var(--mc-h-eyebrow);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.mc-section-head h2 {
	margin: 0 0 12px;
	font-size: var(--mc-h-section);
	font-weight: 800;
	color: var(--mc-text);
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.mc-section-head p {
	margin: 0;
	color: var(--mc-muted);
	line-height: 1.7;
	font-size: 15px;
}

/* ── Service cards (home) ── */
.mc-services-grid { margin-top: 8px; }
.mc-service-card {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	box-shadow: var(--mc-shadow);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-top: 3px solid var(--mc-red);
	transition: transform 0.25s, box-shadow 0.25s;
}
.mc-service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--mc-shadow-hover);
}
.mc-service-card__img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--mc-bg);
}
.mc-service-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.mc-service-card:hover .mc-service-card__img img { transform: scale(1.04); }
.mc-service-card__body {
	padding: 22px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.mc-service-card__title {
	margin: 0 0 10px;
	font-size: var(--mc-h-card);
	font-weight: 800;
	color: var(--mc-text);
}
.mc-service-card__text {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--mc-muted);
	flex: 1;
}
.mc-service-card__links {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--mc-border);
	padding-top: 14px;
}
.mc-service-card__links li { margin: 0; }
.mc-service-card__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--mc-text) !important;
	border-bottom: 1px solid var(--mc-border);
}
.mc-service-card__links a:last-child { border-bottom: none; }
.mc-service-card__links a:hover { color: var(--mc-red) !important; }
.mc-service-card__links a::after {
	content: "\f105";
	font-family: FontAwesome;
	color: var(--mc-red);
}
.mc-badge-soon {
	display: inline-block;
	background: var(--mc-red);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: var(--mc-radius-pill);
	vertical-align: middle;
	margin-left: 6px;
}

/* ── Split feature (home about block) ── */
.mc-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.mc-split__media {
	border-radius: var(--mc-radius-lg);
	overflow: hidden;
	box-shadow: var(--mc-shadow-hover);
}
.mc-split__media img {
	width: 100%;
	display: block;
	object-fit: cover;
}
.mc-split__label {
	color: var(--mc-red);
	font-size: var(--mc-h-eyebrow);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
	display: block;
}
.mc-split__title {
	margin: 0 0 16px;
	font-size: var(--mc-h-section);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.mc-split__text {
	color: var(--mc-muted);
	line-height: 1.75;
	font-size: 15px;
	margin-bottom: 24px;
}
.mc-split__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.mc-split__list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--mc-text);
	font-weight: 600;
}
.mc-split__list li::before {
	content: "\f00c";
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	color: var(--mc-red);
	font-size: 12px;
}

/* ── Workshop showcase ── */
.mc-workshop {
	padding: 0 0 60px;
	background: var(--mc-white);
}
.mc-home .mc-workshop,
.mc-inner .mc-workshop {
	padding-top: 60px;
	background: var(--mc-surface);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mc-home .mc-workshop__frame,
.mc-inner .mc-workshop__frame {
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}
.mc-workshop__frame {
	border-radius: var(--mc-radius-lg);
	overflow: hidden;
	box-shadow: var(--mc-shadow-hover);
	border: 1px solid var(--mc-border);
}
.mc-workshop__frame img {
	width: 100%;
	display: block;
}

/* ── About page ── */
.mc-about-split {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: start;
}
.mc-about-split__media {
	border-radius: var(--mc-radius-lg);
	overflow: hidden;
	box-shadow: var(--mc-shadow-hover);
	position: sticky;
	top: calc(var(--mc-topbar-h) + var(--mc-header-h) + 20px);
}
.mc-about-split__media img { width: 100%; display: block; object-fit: cover; }
.mc-about-split__lead {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--mc-text);
	margin-bottom: 18px;
	font-weight: 600;
}
.mc-about-split__body p {
	color: var(--mc-muted);
	line-height: 1.75;
	font-size: 15px;
	margin-bottom: 16px;
}
.mc-about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 28px;
}
.mc-about-stat {
	background: var(--mc-bg);
	border-radius: var(--mc-radius);
	padding: 18px 16px;
	text-align: center;
	border-top: 3px solid var(--mc-red);
}
.mc-about-stat strong {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--mc-red);
	margin-bottom: 4px;
}
.mc-about-stat span {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--mc-muted);
}
.mc-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.mc-value-card {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--mc-shadow);
	border-top: 3px solid var(--mc-red);
	height: 100%;
}
.mc-value-card i {
	font-size: 28px;
	color: var(--mc-red);
	margin-bottom: 14px;
}
.mc-value-card h3 {
	margin: 0 0 10px;
	font-size: var(--mc-h-card);
	font-weight: 800;
}
.mc-value-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--mc-muted);
}

/* ── Gallery ── */
.mc-gallery-intro { margin-bottom: 36px; }
.mc-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.mc-gallery-card {
	border-radius: var(--mc-radius-lg);
	overflow: hidden;
	background: var(--mc-white);
	box-shadow: var(--mc-shadow);
	transition: transform 0.25s, box-shadow 0.25s;
}
.mc-gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mc-shadow-hover);
}
.mc-gallery-card__img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	display: block;
	position: relative;
}
.mc-gallery-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s;
}
.mc-gallery-card:hover .mc-gallery-card__img img { transform: scale(1.05); }
.mc-gallery-card__img::after {
	content: "\f00e";
	font-family: FontAwesome;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 24px;
	opacity: 0;
	transition: opacity 0.25s;
}
.mc-gallery-card:hover .mc-gallery-card__img::after { opacity: 1; }
.mc-gallery-card__body { padding: 16px 18px 18px; }
.mc-gallery-card__body h3 {
	margin: 0 0 6px;
	font-size: var(--mc-h-card);
	font-weight: 800;
	color: var(--mc-text);
}
.mc-gallery-card__body p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--mc-muted);
}
.mc-gallery-modal .modal-content {
	border: none;
	border-radius: var(--mc-radius-lg);
	overflow: hidden;
}
.mc-gallery-modal .modal-body { padding: 0; }
.mc-gallery-modal .modal-body img { width: 100%; display: block; }
.mc-gallery-modal .modal-caption {
	padding: 16px 20px;
	background: var(--mc-dark);
	color: #fff;
}
.mc-gallery-modal .modal-caption h4 { margin: 0 0 4px; font-weight: 800; }
.mc-gallery-modal .modal-caption p { margin: 0; opacity: 0.8; font-size: 14px; }

/* ── Tyre CTA block ── */
.tyre-catalogue-cta { padding: 56px 0; background: var(--mc-surface-raised); }
body.mc-home .tyre-catalogue-cta {
	background: linear-gradient(165deg, var(--mc-surface-deep) 0%, var(--mc-surface-raised) 100%);
}
body.mc-home .tyre-catalogue-cta .mc-section-head h2 { color: #fff; }
body.mc-home .tyre-catalogue-cta .mc-section-head p,
body.mc-home .tyre-catalogue-cta .tyre-cta-text { color: var(--mc-muted-on-dark); }
.tyre-promo-banner-compact {
	max-width: 720px;
	margin: 0 auto 20px;
	float: none;
}
.tyre-cta-text {
	font-size: 15px;
	color: var(--mc-muted);
	margin: 20px auto 28px;
	max-width: 560px;
	line-height: 1.65;
}

/* ── Sections ── */
.mc-section {
	padding: 60px 0;
}
.mc-section--grey { background: var(--mc-bg); }
body.mc-home .mc-section--grey,
body.mc-inner .mc-section--grey,
body.mc-shop .mc-section--grey {
	background: var(--mc-surface-raised);
	color: var(--mc-text-on-dark);
}
body.mc-home .mc-section:not(.mc-section--dark):not(.tyre-catalogue-cta),
body.mc-inner .mc-section:not(.mc-section--dark),
body.mc-shop .mc-section:not(.mc-section--dark) {
	background: var(--mc-surface);
	color: var(--mc-text-on-dark);
}
body.mc-home .mc-section--grey .mc-section-head h2,
body.mc-inner .mc-section--grey .mc-section-head h2,
body.mc-shop .mc-section--grey .mc-section-head h2,
body.mc-home .mc-section:not(.mc-section--dark) .mc-section-head h2,
body.mc-inner .mc-section:not(.mc-section--dark) .mc-section-head h2,
body.mc-shop .mc-section:not(.mc-section--dark) .mc-section-head h2,
body.mc-home .mc-workshop .mc-section-head h2,
body.mc-inner .mc-workshop .mc-section-head h2 {
	color: #fff;
}
body.mc-home .mc-section--grey .mc-section-head p,
body.mc-inner .mc-section--grey .mc-section-head p,
body.mc-shop .mc-section--grey .mc-section-head p,
body.mc-home .mc-section:not(.mc-section--dark) .mc-section-head p,
body.mc-inner .mc-section:not(.mc-section--dark) .mc-section-head p,
body.mc-shop .mc-section:not(.mc-section--dark) .mc-section-head p,
body.mc-home .mc-workshop .mc-section-head p,
body.mc-inner .mc-workshop .mc-section-head p,
body.mc-home .hot-deal .mc-section-head p,
body.mc-inner .hot-deal .mc-section-head p {
	color: var(--mc-muted-on-dark);
}
body.mc-home .hot-deal .mc-section-head h2,
body.mc-inner .hot-deal .mc-section-head h2 {
	color: #fff;
}
body.mc-inner .mc-section--grey .mc-about-split__lead,
body.mc-inner .mc-section--grey .mc-about-split__body p,
body.mc-inner .mc-section .content p,
body.mc-inner .mc-section .content ul li {
	color: var(--mc-muted-on-dark);
}
body.mc-inner .mc-section--grey .mc-about-split__lead,
body.mc-inner .mc-section .tyr-hd {
	color: #fff;
}
body.mc-inner .mc-section .border {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.mc-home .mc-section-cta__link,
body.mc-inner .mc-section-cta__link,
body.mc-shop .mc-section-cta__link {
	color: rgba(255, 255, 255, 0.88) !important;
}
body.mc-home .mc-section-cta__link:hover,
body.mc-inner .mc-section-cta__link:hover,
body.mc-shop .mc-section-cta__link:hover {
	color: var(--mc-red-light) !important;
}
.mc-section--dark {
	background: linear-gradient(165deg, var(--mc-surface-deep) 0%, var(--mc-dark-band) 48%, var(--mc-surface-deep) 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.mc-section--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 100% 0%, rgba(227, 6, 19, 0.1) 0%, transparent 58%),
		radial-gradient(ellipse 55% 45% at 0% 100%, rgba(227, 6, 19, 0.06) 0%, transparent 52%);
	pointer-events: none;
}
.mc-section--dark > .container { position: relative; z-index: 1; }
.mc-section--dark .mc-section-head h2,
.mc-section--dark .mc-split__title { color: #fff; }
.mc-section--dark .mc-section-head p,
.mc-section--dark .mc-split__text { color: rgba(255, 255, 255, 0.74); }
.mc-section--dark .mc-split__list li { color: rgba(255, 255, 255, 0.9); }
.mc-section--dark .mc-about-split__lead { color: #fff; }
.mc-section--dark .mc-about-split__body p { color: rgba(255, 255, 255, 0.74); }
.mc-section--dark .mc-about-stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top: 3px solid var(--mc-red);
}
.mc-section--dark .mc-about-stat span { color: rgba(255, 255, 255, 0.65); }
.mc-section-cta {
	margin-top: 36px;
	text-align: center;
}
.mc-section-cta__link {
	margin-left: 16px;
	color: rgba(255, 255, 255, 0.85) !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mc-section-cta__link:hover { color: var(--mc-red-light) !important; }
.mc-section-cta__link i { margin-left: 4px; }
.mc-section__title {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 40px;
	position: relative;
}
.mc-section__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--mc-orange);
	margin: 14px auto 0;
}

/* ── Cards (homepage services + shop tyres) ── */
.mc-card,
.offer-inner {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	box-shadow: var(--mc-shadow);
	overflow: hidden;
	height: 100%;
	border-top: 3px solid var(--mc-red);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mc-card:hover,
.offer-inner:hover {
	transform: translateY(-4px);
	box-shadow: var(--mc-shadow-hover);
}
@media (prefers-reduced-motion: reduce) {
	.mc-card:hover, .offer-inner:hover { transform: none; }
}
.mc-card__img,
.offer-inner > img:first-of-type {
	width: 100%;
	display: block;
	object-fit: cover;
}
.mc-card__body { padding: 22px 24px 26px; }
.mc-card__label,
.sub-heading {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--mc-orange);
	margin: 0 0 8px;
}
.mc-text-accent {
	color: var(--mc-red);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mc-card__title {
	font-size: var(--mc-h-card);
	font-weight: 800;
	margin: 0 0 10px;
	color: var(--mc-text);
}
.mc-card__text,
.offer-inner p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--mc-muted);
	margin: 0 0 14px;
}
.mc-card__links,
.offer-inner .info {
	list-style: none;
	margin: 0; padding: 0;
}
.mc-card__links li,
.offer-inner .info li { margin: 6px 0; }
.mc-card__links a,
.offer-inner .info a {
	font-size: 13px;
	font-weight: 600;
	color: var(--mc-orange) !important;
}
.coming-soon {
	position: absolute;
	z-index: 2;
	top: 12px; left: 12px;
	background: var(--mc-red);
	color: #fff;
	padding: 4px 14px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: var(--mc-radius-pill);
}
.offer-inner { position: relative; padding-bottom: 24px; }
.offer-inner .sub-heading { padding: 0 24px; margin-top: 18px; }
.offer-inner p { padding: 0 24px; }
.offer-inner .info { padding: 0 24px; }

/* ── Buttons ── */
.btn-custom {
	background: var(--mc-red) !important;
	background-image: none !important;
	filter: none !important;
	border: none !important;
	color: #fff !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: var(--mc-radius-pill) !important;
	padding: 12px 28px;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px var(--mc-red-glow);
}
.btn-custom:hover,
.btn-custom:focus {
	background: var(--mc-red-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px var(--mc-red-glow);
}

/* ── Highlight strip (repairs / sale / service) ── */
.mc-highlight {
	background: var(--mc-dark);
	color: #fff;
	padding: 36px 0;
	border-top: 4px solid var(--mc-red);
	border-bottom: 4px solid var(--mc-red);
	position: relative;
	overflow: hidden;
}
.mc-highlight::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -8%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(227, 6, 19, 0.35) 0%, transparent 70%);
	pointer-events: none;
}
.mc-highlight__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}
.mc-highlight__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(227, 6, 19, 0.2);
	border: 1px solid rgba(227, 6, 19, 0.45);
	color: #fff;
	padding: 6px 14px;
	border-radius: var(--mc-radius-pill);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}
.mc-highlight__eyebrow i { color: var(--mc-red-light); }
.mc-highlight__title {
	margin: 0 0 12px;
	font-size: var(--mc-h-section);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.15;
}
.mc-highlight__title span { color: var(--mc-red-light); }
.mc-highlight__text {
	margin: 0 auto 20px;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}
.mc-highlight__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 22px;
}
.mc-highlight__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	padding: 8px 16px;
	border-radius: var(--mc-radius-pill);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mc-highlight__pill i { color: var(--mc-red); }
.mc-highlight__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.mc-highlight__link {
	color: #fff !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mc-highlight__link:hover { color: var(--mc-red-light) !important; }
.mc-highlight__link i { margin-left: 4px; }

.mc-highlight--compact {
	padding: 28px 0;
}
.mc-highlight--compact .mc-highlight__pills,
.mc-highlight--compact .mc-highlight__actions { display: none; }
.mc-highlight--compact .mc-highlight__text { margin-bottom: 0; }

/* ── Promo banner (B3G1F) ── */
.mc-promo {
	background: linear-gradient(135deg, var(--mc-red-dark) 0%, var(--mc-red) 50%, var(--mc-red-light) 100%);
	color: #fff;
	border-radius: var(--mc-radius-lg);
	padding: 28px 32px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 28px var(--mc-orange-glow);
}
.mc-promo::before {
	content: "B3G1F";
	position: absolute;
	right: 16px; top: 50%;
	transform: translateY(-50%);
	font-size: 72px;
	font-weight: 900;
	opacity: 0.12;
}
.mc-promo h2 {
	margin: 0 0 6px;
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
}
.mc-promo p { margin: 0; font-size: 14px; opacity: 0.95; }
.mc-promo__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--mc-dark);
	color: #fff;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 12px;
}
.tyre-promo-banner {
	background: linear-gradient(135deg, var(--mc-red-dark) 0%, var(--mc-red) 50%, var(--mc-red-light) 100%);
	color: #fff;
	border-radius: var(--mc-radius-lg);
	padding: 28px 24px;
	text-align: center;
	position: relative;
	box-shadow: 0 8px 28px var(--mc-orange-glow);
}
.tyre-promo-banner h2 {
	font-size: var(--mc-h-section);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.tyre-promo-banner .deal-round {
	position: absolute;
	top: -20px; left: 50%;
	transform: translateX(-50%);
	width: 52px; height: 52px;
	background: var(--mc-dark);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 800;
}

/* ── Hot deals ── */
.hot-deal {
	padding: 56px 0 64px;
	background: var(--mc-surface-raised);
}
body.mc-home .hot-deal,
body.mc-inner .hot-deal {
	background: linear-gradient(180deg, var(--mc-surface) 0%, var(--mc-surface-raised) 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hot-deal-inner {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	box-shadow: var(--mc-shadow);
	padding: 28px 22px 24px;
	position: relative;
	margin-bottom: 24px;
	min-height: auto;
	transition: transform 0.25s, box-shadow 0.25s;
	border-top: 3px solid var(--mc-red);
}
.hot-deal-inner:hover {
	transform: translateY(-4px);
	box-shadow: var(--mc-shadow-hover);
}
.hot-deal-inner .deal-round {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--mc-red);
	color: #fff;
	padding: 8px 14px;
	border-radius: 50px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}
.hot-deal-inner h2 {
	text-align: center;
	font-weight: 800;
	color: var(--mc-red);
	margin: 12px 0 20px;
	font-size: var(--mc-h-card);
}
.hot-deal-inner .list-deal {
	position: relative;
	padding: 12px 64px 12px 14px;
	border-radius: var(--mc-radius);
	border: 1px dashed var(--mc-border);
	margin-bottom: 10px;
	background: var(--mc-bg);
}
.hot-deal-inner .list-deal h3 {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--mc-red);
	margin: 0;
	line-height: 1.2;
}
.hot-deal-inner .list-deal span {
	font-size: 13px;
	font-weight: 600;
	color: var(--mc-muted);
}
.hot-deal-inner .price-rate {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	background: var(--mc-dark);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
}
.hot-deal-inner .notes {
	text-align: center;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--mc-border);
}
.hot-deal-inner .notes h4 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--mc-muted);
	margin: 0 0 6px;
}
.hot-deal-inner .notes h3 {
	font-size: 14px;
	font-weight: 800;
	color: var(--mc-red);
	margin: 0;
}
.hot-deal-inner .pro-img {
	text-align: center;
	margin-bottom: 12px;
}
.hot-deal-inner .pro-img img,
.hot-deal-inner .pro-img-1 img {
	max-height: 160px;
	width: auto;
	margin: 0 auto;
	object-fit: contain;
}
.hot-deal-inner .pro-dit {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--mc-muted);
	margin-bottom: 8px;
}
.hot-deal-inner .pro-price {
	text-align: center;
	font-size: 16px;
	margin: 8px 0;
}
.hot-deal-inner .pro-price span {
	font-size: 2rem;
	font-weight: 800;
	color: var(--mc-red);
}
.list-deal h3 { font-weight: 800; margin: 0; }
.price-rate {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--mc-red);
}
.wrk-h {
	font-size: 1.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 28px;
}

/* ── Shop page ── */
.mc-shop-hero {
	background: url("../img/bb.jpg") center/cover no-repeat;
	padding: 48px 0;
	position: relative;
	color: #fff;
}
.mc-shop-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--mc-hero-overlay);
}
.mc-shop-hero .container { position: relative; z-index: 1; }
.mc-shop-hero h1 {
	font-size: var(--mc-h-page);
	font-weight: 800;
	margin: 0 0 14px;
	line-height: 1.15;
}
.mc-shop-hero h1 span { color: #ff6b75; }
.mc-shop-hero__sub {
	font-size: 1rem;
	opacity: 0.9;
	max-width: 560px;
	line-height: 1.65;
	margin: 0 0 24px;
}
.mc-shop-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.mc-shop-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 8px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}
.mc-shop-hero__tag i { color: var(--mc-orange); }

.tyre-catalogue { padding: 48px 0 100px; background: var(--mc-bg); }
body.mc-shop .tyre-catalogue {
	background: linear-gradient(180deg, var(--mc-surface) 0%, var(--mc-surface-raised) 100%);
}
body.mc-inner .mc-section--grey .mc-coming-soon { color: var(--mc-muted-on-dark); }
body.mc-inner .mc-section--grey .mc-coming-soon h2 { color: var(--mc-red-light); }
.tyre-shop-layout { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.tyre-shop-sidebar { flex: 0 0 260px; max-width: 100%; }
.tyre-shop-main { flex: 1; min-width: 0; }

.tyre-filter-panel {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	padding: 22px;
	box-shadow: var(--mc-shadow);
	position: sticky;
	top: calc(var(--mc-topbar-h) + var(--mc-header-h) + 16px);
}
.tyre-filter-panel h3 {
	margin: 0 0 18px;
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--mc-orange);
}
.tyre-filter-panel label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--mc-muted);
}
.tyre-filter-panel .form-control {
	border-radius: 6px;
	border-color: var(--mc-border);
	height: 42px;
	box-shadow: none;
}
.tyre-filter-panel .form-control:focus {
	border-color: var(--mc-red);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.15);
}
.tyre-clear-filters {
	display: block;
	text-align: center;
	margin-top: 10px;
	padding: 10px;
	color: var(--mc-muted) !important;
	font-weight: 600;
	font-size: 13px;
	border: 1px solid var(--mc-border);
	border-radius: 6px;
}
.tyre-clear-filters:hover { border-color: var(--mc-orange); color: var(--mc-orange) !important; }

.tyre-filter-panel__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--mc-bg);
}
.tyre-filter-panel__icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--mc-red), var(--mc-red-dark));
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
}
.tyre-filter-panel .form-group { margin-bottom: 18px; }
.tyre-size-filter-group {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--mc-border);
}
.tyre-size-filter-group__label {
	margin: 0 0 14px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--mc-muted);
}

/* Light panels on dark shop page — force readable dark text */
body.mc-shop .tyre-filter-panel,
body.mc-shop .tyre-results-bar,
body.mc-shop .tyre-product-card.mc-card,
body.mc-shop .tyre-empty-state {
	color: var(--mc-text);
}
body.mc-shop .tyre-filter-panel .form-control,
body.mc-shop .tyre-qty-select {
	color: var(--mc-text);
	background: #fff;
}
body.mc-shop .tyre-results-meta { color: var(--mc-text); font-weight: 600; }
body.mc-shop .tyre-filter-chip { color: var(--mc-text); }
body.mc-shop .tyre-filter-chip a { color: var(--mc-muted); }
body.mc-shop .tyre-filter-chip a:hover { color: var(--mc-orange); }

.tyre-promo-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
	background: linear-gradient(120deg, var(--mc-red) 0%, var(--mc-red-light) 50%, var(--mc-red-dark) 100%);
	color: #fff;
	border-radius: var(--mc-radius-lg);
	padding: 22px 28px;
	box-shadow: 0 8px 28px var(--mc-red-glow);
	position: relative;
	overflow: hidden;
}
.tyre-promo-strip::before {
	content: "B3G1F";
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 72px;
	font-weight: 900;
	opacity: 0.12;
	letter-spacing: -2px;
	color: #fff;
}
.tyre-promo-strip__text { position: relative; z-index: 1; }
.tyre-promo-strip__text h2 {
	margin: 0 0 4px;
	font-size: 1.35rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
}
.tyre-promo-strip__text p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}
.tyre-promo-strip__badge {
	position: relative;
	z-index: 1;
	background: var(--mc-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 10px 18px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.tyre-results-bar {
	background: var(--mc-white);
	padding: 14px 18px;
	border-radius: var(--mc-radius);
	margin-bottom: 20px;
	box-shadow: var(--mc-shadow);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.tyre-results-meta strong { color: var(--mc-orange); font-size: 1.2rem; }
.tyre-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--mc-bg);
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid var(--mc-border);
}
.tyre-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}
.tyre-grid-item { padding: 0 !important; float: none !important; width: auto !important; }

.tyre-product-card.mc-card { display: flex; flex-direction: column; }
.tyre-product-card.mc-card.tyre-card-selected {
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.35), var(--mc-shadow-hover);
}
.tyre-product-card__badges {
	position: absolute;
	top: 10px; left: 10px; right: 10px;
	display: flex;
	justify-content: space-between;
	z-index: 2;
}
.tyre-badge-promo {
	background: var(--mc-orange);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}
.tyre-badge-stock {
	background: var(--mc-dark);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	margin-left: auto;
}
.tyre-product-card__image {
	background: #f0f0f0;
	padding: 20px;
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.tyre-product-card__image img {
	max-height: 100px;
	max-width: 100%;
	object-fit: contain;
}
.tyre-product-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.tyre-product-card__brand {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--mc-orange);
}
.tyre-product-card__size {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 4px 0;
	color: var(--mc-text);
}
.tyre-product-card__model { font-size: 13px; color: var(--mc-muted); margin: 0 0 10px; }
.tyre-product-card__price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 6px;
}
.tyre-product-card__price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--mc-orange);
	line-height: 1;
}
.tyre-product-card__price-note {
	font-size: 11px;
	font-weight: 600;
	color: var(--mc-muted);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.tyre-product-card__fitted {
	font-size: 11px;
	color: #1b9e6b;
	font-weight: 600;
	margin-bottom: 12px;
}
.tyre-product-card__actions {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--mc-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tyre-select-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	margin: 0;
	color: var(--mc-text);
	user-select: none;
}
.tyre-select-toggle input { accent-color: var(--mc-orange); width: 18px; height: 18px; }
.tyre-qty-select {
	width: 50px; height: 34px;
	border: 1px solid var(--mc-border);
	border-radius: 6px;
	font-weight: 600;
}
.tyre-qty-select:disabled { opacity: 0.5; }

.tyre-empty-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 24px;
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	border: 2px dashed var(--mc-border);
}
.tyre-empty-state i {
	font-size: 48px;
	color: var(--mc-border);
	margin-bottom: 16px;
}
.tyre-empty-state h3 {
	font-weight: 800;
	color: var(--mc-text);
	margin-bottom: 8px;
}
.tyre-empty-state p {
	color: var(--mc-muted);
	margin-bottom: 20px;
}

.tyre-cart-bar {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	background: var(--mc-dark);
	color: #fff;
	z-index: 1080;
	border-top: 3px solid var(--mc-orange);
	box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.tyre-cart-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 14px 0;
}
.tyre-cart-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.tyre-cart-icon-wrap {
	width: 40px; height: 40px;
	background: rgba(227, 6, 19, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mc-orange);
}
#tyre-cart-total { font-size: 1.4rem; font-weight: 800; color: var(--mc-orange); }

/* ── Content pages ── */
.mc-content { padding: 50px 0 60px; }
.mc-content .title {
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.mc-content .title::after {
	content: "";
	display: block;
	width: 50px; height: 3px;
	background: var(--mc-orange);
	margin-top: 10px;
}
.abt-sec { padding: 50px 0; }
.abt p { line-height: 1.75; color: var(--mc-muted); }

.gal-container { padding: 12px 0; }
.gal-item { overflow: hidden; padding: 8px; }
.gal-item .box {
	height: 280px;
	overflow: hidden;
	border-radius: var(--mc-radius);
	position: relative;
	box-shadow: var(--mc-shadow);
}
.gal-item .box img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.gal-item a:hover .box img { transform: scale(1.05); }
.gal-item a::after {
	content: "\f00e";
	font-family: FontAwesome;
	opacity: 0;
	background: rgba(0,0,0,0.55);
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
	transition: opacity 0.3s;
	border-radius: var(--mc-radius);
}
.gal-item a { position: relative; display: block; }
.gal-item a:hover::after { opacity: 1; }

.tyr-hd {
	font-size: var(--mc-h-card);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--mc-text);
	margin: 24px 0 12px;
}
.content p, .content ul li {
	line-height: 1.7;
	font-size: 15px;
	color: var(--mc-muted);
}
.content ul { padding-left: 20px; margin-bottom: 20px; }
.web-color { color: var(--mc-orange); }
.border {
	width: 100%;
	float: left;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--mc-border);
	margin-bottom: 24px;
}
.tips-img img { border-radius: var(--mc-radius); box-shadow: var(--mc-shadow); }

.mc-coming-soon {
	text-align: center;
	padding: 80px 20px;
	color: var(--mc-muted);
}
.mc-coming-soon i {
	display: block;
	font-size: 48px;
	color: var(--mc-red);
	margin-bottom: 20px;
	opacity: 0.85;
}
.mc-coming-soon h2 {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--mc-orange);
	margin: 0 0 12px;
	font-size: var(--mc-h-section);
}
.mc-coming-soon p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}
.mc-section--dark .mc-coming-soon { color: rgba(255, 255, 255, 0.72); }
.mc-section--dark .mc-coming-soon h2 { color: var(--mc-red-light); }

/* ── Contact page ── */
.mc-contact-layout { display: flex; flex-wrap: wrap; gap: 28px; }
.mc-contact-form-wrap { flex: 1; min-width: 280px; }
.mc-contact-info-wrap { flex: 0 0 300px; max-width: 100%; }
.mc-contact-form {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	padding: 32px 28px;
	box-shadow: var(--mc-shadow);
	border-top: 3px solid var(--mc-red);
}
.mc-contact-form .form-group label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--mc-muted);
}
.mc-contact-form .form-control {
	border-radius: 6px;
	border-color: var(--mc-border);
	box-shadow: none;
	height: 42px;
}
.mc-contact-form textarea.form-control { height: auto; min-height: 160px; }
.mc-contact-form .form-control:focus {
	border-color: var(--mc-red);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}
.mc-contact-form .input-group-addon {
	background: var(--mc-bg);
	border-color: var(--mc-border);
	color: var(--mc-red);
}
.mc-contact-info {
	background: linear-gradient(165deg, #1a1a1a 0%, var(--mc-dark-band) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--mc-radius-lg);
	padding: 32px 26px;
	color: #fff;
	height: 100%;
	border-top: 3px solid var(--mc-red);
	box-shadow: var(--mc-shadow-hover);
}
.mc-contact-info h3 {
	margin: 0 0 24px;
	font-size: var(--mc-h-card);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}
.mc-contact-info h3 i { color: var(--mc-red-light); margin-right: 8px; }
.mc-contact-info__block { margin-bottom: 22px; }
.mc-contact-info__block:last-child { margin-bottom: 0; }
.mc-contact-info__block strong {
	display: block;
	font-size: var(--mc-h-eyebrow);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 8px;
}
.mc-contact-info__block p,
.mc-contact-info__block address {
	margin: 0;
	font-style: normal;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
}
.mc-contact-info a {
	color: var(--mc-red-light) !important;
	font-weight: 600;
}
.mc-contact-info a:hover { color: #fff !important; }

/* ── Checkout ── */
.mc-checkout { padding: 40px 0 60px; background: var(--mc-bg); }
.mc-checkout-panel {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: var(--mc-shadow);
}
body.mc-inner .mc-checkout-panel {
	color: var(--mc-text);
}
body.mc-inner .mc-checkout-panel label {
	color: var(--mc-muted);
	font-weight: 700;
}
body.mc-inner .mc-checkout-panel .form-control {
	color: var(--mc-text);
	background: #fff;
}
.mc-checkout-panel h3 {
	margin-top: 0;
	font-weight: 800;
	color: var(--mc-text);
}
.mc-checkout-item {
	border: 1px dashed var(--mc-border);
	border-radius: var(--mc-radius);
	padding: 12px;
	margin-bottom: 10px;
	background: var(--mc-bg);
}
.mc-checkout-item h4 {
	margin: 0 0 5px;
	color: var(--mc-orange);
	font-weight: 800;
}
.mc-checkout-total-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	font-weight: 600;
}
.mc-checkout-total-row.grand {
	border-top: 2px solid var(--mc-orange);
	margin-top: 10px;
	padding-top: 12px;
	font-size: 20px;
	font-weight: 800;
}
.mc-checkout-total-row.grand span:last-child { color: var(--mc-orange); }
.mc-payment-options { margin: 20px 0; }
.mc-payment-option {
	display: block;
	background: var(--mc-white);
	border: 2px solid var(--mc-border);
	border-radius: var(--mc-radius);
	padding: 16px 18px;
	margin-bottom: 12px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.mc-payment-option:hover { border-color: var(--mc-orange); }
.mc-payment-option.active {
	border-color: var(--mc-orange);
	box-shadow: 0 0 0 1px var(--mc-orange);
}
.mc-payment-option--disabled {
	opacity: 0.72;
	cursor: not-allowed;
	pointer-events: none;
	background: var(--mc-bg);
}
.mc-payment-option--disabled .mc-payment-option-desc {
	color: var(--mc-muted);
}
.mc-payment-soon-badge {
	display: inline-block;
	background: var(--mc-dark-band);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 3px;
	margin-left: 8px;
	vertical-align: middle;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.mc-payment-option input { margin-right: 10px; }
.mc-payment-option-title {
	font-weight: 800;
	font-size: 16px;
	color: var(--mc-text);
}
.mc-payment-option-desc {
	margin: 6px 0 0 24px;
	color: var(--mc-muted);
	font-size: 14px;
}
.mc-payment-note {
	font-size: 13px;
	color: var(--mc-muted);
	margin-top: 10px;
}
.mc-stripe-badge {
	display: inline-block;
	background: #635bff;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 3px;
	margin-left: 6px;
	vertical-align: middle;
}
.mc-result-box {
	background: var(--mc-white);
	border-radius: var(--mc-radius-lg);
	padding: 40px 28px;
	max-width: 700px;
	margin: 0 auto;
	box-shadow: var(--mc-shadow);
	color: var(--mc-text);
	border-top: 4px solid var(--mc-red);
}
body.mc-inner .mc-result-box {
	color: var(--mc-text);
}
.mc-result-box h2 {
	font-weight: 800;
	color: var(--mc-text);
	margin: 0 0 16px;
	font-size: var(--mc-h-card);
}
.mc-result-box p {
	color: var(--mc-muted);
	line-height: 1.65;
	margin: 0 0 12px;
}
.mc-result-box p strong,
.mc-result-box strong {
	color: var(--mc-text);
}
.mc-result-box .order-total {
	font-size: 2rem;
	font-weight: 800;
	color: var(--mc-red);
	margin: 18px 0 24px;
	line-height: 1.1;
}
.mc-result-box--success h2 {
	color: var(--mc-red);
}
.mc-result-box--success::before {
	content: "\f058";
	font-family: FontAwesome;
	display: block;
	font-size: 2.5rem;
	color: var(--mc-red);
	margin-bottom: 12px;
	line-height: 1;
}

/* ── Footer ── */
.mc-footer {
	background: var(--mc-dark);
	color: rgba(255,255,255,0.8);
	padding: 56px 0 0;
}
.mc-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mc-footer__brand img { max-width: 200px; margin-bottom: 14px; }
.mc-footer__brand p { font-size: 14px; line-height: 1.65; opacity: 0.75; }
.mc-footer__more { color: var(--mc-orange) !important; font-weight: 600; }
.mc-footer__col h3 {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	margin: 0 0 16px;
}
.mc-footer__list, .mc-footer__links {
	list-style: none;
	margin: 0; padding: 0;
	font-size: 14px;
}
.mc-footer__list li { margin-bottom: 10px; display: flex; gap: 10px; }
.mc-footer__list i { color: var(--mc-orange); width: 16px; margin-top: 3px; }
.mc-footer__list a, .mc-footer__links a { color: rgba(255,255,255,0.75) !important; }
.mc-footer__list a:hover, .mc-footer__links a:hover { color: var(--mc-orange) !important; }
.mc-footer__links li { margin-bottom: 8px; }
.mc-footer__map iframe { width: 100%; height: 140px; border: 0; border-radius: var(--mc-radius); }
.mc-footer__bottom { padding: 18px 0; text-align: center; font-size: 12px; opacity: 0.5; }

/* ── Floating buttons ── */
.mc-fab-stack {
	position: fixed;
	right: 20px; bottom: 24px;
	z-index: 1070;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: bottom 0.3s;
}
.mc-fab-stack--cart { bottom: 96px; }
.mc-fab {
	width: 48px; height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-size: 18px;
	border: none;
	cursor: pointer;
	box-shadow: var(--mc-shadow);
	transition: transform 0.2s;
}
.mc-fab:hover { transform: translateY(-2px) scale(1.05); color: #fff !important; }
.mc-fab--phone { background: var(--mc-dark-soft); border: 1px solid rgba(227, 6, 19, 0.35); }
.mc-fab--wa { background: #25d366; }
.mc-fab--shop { background: var(--mc-orange); }
.mc-fab--top { background: var(--mc-orange-dark); }

.tyre-floating-buy {
	position: fixed;
	right: 20px; bottom: 24px;
	z-index: 1060;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--mc-orange);
	color: #fff !important;
	padding: 12px 20px;
	border-radius: 50px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	box-shadow: 0 6px 20px var(--mc-orange-glow);
}

/* ── Scroll reveal ── */
.mc-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
.mc-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.mc-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Brands marquee ── */
.mc-brands-marquee {
	background: var(--mc-dark);
	padding: 0 0 40px;
	overflow: hidden;
}
.mc-brands-marquee__head {
	padding: 28px 0 20px;
	border-top: 3px solid var(--mc-red);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mc-brands-marquee__title {
	margin: 0;
	text-align: center;
	font-size: var(--mc-h-section);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	line-height: 1.15;
}
.mc-brands-marquee__title::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--mc-red);
	margin: 12px auto 0;
}
.mc-brands-marquee__viewport {
	overflow: hidden;
	padding: 28px 0;
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.mc-brands-marquee__track {
	display: flex;
	width: max-content;
	animation: mc-brands-scroll 40s linear infinite;
}
.mc-brands-marquee__track:hover {
	animation-play-state: paused;
}
.mc-brands-marquee__group {
	display: flex;
	align-items: center;
	gap: 56px;
	padding: 0 28px;
}
.mc-brands-marquee__logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 72px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--mc-radius);
	transition: border-color 0.2s, background 0.2s;
}
.mc-brands-marquee__logo:hover {
	border-color: rgba(227, 6, 19, 0.45);
	background: rgba(227, 6, 19, 0.08);
}
.mc-brands-marquee__logo img {
	max-width: 100%;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(1.05);
}
@keyframes mc-brands-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.mc-brands-marquee__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
		gap: 16px;
	}
	.mc-brands-marquee__viewport {
		mask-image: none;
		-webkit-mask-image: none;
	}
	.mc-brands-marquee__group[aria-hidden="true"] { display: none; }
}

/* ── Brands carousel (legacy) ── */
.brands { padding: 50px 0; background: var(--mc-white); }

/* ── Responsive ── */
@media (min-width: 768px) {
	.mc-header__toggle { display: none !important; }
	.mc-header__nav {
		position: static !important;
		transform: none !important;
		background: transparent !important;
		padding: 0 !important;
		overflow: visible !important;
		display: flex !important;
		justify-content: center;
	}
	.mc-nav {
		flex-direction: row !important;
		align-items: center !important;
		flex-wrap: nowrap;
	}
	.mc-nav__sub {
		position: absolute !important;
		opacity: 0;
		visibility: hidden;
		padding-left: 0 !important;
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
	}
}

@media (min-width: 768px) and (max-width: 1100px) {
	.mc-logo { height: 42px; max-width: 140px; }
	.mc-nav > li > a { padding: 8px 8px; font-size: 11px; letter-spacing: 0; }
	.mc-header__cta { padding: 8px 14px; font-size: 11px; }
	.mc-header__inner { gap: 8px 10px; }
}

@media (max-width: 767px) {
	.mc-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas: "brand toggle";
	}
	.mc-header__toggle { display: flex; }
	.mc-header__nav {
		position: fixed;
		top: calc(var(--mc-topbar-h) + var(--mc-header-h));
		left: 0; right: 0; bottom: 0;
		z-index: 1085;
		background: var(--mc-dark);
		padding: 20px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.28s;
		justify-content: flex-start;
		display: flex;
	}
	.mc-header__nav.is-open { transform: translateX(0); }
	.mc-nav { flex-direction: column; align-items: stretch; width: 100%; }
	.mc-nav > li > a { padding: 14px 16px; font-size: 14px; }
	.mc-nav__sub {
		position: static;
		opacity: 1; visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 12px;
	}
	.mc-header__cta.hidden-xs { display: none !important; }
	.mc-topbar__sep, .mc-topbar__left span:first-child { display: none; }
}

@media (max-width: 991px) {
	.mc-split,
	.mc-about-split { grid-template-columns: 1fr; }
	.mc-about-split__media { position: static; }
	.mc-values-grid,
	.mc-about-stats { grid-template-columns: 1fr; }
	.mc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.mc-footer__grid { grid-template-columns: 1fr 1fr; }
	.tyre-shop-sidebar { flex: 1 1 100%; }
	.tyre-filter-panel { position: static; }
}
@media (max-width: 600px) {
	.mc-footer__grid { grid-template-columns: 1fr; }
	.tyre-products-grid { grid-template-columns: 1fr; }
	.mc-gallery-grid { grid-template-columns: 1fr; }
	#mogo-slider .carousel-indicators { flex-wrap: wrap; }
}
