/* ===== Header (exact port from Nuxt AppHeader.vue — blue/navy theme) ===== */
/* ── Promo bar ── */
.promo-bar {
  background: #169ad9;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  flex-wrap: wrap;
  gap: 4px;
}
.promo-text { font-weight: 600; font-size: 13px; color: #fff; }
.promo-right { display: flex; align-items: center; gap: 0; }
.promo-lang { padding: 0 14px; font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; }
.promo-currency {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 14px 0 4px;
}
.promo-currency select {
  appearance: none;
  background: #fff;
  color: #003149;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 30px 6px 14px;
  cursor: pointer;
  outline: none;
}
.promo-currency i {
  position: absolute;
  right: 11px;
  font-size: 11px;
  color: #003149;
  pointer-events: none;
}
.promo-link {
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.promo-link:last-child { padding-right: 0; }
.lang-select {
  height: 36px; padding: 0 20px 0 8px; background: transparent;
  border: 0; color: #fff; font-size: 12px; font-weight: 600;
  cursor: pointer; outline: none; appearance: none;
}
.account-wrap { position: relative; border-left: 1px solid rgba(255,255,255,0.2); }
.account-btn {
  padding: 0 12px; display: inline-flex; align-items: center; gap: 5px;
  color: #fff; background: none; border: none; cursor: pointer; font-size: 12px; font-weight: 600;
  height: 36px;
}
.account-dropdown {
  position: absolute; top: 100%; right: 0; background: #fff;
  border: 1px solid #dde4ec; border-radius: 6px; min-width: 160px;
  z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.1); overflow: hidden;
}
.account-item {
  display: block; padding: 10px 16px; font-size: 13px; color: #003149;
  text-decoration: none; white-space: nowrap; background: none; border: none;
  width: 100%; text-align: left; cursor: pointer;
}
.account-item:hover { background: #f5f7f9; }
.account-logout { color: #d32f2f; border-top: 1px solid #f0f0f0; }

/* ── Main header ── */
.main-header { background: linear-gradient(100deg, #00263a 0%, #003a55 60%, #002a3f 100%); color: #fff; overflow: visible; }
.main-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: nowrap;
  overflow: visible;
}
.hamburger {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 24px; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 46px; width: auto; }
.search-form {
  flex: 1; max-width: 720px; display: flex; align-items: center; height: 52px;
  background: #fff; border-radius: 8px; padding: 5px; overflow: hidden;
}
.search-input {
  flex: 1; min-width: 0; padding: 0 16px; border: 0; outline: none;
  font-size: 15px; color: #333; background: transparent;
}
.search-input::placeholder { color: #9aa3ad; }
.search-btn {
  flex-shrink: 0; height: 100%; padding: 0 36px; border-radius: 6px;
  background: var(--primary-color); color: #fff; font-weight: 600;
  font-size: 14px; border: 0; cursor: pointer; transition: background .2s;
}
.search-btn:hover { background: #0577ad; }
.phone-block {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.phone-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary-color); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 18px;
}
.phone-num { color: #fff; font-weight: 600; font-size: 16px; white-space: nowrap; }
.header-icons { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.icon-btn {
  position: relative; color: #fff; background: none; border: 0;
  cursor: pointer; font-size: 24px; padding: 0;
}
.icon-badge {
  position: absolute; top: -9px; right: -10px;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
  background: var(--primary-color); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile search bar: hidden on desktop */
.mobile-search { display: none; }
.mobile-search-form {
  display: flex; height: 40px; margin: 0 16px 16px;
  border-radius: 6px; overflow: hidden; border: 2px solid rgba(255,255,255,0.3);
}
.mobile-search-input {
  flex: 1; padding: 0 12px; border: 0; outline: none;
  font-size: 14px; color: #333; background: #fff;
}
.mobile-search-btn {
  width: 44px; background: var(--primary-color); color: #fff;
  border: 0; cursor: pointer; font-size: 16px;
}

/* ── Desktop nav ── */
.desktop-nav { background: #001b2b; position: relative; z-index: 40; }
.desktop-nav-inner { display: flex; align-items: stretch; min-height: 60px; }
.nav-categories { position: relative; display: flex; align-items: stretch; }
.nav-categories-btn {
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(180deg, #0a93d3 0%, #047bb5 100%);
  color: #fff;
  font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .02em;
  padding: 0 24px; white-space: nowrap; text-decoration: none;
  min-width: 256px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
.nav-categories-btn > i:first-child { font-size: 15px; }
.nav-categories-btn .caret { margin-left: auto; font-size: 11px; opacity: .85; }
.nav-categories-btn:hover { background: linear-gradient(180deg, #0a8ecb 0%, #036ca0 100%); color: #fff; }
.desktop-nav-links { display: flex; align-items: stretch; padding-left: 18px; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: flex; align-items: center; gap: 8px; padding: 0 18px; min-height: 60px;
  color: #e8edf2; font-weight: 500; font-size: 14px; white-space: nowrap; text-decoration: none;
}
.nav-link i { font-size: 13px; color: var(--primary-color); transition: color .2s; }
.nav-link:hover { color: #fff; }
.nav-link:hover i { color: #fff; }

/* Nav right-side info */
.nav-right { display: flex; align-items: center; gap: 22px; margin-left: auto; padding-right: 4px; }
.nav-promo { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #9fb0bd; white-space: nowrap; }
.nav-promo i { color: var(--primary-color); }
.nav-help {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #e8edf2; white-space: nowrap;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px;
  transition: background .2s, border-color .2s;
}
.nav-help i { color: var(--primary-color); }
.nav-help:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); color: #fff; }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15); padding: 12px 0; z-index: 45; min-width: 200px;
}
.nav-dropdown-wide { display: grid; grid-template-columns: repeat(3, 240px); padding: 16px 20px; gap: 2px 0; }
.nav-dropdown-item {
  display: block; padding: 9px 20px; font-size: 14px;
  color: #2c2c2c; text-decoration: none; white-space: nowrap;
}
.nav-dropdown-item:hover { background: #f5f7f9; color: #003149; }

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 768px) {
  /* Hide promo bar entirely */
  .promo-bar { display: none; }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* Compact main header */
  .main-inner {
    gap: 8px;
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Hide desktop-only elements */
  .search-form { display: none; }
  .phone-block { display: none; }

  /* Show mobile search */
  .mobile-search { display: block; padding-bottom: 16px; }

  /* Logo: auto width, taller on mobile */
  .logo-img { height: 40px; width: auto; max-width: 140px; }

  /* Push icons to far right */
  .header-icons { margin-left: auto; gap: 14px; }

  /* Hide compare icon on mobile */
  .icon-btn.hide-mobile { display: none; }

  /* Hide desktop nav */
  .desktop-nav { display: none; }
}

/* ===== Footer (port from AppFooter.vue) ===== */

/* CSS-only dropdown reveal (replaces Vue hover state) */
.nav-item .nav-dropdown, .nav-categories .nav-dropdown, .account-wrap .account-dropdown { display: none; }
.nav-item:hover .nav-dropdown, .nav-categories:hover .nav-dropdown, .account-wrap:hover .account-dropdown { display: block; }

/* Mobile nav drawer */
.mobile-nav-drawer { display: none; flex-direction: column; background: #002438; }
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-link { padding: 13px 18px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 600; font-size: 14px; }
.mobile-nav-link:hover { background: rgba(255,255,255,0.06); color: var(--primary-color); }
@media (min-width: 769px) { .mobile-nav-drawer { display: none !important; } }

/* nav "Semua Produk" primary button (blue) */
.nav-link.nav-link-primary { background: var(--primary-color); color: #fff; }
.nav-link.nav-link-primary:hover { background: #0577ad; color: #fff; }

/* ===== Storefront sections & product cards (blue theme) ===== */
.mt-section { padding: 34px 0; }
.mt-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 2px solid #ededed; padding-bottom: 12px; }
.mt-section-title { font-size: 22px; font-weight: 700; color: var(--secondary-color); margin: 0; position: relative; padding-left: 14px; text-transform: uppercase; letter-spacing: .01em; }
.mt-section-title::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 5px; border-radius: 3px; background: var(--primary-color); }
.mt-section-link { color: #555; font-weight: 600; font-size: 13px; }
.mt-section-link:hover { color: var(--primary-color); }

.mt-product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1100px) { .mt-product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .mt-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .mt-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.mt-product-card { position: relative; background: #fff; border: 1px solid #ededed; border-radius: var(--border-radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.mt-product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.10); transform: translateY(-3px); }
/* wishlist / compare overlay tools */
.mt-card-tools { position: absolute; top: 10px; right: 10px; z-index: 3; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; }
.mt-product-card:hover .mt-card-tools { opacity: 1; transform: translateX(0); }
.mt-card-tools .mt-tool { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #e6ebf0; background: #fff; color: #5c6b7a; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; box-shadow: 0 2px 8px rgba(20,30,50,.10); transition: all .2s; }
.mt-card-tools .mt-tool:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.mt-card-tools .mt-tool.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
@media (hover: none) { .mt-card-tools { opacity: 1; transform: none; } }

/* Product page secondary actions */
.pdp-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.pdp-action { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid #d9e0e7; border-radius: 8px; background: #fff; color: #44505c; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s; }
.pdp-action:hover { border-color: var(--primary-color); color: var(--primary-color); }
.pdp-action.active { border-color: var(--primary-color); color: var(--primary-color); background: rgba(6,143,208,.06); }

/* Compare table */
.compare-wrap { overflow-x: auto; background: #fff; border: 1px solid #eef0f2; border-radius: 12px; margin-bottom: 40px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #eef0f2; font-size: 14px; vertical-align: middle; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.compare-label { width: 150px; background: #f7f9fb; font-weight: 700; color: var(--secondary-color); white-space: nowrap; }
.compare-col { position: relative; text-align: center !important; vertical-align: top; min-width: 200px; }
.compare-head-row td, .compare-head-row th { background: #fafbfc; }
.compare-remove { position: absolute; top: 8px; right: 8px; }
.compare-remove button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #e6ebf0; background: #fff; color: #9aa0a6; cursor: pointer; font-size: 12px; transition: all .2s; }
.compare-remove button:hover { background: #d32f2f; color: #fff; border-color: #d32f2f; }
.compare-thumb { display: block; height: 110px; margin: 6px auto 12px; }
.compare-thumb img { height: 110px; width: auto; max-width: 100%; object-fit: contain; }
.compare-name { display: block; font-weight: 600; color: var(--secondary-color); font-size: 14px; line-height: 1.4; }
.compare-name:hover { color: var(--primary-color); }
.compare-price { font-weight: 700; color: var(--price-color); }
.compare-was { display: block; font-size: 12px; color: #aab1ba; text-decoration: line-through; font-weight: 400; }
.mt-product-thumb { position: relative; display: block; aspect-ratio: 1/1; background: #fff; padding: 14px; }
.mt-product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.mt-badge { position: absolute; top: 8px; left: 8px; background: var(--secondary-color); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px; z-index: 2; text-transform: uppercase; }
.mt-discount { position: absolute; top: 8px; right: 8px; background: #e53935; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; z-index: 2; }
.mt-product-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mt-product-brand { font-size: 11px; color: #9aa0a6; text-transform: uppercase; letter-spacing: .03em; }
.mt-product-name { font-size: 13px; font-weight: 600; color: #303840; line-height: 1.35; min-height: 35px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mt-product-name:hover { color: var(--primary-color); }
.mt-product-rating { color: #f5a623; font-size: 11px; }
.mt-review-count { color: #9aa0a6; margin-left: 4px; }
.mt-product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.mt-price-now { font-size: 16px; font-weight: 700; color: var(--price-color); }
.mt-price-was { font-size: 12px; color: #b0b6bd; text-decoration: line-through; }
.mt-add-btn { margin-top: 8px; width: 100%; background: var(--primary-color); color: #fff; border: 0; border-radius: var(--border-radius); padding: 9px; font-weight: 700; font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.mt-add-btn:hover:not(:disabled) { background: var(--secondary-color); color: #fff; }
.mt-add-btn:disabled { background: #e2e2e2; color: #999; cursor: not-allowed; }

/* Hero slider (dark + blue accent) */
.mt-slider { position: relative; overflow: hidden; background: #001523; width: 100vw; margin-left: calc(50% - 50vw); margin-top: 0; margin-bottom: 24px; }
.mt-slides { display: flex; transition: transform .5s ease; }
.mt-slide { position: relative; min-width: 100%; height: 460px; background-size: cover; background-position: center right; display: flex; align-items: center; }
.mt-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #001523 0%, rgba(0,21,35,.94) 22%, rgba(0,21,35,.55) 46%, rgba(0,21,35,.12) 66%, rgba(0,21,35,0) 82%); }
.mt-slide-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; color: #fff; }
.mt-slide-content .mt-slide-badge { display: inline-block; background: var(--primary-color); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; padding: 8px 18px; border-radius: 999px; margin-bottom: 22px; }
.mt-slide-content h2 { font-size: 52px; font-weight: 800; line-height: 1.02; margin: 0 0 16px; text-transform: uppercase; }
.mt-slide-content h2 .l1 { display: block; color: var(--primary-color); font-weight: 700; }
.mt-slide-content h2 .l2 { display: block; color: #fff; }
.mt-slide-content p { font-size: 17px; color: rgba(255,255,255,.82); margin: 0 0 28px; max-width: 480px; }
.mt-slide-content .btn { display: inline-flex; align-items: center; gap: 10px; background: var(--primary-color); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 14px; padding: 14px 30px; border-radius: 8px; transition: background .2s; }
.mt-slide-content .btn i { font-size: 13px; }
.mt-slide-content .btn:hover { background: #057bb4; color: #fff; }
.mt-slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.mt-slider-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: width .2s, background .2s; }
.mt-slider-dots button.active { width: 28px; border-radius: 6px; background: var(--primary-color); }
.mt-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.15); color: #fff; cursor: pointer; font-size: 16px; }
.mt-slider-arrow:hover { background: var(--primary-color); color: #fff; }
.mt-slider-arrow.prev { left: 14px; }
.mt-slider-arrow.next { right: 14px; }
@media (max-width: 700px) {
  .mt-slide { height: 340px; }
  .mt-slide-content { padding: 0 24px; }
  .mt-slide-content h2 { font-size: 32px; }
  .mt-slide-content p { font-size: 15px; }
}

/* Reassurance / feature icons row */
.mt-reassurance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 10px 0 4px; }
@media (max-width: 760px) { .mt-reassurance { grid-template-columns: repeat(2, 1fr); } }
.mt-reassure-item { display: flex; align-items: center; gap: 16px; background: #f7f9fb; border: 1px solid #eef1f4; border-radius: 14px; padding: 20px 22px; }
.mt-reassure-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; }
.mt-reassure-icon i { font-size: 22px; color: #fff; }
.mt-reassure-item strong { display: block; font-size: 16px; font-weight: 700; color: var(--secondary-color); line-height: 1.25; }
.mt-reassure-item span { font-size: 13px; color: #9aa0a6; }

/* Promo banner blocks */
.mt-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .mt-promo-grid { grid-template-columns: 1fr; } }
.mt-promo-banner { position: relative; border-radius: 6px; padding: 30px 28px; min-height: 150px; color: #fff; background: #003149; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.mt-promo-banner.alt { background: #00496b; }
.mt-promo-banner .pb-sub { color: var(--primary-color); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.mt-promo-banner h3 { margin: 6px 0 14px; font-size: 24px; font-weight: 800; }
.mt-promo-banner h3 .hl { color: var(--primary-color); }
.mt-promo-banner .pb-link { align-self: flex-start; background: var(--primary-color); color: #fff; font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 4px; }
.mt-promo-banner .pb-link:hover { background: #fff; color: var(--secondary-color); }

/* Category strip */
.mt-cat-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
@media (max-width: 860px) { .mt-cat-strip { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .mt-cat-strip { grid-template-columns: repeat(2,1fr); } }
.mt-cat-card { background: #fff; border: 1px solid #ededed; border-radius: var(--border-radius); padding: 20px 12px; text-align: center; color: var(--secondary-color); font-weight: 600; font-size: 13px; }
.mt-cat-card:hover { border-color: var(--primary-color); box-shadow: 0 6px 18px rgba(0,0,0,.07); }
.mt-cat-card i { font-size: 28px; color: var(--primary-color); margin-bottom: 10px; display: block; }
.mt-cat-card .mt-cat-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }

/* Brand carousel */
.mt-brand-strip { display: flex; gap: 16px; overflow-x: auto; padding: 4px; scrollbar-width: thin; }
.mt-brand-strip::-webkit-scrollbar { height: 6px; }
.mt-brand-strip::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.mt-brand-item { flex: 0 0 180px; height: 92px; background: #fff; border: 1px solid #ededed; border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; padding: 14px; transition: box-shadow .2s; }
.mt-brand-item:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); border-color: var(--primary-color); }
.mt-brand-item img { max-height: 56px; max-width: 100%; object-fit: contain; }
.mt-brand-item span { font-weight: 700; color: var(--secondary-color); }

/* Footer bottom */
.footer-bottom { background: #002438; color: rgba(255,255,255,.7); text-align: center; padding: 16px 0; font-size: 13px; }

/* ===== Vehicle category cards (icon badge) ===== */
.mt-vehicle-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 980px) { .mt-vehicle-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .mt-vehicle-strip { grid-template-columns: repeat(2, 1fr); } }
.mt-vehicle-card { display: flex; flex-direction: column; align-items: center; gap: 14px; background: #fff; border: 1px solid #e7eaee; border-radius: 14px; padding: 26px 12px; text-align: center; transition: box-shadow .2s, border-color .2s, transform .2s; }
.mt-vehicle-card:hover { border-color: var(--primary-color); box-shadow: 0 10px 26px rgba(0,0,0,.08); transform: translateY(-3px); }
.mt-vehicle-icon { width: 70px; height: 70px; border-radius: 50%; background: #eef2f6; display: flex; align-items: center; justify-content: center; }
.mt-vehicle-icon i { font-size: 28px; color: var(--secondary-color); }
.mt-vehicle-card:hover .mt-vehicle-icon { background: #e4f1fa; }
.mt-vehicle-card:hover .mt-vehicle-icon i { color: var(--primary-color); }
.mt-vehicle-label { font-weight: 700; font-size: 15px; color: var(--secondary-color); }

/* ===== Testimonials (carousel: 3 cards visible) ===== */
.mt-testi-carousel { position: relative; padding: 0 4px; }
.mt-testi-viewport { overflow: hidden; }
.mt-testi-track { display: flex; gap: 22px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.mt-testi-carousel .mt-testi-card { flex: 0 0 calc((100% - 44px) / 3); }
@media (max-width: 991px) { .mt-testi-carousel .mt-testi-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 639px) { .mt-testi-carousel .mt-testi-card { flex: 0 0 100%; } }
.mt-testi-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 1px solid #e3e7ec; background: #fff; color: #003149; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: 0 4px 14px rgba(20,30,50,.10); transition: background .2s, color .2s; }
.mt-testi-arrow:hover { background: #068fd0; color: #fff; border-color: #068fd0; }
.mt-testi-arrow.prev { left: -10px; }
.mt-testi-arrow.next { right: -10px; }
@media (max-width: 700px) { .mt-testi-arrow { display: none; } }
.mt-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.mt-testi-dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: #cdd4dc; cursor: pointer; transition: background .2s, width .2s; }
.mt-testi-dots button.active { width: 24px; border-radius: 5px; background: #068fd0; }
.mt-testi-card { background: #fff; border: 1px solid #eef0f2; border-radius: 16px; padding: 30px 28px; box-shadow: 0 6px 20px rgba(20,30,50,.05); display: flex; flex-direction: column; }
.mt-testi-stars { color: #f3791f; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.mt-testi-quote { font-style: italic; font-size: 16px; line-height: 1.6; color: #2e3640; margin: 0 0 26px; flex: 1; }
.mt-testi-author { display: flex; align-items: center; gap: 14px; }
.mt-testi-avatar { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: #ffe9dd; color: #f3791f; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.mt-testi-author strong { display: block; font-size: 16px; color: #1a2230; font-weight: 700; }
.mt-testi-author span { display: block; font-size: 13px; color: #9aa0a6; margin-top: 2px; }

/* ===== Centered section head (brands) ===== */
.mt-section-head-center { text-align: center; margin-bottom: 28px; }
.mt-section-title-center { font-size: 28px; font-weight: 800; color: var(--secondary-color); margin: 0 0 8px; text-transform: uppercase; letter-spacing: .01em; }
.mt-section-sub { color: #9aa0a6; font-size: 15px; margin: 0; }

/* Brand logo grid */
.mt-brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
@media (max-width: 980px) { .mt-brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px) { .mt-brand-grid { grid-template-columns: repeat(2, 1fr); } }
.mt-brand-card { height: 120px; background: #fff; border: 1px solid #eef0f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 22px; transition: box-shadow .2s, border-color .2s, transform .2s; }
.mt-brand-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.08); border-color: #e0e4e8; transform: translateY(-3px); }
.mt-brand-card img { max-height: 60px; max-width: 100%; object-fit: contain; }
.mt-brand-card span { font-weight: 700; color: var(--secondary-color); font-size: 16px; }

/* ===== Blog cards ===== */
.mt-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .mt-blog-grid { grid-template-columns: 1fr; } }
.mt-blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eef0f2; border-radius: 12px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.mt-blog-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.09); transform: translateY(-3px); }
.mt-blog-thumb { height: 170px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-size: 46px; }
.mt-blog-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.mt-blog-meta { font-size: 12px; color: #9aa0a6; margin-bottom: 8px; }
.mt-blog-title { font-size: 17px; font-weight: 700; color: var(--secondary-color); margin: 0 0 8px; line-height: 1.35; }
.mt-blog-card:hover .mt-blog-title { color: var(--primary-color); }
.mt-blog-excerpt { font-size: 14px; color: #5a6470; line-height: 1.6; margin: 0 0 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mt-blog-readmore { font-size: 13px; font-weight: 700; color: var(--primary-color); }

/* ===== Flash sale ===== */
.mt-flash { border-radius: 8px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.mt-flash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; background: linear-gradient(90deg, #002438, #045a86); color: #fff; }
.mt-flash-title { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; letter-spacing: .02em; }
.mt-flash-title > i { color: var(--primary-color); }
.mt-flash-label { font-size: 14px; font-weight: 500; opacity: .9; margin-left: 6px; }
.mt-flash-timer { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; }
.mt-flash-timer span { background: var(--primary-color); color: #fff; padding: 4px 8px; border-radius: 5px; min-width: 34px; text-align: center; font-size: 16px; }
.mt-flash-timer b { color: #fff; }
.mt-flash-all { border: 1.5px solid rgba(255,255,255,.6); color: #fff; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 22px; white-space: nowrap; }
.mt-flash-all:hover { background: #fff; color: var(--secondary-color); }
.mt-flash-body { background: #fafbfc; padding: 18px; }
.mt-flash-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1100px) { .mt-flash-track { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .mt-flash-track { grid-template-columns: repeat(2, 1fr); } }
.mt-flash-card { position: relative; background: #fff; border: 1px solid #eef0f2; border-radius: 10px; padding: 16px; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.mt-flash-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,.1); transform: translateY(-3px); }
.mt-flash-disc { position: absolute; top: 12px; left: 12px; background: var(--secondary-color); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: 6px; z-index: 2; }
.mt-flash-thumb { display: flex; align-items: center; justify-content: center; height: 160px; margin-bottom: 14px; }
.mt-flash-thumb img { max-height: 100%; max-width: 100%; object-fit: contain; }
.mt-flash-price { font-size: 17px; font-weight: 800; color: var(--secondary-color); line-height: 1.1; }
.mt-flash-was { font-size: 12px; color: #aab1ba; text-decoration: line-through; margin: 2px 0 10px; }
.mt-flash-name { font-size: 14px; color: #303840; margin-bottom: 14px; min-height: 38px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mt-flash-bar { height: 8px; background: #e6eaee; border-radius: 5px; overflow: hidden; margin-bottom: 8px; }
.mt-flash-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary-color), #045a86); border-radius: 5px; }
.mt-flash-sold { font-size: 12px; color: #9aa0a6; }

/* ===== Latest news cards (pastel + big letter) ===== */
.mt-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .mt-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mt-news-grid { grid-template-columns: 1fr; } }
.mt-news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eef0f2; border-radius: 10px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.mt-news-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.09); transform: translateY(-3px); }
.mt-news-thumb { height: 210px; display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 800; color: #fff; text-shadow: 0 4px 10px rgba(0,0,0,.18); }
.mt-news-body { padding: 18px 20px 22px; }
.mt-news-date { font-size: 13px; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.mt-news-title { font-size: 17px; font-weight: 700; color: var(--secondary-color); margin: 0; line-height: 1.4; }
.mt-news-card:hover .mt-news-title { color: var(--primary-color); }

/* ===== Generic page header ===== */
.page-head { padding: 32px 0 26px; }
.breadcrumb { font-size: 13px; color: #8b97a3; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: #8b97a3; }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb i { font-size: 10px; color: #c2cbd3; }
.breadcrumb span { color: var(--secondary-color); font-weight: 600; }
.page-title { font-size: 28px; font-weight: 800; color: var(--secondary-color); margin: 0 0 8px; }
.page-sub { font-size: 15px; color: #65717f; margin: 0; max-width: 640px; line-height: 1.6; }

/* ===== Stores / Lokasi Toko ===== */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
@media (max-width: 900px) { .store-grid { grid-template-columns: 1fr; } }
.store-card {
  background: #fff; border: 1px solid #eef0f2; border-radius: 14px;
  padding: 26px; box-shadow: 0 6px 20px rgba(20,30,50,.05);
  display: flex; flex-direction: column;
}
.store-card-top { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.store-icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px;
  background: rgba(6,143,208,.12); color: var(--primary-color);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.store-name { font-size: 17px; font-weight: 700; color: var(--secondary-color); margin: 0 0 3px; }
.store-tag { font-size: 12.5px; font-weight: 600; color: var(--primary-color); }
.store-info { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.store-info li { display: flex; gap: 11px; font-size: 14px; color: #5c6b7a; line-height: 1.55; }
.store-info li::before { content: none !important; }
.store-info i { flex-shrink: 0; width: 18px; text-align: center; color: var(--primary-color); margin-top: 3px; }
.store-actions { display: flex; gap: 10px; }
.store-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; border-radius: 8px; font-size: 13.5px; font-weight: 600; transition: all .2s;
}
.store-btn.primary { background: var(--primary-color); color: #fff; }
.store-btn.primary:hover { background: #0577ad; }
.store-btn.ghost { border: 1px solid #d9e0e7; color: var(--secondary-color); }
.store-btn.ghost:hover { border-color: var(--primary-color); color: var(--primary-color); }

.store-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(120deg, #003149, #068fd0);
  border-radius: 14px; padding: 30px 34px; margin-bottom: 40px; color: #fff;
}
.store-cta h3 { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.store-cta p { margin: 0; color: rgba(255,255,255,.85); font-size: 14.5px; }
.store-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: #fff; color: var(--secondary-color); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 8px; transition: transform .2s;
}
.store-cta-btn:hover { transform: translateY(-2px); }

/* ===== Checkout ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; margin-bottom: 44px; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-main { display: flex; flex-direction: column; gap: 20px; }
.checkout-card { background: #fff; border: 1px solid #eef0f2; border-radius: 12px; padding: 22px 24px; box-shadow: 0 4px 16px rgba(20,30,50,.04); }
.checkout-card-title { font-size: 16px; font-weight: 700; color: var(--secondary-color); margin: 0 0 18px; display: flex; align-items: center; gap: 9px; }
.checkout-card-title i { color: var(--primary-color); font-size: 15px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.co-field { display: flex; flex-direction: column; }
.co-field.co-col-2 { grid-column: 1 / -1; }
.co-field label { font-size: 13px; font-weight: 600; color: #3a4855; margin-bottom: 6px; }
.co-field input, .co-field textarea {
  border: 1px solid #dce3ea; border-radius: 8px; padding: 11px 13px; font: inherit; font-size: 14px;
  color: #1f2b38; background: #fafbfc; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical;
}
.co-field input:focus, .co-field textarea:focus { border-color: var(--primary-color); background: #fff; box-shadow: 0 0 0 3px rgba(6,143,208,.12); }
@media (max-width: 560px) { .co-grid { grid-template-columns: 1fr; } }

.co-shipping { display: flex; flex-direction: column; gap: 12px; }
.co-ship-opt { display: flex; align-items: center; gap: 14px; border: 1px solid #e2e8ee; border-radius: 10px; padding: 14px 16px; cursor: pointer; transition: border-color .2s, background .2s; }
.co-ship-opt:hover { border-color: #b9d8ea; }
.co-ship-opt:has(input:checked) { border-color: var(--primary-color); background: rgba(6,143,208,.05); }
.co-ship-opt input { width: 18px; height: 18px; accent-color: var(--primary-color); }
.co-ship-info { display: flex; flex-direction: column; flex: 1; }
.co-ship-info strong { font-size: 14px; color: var(--secondary-color); }
.co-ship-info small { font-size: 12px; color: #8a94a0; }
.co-ship-cost { font-weight: 700; color: var(--secondary-color); font-size: 14px; }

/* Summary aside */
.checkout-aside { position: sticky; top: 16px; }
.co-summary { padding: 22px 22px 24px; }
.co-items { list-style: none; margin: 0 0 16px; padding: 0 0 16px; border-bottom: 1px solid #eef0f2; display: flex; flex-direction: column; gap: 12px; }
.co-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.co-items li::before { content: none !important; }
.co-item-qty { color: var(--primary-color); font-weight: 700; flex-shrink: 0; }
.co-item-name { flex: 1; color: #44505c; line-height: 1.4; }
.co-item-price { font-weight: 600; color: var(--secondary-color); white-space: nowrap; }
.co-voucher input { width: 100%; border: 1px solid #dce3ea; border-radius: 8px; padding: 11px 13px; font: inherit; font-size: 14px; outline: none; margin-bottom: 16px; }
.co-voucher input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(6,143,208,.12); }
.co-totals { display: flex; flex-direction: column; gap: 9px; }
.co-row { display: flex; justify-content: space-between; font-size: 14px; color: #5c6b7a; }
.co-row.co-grand { font-size: 18px; font-weight: 800; color: var(--secondary-color); margin-top: 4px; padding-top: 12px; border-top: 1px solid #eef0f2; }
.co-note { font-size: 11.5px; color: #9aa0a6; margin: 6px 0 0; line-height: 1.5; }
.co-pay { width: 100%; margin-top: 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.co-back { display: block; text-align: center; margin-top: 12px; color: var(--primary-color); font-size: 13px; }

/* ===== Order detail / success ===== */
.order-banner { display: flex; align-items: center; gap: 18px; background: var(--bc); border-radius: 14px; padding: 24px 26px; margin-bottom: 18px; }
.order-banner-icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--fc); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.order-banner-status { font-size: 13px; font-weight: 700; color: var(--fc); text-transform: uppercase; letter-spacing: .03em; }
.order-banner-text h1 { font-size: 22px; color: var(--secondary-color); margin: 2px 0 4px; }
.order-banner-text p { font-size: 13px; color: #5c6b7a; margin: 0; }
.order-pay-btn { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.order-cols { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
@media (max-width: 800px) { .order-cols { grid-template-columns: 1fr; } }
.order-info p { margin: 0 0 6px; font-size: 14px; color: #44505c; line-height: 1.55; }
.order-info hr { border: 0; border-top: 1px solid #eef0f2; margin: 12px 0; }

/* ===== Order history list ===== */
.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #eef0f2; border-radius: 12px; padding: 16px 20px; transition: border-color .2s, box-shadow .2s; }
.order-row:hover { border-color: #b9d8ea; box-shadow: 0 6px 18px rgba(20,30,50,.06); }
.order-row-main { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.order-row-main strong { color: var(--secondary-color); font-size: 15px; }
.order-row-meta { font-size: 12.5px; color: #8a94a0; }
.order-row-badge { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 20px; white-space: nowrap; }
.order-row-total { font-weight: 800; color: var(--secondary-color); font-size: 15px; white-space: nowrap; }
.order-row-arrow { color: #c2cbd3; }
@media (max-width: 560px) { .order-row-total { display: none; } }
