:root {
  --bg: #0b1120;
  --bg-soft: #020617;
  --bg-card: #020617;
  --bg-elevated: #0f172a;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --accent-2: #a855f7;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(148, 163, 184, 0.4);
  --radius-lg: 1.4rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.9);
  --transition: 0.2s ease-out;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #1e293b 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #0369a1 0, transparent 60%),
    var(--bg-soft);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.mt-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mt-main {
  min-height: 60vh;
}

/* Header */

.mt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.mt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.mt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.mt-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 1.2rem;
  background:
    conic-gradient(from 150deg, #38bdf8, #a855f7, #22c55e, #38bdf8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.7);
}

.mt-logo-icon {
  background: #020617;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.mt-logo-text {
  display: flex;
  flex-direction: column;
}

.mt-logo-title {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mt-logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.mt-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.mt-nav a {
  color: var(--muted);
  position: relative;
  padding: 0.2rem 0;
}

.mt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition);
}

.mt-nav a:hover {
  color: var(--text);
}

.mt-nav a:hover::after {
  width: 100%;
}

.mt-nav-toggle {
  display: none;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.mt-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin: 3px 0;
}

/* Hero */

.mt-hero {
  padding: 2.6rem 0 2.2rem;
}

.mt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
}

.mt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.mt-hero-copy h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.1rem, 3.3vw, 2.7rem);
  letter-spacing: 0.02em;
}

.mt-hero-lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.mt-search-bar {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.mt-search-bar input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  font: inherit;
  background: #020617;
  color: var(--text);
}

.mt-search-bar input::placeholder {
  color: #6b7280;
}

.mt-search-bar input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.mt-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.mt-hero-list li + li {
  margin-top: 0.18rem;
}

.mt-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 0.9rem;
  align-items: stretch;
}

.mt-hero-main-card {
  border-radius: 1.4rem;
  overflow: hidden;
  background: radial-gradient(circle at top left, #0ea5e9, #1f2937);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.mt-hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-hero-stack {
  display: grid;
  gap: 0.7rem;
}

.mt-hero-mini {
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
}

.mt-hero-mini img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.mt-hero-mini figcaption {
  padding: 0.4rem 0.7rem 0.6rem;
  color: var(--muted);
}

/* Sections & layout */

.mt-section {
  padding: 3rem 0;
}

.mt-section-alt {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 60%);
}

.mt-section-header {
  margin-bottom: 1.5rem;
}

.mt-section-header h1,
.mt-section-header h2 {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.mt-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mt-section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

h2 {
  font-size: 1.35rem;
}

h3 {
  font-size: 1.05rem;
}

/* Buttons */

.mt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.mt-btn-primary {
  background: linear-gradient(125deg, var(--accent), var(--accent-2));
  color: #0b1120;
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.65);
}

.mt-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.mt-btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text);
}

.mt-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* Grids & cards */

.mt-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.mt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.mt-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.mt-grid-align-top {
  align-items: flex-start;
}

.mt-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.2rem;
  font-size: 0.9rem;
}

.mt-card h2,
.mt-card h3 {
  margin-top: 0;
}

.mt-card p {
  margin: 0.3rem 0 0.7rem;
  color: var(--muted);
}

.mt-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.mt-cat-grid .mt-tile {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.mt-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-bottom: 0.5rem;
}

/* Products */

.mt-product-grid {
  align-items: stretch;
}

.mt-product-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mt-product-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.mt-product-body {
  padding: 0.9rem 1rem 1rem;
}

.mt-product-body h2,
.mt-product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.mt-product-body p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.mt-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mt-price {
  font-weight: 600;
  color: var(--accent);
}

/* Deals */

.mt-deal-card {
  border-left: 3px solid var(--accent);
}

/* Map */

.mt-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 1.1rem;
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.mt-map-large iframe {
  height: 260px;
}

/* Filter */

.mt-filter-bar {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.85rem;
}

.mt-filter-bar select {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #020617;
  color: var(--text);
  padding: 0.35rem 0.9rem;
  font: inherit;
}

/* Links */

.mt-link-inline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.mt-link-inline::after {
  content: "↗";
  margin-left: 0.25rem;
}

/* Contact */

.mt-contact-form {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem;
  font-size: 0.9rem;
}

.mt-form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.mt-form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
}

.mt-contact-form input,
.mt-contact-form select,
.mt-contact-form textarea {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.8rem;
  font: inherit;
  background: #020617;
  color: var(--text);
}

.mt-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.mt-contact-form input:focus,
.mt-contact-form select:focus,
.mt-contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.mt-form-note {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */

.mt-footer {
  margin-top: 2.6rem;
  background: #020617;
  color: #e5e7eb;
}

.mt-footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  padding: 1.8rem 0 1.2rem;
  font-size: 0.9rem;
}

.mt-footer-col h3,
.mt-footer-col h4 {
  margin-top: 0;
}

.mt-footer-col p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.mt-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mt-footer-col li + li {
  margin-top: 0.25rem;
}

.mt-footer a {
  color: #e5e7eb;
}

.mt-footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  text-align: center;
  padding: 0.8rem 0 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Cookie banner */

.mt-cookie {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 980px;
  width: 100%;
  background: #020617;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  z-index: 50;
}

.mt-cookie-text p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.mt-cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.mt-cookie-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

.mt-cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.38rem 1.1rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.mt-cookie-btn-primary {
  background: linear-gradient(125deg, var(--accent), var(--accent-2));
  color: #020617;
}

.mt-cookie-btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.8);
}

.mt-cookie-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
}

.mt-cookie--hidden {
  display: none !important;
}

/* General */

ul {
  padding-left: 1.1rem;
}

.mt-section p {
  margin-bottom: 0.7rem;
}
