/* ============================================================
   Magistral Təkər — assets/css/main.css
   Psixologiya: Meşə yaşılı = güvən · Krem = rahatlıq · Ağ = təmizlik
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Dəyişənlər ── */
:root {
  --meseye:    #1C3A1C;
  --orta:      #2D5A2D;
  --aciq:      #4A7C4A;
  --yarpag:    #7FA67F;
  --nazik:     #C8DFC8;
  --krem:      #F2F0EB;
  --isiti:     #E8E3DC;
  --isti2:     #DDD7CE;
  --ag:        #FFFFFF;
  --qara:      #1A1A1A;
  --boz:       #6B7A6B;
  --boz2:      #9AA89A;
  --wa:        #25D366;
  --xeta:      #DC2626;
  --r8:        8px;
  --r12:       12px;
  --r16:       16px;
  --r20:       20px;
  --golge:     0 4px 20px rgba(28, 58, 28, 0.10);
  --golge-lg:  0 12px 40px rgba(28, 58, 28, 0.15);
}

/* ── Tipografiya ── */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--krem);
  color: var(--qara);
  line-height: 1.6;
}
h1,h2,h3,h4,h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -.3px;
}

/* ── Konteyner ── */
.mt-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.mt-header {
  background: var(--meseye);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.mt-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

/* Logo — şəkil varsa */
.mt-logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.mt-logo-wrap a { display: flex; align-items: center; }
.mt-logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Logo — şəkil yoxdursa mətn göstər */
.mt-logo-text-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.mt-logo-text-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.1;
}
.mt-logo-text-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--nazik);
  letter-spacing: .4px;
  line-height: 1;
  margin-top: 2px;
}

/* Nav */
.mt-nav { margin-left: auto; }
.mt-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.mt-nav-list a {
  color: var(--nazik);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r8);
  transition: background .15s, color .15s;
  letter-spacing: .1px;
}
.mt-nav-list a:hover,
.mt-nav-list .current-menu-item > a,
.mt-nav-list .current-page-item > a {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* WhatsApp düyməsi */
.mt-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: var(--r8);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s;
}
.mt-btn-wa:hover { opacity: .88; color: #fff; }
.mt-btn-wa svg { fill: #fff; flex-shrink: 0; }

/* Hamburger (mobil) */
.mt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.mt-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mt-hamburger.mt-aciq span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mt-hamburger.mt-aciq span:nth-child(2) { opacity: 0; }
.mt-hamburger.mt-aciq span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobil nav açıq halı */
@media (max-width: 768px) {
  .mt-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--meseye);
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 199;
    margin-left: 0;
  }
  .mt-nav.mt-nav-aciq { display: block; }
  .mt-nav-list { flex-direction: column; gap: 2px; padding: 0 16px; }
  .mt-nav-list a { display: block; padding: 10px 14px; }
  .mt-hamburger { display: flex; }
  .mt-header-wa span { display: none; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.mt-hero {
  background: var(--meseye);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
/* Dekorativ dairələr */
.mt-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 480px;
  height: 480px;
  border: 90px solid rgba(200,223,200,.04);
  border-radius: 50%;
  pointer-events: none;
}
.mt-hero::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(200,223,200,.03);
  border-radius: 50%;
  pointer-events: none;
}

.mt-hero-content { margin-bottom: 36px; }
.mt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,223,200,.1);
  border: 1px solid rgba(200,223,200,.2);
  color: var(--nazik);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.mt-hero-dot {
  width: 6px;
  height: 6px;
  background: var(--wa);
  border-radius: 50%;
  animation: mt-pulse 2s ease infinite;
}
@keyframes mt-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.mt-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.mt-hero-title em {
  color: var(--yarpag);
  font-style: normal;
}
.mt-hero-sub {
  color: var(--yarpag);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 440px;
}

/* ── Axtarış Kartı ── */
.mt-search-card {
  background: var(--ag);
  border-radius: var(--r20);
  padding: 28px;
  box-shadow: var(--golge-lg);
  max-width: 700px;
}
.mt-search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.mt-field { display: flex; flex-direction: column; gap: 6px; }
.mt-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--boz);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.mt-field-unit { font-weight: 400; }
.mt-field select {
  background: var(--krem);
  border: 1.5px solid var(--isiti);
  color: var(--qara);
  padding: 12px 14px;
  border-radius: var(--r8);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7A6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.mt-field select:focus {
  border-color: var(--orta);
  box-shadow: 0 0 0 3px rgba(45,90,45,.1);
}
.mt-season-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mt-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--isiti);
  background: var(--krem);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--boz);
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.mt-pill:hover { border-color: var(--orta); color: var(--meseye); }
.mt-pill-active { background: var(--meseye); border-color: var(--meseye); color: #fff; }
.mt-btn-axtar {
  width: 100%;
  background: var(--orta);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--r12);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .15s, transform .1s;
}
.mt-btn-axtar:hover  { background: var(--meseye); }
.mt-btn-axtar:active { transform: scale(.99); }

/* ══════════════════════════════════════════════════
   BÖLMƏ
══════════════════════════════════════════════════ */
.mt-section { padding: 44px 0; }
.mt-section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.mt-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--qara);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mt-section-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--orta);
  border-radius: 2px;
}
.mt-natice-sayi {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--boz);
}
.mt-btn-sifirla {
  font-size: 12px;
  font-weight: 600;
  color: var(--orta);
  background: none;
  border: 1px solid var(--isiti);
  padding: 6px 14px;
  border-radius: var(--r8);
  transition: all .15s;
}
.mt-btn-sifirla:hover { background: var(--krem); border-color: var(--orta); }

/* ══════════════════════════════════════════════════
   LASTIK GRİD
══════════════════════════════════════════════════ */
.mt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 16px;
}

/* ══════════════════════════════════════════════════
   LASTIK KARTI
══════════════════════════════════════════════════ */
.mt-kart {
  background: var(--ag);
  border: 1.5px solid var(--isiti);
  border-radius: var(--r16);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.mt-kart:hover {
  border-color: var(--orta);
  transform: translateY(-4px);
  box-shadow: var(--golge-lg);
}
.mt-kart:focus-visible {
  outline: 3px solid var(--orta);
  outline-offset: 2px;
}
.mt-kart-foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--krem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mt-kart-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mt-kart:hover .mt-kart-foto img { transform: scale(1.06); }
.mt-kart-foto-ph svg { fill: #C5D4C5; width: 54px; height: 54px; }

.mt-kart-govde { padding: 14px 16px; }
.mt-kart-brend {
  font-size: 10px;
  font-weight: 700;
  color: var(--orta);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.mt-kart-ad {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--qara);
  margin-bottom: 4px;
  line-height: 1.3;
}
.mt-kart-olcu {
  font-size: 12px;
  color: var(--boz);
  margin-bottom: 10px;
}

/* Stok nişanəsi */
.mt-stok {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.mt-stok-var      { background: #DCEFDC; color: #1A4A1A; }
.mt-stok-az       { background: #FEF3E2; color: #7A4A0A; }
.mt-stok-sifarish { background: #E8F0FE; color: #1A3A7A; }
.mt-stok-yoxdur   { background: #FDE8E8; color: #7A1A1A; }

.mt-kart-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mt-kart-qiymet {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--meseye);
  line-height: 1;
}
.mt-kart-qiymet small {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--boz2);
  font-weight: 400;
}
.mt-kart-qiymet-yox {
  font-size: 12px;
  color: var(--boz);
}
.mt-kart-wa {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: var(--r8);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 600;
  transition: opacity .15s;
  font-family: 'DM Sans', sans-serif;
}
.mt-kart-wa:hover { opacity: .85; }
.mt-kart-wa svg { fill: #fff; }

/* ── Boş vəziyyət ── */
.mt-bos {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px 24px;
  color: var(--boz);
}
.mt-bos svg { fill: #C5D4C5; display: block; margin: 0 auto 16px; }
.mt-bos h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--qara);
}
.mt-bos p { font-size: 13px; }

/* ── Yüklənmə ── */
.mt-yukleme-durum {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px;
  color: var(--boz);
  gap: 14px;
  font-size: 14px;
}
.mt-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--isiti);
  border-top-color: var(--orta);
  border-radius: 50%;
  animation: mt-don .7s linear infinite;
}
@keyframes mt-don { to { transform: rotate(360deg); } }

/* ── Səhifələmə ── */
.mt-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 28px 0 8px;
  flex-wrap: wrap;
}
.mt-sehife-btn {
  background: var(--ag);
  border: 1.5px solid var(--isiti);
  color: var(--qara);
  padding: 8px 18px;
  border-radius: var(--r8);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .15s;
}
.mt-sehife-btn.mt-aktiv,
.mt-sehife-btn:hover {
  background: var(--meseye);
  border-color: var(--meseye);
  color: #fff;
}

/* ══════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════ */
.mt-modal-perde {
  position: fixed;
  inset: 0;
  background: rgba(20,32,20,.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  padding: 0;
  opacity: 0;
  transition: opacity .25s;
}
.mt-modal-perde.mt-aciq { opacity: 1; }

.mt-modal {
  background: var(--ag);
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translateY(48px);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
}
.mt-modal-perde.mt-aciq .mt-modal { transform: translateY(0); }

/* Bağla düyməsi */
.mt-modal-bagla {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
}
.mt-modal-bagla:hover { background: rgba(255,255,255,.28); }

/* Qalereya */
.mt-modal-qalereya {
  background: var(--meseye);
  padding: 20px 20px 0;
  display: flex;
  gap: 10px;
}
.mt-modal-ana-foto {
  flex: 1;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--orta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-modal-ana-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mt-modal-foto-ph svg { fill: var(--aciq); width: 72px; height: 72px; }
.mt-modal-kiccik-fotolar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mt-modal-kf {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.15);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--orta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s;
}
.mt-modal-kf img { width:100%; height:100%; object-fit:cover; }
.mt-modal-kf.mt-aktiv { border-color: var(--nazik); }
.mt-modal-kf svg { fill: var(--aciq); width:20px; height:20px; }

/* Modal məlumat bölməsi */
.mt-modal-melumat { padding: 22px; }
.mt-modal-brend {
  font-size: 10px;
  font-weight: 700;
  color: var(--orta);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mt-modal-ad {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--qara);
  margin-bottom: 4px;
}
.mt-modal-olcu {
  font-size: 13px;
  color: var(--boz);
  margin-bottom: 18px;
}
.mt-modal-xususiyyetler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.mt-xus-qutu {
  background: var(--krem);
  border-radius: 10px;
  padding: 10px 13px;
}
.mt-xus-ad {
  font-size: 10px;
  color: var(--boz);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 3px;
}
.mt-xus-deger {
  font-size: 13px;
  font-weight: 600;
  color: var(--qara);
}
.mt-modal-nishaner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.mt-nishaner {
  background: var(--krem);
  border: 1px solid var(--isiti);
  color: var(--orta);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
}
.mt-modal-aciklama {
  font-size: 13px;
  color: var(--boz);
  line-height: 1.65;
  margin-bottom: 18px;
}
.mt-modal-qiymet-satirr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.mt-modal-qiymet {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--meseye);
  line-height: 1;
}
.mt-modal-qiymet small {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--boz);
  font-weight: 400;
}

/* WA böyük düymə */
.mt-btn-wa-boyuk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 15px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: opacity .15s;
}
.mt-btn-wa-boyuk:hover { opacity: .88; color: #fff; }
.mt-btn-wa-boyuk svg { fill: #fff; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.mt-footer {
  background: var(--meseye);
  color: var(--yarpag);
  margin-top: 64px;
}
.mt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0 40px;
}
.mt-footer-logo {
  margin-bottom: 14px;
}
.mt-footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.mt-footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.mt-footer-desc {
  font-size: 13px;
  color: #7A9A7A;
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}
.mt-footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  margin-bottom: 14px;
}
.mt-footer-nav { list-style: none; }
.mt-footer-nav li { margin-bottom: 8px; }
.mt-footer-nav a {
  font-size: 13px;
  color: #7A9A7A;
  transition: color .15s;
  font-weight: 300;
}
.mt-footer-nav a:hover { color: var(--nazik); }
.mt-footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r8);
  font-size: 13px;
  font-weight: 600;
  transition: opacity .15s;
  margin-bottom: 10px;
}
.mt-footer-wa-btn:hover { opacity: .88; color: #fff; }
.mt-footer-wa-btn svg { fill: #fff; }
.mt-footer-wa-num {
  font-size: 13px;
  color: #7A9A7A;
  margin-top: 6px;
}
.mt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
  font-size: 12px;
  color: rgba(200,223,200,.35);
}
.mt-footer-bottom .mt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════════
   SƏHİFƏ MƏZMUİ (non-shortcode)
══════════════════════════════════════════════════ */
.mt-page-content {
  padding: 48px 0;
  max-width: 780px;
}
.mt-page-content h1,
.mt-page-content h2 { margin-bottom: .75em; }
.mt-page-content p  { margin-bottom: 1em; color: #4A5A4A; }

/* ══════════════════════════════════════════════════
   RESPONSİV
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .mt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .mt-search-fields { grid-template-columns: 1fr 1fr; }
  .mt-search-card   { padding: 20px; }
  .mt-hero          { padding: 36px 0 36px; }
  .mt-grid          { grid-template-columns: repeat(auto-fill, minmax(155px,1fr)); gap: 12px; }
  .mt-footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .mt-modal         { border-radius: 18px 18px 0 0; }
  .mt-modal-qalereya{ padding: 16px 16px 0; }
  .mt-modal-ana-foto{ height: 150px; }
  .mt-section { padding: 32px 0; }
}
@media (max-width: 420px) {
  .mt-search-fields { grid-template-columns: 1fr; }
  .mt-season-row    { gap: 6px; }
  .mt-pill          { font-size: 11px; padding: 7px 12px; }
}
