/*
Theme Name: Map-new
Theme URI: https://map724.com
Author: معید ایگدری
Author URI: معید - 
Description: قالب اختصاصی فروشگاهی MAP724
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: map724.com
*/

:root {
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --brand-soft: rgba(37, 99, 235, 0.1);
  --accent: #ff5023;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink2: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.06);
  --header-h: 70px;
  --font: 'IRANSans', 'IRANYekan', 'Vazirmatn', Tahoma, sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.map-container {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}

.map-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.map-head {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}
.map-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.map-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  font-weight: 600;
}
.map-nav a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--muted);
}
.map-nav a:hover,
.map-nav .current-menu-item > a {
  color: var(--brand);
  background: var(--brand-soft);
}
.map-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(300px, 28vw);
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0 14px;
  margin-right: auto;
  transition: var(--transition);
}
.map-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.map-search span { color: var(--muted); }
.map-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.map-search input::placeholder { color: var(--muted); }
.map-actions { display: flex; gap: 8px; }
.map-action {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--ink2);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.map-action:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.map-action.cart { position: relative; }
.map-action.cart::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.map-menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 20px;
}

.map-main { min-height: 50vh; padding-bottom: 100px; }
/* Hero Slider - Modern */
.map-hero {
  padding: 16px 0 8px;
}

.map-slider {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.map-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-position: center;
  background-size: cover;
}

.map-slide.active {
  opacity: 1;
  z-index: 1;
}

.map-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,0.15) 0%, rgba(15,23,42,0.78) 70%);
}

.map-slide-details {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(380px, 45%);
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  color: var(--ink);
}

.map-slide-details b {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.map-slide-details h1 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--ink);
}

.map-slide-details span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.map-slide-details .map-btn {
  height: 42px;
  padding: 0 20px;
  font-size: 13px;
  border-radius: 11px;
}

.map-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: all 0.25s ease;
}

.map-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}

/* موبایل اسلایدر */
@media (max-width: 768px) {
  .map-hero {
    padding: 10px 0 4px;
  }

  .map-slider {
    height: 280px;
    border-radius: 16px;
  }

  .map-slide-details {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .map-slide-details h1 {
    font-size: 17px;
  }

  .map-slide-details span {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .map-slide-details .map-btn {
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .map-dots {
    bottom: 12px;
  }
}
.map-btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 26px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
}
.map-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
}
.map-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.map-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.map-dot.active { background: #fff; transform: scale(1.25); }

.map-section { padding: 44px 0; }
.map-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.map-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-bottom: 8px;
}
.map-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}
.map-more {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

.icon-box-5-wrap .icons-box {
  display: flex !important;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.icon-box-5-wrap .icon-box {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 18px 12px !important;
  transition: var(--transition) !important;
  min-width: 118px;
  flex: 1 1 118px;
  max-width: 150px;
  box-shadow: var(--shadow-soft);
}
.icon-box-5-wrap .icon-box:hover,
.icon-box-5-wrap .icon-box.active {
  border-color: var(--brand) !important;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}
.icon-box-5-wrap .item-icon-box .image-container {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--brand-soft);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.icon-box-5-wrap .item-icon-box img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
}
.icon-box-5-wrap .icon-box-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  text-align: center;
}

.map-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
}
.map-card-image {
  display: block;
  height: 210px;
  background: #f8fafc;
  overflow: hidden;
}
.map-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.map-card:hover .map-card-image img { transform: scale(1.05); }
.map-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
}
.map-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.map-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.map-card-title:hover { color: var(--brand); }
.map-price {
  margin-top: auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
}
.map-price del {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.map-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.map-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.map-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 20px;
  flex-shrink: 0;
}
.map-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.map-feature span {
  font-size: 13px;
  color: var(--muted);
}
.map-social-dock { display: none; }
.map-search-trigger, .map-search-modal { display: none; }

.map-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 0 110px;
  margin-top: 30px;
}
.map-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}
.map-footer h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}
.map-footer a { color: #94a3b8; font-size: 13.5px; }
.map-footer a:hover { color: #93c5fd; }
.map-footer ul li { margin-bottom: 11px; }
.map-footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
/* Mobile Bottom Bar - Modern Glass */
.map-mobilebar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
  padding: 0 6px;
}

.map-mobilebar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.22s ease;
  position: relative;
}

.map-mobilebar a .map-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.map-mobilebar a span {
  line-height: 1;
}

.map-mobilebar a.active,
.map-mobilebar a:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.map-mobilebar .cart-count {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-18px);
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 900px) {
  .map-mobilebar {
    display: flex;
  }
}

.woocommerce .products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin: 0 !important;
}
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 !important;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 14px;
  margin: 12px 0 6px;
}
.woocommerce ul.products li.product .price {
  padding: 0 14px 14px;
  color: var(--brand);
  font-weight: 800;
  font-size: 15px;
}
.woocommerce a.button,
.woocommerce button.button {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 11px !important;
  font-weight: 700 !important;
  padding: 11px 20px !important;
}
.woocommerce a.button:hover { background: var(--brand-hover) !important; }
.woocommerce span.onsale {
  background: var(--accent) !important;
  border-radius: 20px !important;
  font-weight: 800 !important;
  right: 12px !important;
  top: 12px !important;
  left: auto !important;
}
.woocommerce div.product {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.woocommerce div.product .product_title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
.woocommerce div.product p.price {
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
}
.woocommerce-tabs {
  margin-top: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.woocommerce-tabs ul.tabs {
  display: flex;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0;
}
.woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 22px !important;
  color: var(--muted) !important;
  font-weight: 700;
}
.woocommerce-tabs ul.tabs li.active a {
  color: var(--brand) !important;
  background: #fff !important;
}
.woocommerce-Tabs-panel {
  padding: 22px;
  color: var(--muted);
  line-height: 1.8;
}
.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--ink2); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--brand); }

@media (max-width: 1024px) {
  .map-nav { display: none; }
  .map-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 100;
  }
  .map-nav.is-open a {
    padding: 13px 16px;
    border-radius: 10px;
    width: 100%;
  }
  .map-menu-toggle { display: grid; }
  .map-search { width: min(200px, 38vw); }
  .map-action.account { display: none; }
  .map-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .map-slider { height: 320px; }
  .map-slide-content { right: 22px; bottom: 26px; }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .map-container { width: calc(100% - 24px); }
  .map-head { gap: 10px; }
  .map-logo { font-size: 17px; }
  .map-logo img { width: 38px; height: 38px; }
  .map-search {
    flex: 1;
    width: auto;
    margin-right: 0;
    height: 38px;
  }
  .map-actions .map-action {
    padding: 0 10px;
    height: 38px;
    font-size: 12px;
  }
  .map-hero { padding: 12px 0 4px; }
  .map-slider {
    height: 240px;
    border-radius: 16px;
  }
  .map-slide-content {
    right: 14px;
    bottom: 16px;
    max-width: 88%;
  }
  .map-slide-content h1 { font-size: 20px; margin-bottom: 10px; }
  .map-btn { height: 40px; padding: 0 18px; font-size: 13px; }
  .map-section { padding: 28px 0; }
  .map-section-title { font-size: 17px; }

  .icon-box-5-wrap .icons-box {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .icon-box-5-wrap .icons-box::-webkit-scrollbar { display: none; }
  .icon-box-5-wrap .icon-box {
    min-width: 102px !important;
    max-width: 118px !important;
    flex: 0 0 auto !important;
  }

  .map-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .map-card-image { height: 150px; }
  .map-card-body { padding: 12px; }
  .map-card-title { font-size: 13px; min-height: 36px; }
  .map-features { grid-template-columns: 1fr; gap: 10px; }
  .map-footer { padding: 36px 0 100px; }
  .map-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .map-mobilebar { display: flex; }
  .map-main { padding-bottom: 100px; }

  .woocommerce .products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .woocommerce div.product {
    padding: 16px;
    border-radius: 16px;
  }
  .woocommerce div.product .product_title { font-size: 19px; }
  .woocommerce-tabs ul.tabs { flex-wrap: wrap; }
  .woocommerce-tabs ul.tabs li a { padding: 11px 14px !important; font-size: 13px; }
}

@media (max-width: 480px) {
  .map-slider { height: 200px; }
  .map-slide-content h1 { font-size: 17px; }
  .map-products { gap: 10px; }
  .map-card-image { height: 135px; }
}

.map-icon { width: 19px; height: 19px; flex: 0 0 auto; }
.map-action .map-icon { width: 18px; height: 18px; }
.map-logo__fallback { color: var(--ink); font-weight: 900; }
.map-loading { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; gap: 10px; background: #111827; color: #fff; transition: opacity .35s ease, visibility .35s ease; }
.map-loading.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.map-loading__mark { font-size: 28px; font-weight: 900; letter-spacing: .16em; }
.map-loading__line { width: 46px; height: 2px; background: var(--accent); animation: map-loading 0.75s ease-in-out infinite alternate; }
@keyframes map-loading { from { transform: scaleX(.25); opacity: .35; } to { transform: scaleX(1); opacity: 1; } }
@media (min-width: 769px) { .map-loading { display: none; } }
.map-drawer, .map-drawer-backdrop { display: none; }
.map-page { padding: 38px 0 80px; }
.map-page .entry-content, .map-page .post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 36px); box-shadow: var(--shadow-soft); }
.map-page .entry-title { margin-bottom: 18px; font-size: clamp(22px, 3vw, 34px); }
.map-page .entry-content > * + * { margin-top: 1em; }
.map-page .entry-content table { max-width: 100%; }
.map-page .entry-content iframe { max-width: 100%; }
.map-card-image { position: relative; }
.map-card-image img { object-fit: contain; padding: 12px; }
.map-card .map-sale { position: absolute; }
.woocommerce-page .map-page { padding-top: 28px; }
.woocommerce .quantity .qty { min-height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 0 8px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { border: 1px solid var(--line); border-radius: 10px; min-height: 44px; padding: 10px 12px; background: #fff; }

@media (max-width: 768px) {
  .map-header { position: sticky; }
  .map-head { position: relative; justify-content: center; direction: ltr; }
  .map-logo { position: absolute; left: 50%; order: 2; transform: translateX(-50%); }
  .map-logo .custom-logo-link { display: block; width: 54px; height: 54px; }
  .map-logo img { width: 54px; height: 54px; }
  .map-menu-toggle { position: absolute; right: 0; order: 4; border: 0; background: #292929; color: #fff; }
  .map-search { display: none; }
  .map-search input { display: none; }
  .map-actions { position: absolute; left: 0; order: 1; margin: 0; }
  .map-action.phone { display: inline-flex; }
  .map-action.account, .map-action.cart { display: none; }
  .map-action { padding: 0 9px; }
  .map-action span { display: none; }
  .map-nav { display: none !important; }
  .map-drawer-backdrop { display: block; position: fixed; inset: 0; z-index: 1100; background: rgba(15,23,42,.5); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .map-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
  .map-drawer { display: block; position: fixed; z-index: 1200; top: 82px; bottom: 112px; right: 16px; width: min(64vw, 250px); padding: 14px 0; overflow: auto; background: #292929; color: #fff; border-radius: 14px; box-shadow: -18px 0 40px rgba(15,23,42,.22); transform: translateX(120%); transition: transform .28s ease; }
  .map-drawer.is-open { transform: translateX(0); }
  .map-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 0 14px 12px; border-bottom: 1px solid #5b5b5b; }
  .map-drawer__head button { display: grid; place-items: center; width: 32px; height: 32px; color: #fff; }
  .map-drawer__nav { display: grid; gap: 0; padding-top: 4px; }
  .map-drawer__nav a { display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 8px 14px; border-bottom: 1px solid #5b5b5b; color: #fff; font-size: 12px; font-weight: 700; }
  .map-drawer__nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
  body.map-drawer-open { overflow: hidden; }
  .map-mobilebar { left: 20px; right: 20px; bottom: max(10px, env(safe-area-inset-bottom)); background: #292929; border: 1px solid #777; border-radius: 13px; }
  .map-mobilebar a span { display: none; }
  .map-mobilebar a .map-icon { width: 21px; height: 21px; }
}

@media (max-width: 414px) {
  .map-container { width: calc(100% - 20px); }
  .map-head { gap: 6px; }
  .map-logo img { width: 34px; height: 34px; }
  .map-card-image { height: 142px; }
  .map-card-body { padding: 10px; }
  .map-price { font-size: 13px; }
  .map-mobilebar a { min-width: 48px; }
}

@media (max-width: 340px) {
  .map-products, .woocommerce .products, .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .map-card-image { height: 180px; }
  .map-search { display: none; }
}

.map-header { background: #111827; border-bottom-color: #243244; }
.map-logo, .map-logo__fallback { color: #fff; }
.map-nav a { color: #cbd5e1; }
.map-nav a:hover, .map-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,.1); }
.map-search { background: #1f2937; border-color: #334155; color: #e2e8f0; }
.map-search input { color: #fff; }
.map-search input::placeholder { color: #94a3b8; }
.map-search:focus-within { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,.15); }
.map-action { border-color: #334155; color: #e2e8f0; }
.map-action:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.map-menu-toggle { border-color: #334155; color: #fff; }

.map-header { background: #fff; border-bottom-color: #edf0f4; box-shadow: 0 2px 18px rgba(20, 33, 61, .05); }
.map-logo, .map-logo__fallback { color: var(--ink); }
.map-nav a { color: #374151; }
.map-nav a:hover, .map-nav .current-menu-item > a { color: var(--brand); background: #eff5ff; }
.map-search { background: #f7f8fa; border-color: #e5e7eb; }
.map-search input { color: var(--ink); }
.map-action { background: #fff; border-color: #e5e7eb; color: #374151; }
.map-action:hover { background: var(--brand); color: #fff; }
.map-categorybar { background: #fff; border-bottom: 1px solid #edf0f4; }
.map-categorybar__inner { display: flex; align-items: stretch; gap: 4px; min-height: 66px; overflow-x: auto; scrollbar-width: none; }
.map-categorybar__inner::-webkit-scrollbar { display: none; }
.map-categorybar a { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; padding: 10px 16px; color: #354052; font-size: 13px; font-weight: 700; border-bottom: 2px solid transparent; }
.map-categorybar a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.map-categorybar small { display: block; color: #9aa3b1; font-size: 10px; font-weight: 500; }
.map-categorybar__all { color: var(--brand) !important; }
.map-static-categories { padding: 20px 0 8px; background: #fff; }
.map-static-categories__track { display: flex; justify-content: space-between; gap: 12px; overflow-x: auto; scrollbar-width: none; }
.map-static-categories__track::-webkit-scrollbar { display: none; }
.map-static-category { display: flex; flex: 1 1 0; min-width: 100px; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px 8px; border: 1px solid #edf0f4; border-radius: 14px; color: #374151; background: #fff; box-shadow: 0 3px 12px rgba(20,33,61,.04); }
.map-static-category:hover, .map-static-category.is-active { color: var(--brand); border-color: #b9d2ff; box-shadow: 0 7px 18px rgba(37,99,235,.12); transform: translateY(-2px); }
.map-static-category.is-active { background: #eff5ff; }
.map-static-category__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #f7f9fc; }
.map-static-category__icon img { width: 40px; height: 40px; object-fit: contain; }
.map-static-category.is-active .map-static-category__icon img { width: 42px; height: 42px; object-fit: contain; }
.map-static-category strong { font-size: 12px; font-weight: 800; white-space: nowrap; }
.map-static-category.is-active { order: 4; }
.map-static-category.is-active .map-static-category__icon { background: rgb(0,109,255); border: 1px solid rgb(147,197,253); box-shadow: inset 0 0 0 5px rgb(239,246,255), 0 8px 18px rgba(37,99,235,.14); }
.map-static-category.is-active .map-static-category__icon img { filter: saturate(1.1); }
.woocommerce-product-gallery__image.flex-active-slide img { opacity: 1 !important; }
body.single-product .woocommerce div.product { display: grid !important; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 34px; align-items: start; }
body.single-product div.product { display: grid !important; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 34px; align-items: start; }
body.single-product .woocommerce div.product .woocommerce-product-gallery { width: 100%; float: none; }
body.single-product .woocommerce div.product .summary { width: 100%; float: none; margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
body.single-product .woocommerce div.product .summary .product_title { margin-top: 0; line-height: 1.55; }
.map-section { padding: 38px 0; }
.map-section-head { margin-bottom: 18px; }
.map-products, .woocommerce .products, .woocommerce ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.map-card, .woocommerce ul.products li.product { border-radius: 12px; box-shadow: 0 3px 16px rgba(20,33,61,.06); }
.map-card-image, .woocommerce ul.products li.product a img { background: #fbfcfd; }
.map-card-body { padding: 14px; }
.map-card-title, .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 13px; line-height: 1.7; }
.map-price, .woocommerce ul.products li.product .price { color: #ef4444; }
.woocommerce ul.products li.product .price del { color: #9ca3af; font-size: 11px; }
.woocommerce ul.products li.product .button { display: block; margin: 0 14px 14px; text-align: center; font-size: 12px; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 18px; font-size: 12px; color: #6b7280; }
.woocommerce .woocommerce-ordering select { min-height: 38px; border: 1px solid #e5e7eb; border-radius: 9px; padding: 0 10px; background: #fff; }
.woocommerce .woocommerce-ordering { float: none; display: flex; justify-content: flex-start; margin: 0 0 18px; }
.woocommerce .woocommerce-result-count { float: none; margin: 0 0 10px; }
.woocommerce nav.woocommerce-pagination { clear: both; margin: 24px 0 0; }
.woocommerce nav.woocommerce-pagination ul.page-numbers { display: flex; justify-content: center; gap: 7px; border: 0; }
.woocommerce nav.woocommerce-pagination ul.page-numbers li { display: block; width: auto; border: 0; }
.woocommerce nav.woocommerce-pagination .page-numbers { display: grid; place-items: center; min-width: 34px; height: 34px; padding: 0 9px; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink2); }
.woocommerce nav.woocommerce-pagination .page-numbers.current, .woocommerce nav.woocommerce-pagination a.page-numbers:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.woocommerce-page .map-page { padding-top: 30px; }
.woocommerce-page .entry-content, .woocommerce-page article { max-width: none; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 240px; padding: 12px; background: #fff; border: 1px solid #edf0f4; border-radius: 14px; box-shadow: 0 5px 20px rgba(20,33,61,.05); }
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 2px 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 11px 12px; color: #4b5563; border-radius: 9px; font-size: 13px; font-weight: 700; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a, .woocommerce-account .woocommerce-MyAccount-navigation a:hover { color: var(--brand); background: #eff5ff; }
.woocommerce-account .woocommerce-MyAccount-content { width: calc(100% - 270px); padding: 24px; background: #fff; border: 1px solid #edf0f4; border-radius: 14px; box-shadow: 0 5px 20px rgba(20,33,61,.05); }
.woocommerce-account .woocommerce-MyAccount-content h2, .woocommerce-account .woocommerce-MyAccount-content h3 { margin-bottom: 16px; font-size: 20px; }
.woocommerce form.login, .woocommerce form.register, .woocommerce form.checkout_coupon { border: 1px solid #edf0f4; border-radius: 14px; background: #fff; padding: 26px; box-shadow: 0 5px 20px rgba(20,33,61,.05); }
.woocommerce form .form-row label { color: #374151; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { border-color: #e5e7eb; background: #fff; border-radius: 9px; }
.woocommerce-cart table.shop_table { border: 1px solid #edf0f4; border-radius: 14px; overflow: hidden; background: #fff; }
.woocommerce-cart .cart-collaterals .cart_totals { padding: 22px; border: 1px solid #edf0f4; border-radius: 14px; background: #fff; box-shadow: 0 5px 20px rgba(20,33,61,.05); }
.woocommerce .required, .woocommerce form .form-row label .required, .woocommerce-account label .required { color: #dc2626; }
.woocommerce p.stock.out-of-stock { display: inline-flex; align-items: center; min-height: 36px; margin: 12px 0; padding: 7px 12px; border: 1px solid #bfdbfe; border-radius: 10px; background: #eff6ff; color: #dc2626; font-weight: 800; }
.woocommerce div.product .summary .single_add_to_cart_button { min-height: 46px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 800; }
.woocommerce div.product .summary .quantity .qty { min-height: 46px; border-color: #bfdbfe; background: #eff6ff; }
.woocommerce div.product .summary .product_meta { padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.woocommerce-cart .wc-empty-cart-message { padding: 22px; border: 1px solid #bfdbfe; border-radius: 16px; background: #eff6ff; text-align: center; }
.woocommerce-cart .wc-empty-cart-message .woocommerce-info { margin: 0; border: 0; background: transparent; color: var(--ink2); font-weight: 800; }
.woocommerce-cart .return-to-shop { margin: 12px 0 0; text-align: center; }
.woocommerce-cart .return-to-shop .button { min-height: 44px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 800; }
.woocommerce-cart .return-to-shop .button::before { display: none; }
.map-product-toggle { display: none; }
.map-footer { background: #111827; padding: 54px 0 30px; }
.map-footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; }
.map-footer h3 { font-size: 14px; letter-spacing: 0; }
.map-footer p { color: #9ca3af; font-size: 12px; }
.map-footer-bottom { color: #6b7280; font-size: 11px; }
.map-socials { display: flex; align-items: center; gap: 8px; margin-top: 18px; }
.map-socials a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #374151; border-radius: 10px; color: #cbd5e1; }
.map-socials a:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.map-socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.woocommerce ul.products li.product .woocommerce-loop-product__title { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; min-height: 42px; word-break: normal; overflow-wrap: anywhere; }
.woocommerce ul.products li.product > a:first-child { display: block; }
.woocommerce ul.products li.product > a:first-child img { width: 100%; height: 190px; object-fit: contain; padding: 12px; margin: 0; }
.woocommerce ul.products li.product .button { white-space: normal; line-height: 1.5; }
.woocommerce section.related.products { display: block !important; margin-top: 30px; }
.woocommerce section.related.products > h2 { margin-bottom: 18px; font-size: 20px; }
.woocommerce section.related.products ul.products { width: 100% !important; display: grid !important; }
.woocommerce section.related.products ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; }

.map-page .entry-content > .elementor { width: 100%; max-width: 100%; }
.map-page .entry-content > .elementor img { max-width: 100%; }
.map-page .elementor .elementor-container, .map-page .elementor .e-con-inner { max-width: 100%; }
.map-page .elementor-widget-text-editor, .map-page .elementor-widget-heading { color: var(--ink2); }
.map-page .elementor-section { min-height: 0 !important; padding: 18px 0 !important; }
.map-page .elementor-section + .elementor-section { margin-top: 0 !important; }
.map-page .elementor-widget-wrap { min-height: 0 !important; }
.map-page .elementor-spacer { height: 18px !important; }
.map-page .elementor-spacer-inner { height: 18px !important; }
.map-page .elementor-form { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); }
.map-page .elementor-form .elementor-field-group { margin-bottom: 12px; }
.map-page .elementor-form .elementor-field-label { display: block; margin-bottom: 5px; color: var(--ink2); font-size: 12px; font-weight: 700; }
.map-page .elementor-form .elementor-field { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; background: #fff; color: var(--ink); }
.map-page .elementor-form textarea.elementor-field { min-height: 110px; resize: vertical; }
.map-page .elementor-form button { min-height: 44px; padding: 0 24px; border: 0; border-radius: 9px; background: var(--brand); color: #fff; font-weight: 800; }
.map-page .elementor-widget-google_maps iframe { width: 100%; min-height: 260px; border: 0; border-radius: 14px; }
.map-brake-products .map-card-image img { object-fit: contain; }
.map-ready .map-hero { animation: map-rise .7s ease both; }
.map-ready .map-static-categories { animation: map-rise .7s .08s ease both; }
.map-ready .map-section { animation: map-rise .7s .16s ease both; }
@keyframes map-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.map-card, .map-feature, .map-static-category, .map-action { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.map-card:hover, .map-feature:hover { transform: translateY(-5px); }
.map-header { box-shadow: 0 8px 28px rgba(20,33,61,.07); }
@media (min-width: 769px) {
  .map-head { min-height: 78px; height: 78px; gap: 20px; }
  .map-logo { padding: 6px 14px; border-radius: 14px; background: linear-gradient(135deg, #eff6ff, #fff); }
  .map-logo img { width: 52px; height: 52px; }
  .map-nav { justify-content: center; gap: 2px; }
  .map-nav a { padding: 9px 13px; font-size: 13px; }
  .map-search { width: min(330px, 27vw); border-radius: 15px; height: 46px; }
  .map-actions { gap: 7px; }
  .map-action { min-width: 44px; justify-content: center; height: 46px; border-radius: 14px; }
  .map-action span { margin-right: 6px; }
  .map-hero { padding-top: 26px; }
  .map-slider { height: 440px; border-radius: 24px; }
  .map-static-categories { padding-top: 24px; }
  .map-static-categories__track { justify-content: center; gap: 14px; }
  .map-static-category { flex: 0 0 128px; min-width: 128px; min-height: 122px; }
  .woocommerce-message { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
}
.woocommerce-message { margin: 0 0 18px; padding: 13px 16px; border: 1px solid #bfdbfe; border-radius: 14px; background: #eff6ff; color: var(--ink2); box-shadow: 0 8px 22px rgba(37,99,235,.09); animation: map-rise .35s ease both; }
.woocommerce-message::before { color: var(--brand); }
.woocommerce-message .button { flex: 0 0 auto; margin: 0; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 800; }
.map-account-panels .map-account-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0; color: var(--ink); font-size: 21px; font-weight: 900; text-align: right; }
.map-account-panels .map-account-toggle b { display: none; color: var(--brand); font-size: 20px; }
.map-account-panels .u-column1, .map-account-panels .u-column2 { transition: opacity .25s ease, transform .25s ease; }
.woocommerce-cart .cart-empty { text-align: center; }

@media (max-width: 768px) {
  .map-static-categories { padding: 13px 0 5px; }
  .map-static-categories__track { justify-content: flex-start; gap: 8px; padding-bottom: 5px; }
  .map-static-category { flex: 0 0 86px; min-width: 86px; padding: 8px 5px; gap: 5px; border-radius: 11px; order: 2; }
  .map-static-category.is-active { order: 1; }
  .map-static-category__icon { width: 42px; height: 42px; }
  .map-static-category__icon img { width: 31px; height: 31px; }
  .map-static-category strong { font-size: 10px; }
  .map-features { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; padding: 3px 0 7px; overflow: visible; }
  .map-feature { display: block; min-width: 0; min-height: 96px; padding: 9px 4px; border-radius: 11px; text-align: center; }
  .map-feature-icon { width: 32px; height: 32px; margin: 0 auto 6px; font-size: 15px; border-radius: 9px; }
  .map-feature strong { font-size: 10px; line-height: 1.4; white-space: nowrap; }
  .map-feature span { display: block; font-size: 8px; line-height: 1.45; }
  .map-search-trigger { display: grid; place-items: center; position: absolute; left: 48px; width: 38px; height: 38px; border-radius: 10px; color: var(--ink); background: #f3f4f6; }
  .map-search-modal { display: block; position: fixed; inset: 0; z-index: 1500; visibility: hidden; opacity: 0; transition: opacity .22s ease, visibility .22s ease; }
  .map-search-modal.is-open { visibility: visible; opacity: 1; }
  .map-search-modal__backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.5); }
  .map-search-modal__panel { position: absolute; top: 18%; left: 16px; right: 16px; padding: 22px 16px 16px; border-radius: 17px; background: #fff; box-shadow: 0 22px 60px rgba(15,23,42,.22); }
  .map-search-modal__panel strong { display: block; margin-bottom: 14px; font-size: 16px; color: var(--ink); }
  .map-search-modal__panel form { display: flex; gap: 8px; }
  .map-search-modal__panel input { min-width: 0; flex: 1; height: 44px; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; outline: 0; }
  .map-search-modal__panel form button { display: grid; place-items: center; width: 46px; height: 44px; border-radius: 10px; background: var(--brand); color: #fff; }
  .map-search-modal__panel form button span { display: none; }
  .map-search-modal__close { position: absolute; top: 8px; left: 8px; display: grid; place-items: center; width: 32px; height: 32px; color: var(--muted); }
  .map-social-dock { position: fixed; left: 12px; top: 62%; bottom: auto; transform: translateY(-50%); z-index: 1301; display: grid; gap: 6px; padding: 6px; border-radius: 16px; background: rgba(41,41,41,.94); box-shadow: 0 8px 22px rgba(15,23,42,.2); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
  .map-social-dock.is-visible { visibility: visible; opacity: 1; pointer-events: auto; }
  .map-drawer-backdrop.is-open { visibility: visible !important; opacity: 1 !important; pointer-events: auto; }
  body.map-drawer-open .map-drawer-backdrop.is-open { visibility: visible !important; opacity: 1 !important; pointer-events: auto; }
  .map-social-dock a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff; }
  .map-social-dock a:hover { background: var(--brand); }
  .map-social-dock svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .woocommerce-account .woocommerce-MyAccount-content { padding: 16px; }
  .woocommerce-account .u-columns.col2-set { display: grid !important; grid-template-columns: 1fr !important; gap: 14px; margin: 0 !important; }
  .woocommerce-account .u-columns.col2-set::before, .woocommerce-account .u-columns.col2-set::after { display: none; }
  .woocommerce-account .u-column1, .woocommerce-account .u-column2 { width: 100% !important; float: none !important; margin: 0 !important; }
  .woocommerce-account .u-column1 h2, .woocommerce-account .u-column2 h2 { margin: 0 0 10px; font-size: 19px; }
  .woocommerce-account .woocommerce-form.login, .woocommerce-account .woocommerce-form.register { margin: 0; padding: 14px; border-radius: 13px; }
  .woocommerce-account .woocommerce-form p { margin-bottom: 10px; }
  .woocommerce-account .woocommerce-form .form-row:last-child { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
  .woocommerce-account .woocommerce-form .button { margin: 0; min-height: 40px; }
  .woocommerce-account .lost_password { margin-top: 6px !important; text-align: center; }
  .map-account-panels { display: grid !important; gap: 12px; }
  .map-account-panels .u-column1, .map-account-panels .u-column2 { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-soft); }
  .map-account-panels .map-account-toggle b { display: block; }
  .map-account-panels .u-column2.is-collapsed .woocommerce-form { display: none; }
  .map-account-panels .u-column1.is-collapsed .woocommerce-form { display: none; }
  .woocommerce-message { display: block; margin: 0 0 12px; padding: 12px; border-radius: 13px; font-size: 12px; line-height: 1.8; }
  .woocommerce-message .button { display: table; margin: 8px 0 0 auto; padding: 9px 13px; font-size: 11px; }
  .woocommerce-account .woocommerce-MyAccount-navigation { display: flex; overflow-x: auto; gap: 5px; padding: 7px; scrollbar-width: none; }
  .woocommerce-account .woocommerce-MyAccount-navigation::-webkit-scrollbar { display: none; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; gap: 5px; min-width: max-content; }
  .woocommerce-account .woocommerce-MyAccount-navigation a { padding: 9px 12px; white-space: nowrap; font-size: 11px; }
  .woocommerce form.login, .woocommerce form.register { padding: 16px; margin-bottom: 12px; }
  .woocommerce form.login h2, .woocommerce form.register h2 { font-size: 18px; }
  .woocommerce-account .woocommerce-form label { color: #b91c1c; font-weight: 800; }
  .woocommerce form .form-row { width: 100%; float: none; }
  .woocommerce .woocommerce-ordering { justify-content: stretch; width: 100%; margin-bottom: 12px; }
  .woocommerce .woocommerce-ordering select { width: 100%; height: 42px; font-family: inherit; font-size: 12px; }
  .woocommerce nav.woocommerce-pagination ul.page-numbers { gap: 5px; }
  .woocommerce-checkout #customer_details, .woocommerce-checkout #order_review { padding: 15px; }
  .woocommerce-checkout .form-row label { color: #b91c1c; font-weight: 800; }
  .map-page .elementor .elementor-container { display: flex; flex-direction: column; width: 100%; }
  .map-page .elementor .elementor-column { width: 100% !important; height: auto !important; min-height: 0 !important; }
  .map-page .elementor .elementor-widget-wrap { min-height: 0 !important; height: auto !important; padding: 14px !important; align-content: flex-start !important; }
  .map-page .elementor .elementor-form-fields-wrapper { display: grid !important; grid-template-columns: 1fr; gap: 0; }
  .map-page .elementor .elementor-form-fields-wrapper .elementor-field-group { display: block !important; width: 100% !important; height: auto !important; min-height: 0 !important; }
  .map-page .elementor .elementor-spacer { height: 14px !important; }
  .map-page .elementor .elementor-spacer-inner { height: 14px !important; }
  .map-page .elementor-widget-image img { width: auto; max-width: 100%; max-height: 150px; object-fit: contain; margin-inline: auto; }
  .map-page .elementor-widget-heading .elementor-heading-title { font-size: 19px; line-height: 1.6; }
  .map-page .elementor-widget-text-editor { font-size: 13px; line-height: 1.9; }
  .map-page .elementor-section { padding: 10px 0 !important; }
  .map-page .elementor-form { padding: 14px; border-radius: 13px; }
  .map-page .elementor-form .elementor-field-group { width: 100% !important; margin-bottom: 10px; }
  .map-page .elementor-form button { width: 100%; }
  .map-page .elementor-widget-google_maps iframe { min-height: 200px; }
  .woocommerce section.related.products > h2 { font-size: 18px; }
  .woocommerce section.related.products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
  .woocommerce section.related.products ul.products li.product > a:first-child img { height: 145px; padding: 9px; }
  .woocommerce section.related.products ul.products li.product .woocommerce-loop-product__title { font-size: 11px; min-height: 38px; padding: 0 9px; }
  .woocommerce section.related.products ul.products li.product .price { padding: 0 9px 8px; font-size: 12px; }
  .woocommerce section.related.products ul.products li.product .button { margin: 0 9px 10px; padding: 8px 6px !important; font-size: 10px; }
  body.single-product .woocommerce div.product { display: block !important; padding: 0; overflow: hidden; border-radius: 18px; background: transparent; border: 0; box-shadow: none; }
  body.single-product div.product { display: block !important; padding: 0; overflow: hidden; border-radius: 18px; background: transparent; border: 0; box-shadow: none; }
  .woocommerce div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; min-height: 300px; margin: 0 !important; padding: 12px; border: 1px solid var(--line); border-radius: 18px 18px 0 0; background: #fff; }
  .woocommerce div.product .woocommerce-product-gallery__image img { width: 100%; height: 280px; object-fit: contain; }
  .woocommerce div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; padding: 18px 16px 22px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 18px 18px; background: #fff; box-shadow: 0 7px 24px rgba(20,33,61,.08); }
  .woocommerce div.product .summary .product_title { margin: 0 0 12px; font-size: 19px; line-height: 1.65; }
  .woocommerce div.product .summary p.price { margin: 0 0 10px; color: #dc2626; font-size: 19px; }
  .woocommerce div.product .summary form.cart { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
  .woocommerce div.product .summary form.cart .quantity { margin: 0 !important; }
  .woocommerce div.product .summary form.cart .single_add_to_cart_button { flex: 1; min-width: 180px; }
  .single-product .woocommerce div.product .summary form.cart { position: fixed; left: 16px; right: 16px; bottom: 78px; z-index: 1002; display: flex; align-items: center; gap: 8px; margin: 0; padding: 10px; border: 1px solid #e5e7eb; border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 12px 32px rgba(15,23,42,.18); backdrop-filter: blur(12px); }
  .single-product .woocommerce div.product .summary form.cart .single_add_to_cart_button { min-height: 44px; }
  .single-product .woocommerce div.product .summary form.cart .quantity { display: flex; }
  .map-product-toggle { position: fixed; left: 0; bottom: 146px; z-index: 1003; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 0 14px 14px 0; background: #fff; color: var(--brand); box-shadow: 4px 4px 18px rgba(15,23,42,.14); }
  body.map-product-actions-hidden .single-product .woocommerce div.product .summary form.cart { transform: translateY(130%); opacity: 0; pointer-events: none; }
  .single-product .woocommerce div.product .summary form.cart { transition: transform .3s ease, opacity .3s ease; }
  .map-slide-details { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 12px 14px; border-radius: 14px; }
  .map-slide-details h1 { font-size: 18px; }
  .map-slide-details span { margin-bottom: 8px; }
  .woocommerce div.product .woocommerce-tabs { margin-top: 16px; border-radius: 14px; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar { display: none; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a { white-space: nowrap; font-size: 11px; padding: 10px 14px !important; }
  .woocommerce-cart .wc-empty-cart-message { padding: 20px 12px; }
  .woocommerce-cart .return-to-shop .button { display: inline-flex; width: auto; min-width: 190px; justify-content: center; }
  .map-footer { padding: 28px 0 92px; margin-top: 18px; }
  .map-footer-grid { gap: 18px 12px; margin-bottom: 20px; }
  .map-footer h3 { margin-bottom: 10px; font-size: 12px; }
  .map-footer a { font-size: 11px; }
  .map-footer ul li { margin-bottom: 6px; }
  .map-footer-bottom { padding-top: 14px; font-size: 10px; }
}

@media (max-width: 900px) {
  .map-products, .woocommerce .products, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; margin: 0 0 16px; }
}
@media (max-width: 600px) {
  .map-categorybar__inner { min-height: 54px; }
  .map-categorybar a { padding: 8px 11px; font-size: 11px; }
  .map-products, .woocommerce .products, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .map-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .map-footer-grid > div:first-child { grid-column: 1 / -1; }
  .woocommerce form.login, .woocommerce form.register, .woocommerce form.checkout_coupon { padding: 18px; }
  .woocommerce-checkout #customer_details, .woocommerce-checkout #order_review { padding: 15px; }
}
@media (max-width: 340px) {
  .map-products, .woocommerce .products, .woocommerce ul.products { grid-template-columns: 1fr; }
}
/* =========================================
   WooCommerce Account / Login / Register / Cart
   Modern + Mobile First
========================================= */

/* لاگین و ثبت‌نام */
.woocommerce-account .woocommerce,
.woocommerce form.login,
.woocommerce form.register {
  max-width: 480px;
  margin: 40px auto;
  padding: 32px 28px !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  text-align: center;
  color: var(--ink);
}

.woocommerce form .form-row {
  margin-bottom: 16px !important;
}

.woocommerce form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink2);
}

.woocommerce form input.input-text,
.woocommerce form input[type="text"],
.woocommerce form input[type="password"],
.woocommerce form input[type="email"],
.woocommerce form input[type="tel"] {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  font-size: 14px !important;
  transition: all 0.25s ease;
}

.woocommerce form input:focus {
  border-color: var(--brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px var(--brand-soft) !important;
  outline: none !important;
}

.woocommerce form .button,
.woocommerce form button[type="submit"] {
  width: 100% !important;
  height: 50px !important;
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
  transition: all 0.25s ease;
}

.woocommerce form .button:hover {
  background: var(--brand-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.woocommerce-form-login__rememberme,
.woocommerce-form-register__terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 12px 0;
}

.woocommerce-LostPassword,
.woocommerce-form-login__rememberme + p {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
}

.woocommerce-LostPassword a {
  color: var(--brand);
  font-weight: 600;
}

/* حساب کاربری - ناوبری */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 260px;
  float: right;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  margin-left: 24px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 0 4px;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: var(--brand-soft);
  color: var(--brand);
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% - 300px);
  float: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 400px;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
}

/* جدول سفارش‌ها */
.woocommerce-orders-table,
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.woocommerce table.shop_table th {
  background: #f8fafc;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
  border-bottom: 1px solid var(--line);
}

.woocommerce table.shop_table td {
  padding: 16px;
  font-size: 13px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td {
  border-bottom: none;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions .button,
.woocommerce .button.view {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
}

/* سبد خرید */
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.woocommerce-cart table.shop_table {
  margin: 0;
}

.woocommerce-cart .cart-collaterals {
  margin: 0;
}

.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 90px;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  height: 52px;
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* موبایل */
@media (max-width: 900px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    overflow-x: auto;
    padding: 8px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    gap: 6px;
    min-width: max-content;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 12px;
  }

  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .cart_totals {
    position: static;
  }

  /* جدول سفارش‌ها و سبد روی موبایل */
  .woocommerce table.shop_table thead {
    display: none;
  }

  .woocommerce table.shop_table,
  .woocommerce table.shop_table tbody,
  .woocommerce table.shop_table tr,
  .woocommerce table.shop_table td {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
  }

  .woocommerce table.shop_table td {
    border: none;
    padding: 6px 0;
    text-align: right !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .woocommerce table.shop_table td::before {
    content: attr(data-title);
    font-weight: 700;
    color: var(--muted);
    font-size: 12px;
    margin-left: 12px;
  }

  .woocommerce-cart table.shop_table td.product-remove {
    position: absolute;
    top: 12px;
    left: 12px;
  }

  .woocommerce-cart table.shop_table tr {
    position: relative;
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .woocommerce-account .woocommerce,
  .woocommerce form.login,
  .woocommerce form.register {
    margin: 20px 0;
    padding: 22px 18px !important;
    border-radius: 16px;
  }

  .woocommerce form.login h2,
  .woocommerce form.register h2 {
    font-size: 18px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 18px;
  }
}

/* MAP724 final responsive layer */
.map-new-theme {
  --brand: #102a43;
  --brand-hover: #071b2d;
  --brand-soft: rgba(16, 42, 67, .1);
  --accent: #102a43;
  --ink: #22211d;
  --ink2: #39372f;
  --bg: #f7f8fa;
}

.map-new-theme .map-header {
  background: rgba(255, 255, 255, .97);
  border-bottom-color: #ece9df;
  box-shadow: 0 5px 24px rgba(34, 33, 29, .07);
}
.map-new-theme .map-head { min-height: 76px; }
.map-new-theme .map-logo { flex: 0 0 auto; }
.map-new-theme .map-search {
  width: min(430px, 34vw);
  height: 50px;
  border-color: #e5e0d2;
  background: #fbfaf6;
  border-radius: 14px;
}
.map-new-theme .map-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(16, 42, 67, .14); }
.map-new-theme .map-search input { font-size: 13px; }
.map-new-theme .map-action { min-height: 46px; border-color: #e5e0d2; background: #fff; }
.map-new-theme .map-action:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.map-new-theme .map-static-categories__track {
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 4px 8px;
}
.map-new-theme .map-static-category {
  flex: 0 1 128px;
  min-width: 112px;
  min-height: 122px;
  order: initial;
  border-color: #ece9df;
  box-shadow: 0 4px 14px rgba(34, 33, 29, .05);
}
.map-new-theme .map-static-category.is-active { order: initial; }
.map-new-theme .map-static-category:hover,
.map-static-category {
    color: var(--brand);
    border: 1px solid #edf0f4;
    background: #ffffff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease,
        color .25s ease;
}

.map-static-category:hover,
.map-static-category.is-active {
    color: #ffd012;
    border-color: var(--accent);
    background: rgba(7, 27, 45, .92);
    box-shadow: 0 8px 18px rgba(16, 42, 67, .13);
    transform: translateY(-2px);
}

.map-static-category.is-active {
    color: #ffd012;
    border-color: var(--accent);
    background: rgba(7, 27, 45, .92);
    box-shadow: 0 8px 18px rgba(16, 42, 67, .13);
}
.map-new-theme .map-static-category.is-active .map-static-category__icon { background: var(--accent); border-color: #102a43; }

.map-new-theme .map-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.map-new-theme .map-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 126px;
  padding: 20px 16px;
  border: 1px solid #ece9df;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(34, 33, 29, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.map-new-theme .map-benefit:hover { transform: translateY(-3px); border-color: #9bb4cb; box-shadow: 0 12px 26px rgba(16, 42, 67, .12); }
.map-new-theme .map-benefit__icon { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px; color: #fff; background: var(--accent); }
.map-new-theme .map-benefit__icon .map-icon { width: 24px; height: 24px; }
.map-new-theme .map-benefit h3 { margin: 0 0 4px; font-size: 14px; color: var(--ink); }
.map-new-theme .map-benefit p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.map-new-theme .map-articles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.map-new-theme .map-article { overflow: hidden; min-width: 0; border: 1px solid #e3e9ef; border-radius: 16px; background: #fff; box-shadow: 0 5px 18px rgba(16, 42, 67, .06); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.map-new-theme .map-article:hover { transform: translateY(-3px); border-color: #9bb4cb; box-shadow: 0 12px 26px rgba(16, 42, 67, .12); }
.map-new-theme .map-article__image { display: grid; place-items: center; aspect-ratio: 1.35; overflow: hidden; background: #edf3f8; }
.map-new-theme .map-article__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.map-new-theme .map-article:hover .map-article__image img { transform: scale(1.04); }
.map-new-theme .map-article__placeholder { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; background: var(--accent); }
.map-new-theme .map-article__body { padding: 13px; }
.map-new-theme .map-article h3 { display: -webkit-box; min-height: 45px; margin: 0 0 9px; overflow: hidden; color: var(--ink); font-size: 13px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.map-new-theme .map-article h3 a:hover { color: var(--brand); }
.map-new-theme .map-article__more { color: var(--brand); font-size: 11px; font-weight: 800; }

@media (max-width: 1024px) {
  .map-new-theme .map-articles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.map-new-theme .woocommerce-checkout .woocommerce { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 24px; align-items: start; }
.map-new-theme .woocommerce-checkout #customer_details,
.map-new-theme .woocommerce-checkout #order_review { margin: 0; border-color: #ece9df; border-radius: 18px; box-shadow: 0 8px 24px rgba(34, 33, 29, .06); }
.map-new-theme .woocommerce-checkout #order_review { position: sticky; top: 96px; }
.map-new-theme .woocommerce-checkout .form-row label { color: var(--ink2); font-size: 13px; }
.map-new-theme .woocommerce-checkout .form-row input.input-text,
.map-new-theme .woocommerce-checkout .form-row textarea,
.map-new-theme .woocommerce-checkout .form-row select { min-height: 48px; border-radius: 12px; background: #fbfaf6; }
.map-new-theme .woocommerce-checkout .form-row input:focus,
.map-new-theme .woocommerce-checkout .form-row textarea:focus,
 .map-new-theme .woocommerce-checkout .form-row select:focus { border-color: var(--accent); outline: 0; box-shadow: 0 0 0 3px rgba(16, 42, 67, .14); }
.map-new-theme .woocommerce-checkout #place_order { width: 100%; min-height: 52px; border-radius: 13px !important; background: var(--accent) !important; color: var(--ink) !important; font-size: 15px; }

body.map-new-theme:not(.admin-bar) #wpadminbar #adminbar-search,
body.map-new-theme:not(.admin-bar) #wpadminbar .adminbar-input { display: none; }
body.map-new-theme:not(.admin-bar) { margin-top: 0 !important; }

@media (max-width: 768px) {
  .map-new-theme .map-head { min-height: 62px; }
  .map-new-theme .map-action.phone { display: none; }
  .map-new-theme .map-action.cart { display: inline-flex; }
  .map-new-theme .map-search-trigger { display: none; }
  .map-new-theme .map-slider { height: 238px; border-radius: 16px; }
  .map-new-theme .map-slide::after { background: linear-gradient(90deg, rgba(15, 23, 42, .18), rgba(15, 23, 42, .55)); }
  .map-new-theme .map-slide-details {
    right: 12px; left: 12px; bottom: 12px; width: auto; max-width: none;
    padding: 13px 14px; border-radius: 13px; background: rgba(255, 255, 255, .94);
  }
  .map-new-theme .map-slide-details b { margin-bottom: 2px; font-size: 10px; }
  .map-new-theme .map-slide-details h1 { max-width: 100%; margin-bottom: 3px; font-size: 17px; line-height: 1.45; }
  .map-new-theme .map-slide-details span { margin-bottom: 8px; font-size: 11px; }
  .map-new-theme .map-slide-details .map-btn { min-height: 44px; height: 44px; padding: 0 16px; font-size: 12px; }
  .map-new-theme .map-dots { bottom: 8px; }
  .map-new-theme .map-static-categories { padding: 10px 0 3px; }
  .map-new-theme .map-static-categories__track { justify-content: flex-start; gap: 8px; padding: 1px 2px 6px; scroll-snap-type: x proximity; }
  .map-new-theme .map-static-category { flex: 0 0 88px; min-width: 88px; min-height: 84px; padding: 7px 5px; gap: 5px; border-radius: 12px; scroll-snap-align: start; box-shadow: none; }
  .map-new-theme .map-static-category.is-active { order: initial; }
  .map-new-theme .map-static-category__icon { width: 38px; height: 38px; }
  .map-new-theme .map-static-category__icon img,
  .map-new-theme .map-static-category.is-active .map-static-category__icon img { width: 29px; height: 29px; }
  .map-new-theme .map-static-category strong { font-size: 10px; }
  .map-new-theme .map-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .map-new-theme .map-benefit { display: block; min-height: 136px; padding: 14px 10px; text-align: center; }
  .map-new-theme .map-benefit__icon { margin: 0 auto 8px; width: 40px; height: 40px; }
  .map-new-theme .map-benefit h3 { font-size: 12px; }
  .map-new-theme .map-benefit p { font-size: 10px; line-height: 1.7; }
  .map-new-theme .map-articles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .map-new-theme .map-article__body { padding: 10px; }
  .map-new-theme .map-article h3 { min-height: 43px; font-size: 11px; }
  .map-new-theme .woocommerce-checkout .woocommerce { display: block; }
  .map-new-theme .woocommerce-checkout #customer_details,
  .map-new-theme .woocommerce-checkout #order_review { padding: 16px; border-radius: 16px; }
  .map-new-theme .woocommerce-checkout #order_review { position: static; margin-top: 14px; }
  .map-new-theme .woocommerce-checkout .form-row { margin-bottom: 13px !important; }
  .map-new-theme .woocommerce-checkout #place_order { min-height: 54px; }
}

@media (max-width: 360px) {
  .map-new-theme .map-slider { height: 222px; }
  .map-new-theme .map-benefits { gap: 8px; }
  .map-new-theme .map-benefit { padding-inline: 7px; }
}

/* Compact mobile hero and white bottom navigation */
@media (max-width: 768px) {
  .map-new-theme .map-slider {
    height: 224px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(16, 42, 67, .12);
  }
  .map-new-theme .map-slide::after {
    background: linear-gradient(180deg, rgba(7, 27, 45, .04) 20%, rgba(7, 27, 45, .72) 100%);
  }
  .map-new-theme .map-slide-details {
    right: 10px;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    width: auto;
    min-height: 62px;
    padding: 9px 10px 9px 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(7, 27, 45, .92);
    box-shadow: 0 8px 20px rgba(7, 27, 45, .22);
    backdrop-filter: none;
  }
  .map-new-theme .map-slide-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "title action" "meta action";
    align-items: center;
    gap: 0 10px;
    width: 100%;
    min-width: 0;
  }
  .map-new-theme .map-slide-details b { display: none; }
  .map-new-theme .map-slide-details h1 {
    grid-area: title;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .map-new-theme .map-slide-details span {
    grid-area: meta;
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    line-height: 1.5;
  }
  .map-new-theme .map-slide-details .map-btn {
    grid-area: action;
    min-width: 106px;
    height: 42px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;
    background: #fff;
    color: #102a43;
    box-shadow: none;
    font-size: 11px;
    white-space: nowrap;
  }
  .map-new-theme .map-slide-details .map-btn:hover { background: #eaf1f7; color: #071b2d; transform: none; }
  .map-new-theme .map-dots { top: 10px; bottom: auto; gap: 6px; }
  .map-new-theme .map-dot { width: 6px; height: 6px; background: rgba(255, 255, 255, .65); }
  .map-new-theme .map-dot.active { background: #fff; box-shadow: 0 0 0 3px rgba(16, 42, 67, .35); }

  .map-new-theme .map-mobilebar {
    background: #fff;
    border: 1px solid #e2e8ef;
    box-shadow: 0 8px 26px rgba(16, 42, 67, .16);
  }
  .map-new-theme .map-mobilebar a,
  .map-new-theme .map-mobilebar a.active,
  .map-new-theme .map-mobilebar a:hover {
    color: #102a43;
   
  }
  .map-new-theme .map-mobilebar a .map-icon { stroke: currentColor; }
  .map-new-theme .map-mobilebar .cart-count { background: #102a43; color: #fff; }
}

@media (max-width: 360px) {
  .map-new-theme .map-slider { height: 210px; }
  .map-new-theme .map-slide-details .map-btn { min-width: 98px; padding-inline: 8px; font-size: 10px; }
  .map-new-theme .map-slide-details h1 { font-size: 13px; }
}
/* =========================================================
   MAP724 — MAP MECHANIC
   DESKTOP + TABLET + MOBILE
========================================================= */

.map-articles-section {
    width: 100%;
    padding: 26px 0 34px;
    direction: rtl;
}

/* =========================
   HEADER
========================= */

.map-mechanic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.map-mechanic-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.map-mechanic-heading-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffd012;
    background: #102a43;

    border-radius: 13px;

    box-shadow:
        0 7px 18px rgba(16, 42, 67, .14);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.map-mechanic-heading-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.map-mechanic-heading-icon:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(16, 42, 67, .18);
}

.map-mechanic-eyebrow {
    display: block;
    margin-bottom: 2px;

    color: #94a3b8;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
}

.map-articles-section .map-section-title {
    margin: 0;

    color: #102a43;

    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
}


/* =========================
   MORE BUTTON
========================= */

.map-mechanic-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 8px 13px;

    color: #102a43;
    background: #f7f8fa;

    border: 1px solid #e7ebf0;
    border-radius: 999px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.map-mechanic-more svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    transition: transform .25s ease;
}

.map-mechanic-more:hover {
    color: #102a43;
    background: #ffd012;
    border-color: #ffd012;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(255, 208, 18, .20);
}

.map-mechanic-more:hover svg {
    transform: translateX(-3px);
}


/* =========================================================
   DESKTOP CARDS
========================================================= */

.map-mechanic-slider {
    width: 100%;
    overflow: visible;
}

.map-mechanic-track {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 14px;

    padding: 3px 2px 12px;
}


/* =========================
   CARD
========================= */

.map-mechanic-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid #edf0f3;
    border-radius: 17px;

    box-shadow:
        0 4px 15px rgba(16, 42, 67, .045);

    transition:
        transform .3s cubic-bezier(.4, 0, .2, 1),
        box-shadow .3s ease,
        border-color .3s ease;
}

.map-mechanic-card:hover {
    transform: translateY(-6px);

    border-color: rgba(16, 42, 67, .14);

    box-shadow:
        0 14px 32px rgba(16, 42, 67, .12);
}


/* =========================================================
   IMAGE
========================================================= */

.map-mechanic-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 1 / .70;

    overflow: hidden;

    background: #eef1f4;

    text-decoration: none;
}

.map-mechanic-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s cubic-bezier(.2, .7, .2, 1),
        filter .35s ease;
}

.map-mechanic-card:hover .map-mechanic-image img {
    transform: scale(1.07);
    filter: saturate(1.06);
}


/* =========================
   IMAGE OVERLAY
========================= */

.map-mechanic-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 27, 45, .42),
            rgba(7, 27, 45, 0) 65%
        );

    opacity: .65;

    pointer-events: none;

    transition: opacity .3s ease;
}

.map-mechanic-card:hover .map-mechanic-image-overlay {
    opacity: .9;
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.map-mechanic-featured {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 3;

    padding: 5px 9px;

    color: #102a43;
    background: #ffd012;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;

    box-shadow:
        0 4px 12px rgba(7, 27, 45, .18);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.map-mechanic-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #102a43;

    background:
        linear-gradient(
            135deg,
            #f1f4f7,
            #e7edf2
        );
}

.map-mechanic-placeholder svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}


/* =========================================================
   CONTENT
========================================================= */

.map-mechanic-content {
    position: relative;

    display: flex;
    flex-direction: column;

    flex: 1;

    min-height: 112px;

    padding: 12px 13px 11px;
}


/* =========================
   NUMBER
========================= */

.map-mechanic-number {
    position: absolute;

    left: 10px;
    bottom: 8px;

    color: #edf0f3;

    font-size: 21px;
    font-weight: 900;

    line-height: 1;

    direction: ltr;

    pointer-events: none;
}


/* =========================================================
   TITLE
========================================================= */

.map-mechanic-title {
    position: relative;
    z-index: 2;

    margin: 0;

    padding-left: 22px;

    min-height: 48px;

    font-size: 12px;
    font-weight: 900;

    line-height: 1.85;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.map-mechanic-title a {
    color: #102a43;

    text-decoration: none;

    transition: color .25s ease;
}

.map-mechanic-card:hover .map-mechanic-title a {
    color: #071b2d;
}


/* =========================================================
   FOOTER
========================================================= */

.map-mechanic-footer {
    display: flex;
    align-items: center;

    margin-top: auto;
    padding-top: 9px;

    border-top: 1px solid #f0f2f4;
}


/* =========================
   READ BUTTON
========================= */

.map-mechanic-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    color: #64748b;
    background: #f7f8fa;

    border-radius: 999px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.map-mechanic-read svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;

    transition: transform .25s ease;
}

.map-mechanic-read:hover {
    color: #102a43;
    background: #ffd012;

    transform: translateX(-2px);
}

.map-mechanic-read:hover svg {
    transform: translateX(-3px);
}


/* =========================================================
   BOTTOM / HINT
========================================================= */

.map-mechanic-bottom {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .map-mechanic-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 13px;
    }

    .map-mechanic-image {
        aspect-ratio: 1 / .68;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .map-articles-section {
        padding: 20px 0 25px;
    }

    /* HEADER */

    .map-mechanic-header {
        margin-bottom: 14px;
    }

    .map-mechanic-heading {
        gap: 9px;
    }

    .map-mechanic-heading-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;

        border-radius: 11px;
    }

    .map-mechanic-heading-icon svg {
        width: 18px;
        height: 18px;
    }

    .map-mechanic-eyebrow {
        font-size: 7px;
    }

    .map-articles-section .map-section-title {
        font-size: 17px;
    }


    /* MORE */

    .map-mechanic-more {
        width: 34px;
        height: 34px;

        padding: 0;

        border-radius: 50%;
    }

    .map-mechanic-more span {
        display: none;
    }

    .map-mechanic-more svg {
        width: 16px;
        height: 16px;
    }


    /* MOBILE SLIDER */

    .map-mechanic-slider {
        width: calc(100% + 6px);
        margin-right: -3px;

        overflow: hidden;
    }

    .map-mechanic-track {

        display: flex;

        width: 100%;

        gap: 12px;

        overflow-x: auto;
        overflow-y: hidden;

        padding:
            3px 3px
            16px 3px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .map-mechanic-track::-webkit-scrollbar {
        display: none;
    }


    /* CARD */

    .map-mechanic-card {

        width: 225px;
        min-width: 225px;
        max-width: 225px;

        flex: 0 0 225px;

        border-radius: 16px;

        scroll-snap-align: start;

        box-shadow:
            0 4px 14px rgba(16, 42, 67, .06);
    }

    .map-mechanic-card:hover {
        transform: translateY(-3px);

        box-shadow:
            0 9px 22px rgba(16, 42, 67, .09);
    }


    /* IMAGE */

    .map-mechanic-image {
        aspect-ratio: 1 / .70;
    }


    /* CONTENT */

    .map-mechanic-content {
        min-height: 108px;

        padding: 11px 12px 10px;
    }

    .map-mechanic-title {
        min-height: 46px;

        font-size: 11px;
        line-height: 1.8;
    }

    .map-mechanic-number {
        font-size: 19px;
    }

    .map-mechanic-read {
        font-size: 8px;
        padding: 5px 8px;
    }


    /* HIDE HINT */

    .map-mechanic-bottom {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .map-articles-section {
        padding: 17px 0 22px;
    }

    .map-mechanic-header {
        margin-bottom: 12px;
    }

    .map-mechanic-heading-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .map-mechanic-heading-icon svg {
        width: 17px;
        height: 17px;
    }

    .map-articles-section .map-section-title {
        font-size: 16px;
    }

    .map-mechanic-card {
        width: 205px;
        min-width: 205px;
        max-width: 205px;

        flex-basis: 205px;

        border-radius: 15px;
    }

    .map-mechanic-image {
        aspect-ratio: 1 / .68;
    }

    .map-mechanic-content {
        min-height: 103px;
        padding: 10px;
    }

    .map-mechanic-title {
        font-size: 10px;
        line-height: 1.8;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 360px) {

    .map-mechanic-card {
        width: 190px;
        min-width: 190px;
        max-width: 190px;

        flex-basis: 190px;
    }

    .map-articles-section .map-section-title {
        font-size: 15px;
    }

}
/* =========================================================
   MAP724 — WHY CHOOSE US
   COMPACT PREMIUM
========================================================= */

.map-benefits-section {
    width: 100%;
    padding: 24px 0;

    direction: rtl;
}


/* =========================================================
   MAIN BOX
========================================================= */

.map-benefits-box {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,208,18,.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(16,42,67,.45),
            transparent 35%
        ),
        #071b2d;

    border-radius: 20px;

    padding: 20px 22px;

    box-shadow:
        0 12px 35px rgba(7,27,45,.14);
}


/* =========================================================
   HEADER
========================================================= */

.map-benefits-top {
    display: flex;
    align-items: center;

    margin-bottom: 17px;
}

.map-benefits-title-wrap {
    display: flex;
    align-items: center;

    gap: 10px;
}


/* =========================
   MAIN ICON
========================= */

.map-benefits-main-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #102a43;
    background: #ffd012;

    border-radius: 12px;

    box-shadow:
        0 6px 18px rgba(255,208,18,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.map-benefits-main-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.map-benefits-main-icon:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 23px rgba(255,208,18,.22);
}


/* =========================
   TEXT
========================= */

.map-benefits-eyebrow {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.38);

    font-size: 8px;
    font-weight: 700;
}

.map-benefits-title {
    margin: 0;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    line-height: 1.4;
}


/* =========================
   LINE
========================= */

.map-benefits-line {
    flex: 1;

    height: 1px;

    margin-right: 20px;

    background:
        linear-gradient(
            to left,
            rgba(255,208,18,.30),
            rgba(255,255,255,.05),
            transparent
        );
}


/* =========================================================
   BENEFITS GRID
========================================================= */

.map-benefits {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(255,255,255,.055);
}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.map-benefit {
    position: relative;

    min-width: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 15px 13px;

    border-left: 1px solid rgba(255,255,255,.055);

    transition:
        background .25s ease;
}

.map-benefit:last-child {
    border-left: 0;
}

.map-benefit:hover {
    background: rgba(255,208,18,.045);
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.map-benefit__icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffd012;

    background: rgba(255,208,18,.065);

    border: 1px solid rgba(255,208,18,.16);

    border-radius: 12px;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.map-benefit__icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.map-benefit:hover .map-benefit__icon {
    color: #102a43;

    background: #ffd012;

    border-color: #ffd012;

    transform: scale(1.05);
}


/* =========================================================
   CONTENT
========================================================= */

.map-benefit__content {
    min-width: 0;
}

.map-benefit__content h3 {
    margin: 0 0 3px;

    color: #fff;

    font-size: 12px;
    font-weight: 900;

    line-height: 1.5;

    white-space: nowrap;
}

.map-benefit__content p {
    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 9px;

    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE NUMBER
========================================================= */

.map-benefit__number {
    position: absolute;

    left: 9px;
    bottom: 5px;

    color: rgba(255,255,255,.035);

    font-size: 21px;
    font-weight: 900;

    line-height: 1;

    direction: ltr;

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

    .map-benefit:nth-child(2) {
        border-left: 0;
    }

    .map-benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.055);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .map-benefits-section {
        padding: 18px 0;
    }

    .map-benefits-box {
        padding: 16px 12px;

        border-radius: 17px;
    }

    .map-benefits-top {
        margin-bottom: 13px;
    }

    .map-benefits-title-wrap {
        gap: 8px;
    }

    .map-benefits-main-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        border-radius: 10px;
    }

    .map-benefits-main-icon svg {
        width: 18px;
        height: 18px;
    }

    .map-benefits-eyebrow {
        font-size: 7px;
    }

    .map-benefits-title {
        font-size: 14px;
    }

    .map-benefits-line {
        display: none;
    }


    /* GRID */

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


    /* ITEMS */

    .map-benefit {
        min-height: 82px;

        gap: 8px;

        padding: 11px 8px;
    }


    /* ICON */

    .map-benefit__icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;

        border-radius: 9px;
    }

    .map-benefit__icon svg {
        width: 17px;
        height: 17px;
    }


    /* TEXT */

    .map-benefit__content h3 {
        margin-bottom: 2px;

        font-size: 10px;
    }

    .map-benefit__content p {
        font-size: 7px;

        line-height: 1.6;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .map-benefits-box {
        padding-left: 9px;
        padding-right: 9px;
    }

    .map-benefit {
        padding: 10px 6px;
    }

    .map-benefit__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .map-benefit__content h3 {
        font-size: 9px;
    }

    .map-benefit__content p {
        font-size: 6.5px;
    }

}
.map-new-theme .map-mobilebar {
    background: rgba(7, 27, 45, .96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 -8px 28px rgba(7, 27, 45, .22);
    border-radius: 18px 18px 0 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* آیتم‌های منو */
.map-new-theme .map-mobilebar a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    background: transparent;
    border-radius: 14px;
    transition:
        color .25s ease,
        transform .25s ease,
        background .25s ease;
    z-index: 1;
}

/* آیکون */
.map-new-theme .map-mobilebar a .map-icon {
    stroke: currentColor;
    transition: transform .25s ease;
}

/* هاور */
.map-new-theme .map-mobilebar a:hover {
    color: #ffd012;
}

/* آیتم انتخاب‌شده */
.map-new-theme .map-mobilebar a.active {
    color: #102a43;
    transform: translateY(-9px);
}

/* حباب پشت آیتم Active */
.map-new-theme .map-mobilebar a.active::before {
    content: "";
    position: absolute;

    width: 58px;
    height: 58px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #ffd012;

    border-radius: 50%;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .22),
        0 0 0 6px rgba(255, 208, 18, .12);

    z-index: -1;
}

/* آیکون Active */
.map-new-theme .map-mobilebar a.active .map-icon {
    stroke: #102a43;
    transform: translateY(1px);
}

/* متن Active */
.map-new-theme .map-mobilebar a.active span {
    color: #102a43;
    font-weight: 700;
}

/* تعداد سبد */
.map-new-theme .map-mobilebar .cart-count {
    background: #ffd012;
    color: #102a43;

    border: 2px solid #071b2d;

    font-weight: 800;

    box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
}
.map-new-theme .map-mobilebar a.active::after {
    content: "";
    position: absolute;

    width: 70px;
    height: 24px;

    bottom: -12px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(7, 27, 45, .96);

    border-radius: 50%;
    z-index: -2;
}
/* =========================================================
   MAP724 — DESKTOP HEADER
   PREMIUM / CLEAN / NAVY + YELLOW
========================================================= */

.map-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #edf0f3;

    box-shadow:
        0 4px 18px rgba(16, 42, 67, .045);

    direction: rtl;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.map-header .map-head {
    position: relative;

    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 14px;
}


/* =========================================================
   LOGO
========================================================= */

.map-header .map-logo {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 4px;
}

.map-header .map-logo a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    text-decoration: none;

    border-radius: 16px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.map-header .map-logo a:hover {
    transform: translateY(-2px);
}

.map-header .map-logo img {
    display: block;

    width: 52px;
    height: 52px;

    max-width: 52px;

    object-fit: contain;

    border-radius: 14px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.map-header .map-nav {
    display: flex;
    align-items: center;

    gap: 3px;

    margin: 0;

    padding: 0;

    list-style: none;

    white-space: nowrap;
}

.map-header .map-nav li {
    position: relative;

    list-style: none;

    margin: 0;
    padding: 0;
}

.map-header .map-nav li a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 10px;

    color: #102a43;

    text-decoration: none;

    border-radius: 11px;

    font-size: 11px;
    font-weight: 800;

    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease;
}

.map-header .map-nav li a::after {
    content: "";

    position: absolute;

    right: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: #ffd012;

    border-radius: 999px;

    transform: translateX(50%);

    transition:
        width .25s ease;
}

.map-header .map-nav li a:hover {
    color: #102a43;

    background: rgba(16, 42, 67, .055);
}

.map-header .map-nav li a:hover::after {
    width: 18px;
}


/* =========================================================
   SEARCH
========================================================= */

.map-header .map-search {
    position: relative;

    flex: 1 1 260px;

    height: 44px;

    min-width: 190px;
    max-width: 340px;

    display: flex;
    align-items: center;

    margin-right: auto;

    padding: 0 14px;

    background: #f7f8fa;

    border: 1px solid #e8edf1;
    border-radius: 13px;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.map-header .map-search:hover {
    background: #fff;

    border-color: #dce3e9;
}

.map-header .map-search:focus-within {
    background: #fff;

    border-color: rgba(16, 42, 67, .25);

    box-shadow:
        0 0 0 3px rgba(16, 42, 67, .06);
}

.map-header .map-search .map-icon {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin-left: 9px;

    color: #102a43;

    opacity: .65;
}

.map-header .map-search input {
    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    color: #102a43;

    background: transparent;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
}

.map-header .map-search input::placeholder {
    color: #94a3b8;
}

.map-header .map-search input::-webkit-search-cancel-button {
    cursor: pointer;
}


/* =========================================================
   SEARCH TRIGGER
   Hidden on desktop
========================================================= */

.map-header .map-search-trigger {
    display: none;
}


/* =========================================================
   ACTIONS
========================================================= */

.map-header .map-actions {
    display: flex;
    align-items: center;

    gap: 7px;

    flex: 0 0 auto;
}


/* =========================================================
   ACTION BUTTON
========================================================= */

.map-header .map-action {
    position: relative;

    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 12px;

    color: #102a43;

    background: #fff;

    border: 1px solid #e8edf1;
    border-radius: 13px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.map-header .map-action .map-icon {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    transition:
        transform .25s ease,
        color .25s ease;
}


/* =========================================================
   PHONE
========================================================= */

.map-header .map-action.phone {
    width: 44px;

    padding: 0;

    color: #102a43;

    background: #f7f8fa;
}

.map-header .map-action.phone:hover {
    color: #102a43;

    background: #ffd012;

    border-color: #ffd012;

    transform: translateY(-2px);

    box-shadow:
        0 7px 17px rgba(255, 208, 18, .20);
}

.map-header .map-action.phone:hover .map-icon {
    transform: rotate(-7deg);
}


/* =========================================================
   ACCOUNT
========================================================= */

.map-header .map-action.account:hover {
    color: #102a43;

    background: #ffd012;

    border-color: #ffd012;

    transform: translateY(-2px);

    box-shadow:
        0 7px 17px rgba(255, 208, 18, .20);
}


/* =========================================================
   CART
========================================================= */

.map-header .map-action.cart {
    color: #fff;

    background: #102a43;

    border-color: #102a43;

    padding-left: 14px;
    padding-right: 14px;
}

.map-header .map-action.cart:hover {
    color: #102a43;

    background: #ffd012;

    border-color: #ffd012;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 208, 18, .22);
}

.map-header .map-action.cart:hover .map-icon {
    transform: translateY(-1px);
}


/* =========================================================
   MENU BUTTON
   Desktop hidden
========================================================= */

.map-header .map-menu-toggle {
    display: none;
}


/* =========================================================
   ACTIVE MENU
========================================================= */

.map-header .map-nav li.current-menu-item > a,
.map-header .map-nav li.current_page_item > a,
.map-header .map-nav li.current-menu-ancestor > a {
    color: #102a43;

    background: rgba(16, 42, 67, .055);
}

.map-header .map-nav li.current-menu-item > a::after,
.map-header .map-nav li.current_page_item > a::after,
.map-header .map-nav li.current-menu-ancestor > a::after {
    width: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .map-header .map-head {
        gap: 9px;
    }

    .map-header .map-nav {
        gap: 0;
    }

    .map-header .map-nav li a {
        padding: 0 7px;

        font-size: 10px;
    }

    .map-header .map-search {
        max-width: 270px;
    }

    .map-header .map-action {
        padding: 0 9px;
    }

}


/* =========================================================
   SMALL DESKTOP / TABLET
========================================================= */

@media (max-width: 950px) {

    .map-header .map-nav li a {
        font-size: 9px;
        padding: 0 5px;
    }

    .map-header .map-search {
        max-width: 220px;
    }

    .map-header .map-action span {
        display: none;
    }

    .map-header .map-action {
        width: 42px;

        padding: 0;
    }

    .map-header .map-action.cart {
        width: 42px;

        padding: 0;
    }

}


/* =========================================================
   MOBILE
   اگر هدر موبایل جداگانه داری، این بخش را نگه دار
========================================================= */

@media (max-width: 768px) {

    .map-header .map-head {
        min-height: 62px;

        padding-top: 4px;
        padding-bottom: 4px;
    }

    .map-header .map-logo a {
        width: 48px;
        height: 48px;
    }

    .map-header .map-logo img {
        width: 44px;
        height: 44px;
    }

    .map-header .map-nav,
    .map-header .map-search {
        display: none;
    }

    .map-header .map-menu-toggle {
        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        order: 3;

        color: #102a43;
        background: #f7f8fa;

        border: 1px solid #e8edf1;
        border-radius: 12px;

        cursor: pointer;

        transition:
            background .25s ease,
            color .25s ease,
            transform .25s ease;
    }

    .map-header .map-menu-toggle:hover {
        color: #102a43;
        background: #ffd012;

        border-color: #ffd012;

        transform: translateY(-1px);
    }

    .map-header .map-menu-toggle .map-icon {
        width: 20px;
        height: 20px;
    }

    .map-header .map-logo {
        order: 2;

        margin: 0 auto;
    }

    .map-header .map-actions {
        order: 1;
    }

    .map-header .map-action.phone {
        display: none;
    }

    .map-header .map-action.account {
        display: none;
    }

    .map-header .map-action.cart {
        width: 42px;
        height: 42px;

        border-radius: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .map-header .map-head {
        min-height: 58px;
    }

    .map-header .map-menu-toggle,
    .map-header .map-action.cart {
        width: 39px;
        height: 39px;

        border-radius: 11px;
    }

    .map-header .map-menu-toggle .map-icon,
    .map-header .map-action .map-icon {
        width: 18px;
        height: 18px;
    }

    .map-header .map-logo img {
        width: 42px;
        height: 42px;
    }

}
/* ========================================
   سبد خرید مدرن و شیک - دسکتاپ + موبایل
   ======================================== */

/* متغیرهای تم */
.woocommerce-cart,
.woocommerce-cart .map-main {
  --brand: #102a43;
  --brand-hover: #071b2d;
  --accent: #0f766e;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.05);
}

/* ===== دسکتاپ: جدول سمت راست، جمع کل سمت چپ ===== */
@media (min-width: 992px) {

  .woocommerce-cart .woocommerce {
    display: flex !important;
    flex-direction: row-reverse !important; /* این کاره مهم: چپ رو میاره راست */
    gap: 32px;
    align-items: flex-start;
  }

  .woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 62%;
    margin: 0 !important;
  }

  .woocommerce-cart .cart-collaterals {
    flex: 0 0 360px;
    position: sticky;
    top: 100px;
  }

  /* جدول محصولات */
  .woocommerce-cart .shop_table.cart {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
  }

  .woocommerce-cart .shop_table.cart thead th {
    background: transparent;
    border: none;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    padding: 0 12px 8px;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item {
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item td {
    border: none !important;
    padding: 20px 16px !important;
    vertical-align: middle;
    background: transparent;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item td:first-child {
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item td:last-child {
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .woocommerce-cart .product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
  }

  .woocommerce-cart .product-name a {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
  }

  .woocommerce-cart .product-price,
  .woocommerce-cart .product-subtotal {
    font-weight: 600;
    font-size: 15px;
  }

  /* دکمه حذف */
  .woocommerce-cart .product-remove a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fef2f2;
    color: #ef4444 !important;
    font-size: 18px;
    transition: all 0.2s;
  }

  .woocommerce-cart .product-remove a:hover {
    background: #ef4444;
    color: white !important;
  }

  /* باکس جمع کل */
  .woocommerce-cart .cart_totals {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .woocommerce-cart .cart_totals h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--ink);
  }

  .woocommerce-cart .cart_totals .shop_table {
    border: none;
  }

  .woocommerce-cart .cart_totals .shop_table th,
  .woocommerce-cart .cart_totals .shop_table td {
    border: none !important;
    padding: 10px 0 !important;
    font-size: 14px;
  }

  .woocommerce-cart .cart_totals .order-total th,
  .woocommerce-cart .cart_totals .order-total td {
    font-size: 18px !important;
    font-weight: 700;
    padding-top: 16px !important;
    border-top: 1px solid var(--line) !important;
  }

  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 600;
    border-radius: 12px !important;
    background: var(--brand) !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(16, 42, 67, 0.25);
    transition: all 0.25s;
  }

  .woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--brand-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.3);
  }
}

/* ===== موبایل / اندروید: جمع و جور، شیک و مدرن ===== */
@media (max-width: 991px) {

  .woocommerce-cart .map-main {
    padding: 12px 12px 100px !important;
  }

  .woocommerce-cart .map-container {
    padding: 0 !important;
  }

  .woocommerce-cart .woocommerce {
    display: block !important;
  }

  /* کارت محصول */
  .woocommerce-cart .shop_table.cart {
    border: none !important;
    margin: 0 !important;
  }

  .woocommerce-cart .shop_table.cart thead {
    display: none !important;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 80px 1fr auto;
    grid-template-areas:
      "thumb name remove"
      "thumb price price"
      "qty qty qty"
      "subtotal subtotal subtotal";
    gap: 6px 12px;
    background: var(--surface);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    position: relative;
  }

  .woocommerce-cart .shop_table.cart tbody tr.cart_item td {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .woocommerce-cart .product-thumbnail {
    grid-area: thumb;
  }

  .woocommerce-cart .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
  }

  .woocommerce-cart .product-name {
    grid-area: name;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.4;
    padding-left: 28px !important;
  }

  .woocommerce-cart .product-name a {
    color: var(--ink);
  }

  .woocommerce-cart .product-remove {
    grid-area: remove;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .woocommerce-cart .product-remove a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef2f2;
    color: #ef4444 !important;
    font-size: 16px;
  }

  .woocommerce-cart .product-price {
    grid-area: price;
    font-size: 13px;
    color: var(--muted);
  }

  .woocommerce-cart .product-quantity {
    grid-area: qty;
    margin-top: 4px;
  }

  .woocommerce-cart .product-quantity .quantity {
    display: flex;
    justify-content: flex-start;
  }

  .woocommerce-cart .product-quantity input.qty {
    width: 70px !important;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    text-align: center;
    font-size: 15px;
  }

  .woocommerce-cart .product-subtotal {
    grid-area: subtotal;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-top: 2px;
  }

  /* دکمه‌های کوپن و بروزرسانی */
  .woocommerce-cart .actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 0 !important;
    margin: 8px 0 16px !important;
  }

  .woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
  }

  .woocommerce-cart .coupon input {
    flex: 1;
    height: 44px;
    border-radius: 11px;
    border: 1px solid var(--line);
    padding: 0 14px;
    font-size: 14px;
  }

  .woocommerce-cart .actions .button {
    height: 44px;
    border-radius: 11px !important;
    font-size: 14px !important;
    font-weight: 600;
  }

  /* باکس جمع کل */
  .woocommerce-cart .cart-collaterals {
    margin-top: 8px;
  }

  .woocommerce-cart .cart_totals {
    background: var(--surface);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .woocommerce-cart .cart_totals h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
  }

  .woocommerce-cart .cart_totals .shop_table th,
  .woocommerce-cart .cart_totals .shop_table td {
    padding: 7px 0 !important;
    font-size: 13.5px;
    border: none !important;
  }

  .woocommerce-cart .cart_totals .order-total th,
  .woocommerce-cart .cart_totals .order-total td {
    font-size: 16px !important;
    font-weight: 700;
    padding-top: 12px !important;
    border-top: 1px solid var(--line) !important;
  }

  .woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 16px;
  }

  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    height: 50px;
    border-radius: 13px !important;
    font-size: 15.5px !important;
    font-weight: 600;
    background: var(--brand) !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(16, 42, 67, 0.22);
  }
}

/* فاصله‌های کلی کمتر */
.woocommerce-cart .woocommerce-notices-wrapper {
  margin-bottom: 12px;
}

.woocommerce-cart .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}
/* ========================================
   باکس مجموع کل سبد خرید - نسخه شیک و فشرده
   ======================================== */

.cart_totals {
  --brand: #102a43;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e8ecf1;
  --radius: 14px;
}

/* دسکتاپ */
@media (min-width: 992px) {
  .cart_totals {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  }
}

/* ===== اندروید / موبایل - خیلی شیک و جمع‌وجور ===== */
@media (max-width: 991px) {

  .cart_totals {
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    padding: 16px 16px 18px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    margin-top: 12px;
  }

  /* عنوان */
  .cart_totals h2 {
    font-size: 15px !important;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 14px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    letter-spacing: -0.2px;
  }

  /* جدول داخلی */
  .cart_totals .shop_table {
    margin: 0 !important;
    border: none !important;
  }

  .cart_totals .shop_table tbody {
    display: block;
  }

  .cart_totals .shop_table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0 !important;
    border: none !important;
  }

  .cart_totals .shop_table tr + tr {
    border-top: 1px dashed #eef1f5 !important;
  }

  .cart_totals .shop_table th,
  .cart_totals .shop_table td {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 13.5px;
    line-height: 1.4;
  }

  .cart_totals .shop_table th {
    color: var(--muted);
    font-weight: 500;
    text-align: right;
  }

  .cart_totals .shop_table td {
    color: var(--ink);
    font-weight: 600;
    text-align: left;
  }

  /* ردیف مجموع نهایی */
  .cart_totals .order-total {
    margin-top: 4px;
    padding-top: 12px !important;
    border-top: 1.5px solid #e2e8f0 !important;
  }

  .cart_totals .order-total th {
    font-size: 14.5px !important;
    font-weight: 700;
    color: var(--ink);
  }

  .cart_totals .order-total td {
    font-size: 16px !important;
    font-weight: 800;
    color: var(--brand);
  }

  .cart_totals .order-total small {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.3;
  }

  /* لینک محاسبه حمل و نقل */
  .cart_totals .shipping-calculator-button {
    font-size: 13px !important;
    color: #0f766e !important;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .cart_totals .shipping-calculator-button:hover {
    color: #0d9488 !important;
  }

  /* دکمه اقدام به پرداخت */
  .cart_totals .wc-proceed-to-checkout {
    margin-top: 16px !important;
  }

  .cart_totals .checkout-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: var(--brand) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(16, 42, 67, 0.22);
    transition: all 0.25s ease;
  }

  .cart_totals .checkout-button:hover {
    background: #071b2d !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.28);
  }
}
/* ========================================
   استایل قطعی و قوی برای همه اینپوت‌ها
   ======================================== */

/* اینپوت کد تخفیف + همه اینپوت‌های متنی */
.woocommerce input.input-text,
.woocommerce input[type="text"],
.woocommerce input[type="number"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="search"],
.woocommerce #coupon_code,
.woocommerce input#coupon_code,
.woocommerce .coupon input,
.woocommerce-cart input.input-text,
.woocommerce-shipping-calculator input.input-text,
.woocommerce select,
.woocommerce .select2-selection {
  background-color: #ffffff !important;
  border: 2px solid #94a3b8 !important;          /* کادر تیره و واضح */
  border-radius: 10px !important;
  padding: 12px 14px !important;
  height: 48px !important;
  min-height: 48px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

/* وقتی روشون کلیک می‌شه */
.woocommerce input.input-text:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="number"]:focus,
.woocommerce #coupon_code:focus,
.woocommerce .coupon input:focus,
.woocommerce select:focus {
  border-color: #102a43 !important;
  box-shadow: 0 0 0 3px rgba(16, 42, 67, 0.15) !important;
  background-color: #ffffff !important;
}

/* placeholder */
.woocommerce input::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}

/* مخصوص اینپوت کد تخفیف */
.woocommerce .coupon {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
}

.woocommerce .coupon #coupon_code {
  flex: 1 1 auto !important;
  width: auto !important;
  margin: 0 !important;
}

.woocommerce .coupon .button {
  height: 48px !important;
  min-width: 110px !important;
  border-radius: 10px !important;
  white-space: nowrap;
}

/* سلکت استان و غیره */
.woocommerce select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 14px center !important;
  padding-left: 38px !important;
}

/* اینپوت تعداد */
.woocommerce .quantity input.qty {
  width: 72px !important;
  text-align: center !important;
  padding: 8px 4px !important;
}
/* ========================================
   اینپوت‌ها با کادر خیلی مشخص (نسخه نهایی)
   ======================================== */

.woocommerce input.input-text,
.woocommerce input[type="text"],
.woocommerce input[type="number"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="search"],
.woocommerce input[type="password"],
.woocommerce #coupon_code,
.woocommerce #calc_shipping_city,
.woocommerce #calc_shipping_postcode,
.woocommerce input#calc_shipping_city,
.woocommerce input#calc_shipping_postcode,
.woocommerce .coupon input,
.woocommerce-shipping-calculator input,
.woocommerce select,
.woocommerce .select2-selection--single {
  background: #ffffff !important;
  border: 2px solid #64748b !important;     /* کادر تیره و واضح */
  border-radius: 10px !important;
  padding: 0 14px !important;
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  font-size: 14px !important;
  color: #0f172a !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.06) !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* فوکوس */
.woocommerce input.input-text:focus,
.woocommerce input[type="text"]:focus,
.woocommerce #calc_shipping_city:focus,
.woocommerce #calc_shipping_postcode:focus,
.woocommerce #coupon_code:focus,
.woocommerce select:focus {
  border-color: #102a43 !important;
  box-shadow: 0 0 0 3px rgba(16, 42, 67, 0.18) !important;
  background: #fff !important;
}

/* placeholder */
.woocommerce input::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}

/* سلکت‌ها */
.woocommerce select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 14px center !important;
  padding-left: 40px !important;
}

/* اینپوت تعداد */
.woocommerce .quantity input.qty {
  width: 70px !important;
  text-align: center !important;
  padding: 0 !important;
}
/* =========================================================
   MAP724 CHECKOUT — PREMIUM LIGHT UI
   نسخه هماهنگ با استایل فعلی سایت
========================================================= */

.map-page {
    --checkout-surface: #ffffff;
    --checkout-bg: #f7f8fa;
    --checkout-line: #e2e8f0;
    --checkout-line-strong: #cbd5e1;

    --checkout-text: #22211d;
    --checkout-muted: #64748b;

    --checkout-brand: #102a43;
    --checkout-brand-hover: #071b2d;
    --checkout-brand-soft: rgba(16,42,67,.07);

    --checkout-radius: 16px;
    --checkout-radius-sm: 11px;

    --checkout-shadow:
        0 8px 24px rgba(15,23,42,.06);

    --checkout-shadow-hover:
        0 14px 35px rgba(15,23,42,.10);
}


/* =========================================================
   RESET
========================================================= */

.map-page #checkout,
.map-page #checkout *,
.map-page #checkout *::before,
.map-page #checkout *::after {
    box-sizing: border-box;
}

.map-page #checkout {
    width: 100%;
    direction: rtl;
    color: var(--checkout-text);
}

.map-page #checkout p {
    margin-top: 0;
}

.map-page #checkout .form-row {
    margin-bottom: 0;
}


/* =========================================================
   DESKTOP LAYOUT
========================================================= */

@media (min-width: 1000px) {

    .map-page #checkout {

        display: grid;

        grid-template-columns:
            minmax(0, 1.45fr)
            minmax(340px, .75fr);

        grid-template-rows: auto auto;

        gap: 16px 18px;

        align-items: start;
    }

    /* اطلاعات مشتری */
    .map-page #customer_details {

        grid-column: 1;
        grid-row: 1 / span 2;

        min-width: 0;
    }

    /* عنوان سفارش */
    .map-page #order_review_heading {

        grid-column: 2;
        grid-row: 1;
    }

    /* سفارش */
    .map-page #order_review {

        grid-column: 2;
        grid-row: 2;

        min-width: 0;

        /*
         * حرکت همراه اسکرول
         * سپس توقف در بالای صفحه
         */
        position: sticky;
        top: 20px;

        align-self: start;
    }
}


/* =========================================================
   CUSTOMER CARDS
========================================================= */

.map-page #customer_details {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 14px;
}

.map-page #customer_details > .col-1,
.map-page #customer_details > .col-2 {

    width: 100% !important;

    float: none !important;

    min-width: 0;

    padding: 19px;

    background: var(--checkout-surface);

    border:
        1px solid var(--checkout-line);

    border-radius: var(--checkout-radius);

    box-shadow: var(--checkout-shadow);

    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease;
}

.map-page #customer_details > .col-1:hover,
.map-page #customer_details > .col-2:hover {

    border-color: var(--checkout-line-strong);

    box-shadow: var(--checkout-shadow-hover);
}


/* =========================================================
   HEADINGS
========================================================= */

.map-page #checkout h3 {

    position: relative;

    display: flex;
    align-items: center;

    min-height: 26px;

    margin: 0 0 16px !important;

    padding-right: 12px;

    color: var(--checkout-brand);

    font-size: 17px;

    font-weight: 850;

    line-height: 1.5;
}

.map-page #checkout h3::before {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    width: 4px;
    height: 20px;

    transform: translateY(-50%);

    border-radius: 10px;

    background: var(--checkout-brand);
}


/* =========================================================
   FIELD GRID
========================================================= */

.map-page .woocommerce-billing-fields__field-wrapper,
.map-page .woocommerce-shipping-fields__field-wrapper {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 11px 10px;
}


/* Full width fields */

.map-page #billing_address_1_field,
.map-page #billing_address_2_field,

.map-page #shipping_address_1_field,
.map-page #shipping_address_2_field,

.map-page #shipping_country_field {

    grid-column: 1 / -1;

    width: 100% !important;
}


/* Hidden country */

.map-page #billing_country_field {
    display: none !important;
}


/* =========================================================
   LABEL
========================================================= */

.map-page #checkout label {

    display: block;

    margin: 0 0 5px;

    color: #475569;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.6;
}

.map-page #checkout label .required,
.map-page #checkout label abbr.required {

    color: #dc2626;

    text-decoration: none;
}

.map-page #checkout label .optional {

    color: #94a3b8;

    font-size: 10px;

    font-weight: 500;
}


/* =========================================================
   INPUTS
========================================================= */

.map-page #checkout input.input-text,
.map-page #checkout input[type="text"],
.map-page #checkout input[type="tel"],
.map-page #checkout input[type="email"],
.map-page #checkout input[type="password"],
.map-page #checkout textarea {

    width: 100% !important;

    min-height: 45px;

    padding: 0 12px;

    border:
        1px solid #dbe2ea !important;

    border-radius:
        var(--checkout-radius-sm) !important;

    background: #fff !important;

    color: var(--checkout-text) !important;

    outline: none !important;

    font-family: inherit;

    font-size: 13px;

    box-shadow:
        0 1px 2px rgba(15,23,42,.025);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* Hover */

.map-page #checkout input.input-text:hover,
.map-page #checkout input[type="text"]:hover,
.map-page #checkout input[type="tel"]:hover,
.map-page #checkout input[type="email"]:hover,
.map-page #checkout input[type="password"]:hover,
.map-page #checkout textarea:hover {

    border-color:
        #b8c4d1 !important;
}


/* Focus */

.map-page #checkout input.input-text:focus,
.map-page #checkout input[type="text"]:focus,
.map-page #checkout input[type="tel"]:focus,
.map-page #checkout input[type="email"]:focus,
.map-page #checkout input[type="password"]:focus,
.map-page #checkout textarea:focus {

    border-color:
        var(--checkout-brand) !important;

    box-shadow:
        0 0 0 3px
        rgba(16,42,67,.08) !important;

    background: #fff !important;
}


/* Placeholder */

.map-page #checkout input::placeholder,
.map-page #checkout textarea::placeholder {

    color: #94a3b8;

    opacity: 1;
}


/* =========================================================
   SELECT2
========================================================= */

.map-page #checkout .select2-container {

    width: 100% !important;
}

.map-page #checkout
.select2-selection--single {

    height: 45px !important;

    display: flex !important;

    align-items: center !important;

    border:
        1px solid #dbe2ea !important;

    border-radius:
        var(--checkout-radius-sm) !important;

    background: #fff !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.map-page #checkout
.select2-selection--single:hover {

    border-color: #b8c4d1 !important;
}

.map-page #checkout
.select2-container--open
.select2-selection--single {

    border-color:
        var(--checkout-brand) !important;

    box-shadow:
        0 0 0 3px
        rgba(16,42,67,.08) !important;
}

.map-page #checkout
.select2-selection__rendered {

    width: 100%;

    padding-right: 12px !important;
    padding-left: 35px !important;

    color: var(--checkout-text) !important;

    font-family: inherit !important;

    font-size: 13px !important;

    line-height: 43px !important;

    text-align: right;
}

.map-page #checkout
.select2-selection__placeholder {

    color: #94a3b8 !important;
}

.map-page #checkout
.select2-selection__arrow {

    left: 9px !important;

    right: auto !important;

    top: 50% !important;

    transform:
        translateY(-50%);
}


/* =========================================================
   SELECT2 DROPDOWN
========================================================= */

.select2-container--default
.select2-dropdown {

    overflow: hidden;

    border:
        1px solid #dbe2ea !important;

    border-radius: 12px !important;

    background: #fff !important;

    box-shadow:
        0 18px 45px
        rgba(15,23,42,.14) !important;
}

.select2-container--default
.select2-results__option {

    padding:
        9px 12px !important;

    color: #334155 !important;

    font-family: inherit !important;

    font-size: 12px !important;

    text-align: right;

    transition:
        background .15s ease;
}

.select2-container--default
.select2-results__option--highlighted[aria-selected] {

    background:
        var(--checkout-brand) !important;

    color: #fff !important;
}

.select2-container--default
.select2-results__option[aria-selected="true"] {

    background:
        var(--checkout-brand-soft) !important;

    color:
        var(--checkout-brand) !important;

    font-weight: 700;
}


/* =========================================================
   CHECKBOXES
========================================================= */

.map-page #checkout input[type="checkbox"] {

    width: 17px;
    height: 17px;

    margin: 0 !important;

    accent-color:
        var(--checkout-brand);

    cursor: pointer;
}


/* Account */

.map-page .woocommerce-account-fields {

    margin-top: 13px;

    padding-top: 13px;

    border-top:
        1px solid #eef2f6;
}

.map-page .woocommerce-form__label-for-checkbox {

    display: flex !important;

    align-items: center;

    gap: 8px;

    min-height: 42px;

    margin: 0 !important;

    padding: 8px 10px;

    border:
        1px solid #e2e8f0;

    border-radius: 11px;

    background:
        #f8fafc;

    cursor: pointer;
}


/* Shipping checkbox */

.map-page #ship-to-different-address {

    margin-bottom: 14px !important;
}

.map-page #ship-to-different-address label {

    display: flex !important;

    align-items: center;

    min-height: 45px;

    margin: 0 !important;

    padding: 9px 11px;

    border:
        1px solid #e2e8f0;

    border-radius: 12px;

    background:
        #f8fafc;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.map-page #ship-to-different-address label:hover {

    border-color:
        #cbd5e1;

    background:
        #f1f5f9;
}


/* =========================================================
   ADDITIONAL NOTES
========================================================= */

.map-page .woocommerce-additional-fields {

    margin-top: 14px;

    padding-top: 14px;

    border-top:
        1px solid #eef2f6;
}

.map-page #order_comments {

    min-height: 90px !important;

    padding:
        11px 12px !important;

    line-height: 1.8;
}


/* =========================================================
   ORDER HEADER
========================================================= */

.map-page #order_review_heading {

    position: relative;

    margin: 0 !important;

    padding:
        16px 18px !important;

    color:
        var(--checkout-brand);

    border:
        1px solid var(--checkout-line);

    border-bottom:
        0;

    border-radius:
        var(--checkout-radius)
        var(--checkout-radius)
        0
        0;

    background:
        #fff;

    box-shadow:
        0 4px 18px rgba(15,23,42,.04);
}


/* =========================================================
   ORDER REVIEW
========================================================= */

.map-page #order_review {

    padding: 14px;

    border:
        1px solid var(--checkout-line);

    border-radius:
        0
        0
        var(--checkout-radius)
        var(--checkout-radius);

    background:
        #fff;

    box-shadow:
        0 8px 28px rgba(15,23,42,.07);
}


/* =========================================================
   ORDER TABLE
========================================================= */

.map-page
.woocommerce-checkout-review-order-table {

    width: 100% !important;

    margin: 0 !important;

    border:
        1px solid #e2e8f0 !important;

    border-radius: 12px !important;

    border-spacing: 0;

    overflow: hidden;

    background: #fff;
}

.map-page
.woocommerce-checkout-review-order-table
th,
.map-page
.woocommerce-checkout-review-order-table
td {

    padding:
        10px 11px !important;

    border: 0 !important;

    border-bottom:
        1px solid #eef2f6 !important;

    color:
        #475569;

    font-size: 12px;

    vertical-align: middle;
}

.map-page
.woocommerce-checkout-review-order-table
thead th {

    background:
        #f8fafc;

    color:
        #64748b;

    font-size: 10px;

    font-weight: 800;
}

.map-page
.woocommerce-checkout-review-order-table
.cart_item td:first-child {

    color:
        #1e293b;

    font-weight: 650;

    line-height: 1.7;
}

.map-page
.product-quantity {

    display: inline-flex;

    margin-right: 4px;

    padding:
        2px 6px;

    border-radius: 6px;

    background:
        #f1f5f9;

    color:
        #64748b;

    font-size: 10px;
}

.map-page
.woocommerce-checkout-review-order-table
.woocommerce-Price-amount {

    white-space: nowrap;

    color:
        #1e293b;

    font-weight: 750;
}


/* =========================================================
   TOTAL
========================================================= */

.map-page
.woocommerce-checkout-review-order-table
.order-total th,
.map-page
.woocommerce-checkout-review-order-table
.order-total td {

    border-bottom: 0 !important;

    padding-top:
        14px !important;

    padding-bottom:
        14px !important;

    background:
        #f8fafc;
}

.map-page
.woocommerce-checkout-review-order-table
.order-total th {

    color:
        var(--checkout-brand);

    font-size: 14px;

    font-weight: 850;
}

.map-page
.woocommerce-checkout-review-order-table
.order-total
.woocommerce-Price-amount {

    color:
        var(--checkout-brand);

    font-size: 16px;

    font-weight: 900;
}

.map-page
.woocommerce-checkout-review-order-table
.includes_tax {

    display: block;

    margin-top: 3px;

    color:
        #94a3b8;

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   PAYMENT METHODS
========================================================= */

.map-page #payment {

    margin-top: 12px;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
}

.map-page #payment
.wc_payment_methods {

    display: grid;

    gap: 8px;

    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


/* کارت واقعی */

.map-page #payment
.wc_payment_method {

    position: relative;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden;

    border:
        1px solid #dbe2ea !important;

    border-radius: 13px !important;

    background:
        #fff !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* قبل از انتخاب کاملاً مشخص */

.map-page #payment
.wc_payment_method:hover {

    border-color:
        #aebdcb !important;

    box-shadow:
        0 5px 18px rgba(15,23,42,.06);

    transform:
        translateY(-1px);
}


/* radio */

.map-page #payment
.wc_payment_method > input[type="radio"] {

    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* label */

.map-page #payment
.wc_payment_method > label {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 61px;

    margin: 0 !important;

    padding:
        9px 12px;

    color:
        #334155 !important;

    font-size: 12px;

    font-weight: 750;

    cursor: pointer;
}


/* دایره */

.map-page #payment
.wc_payment_method > label::before {

    content: "";

    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    margin-left: 9px;

    border:
        2px solid #cbd5e1;

    border-radius: 50%;

    background: #fff;

    transition:
        all .2s ease;
}


/* لوگو */

.map-page #payment
.wc_payment_method > label img {

    width: auto !important;

    max-width: 90px !important;

    max-height: 30px !important;

    margin-right: auto !important;

    margin-left: 0 !important;

    object-fit: contain;
}


/* انتخاب شده */

.map-page #payment
.wc_payment_method
> input[type="radio"]:checked
+ label {

    color:
        var(--checkout-brand) !important;

    background:
        var(--checkout-brand-soft);
}

.map-page #payment
.wc_payment_method
> input[type="radio"]:checked
+ label::before {

    border-color:
        var(--checkout-brand);

    background:
        var(--checkout-brand);

    box-shadow:
        inset 0 0 0 4px #fff;
}


/* خود کارت انتخاب شده */

.map-page #payment
.wc_payment_method:has(
    > input[type="radio"]:checked
) {

    border-color:
        var(--checkout-brand) !important;

    box-shadow:
        0 0 0 1px
        rgba(16,42,67,.08),
        0 7px 22px
        rgba(15,23,42,.08);
}


/* =========================================================
   PAYMENT DESCRIPTION
========================================================= */

.map-page #payment .payment_box {
  

    margin:
        0 9px 9px !important;

    padding:
        10px 11px !important;

    border:
        1px solid #e5eaf0 !important;

    border-radius: 10px !important;

    background:
        #f8fafc !important;

    color:
        #64748b !important;

    font-size: 10px !important;

    line-height: 1.9 !important;
}

.map-page #payment
.payment_box::before {

    display: none !important;
}

.map-page #payment
.payment_box p {

    margin: 0 !important;
}


/* Tara */

.map-page #tara360_MobileNo {

    min-height: 43px !important;

    margin-top: 4px;

    background: #fff !important;
}


/* =========================================================
   PLACE ORDER
========================================================= */

.map-page #payment
.place-order {

    margin:
        10px 0 0 !important;

    padding: 0 !important;
}

.map-page #place_order {

    width: 100% !important;

    min-height: 53px !important;

    padding:
        0 18px !important;

    border: 0 !important;

    border-radius: 13px !important;

    background:
        var(--checkout-brand) !important;

    color: #fff !important;

    font-family: inherit !important;

    font-size: 14px !important;

    font-weight: 850 !important;

    cursor: pointer;

    box-shadow:
        0 9px 22px
        rgba(16,42,67,.17);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.map-page #place_order:hover {

    background:
        var(--checkout-brand-hover) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 13px 28px
        rgba(16,42,67,.22);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 999px) {

    .map-page #checkout {

        display: block;
    }

    .map-page #customer_details {

        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 12px;
    }

    .map-page #order_review_heading {

        margin-top: 13px !important;
    }

    .map-page #order_review {

        position: static;

        margin-top: 0;
    }
}


/* =========================================================
   MOBILE واقعی
========================================================= */

@media (max-width: 680px) {

    .map-page #customer_details {

        display: block;
    }

    .map-page #customer_details > .col-1,
    .map-page #customer_details > .col-2 {

        margin-bottom: 10px;

        padding: 13px;

        border-radius: 14px;
    }

    .map-page
    .woocommerce-billing-fields__field-wrapper,
    .map-page
    .woocommerce-shipping-fields__field-wrapper {

        grid-template-columns: 1fr;

        gap: 9px;
    }

    .map-page #checkout h3 {

        margin-bottom: 13px !important;

        font-size: 15px;
    }

    .map-page #checkout
    input.input-text,
    .map-page #checkout
    input[type="text"],
    .map-page #checkout
    input[type="tel"],
    .map-page #checkout
    input[type="email"],
    .map-page #checkout
    input[type="password"] {

        min-height: 44px;
    }

    .map-page #order_review_heading {

        padding:
            14px 15px !important;

        border-radius:
            14px
            14px
            0
            0;

        font-size: 15px;
    }

    .map-page #order_review {

        padding: 9px;

        border-radius:
            0
            0
            14px
            14px;
    }

    .map-page
    .woocommerce-checkout-review-order-table
    th,
    .map-page
    .woocommerce-checkout-review-order-table
    td {

        padding:
            9px 8px !important;

        font-size: 10.5px;
    }

    .map-page #payment
    .wc_payment_method > label {

        min-height: 58px;

        padding:
            8px 10px;

        font-size: 11px;
    }

    .map-page #payment
    .wc_payment_method > label img {

        max-width: 75px !important;

        max-height: 27px !important;
    }

    .map-page #place_order {

        min-height: 52px !important;

        font-size: 13px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .map-page #customer_details > .col-1,
    .map-page #customer_details > .col-2 {

        padding: 11px;
    }

    .map-page #payment
    .wc_payment_method > label img {

        max-width: 65px !important;
    }

    .map-page
    .woocommerce-checkout-review-order-table
    th,
    .map-page
    .woocommerce-checkout-review-order-table
    td {

        padding:
            8px 7px !important;
    }
}
/* ===== FORCE CHECKOUT INPUT BACKGROUND ===== */

body #checkout input#billing_first_name,
body #checkout input#billing_last_name,
body #checkout input#billing_phone,
body #checkout input#billing_email,
body #checkout input#billing_address_1,
body #checkout input#billing_address_2,
body #checkout input#billing_postcode,
body #checkout input#puiw_billing_uin,
body #checkout input.input-text {
    background: #4b84ad !important;
    background-color: #4b84ad !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.25) !important;
}