/**
 * Home page - Rentomojo + Urban Company style
 * Desktop: full layout. Mobile: app view + bottom nav
 */

/* Container wide for home – tighter padding, less gap */
.home .container-wide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}
@media (min-width: 768px) {
  .home .container-wide { padding-left: var(--space-5); padding-right: var(--space-5); }
}

/* ========== Top bar (location + marquee + social) ========== */
.home-top-bar {
  background: linear-gradient(135deg, #fff9f6 0%, #fff5f0 50%, #fef8f5 100%);
  border-bottom: 1px solid rgba(250, 86, 8, 0.1);
  font-size: 0.8125rem;
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.home-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.home-top-bar-location {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(250, 86, 8, 0.15);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.home-top-bar-location:hover {
  background: var(--white);
  border-color: rgba(250, 86, 8, 0.25);
  box-shadow: 0 2px 8px rgba(250, 86, 8, 0.08);
}
.home-top-bar-location-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-top-bar-location-text {
  color: var(--gray-700);
}
.home-top-bar-location-text strong {
  color: var(--gray-900);
  font-weight: 600;
}
.home-top-bar-location-btn {
  background: rgba(250, 86, 8, 0.1);
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.home-top-bar-location-btn:hover {
  background: rgba(250, 86, 8, 0.2);
  color: #c94a07;
}
.home-top-bar-marquee-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  max-width: 100%;
}
.home-top-bar-marquee {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: homeTopBarMarquee 30s linear infinite;
}
.home-top-bar-marquee span {
  color: var(--gray-600);
}
.home-top-bar-marquee span:first-child,
.home-top-bar-marquee span:nth-child(3),
.home-top-bar-marquee span:nth-child(5) { color: var(--gray-800); font-weight: 500; }
@keyframes homeTopBarMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.home-top-bar-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.home-top-bar-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--gray-600);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.home-top-bar-social-link:hover {
  color: var(--primary);
  background: var(--white);
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
  .home-top-bar { padding: 8px 0; }
  .home-top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .home-top-bar-location { justify-content: center; padding: 8px 12px; }
  .home-top-bar-marquee-wrap { order: 2; }
  .home-top-bar-social {
    order: 3;
    justify-content: center;
  }
  .home-top-bar-marquee { animation-duration: 25s; }
}

/* Sticky header / Menu bar - improved design */
.home .home-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile: global sticky location bar sits above sticky home header */
@media (max-width: 767px) {
  body.body-home .home-header {
    top: 46px;
  }
}
.home .home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: var(--space-4);
}

/* Mobile app-style: show location bar + icon buttons, hide desktop header */
.home-mobile-bar { display: none; }
.home-mobile-search { display: none; }
@media (max-width: 767px) {
  .home-header-desktop { display: none !important; }
  .home-mobile-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 4px;
  }
  .home-mobile-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
  }
  .home-header-actions-icons {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .home-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }
  .home-icon-btn:hover { background: var(--gray-100); color: var(--primary); }
  .home-icon-btn .home-icon-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
  }
  .home-icon-btn .home-cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-icon-btn .home-cart-count[data-count="0"] { display: none; }
  .home-mobile-search {
    display: flex !important;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    padding: 0 var(--space-3) var(--space-3);
    gap: 0;
  }
  .home-mobile-search .home-search-icon-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    pointer-events: none;
    z-index: 1;
  }
  .home-mobile-search .home-search-icon-left svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .home-mobile-search .home-search-input {
    width: 100%;
    padding: 12px 108px 12px 44px;
    font-size: 0.875rem;
    border-radius: 999px;
    background: var(--gray-50);
    border: 1px solid rgba(0,0,0,0.06);
    min-height: 46px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .home-mobile-search .home-search-input:focus {
    outline: none;
    border-color: rgba(250, 86, 8, 0.35);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  }
  .home-mobile-search .home-search-input::placeholder { color: transparent; }
  .home-mobile-search .home-search-input:focus ~ .home-mobile-search-typing,
  .home-mobile-search .home-search-input:not(:placeholder-shown) ~ .home-mobile-search-typing { opacity: 0; }
  .home-mobile-search .home-mobile-search-actions {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 2px 4px 2px 2px;
  }
  .home-mobile-search .home-mobile-search-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(250, 86, 8, 0.45), transparent);
    flex-shrink: 0;
  }
  .home-mobile-search .home-search-btn {
    position: static;
    transform: none;
    padding: 8px 12px;
    min-width: 44px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 999px;
  }
  .home-mobile-search .home-search-btn:active {
    background: rgba(250, 86, 8, 0.1);
  }
  .home-mobile-search .home-search-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    stroke: currentColor;
  }
  .home-mobile-search-typing {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--gray-400);
    pointer-events: none;
    border-right: 2px solid var(--primary);
    padding-right: 2px;
    animation: home-typing 8s steps(28) infinite, home-blink 0.8s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    max-width: calc(100% - 130px);
    width: 0;
  }
  @keyframes home-typing {
    0% { width: 0; }
    30% { width: 28ch; }
    50% { width: 28ch; }
    80% { width: 0; }
    100% { width: 0; }
  }
  @keyframes home-blink {
    50% { border-color: transparent; }
  }
}

@media (min-width: 768px) {
  .home-mobile-bar { display: none !important; }
  .home-mobile-search { display: none !important; }
}

@media (max-width: 767px) {
  .home .home-header-inner { gap: var(--space-2); }
  .home .home-search-wrap { min-width: 0; flex: 1 1 120px; }
  .home .home-header-actions { flex-shrink: 0; }
}
.home .home-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.home .home-header .logo .home-logo-img {
  display: block;
  max-height: 36px;
  width: auto;
  object-fit: contain;
}
.home .home-mobile-logo {
  display: flex;
  align-items: center;
}
.home .home-mobile-logo img {
  max-height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.home .home-nav {
  display: none;
}
@media (min-width: 768px) {
  .home .home-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(180deg, #f5f5f5 0%, #ebebeb 100%);
    padding: 5px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .home .home-nav a {
    padding: 10px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .home .home-nav a:hover {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .home .home-nav a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
}
/* Search bar – only on desktop; typing placeholder on desktop */
.home .home-search-wrap {
  display: none;
  position: relative;
  align-items: center;
  flex: 1;
  max-width: 380px;
  margin: 0 var(--space-4);
}
@media (min-width: 768px) {
  .home .home-search-wrap { display: flex; }
}
.home .home-search-input {
  width: 100%;
  padding: 12px 48px 12px 18px;
  font-size: 0.9375rem;
  color: var(--gray-800);
  border: 1.5px solid #e84d07;
  border-radius: var(--radius-full);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.home .home-search-icon-left {
  display: none;
}
.home .home-search-input::placeholder {
  color: transparent;
}
.home .home-search-typing-placeholder {
  display: none;
}
@media (min-width: 768px) {
  .home .home-search-typing-placeholder {
    display: block;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    color: var(--gray-400);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid var(--primary);
    animation: search-typing 10s steps(32) infinite, search-blink 0.8s step-end infinite;
    max-width: calc(100% - 90px);
    width: 0;
  }
  .home .home-search-input:focus ~ .home-search-typing-placeholder,
  .home .home-search-input:not(:placeholder-shown) ~ .home-search-typing-placeholder {
    display: none !important;
  }
}
@keyframes search-typing {
  0% { width: 0; }
  32% { width: 32ch; }
  50% { width: 32ch; }
  82% { width: 0; }
  100% { width: 0; }
}
@keyframes search-blink {
  50% { border-color: transparent; }
}
.home .home-search-input:hover {
  background: #eee;
  border-color: rgba(0,0,0,0.12);
}
.home .home-search-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(250,86,8,0.12);
}
.home .home-search-btn {
  position: absolute;
  right: 20px;
  top: 40%;
  transform: translateY(-50%);
  padding: 8px;
  border: none;
  background: none;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius-md);
}
@media (min-width: 768px) { .home .home-search-btn { right: 10px; } }
.home .home-search-btn:hover { color: var(--primary); }
.home .home-search-btn svg { display: block; color: #e84d07; }

/* Cart icon with count */
.home .home-cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 12px;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: color 0.2s, background 0.2s;
}
.home .home-cart-link:hover { color: var(--primary); background: rgba(250,86,8,0.08); }
.home .home-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .home-cart-count[data-count="0"] { display: none; }

/* Premium Login / Sign up buttons */
.home .home-header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.home .home-header-avatar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home .home-header-avatar-link:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.home .home-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.home .home-header-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .home-header-actions .btn-login {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(250,86,8,0.35);
  white-space: nowrap;
}
.home .btn-login-premium {
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  color: var(--gray-800);
  border: 1.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}
.home .btn-login-premium:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(250,86,8,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
}
.home .btn-signup-premium {
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, #ff7a3d 0%, #fa5608 50%, #e84d07 100%);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(250,86,8,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.home .btn-signup-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(250,86,8,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.home .btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.home .btn-with-icon .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home .btn-with-icon .btn-icon svg {
  display: block;
}
@media (max-width: 380px) {
  .home .btn-login-premium,
  .home .btn-signup-premium {
    padding: 10px 14px;
    font-size: 0.875rem;
  }
  .home .btn-with-icon .btn-icon svg { width: 16px; height: 16px; }
}

/* Section title with red line - Rentomojo style */
.home .section-head {
  margin-bottom: var(--space-5);
}
.home .section-head h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--primary);
  margin-bottom: 4px;
}
.home .section-head p { font-size: 0.875rem; color: var(--gray-500); }

/* Homepage Slider — light “app frame” border (mobile + desktop) */
.home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-6);
  padding: 3px;
  border-radius: calc(var(--radius-2xl, 20px) + 4px);
  background: linear-gradient(145deg, rgba(250, 88, 8, 0.18), rgba(15, 23, 42, 0.06));
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}
.home-slider-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-2xl, 20px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.home-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.home-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 280px;
  position: relative;
  background: var(--gray-100);
  overflow: hidden;
}
.home-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}
.home-slide-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-6);
  background: linear-gradient(90deg, rgba(220,38,38,0.85) 0%, rgba(220,38,38,0.5) 45%, transparent 70%);
  color: var(--white);
}
.home-slide-overlay h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 var(--space-2); }
.home-slide-overlay p { font-size: 0.9375rem; margin: 0 0 var(--space-4); opacity: 0.95; }
.home-slide-overlay .btn { align-self: flex-start; }
.home-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--gray-800);
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s;
}
.home-slider-btn:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.home-slider-prev { left: var(--space-3); }
.home-slider-next { right: var(--space-3); }
.home-slider-dots {
  position: absolute;
  bottom: var(--space-3);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.home-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.home-slider-dot.active { background: var(--white); transform: scale(1.2); }
@media (min-width: 768px) {
  .home-slide.home-slide-mobile-only { display: none !important; }
  .home-slider-track.with-2-slides .home-slide { flex: 0 0 100%; }
  .home-slider {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-8);
  }
}
@media (max-width: 767px) {
  .home-slider {
    margin: 0 var(--space-4) var(--space-5);
    padding: 3px;
  }
  .home-slider-wrap {
    border-radius: var(--radius-2xl);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .home-slide {
    min-height: 240px;
    border-radius: var(--radius-2xl);
  }
  .home-slide-overlay { padding: var(--space-4); background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%); justify-content: flex-end; }
  .home-slide-overlay h2 { font-size: 1.25rem; }
  .home-slider-prev { left: 8px; }
  .home-slider-next { right: 8px; }
}

/* Hero - Explore top categories */
.home .hero-categories {
  padding: var(--space-6) 0;
  background: var(--white);
}
/* Mobile: image full width (edge to edge) */
.home .hero-categories-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.home .hero-categories-inner > div:first-child {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .home .hero-categories {
    overflow: hidden;
    /* padding: var(--space-4) var(--space-4) var(--space-6); */
    padding-top: var(--space-2);

  }
  .home .hero-categories .container-wide {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .home .hero-categories-inner > div:first-child { display: none !important; }
  .home .hero-categories .section-head { margin-bottom: var(--space-4); }
  .home .hero-categories .section-heading-categories {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
  }
  .home .hero-categories-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .home .hero-categories-inner > div:first-child {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home .hero-categories-inner > div:last-child {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .home .hero-categories-visual {
    border-radius: 0;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 100%;
    max-height: 260px;
    margin-bottom: 0;
  }
  .home .hero-categories-visual picture,
  .home .hero-categories-visual picture img,
  .home .hero-categories-visual img {
    object-fit: cover;
    object-position: center center;
    padding: 8px;
    background-color: coral;
  }
}
.home .hero-categories-visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  background: var(--gray-100);
  aspect-ratio: 5/4;
  max-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
  position: relative;
}
.home .hero-categories-visual picture,
.home .hero-categories-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: inherit;
}
.home .hero-categories-visual picture img {
  object-fit: cover;
  object-position: center;
}
/* Desktop: image height = category section height (stretch to match right column) */
@media (min-width: 768px) {
  .home .hero-categories .container-wide {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
  .home .hero-categories-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-8);
    align-items: stretch;
  }
  .home .hero-categories-inner > div:first-child {
    min-height: 0;
    display: flex;
  }
  .home .hero-categories-visual {
    flex: 1;
    width: 100%;
    margin-bottom: 0;
    max-height: none;
    aspect-ratio: auto;
    min-height: 280px;
  }
  .home .hero-categories-visual picture img {
    object-fit: cover;
    object-position: center;
    border: solid 2px;
    border-color: #fa5608;
  }
}
/* ========================================================
   CATEGORY GROUPS (Rent / Repair) — Rentomojo + App Style
   ======================================================== */

/* Group wrapper */
.home .hcat-group {
  margin-bottom: 16px;
}

/* Group header: badge pill + horizontal line */
.home .hcat-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.home .hcat-group-line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
  border-radius: 1px;
}

/* Badge pill for group titles */
.home .hcat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.home .hcat-badge-rent {
  background: #fff3e0;
  color: #e65100;
  border: 1.5px solid #ffcc80;
}
.home .hcat-badge-repair {
  background: #e3f2fd;
  color: #1565c0;
  border: 1.5px solid #90caf9;
}

/* Category grid — compact, all visible */
.home .hcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 480px) {
  .home .hcat-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
}
@media (min-width: 640px) {
  .home .hcat-grid { grid-template-columns: repeat(6, 1fr); gap: 9px; }
}
@media (min-width: 768px) {
  .home .hcat-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
}
@media (min-width: 1024px) {
  .home .hcat-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}

/* Category card */
.home .hcat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03);
  text-decoration: none;
  color: #111827;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.home .hcat-card:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.home .hcat-card:active { transform: scale(0.97); }

/* Image area */
.home .hcat-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .hcat-card-rent  .hcat-img-wrap { background: #fff8f0; }
.home .hcat-card-repair .hcat-img-wrap { background: #f0f6ff; }

.home .hcat-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.home .hcat-card:hover .hcat-img-wrap img { transform: scale(1.05); }

.home .hcat-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

/* Type tag — small pill overlaid on image bottom-left */
.home .hcat-type-tag {
  position: absolute;
  bottom: 5px;
  left: 5px;
  padding: 2px 7px;
  border-radius: 99px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  line-height: 1.6;
}
.home .hcat-tag-rent   { background: #e65100; color: #fff; }
.home .hcat-tag-repair { background: #1565c0; color: #fff; }

/* Label below image */
.home .hcat-label {
  width: 100%;
  padding: 6px 5px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}

/* View all links */
.home .hero-categories .view-all {
  display: inline-block;
  margin-top: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 99px;
  background: #fff7f3;
  border: 1px solid #fbd8c8;
  transition: background 0.15s;
}
.home .hero-categories .view-all:hover {
  background: #ffe9de;
  text-decoration: none;
}

/* Mobile-specific app-like overrides */
@media (max-width: 479px) {
  .home .hcat-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .home .hcat-label { font-size: 0.59rem; padding: 5px 3px 6px; }
  .home .hcat-type-tag { font-size: 0.45rem; padding: 1px 5px; }
  .home .hcat-badge { font-size: 0.7rem; padding: 4px 10px; }
  .home .hcat-group { margin-bottom: 12px; }
}

/* Hero banner - Rent. Book. Done. (mobile app feel) */
.home .hero-banner {
  padding: var(--space-4);
  /* margin: 0 var(--space-4) var(--space-6); */
}

.home .hero-banner-container {
  background: #e84d07;
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  border: solid 1px;
  border-color: #f4f800;
}

.home .hero-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home .hero-banner-content {
  padding: var(--space-5) var(--space-4);
  background: linear-gradient(180deg, #fff9f6 0%, var(--white) 100%);
}

.home .hero-banner-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(250, 86, 8, 0.12);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.home .hero-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.home .hero-banner-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.45;
}

.home .hero-banner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.home .hero-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home .hero-banner-btn:active {
  transform: scale(0.98);
}

.home .hero-banner-btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(250, 86, 8, 0.35);
}

.home .hero-banner-btn-primary:hover {
  box-shadow: 0 4px 14px rgba(250, 86, 8, 0.4);
}

.home .hero-banner-btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.home .hero-banner-btn-outline:hover {
  background: rgba(250, 86, 8, 0.06);
}

.home .hero-banner-visual {
  border-radius: 0;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 16/10;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.8125rem;
  position: relative;
  order: -1;
}

.home .hero-banner-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .home .hero-banner {
    padding: var(--space-6);
    margin-left: var(--space-6);
    margin-right: var(--space-6);
  }
  .home .hero-banner-inner {
    flex-direction: row;
    gap: var(--space-8);
    align-items: center;
  }
  .home .hero-banner-content {
    padding: var(--space-8);
    flex: 1;
    background: linear-gradient(90deg, #fff9f6 0%, var(--white) 60%);
  }
  .home .hero-banner-title {
    font-size: 2rem;
  }
  .home .hero-banner-desc {
    font-size: 0.9375rem;
  }
  .home .hero-banner-btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }
  .home .hero-banner-visual {
    order: 0;
    flex: 1;
    max-width: 350px;
    min-height: 140px;
    aspect-ratio: 3/2;
    border-radius: 0px 10px 10px 0px;
  }
  .home .hero-banner-visual img {
    border-radius: inherit;
  }
}

/* Two slim login cards - Vendor / Customer & Technician */
.home .slim-cards-section { padding: var(--space-6) 0; background: #faceba; }
.home .slim-cards-inner {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .home .slim-cards-inner { grid-template-columns: repeat(2, 1fr); }
}
.home .slim-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  border: none;
  overflow: hidden;
  max-height: 160px;
  min-height: 130px;
  border: solid 2px;
  border-color: #f4f800;
}
.home .slim-card-content {
  flex: 1;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.home .slim-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 4px 0;
}
.home .slim-card-desc { font-size: 0.75rem; color: var(--gray-500); margin: 0 0 var(--space-2); line-height: 1.3; }
.home .slim-card-links { font-size: 0.8125rem; }
.home .slim-card-links a { color: var(--primary); font-weight: 500; text-decoration: none; }
.home .slim-card-links a:hover { text-decoration: underline; }
.home .slim-card-img-wrap {
  width: 140px;
  min-width: 140px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
}
.home .slim-card-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}
@media (min-width: 480px) {
  .home .slim-card-img-wrap { width: 200px; min-width: 200px; }
}

/* Checkout our Packages - premium card, horizontal auto-scroll strip */
.home .packages-section { padding: var(--space-6) 0; }
.home .packages-card-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  background: linear-gradient(145deg, #ffffff 0%, #fefaf8 100%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  padding: var(--space-6);
  overflow: hidden;
}
@media (min-width: 768px) {
  .home .packages-card-v2 { grid-template-columns: 36% 1fr; padding: var(--space-8); align-items: center; gap: var(--space-8); }
}
.home .packages-v2-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 var(--space-2);
  line-height: 1.25;
}
.home .packages-v2-heading .text-primary { color: var(--primary); }
.home .packages-v2-sub {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0 0 var(--space-4);
  line-height: 1.4;
}
.home .packages-v2-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(250,86,8,0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.home .packages-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(250,86,8,0.4);
}
.home .packages-v2-cta svg { flex-shrink: 0; }
.home .packages-v2-strip-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
  min-height: 160px;
}
.home .packages-v2-strip {
  display: flex;
  gap: var(--space-4);
  animation: packages-h-scroll 25s linear infinite;
  width: max-content;
}
.home .packages-v2-tile {
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: var(--radius-xl);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.home .packages-v2-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: inherit; }
@keyframes packages-h-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scrollable cards (Explore by role) - app-like horizontal scroll */
.home .scroll-cards-section { padding: var(--space-6) 0; background: var(--white); }
.home .scroll-cards-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--space-4));
  padding: var(--space-2) var(--space-4);
}
@media (min-width: 768px) { .home .scroll-cards-wrap { margin: 0; padding: var(--space-2) 0; } }
.home .scroll-cards-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
}
.home .scroll-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home .scroll-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.home .scroll-card-img {
  height: 160px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.home .scroll-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: inherit; }
.home .scroll-card-body { padding: var(--space-4); }
.home .scroll-card-body h3 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin: 0 0 4px; }
.home .scroll-card-body p { font-size: 0.8125rem; color: var(--gray-500); margin: 0; }

/* Slim horizontal slider - Latest & Trending */
.home .slider-section { padding: var(--space-6) 0; }
.home .slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  margin: 0 calc(-1 * var(--space-4));
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
@media (min-width: 768px) { .home .slider-wrap { margin: 0; padding-left: 0; padding-right: 0; } }
.home .slider-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
}
.home .slider-card {
  flex: 0 0 180px;
  width: 180px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}
.home .slider-card:hover { box-shadow: var(--shadow-card-hover); }
@media (min-width: 480px) { .home .slider-card { flex: 0 0 200px; width: 200px; } }
.home .slider-card-img {
  aspect-ratio: 1;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.home .slider-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.home .slider-card-body { padding: var(--space-3); }
.home .slider-card-title { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.home .slider-card-price { font-size: 0.8125rem; font-weight: 600; color: var(--primary); }

/* Home: location banner (index) */
.home-area-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(250, 86, 8, 0.08) 0%, rgba(250, 86, 8, 0.03) 100%);
  border: 1px solid rgba(250, 86, 8, 0.2);
  border-radius: var(--radius-lg);
  max-width: 100%;
}
.home-area-banner-icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.home-area-banner-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.45;
}
.home-area-banner-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.home-area-banner-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.home-area-banner-change {
  flex-shrink: 0;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}
.home-area-banner-change:hover {
  background: rgba(250, 86, 8, 0.08);
}

/* Home: empty category / trending states */
.home-cat-empty {
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.home-cat-empty p {
  margin: 0 0 12px;
}
.home-cat-empty p strong {
  color: var(--gray-900);
}
.home-cat-empty .btn {
  margin-right: 8px;
  margin-bottom: 8px;
}
.home-cat-empty-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.home-cat-empty-link:hover {
  text-decoration: underline;
}

.mapp-area-empty {
  padding: 12px 14px;
  margin: 8px 0 12px;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  background: rgba(248, 113, 113, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.mapp-area-empty-link {
  background: none;
  border: none;
  padding: 0;
  color: #fa5608;
  font-weight: 700;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.mapp-area-empty--soft {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
  color: #64748b;
}

.home-hero-near-hint {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.45;
}
.home-hero-near-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: inherit;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.home-hero-near-hint a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.mtrend-dist {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 2px 0 4px;
}

.mtrend-empty-area {
  text-align: center;
  padding: 28px 20px 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  max-width: 520px;
  margin: 0 auto;
}
.mtrend-empty-area-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.mtrend-empty-area-title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
}
.mtrend-empty-area-text {
  margin: 0 0 20px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.mtrend-empty-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.mtrend-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.mtrend-empty-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(250, 86, 8, 0.35);
}
.mtrend-empty-btn--primary:hover {
  filter: brightness(1.05);
}
.mtrend-empty-btn--ghost {
  background: var(--white);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.mtrend-empty-btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Latest & Trending — v2 image overlay (shared mobile + desktop) */
.home .mtrend-card--v2 .slider-card-img {
  position: relative;
}
.home .mtrend-card--v2 .slider-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(15, 23, 42, 0.55) 62%, rgba(15, 23, 42, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
.home .mtrend-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.home .mtrend-overlay-title {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.home .mtrend-overlay-vendor {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95;
}
.home .mtrend-overlay-rating {
  font-size: 0.8125rem;
  font-weight: 700;
}
.home .mtrend-overlay-rc {
  font-weight: 600;
  opacity: 0.85;
  font-size: 0.75rem;
}
.home .mtrend-overlay-dist {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fed7aa;
}
.home .mtrend-overlay-price {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.home .mtrend-overlay-price .mtrend-per {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.6875rem;
}
.home .mtrend-card--v2 .mtrend-card-body-fallback .slider-card-title,
.home .mtrend-card--v2 .mtrend-card-body-fallback .mtrend-dist,
.home .mtrend-card--v2 .mtrend-card-body-fallback .slider-card-price {
  display: none;
}

/* Latest & Trending: desktop grid (fills width; no orphan card on the left) */
@media (min-width: 768px) {
  .home .mtrend-section {
    padding: var(--space-8) 0;
  }
  .home .mtrend-section .mtrend-head {
    margin-bottom: var(--space-5);
    align-items: flex-end;
  }
  .home .mtrend-section .mtrend-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 6px;
    display: inline-block;
  }
  .home .mtrend-section .mtrend-sub {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 6px;
  }
  .home .mtrend-section .mtrend-all-btn {
    font-size: 0.875rem;
    padding: 8px 16px;
  }
  .home .mtrend-section .mtrend-slider-wrap {
    overflow-x: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }
  .home .mtrend-section .mtrend-slider-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    width: 100%;
    max-width: 100%;
    gap: var(--space-5);
  }
  .home .mtrend-section .mtrend-card {
    flex: none;
    width: 100%;
    max-width: none;
    scroll-snap-align: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .home .mtrend-section .mtrend-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  }
  .home .mtrend-section .mtrend-card .slider-card-img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
  }
  .home .mtrend-section .mtrend-card .slider-card-img img {
    object-fit: cover;
  }
  .home .mtrend-section .mtrend-card .slider-card-body {
    padding: var(--space-4);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .home .mtrend-section .mtrend-card .slider-card-title {
    font-size: 0.9375rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
  }
  .home .mtrend-section .mtrend-dist {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .home .mtrend-section .mtrend-card .slider-card-price {
    font-size: 1.125rem;
    font-weight: 800;
    margin-top: auto;
  }
  .home .mtrend-section .mtrend-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #111827, #374151);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .home .mtrend-section .mtrend-rent-chip {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff7a3d 0%, #fa5608 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(250, 86, 8, 0.3);
  }
  .home .mtrend-section .mtrend-card--v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  }
  .home .mtrend-section .mtrend-card--v2:hover .slider-card-img img {
    transform: scale(1.04);
  }
  .home .mtrend-section .mtrend-card--v2 .slider-card-img img {
    transition: transform 0.35s ease;
  }
}

/* Service section - Urban Company style grid */
.home .services-hero {
  padding: var(--space-6) 0;
  background: var(--white);
}
.home .services-hero-inner {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .home .services-hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.home .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.home .services-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.home .services-grid a:hover { background: rgba(250,86,8,0.08); }
.home .services-grid .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(250,86,8,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.home .services-grid span { font-size: 0.75rem; font-weight: 500; color: var(--gray-700); text-align: center; }
.home .services-visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}
.home .services-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-position: center; border-radius: inherit; }

/* Partner banner */
.home .partner-banner {
  padding: var(--space-6) var(--space-4);
  margin: 0 var(--space-4) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .home .partner-banner { display: grid; grid-template-columns: 1fr auto; gap: var(--space-6); align-items: center; margin-left: var(--space-6); margin-right: var(--space-6); padding: var(--space-6) var(--space-8); }
}
.home .partner-banner h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: var(--space-2); }
.home .partner-banner p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: var(--space-4); }
.home .partner-banner .btn { border-radius: var(--radius-full); padding: 12px 24px; font-weight: 600; }

/* Why choose us - feature icons */
.home .why-section { padding: var(--space-8) 0; background: var(--gray-50); }
.home .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .home .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.home .why-card {
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.home .why-card .icon { font-size: 2rem; margin-bottom: var(--space-2); }
.home .why-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.home .why-card p { font-size: 0.8125rem; color: var(--gray-500); }

/* How it works - Rentomojo style */
.home .home-how-section {
  padding: var(--space-8) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.home .home-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
@media (min-width: 640px) {
  .home .home-how-grid { grid-template-columns: repeat(3, 1fr); }
}
.home .home-how-card {
  position: relative;
  padding: var(--space-6);
  background: #f8e5dc;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid #f4f800;
}
.home .home-how-num {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.home .home-how-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: rgba(250, 86, 8, 0.12);
  color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #000000;
}
.home .home-how-icon-wrap svg { width: 28px; height: 28px; }
.home .home-how-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-2); color: var(--gray-800); }
.home .home-how-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

/* Offers strip - coloured bar */
.home .home-offers-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-6) 0;
}
.home .home-offers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.home .home-offers-content { flex: 1; min-width: 200px; }
.home .home-offers-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.home .home-offers-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--space-1); }
.home .home-offers-content p { font-size: 0.875rem; opacity: 0.95; margin-bottom: var(--space-3); }
.home .home-offers-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  text-decoration: none;
}
.home .home-offers-cta:hover { background: var(--gray-100); color: var(--primary-dark); }
.home .home-offers-visual {
  font-size: 4rem;
  opacity: 0.3;
  font-weight: 700;
}

/* Footer */
.home .home-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-8) var(--space-4);
  margin-top: var(--space-8);
}
.home .home-footer-inner { max-width: 1200px; margin: 0 auto; }
.home .home-footer-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .home .home-footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.home .home-footer h4 { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: var(--space-3); }
.home .home-footer a { color: var(--gray-400); text-decoration: none; font-size: 0.875rem; display: block; margin-bottom: var(--space-2); }
.home .home-footer a:hover { color: var(--white); }
.home .home-footer-bottom { padding-top: var(--space-6); border-top: 1px solid var(--gray-700); font-size: 0.8125rem; text-align: center; }

/* Bottom tab padding: use body.has-app-bottom-nav (design-system) on index */

/* ========== Mobile premium app shell (≤767px only — desktop unchanged) ========== */
.home-mobile-app-greet {
  display: none;
}
.mobile-app-quick {
  display: none;
}

@media (max-width: 767px) {
  body.body-home {
    background: #ececf3;
    background-attachment: fixed;
  }
  body.body-home .home {
    background: transparent;
  }

  /* Keep top area minimal: location only */
  .home-mobile-app-greet,
  .home-top-bar-marquee-wrap,
  .home-top-bar-social {
    display: none !important;
  }
  .home-top-bar {
    background: transparent;
    border: 0;
    padding: 12px var(--space-4) 6px;
    box-shadow: none;
  }
  .home-top-bar-inner {
    justify-content: center;
  }
  .home-top-bar-location {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: none;
    box-shadow:
      0 4px 6px rgba(15, 23, 42, 0.04),
      0 12px 28px rgba(15, 23, 42, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }
  .home-top-bar-location-btn {
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(250, 86, 8, 0.12);
  }

  .home .home-header {
    top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
  }
  .home .home-header .container-wide {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .home .home-mobile-bar {
    min-height: 52px;
    padding: 4px 0;
  }
  .home .home-icon-btn {
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }
  .home .home-mobile-search {
    max-width: 100%;
    padding: 8px var(--space-4) 14px;
  }
  .home .home-mobile-search .home-search-input {
    min-height: 46px;
    border-radius: 999px;
    border: none;
    background: #fff;
    box-shadow:
      0 2px 8px rgba(15, 23, 42, 0.05),
      0 12px 28px rgba(15, 23, 42, 0.08),
      0 0 0 1px rgba(0, 0, 0, 0.04);
  }

  /* App-like content spacing */
  .home .container-wide {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  body.body-home .acSlider_wrapper {
    padding: 6px 0 12px;
  }
  body.body-home .acSlider_btn {
    display: none !important;
  }
  body.body-home .acSlider_slide {
    flex: 0 0 88%;
  }
  body.body-home .acSlider_slide img {
    height: 170px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
  }

  .home .section-head {
    margin-bottom: var(--space-3);
  }
  .home .section-head h2 {
    font-size: 1.08rem;
    font-weight: 700;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .home .section-head p {
    font-size: 0.78rem;
    margin-top: 2px;
  }

  /* IMPORTANT: Remove web-style blocks on mobile */
  .home .hero-banner,
  .home .slim-cards-section,
  .home .home-how-section,
  .home .home-offers-strip,
  .home .packages-section,
  .home .why-section,
  .home .home-footer,
  .feature-strip,
  .package-box {
    display: none !important;
  }

  /* App-style category section overrides */
  .home .hero-categories {
    padding: var(--space-3) 0 var(--space-4);
    background: transparent;
  }
  .home .hero-categories .container-wide {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  .home .hcat-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 7px !important;
  }
  .home .hcat-card {
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(16,24,40,0.07);
  }
  .home .hcat-label {
    font-size: 0.58rem !important;
    padding: 5px 3px 7px !important;
    font-weight: 700 !important;
  }
  .home .hero-categories .view-all {
    font-size: 0.75rem;
  }

  .home .slider-section {
    padding: var(--space-4) 0;
  }
  .home .slider-wrap {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .home .slider-card {
    flex: 0 0 152px;
    width: 152px;
    border-radius: 16px;
    border: 0;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.1);
  }
  .home .slider-card-img {
    border-radius: 16px 16px 0 0;
  }
  .home .slider-card-title {
    font-size: 0.8rem;
  }
  .home .slider-card-price {
    font-size: 0.76rem;
  }

  /* ══ Trending section — wide card + 1/4 peek ══ */
  .mtrend-section {
    background: #fff;
    border-radius: 20px 20px 0 0;
    margin-top: -8px;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }

  /* section header */
  .mtrend-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 4px;
    margin-bottom: 14px !important;
  }
  .mtrend-head h2 {
    font-size: 1.0625rem !important;
    font-weight: 800 !important;
    color: #0f172a;
    letter-spacing: -.025em;
    margin: 0 !important;
  }
  .mtrend-head p { display: none; }
  .mtrend-head-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mtrend-fire { font-size: 1.3rem; line-height: 1; }
  .mtrend-sub {
    font-size: .6875rem;
    color: #6b7280;
    margin-top: 2px;
    display: block;
    font-weight: 500;
  }
  .mtrend-all-btn {
    font-size: .75rem;
    font-weight: 700;
    color: #fa5608;
    text-decoration: none;
    background: rgba(250,86,8,.09);
    padding: 6px 14px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid rgba(250,86,8,.18);
  }

  /* ── Wide scroll wrap — bleed to full width ── */
  .mtrend-section .slider-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 14px 22px;
    margin: 0;
  }
  .mtrend-section .slider-wrap::-webkit-scrollbar { display: none; }
  .mtrend-section .slider-track {
    display: flex;
    gap: 12px;
    width: max-content;
  }

  /* ── The wide card itself (1 full + 1/4 peek) ── */
  .home .mtrend-card {
    /* 76vw → on 360px screen: card=274px, visible of next≈60px (≈1/4) */
    flex: 0 0 76vw;
    width: 76vw;
    max-width: 310px;
    scroll-snap-align: start;
    border-radius: 16px;
    border: none;
    box-shadow:
      0 1px 3px rgba(15,23,42,.06),
      0 8px 24px rgba(15,23,42,.12);
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s;
  }
  .home .mtrend-card:active { transform: scale(.97); }

  /* NEW badge — top-left over image */
  .mtrend-new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff7a3d, #fa5608);
    color: #fff;
    font-size: .5625rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(250,86,8,.45);
  }

  /* Image — 16:9 aspect, fills width, object-fit cover */
  .home .mtrend-card .slider-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #f0f4f8, #e8ecf0);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .home .mtrend-card .slider-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home .mtrend-card .slider-card-img span {
    font-size: 2.25rem;
  }

  /* Body */
  .home .mtrend-card .slider-card-body {
    padding: 13px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .home .mtrend-card .slider-card-title {
    font-size: .9375rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    letter-spacing: -.01em;
  }
  .home .mtrend-card .slider-card-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #fa5608;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1;
  }
  .mtrend-per {
    font-size: .6875rem;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0;
  }

  /* Full-width Rent Now CTA */
  .mtrend-rent-chip {
    display: block;
    text-align: center;
    padding: 11px 14px;
    background: linear-gradient(135deg, #ff7a3d 0%, #fa5608 100%);
    color: #fff;
    font-size: .875rem;
    font-weight: 800;
    border-radius: 10px;
    letter-spacing: .01em;
    box-shadow: 0 4px 16px rgba(250,86,8,.35);
    margin-top: auto;
  }
  .home .mtrend-card--v2:hover {
    transform: translateY(-2px);
    box-shadow:
      0 4px 8px rgba(15,23,42,.08),
      0 14px 32px rgba(15,23,42,.14);
  }
  .home .mtrend-card--v2 .slider-card-img img {
    transition: transform 0.35s ease;
  }
  .home .mtrend-card--v2:active .slider-card-img img {
    transform: scale(1.03);
  }

  /* Mobile app action cards */
  .mobile-app-quick {
    display: block;
    padding: 6px 0 16px;
  }
  .mobile-app-quick .container-wide {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .mobile-app-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }
  .mobile-app-main-card {
    text-decoration: none;
    color: var(--gray-900);
    background: #fff;
    border-radius: 20px;
    padding: 14px 12px 14px 14px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
      0 2px 4px rgba(15, 23, 42, 0.04),
      0 16px 36px rgba(15, 23, 42, 0.1);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }
  .mobile-app-main-card:active {
    transform: scale(0.98);
  }
  .mobile-app-main-card-rental {
    background: linear-gradient(165deg, #ffffff 0%, #fff8f4 55%, #fff2ea 100%);
    border-top: 3px solid rgba(250, 86, 8, 0.55);
  }
  .mobile-app-main-card-repair {
    background: linear-gradient(165deg, #ffffff 0%, #f4f8ff 50%, #eef4ff 100%);
    border-top: 3px solid rgba(59, 130, 246, 0.45);
    min-height: 138px;
  }
  .mobile-app-main-icon {
    font-size: 1.45rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
  }
  .mobile-app-main-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .mobile-app-main-sub {
    font-size: 0.72rem;
    color: var(--gray-500);
    line-height: 1.35;
    font-weight: 500;
  }
  .mobile-app-repair-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 12px;
    margin-bottom: 14px;
    scroll-snap-type: x proximity;
  }
  .mobile-app-repair-strip::-webkit-scrollbar {
    display: none;
  }
  .mobile-app-repair-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    text-decoration: none;
    color: #1f2937;
    background: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 10px 16px;
    box-shadow:
      0 2px 6px rgba(15, 23, 42, 0.05),
      0 8px 20px rgba(15, 23, 42, 0.08);
  }
  .mobile-app-vendor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(125deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
    color: #fff;
    border-radius: 20px;
    padding: 16px 14px;
    min-height: 88px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 4px 12px rgba(15, 23, 42, 0.15),
      0 20px 40px rgba(15, 23, 42, 0.22);
  }
  .mobile-app-vendor-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  .mobile-app-vendor-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    gap: 4px;
  }
  .mobile-app-vendor-copy strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .mobile-app-vendor-copy small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.35;
    font-weight: 500;
  }
  .mobile-app-vendor-cta {
    font-size: 0.72rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ff7a3d 0%, #fa5608 100%);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(250, 86, 8, 0.45);
  }

  /* Bottom tab bar: same floating pill as customer/* (design-system / customer.css) */
}

/* ========== Google reviews (GMB) — app-style header + cards ========== */
.home-reviews-section {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.home-reviews-appbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-5);
  padding: 0 var(--space-2);
}
.home-reviews-appbar-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(250, 88, 8, 0.15), 0 0 0 1px rgba(250, 88, 8, 0.12);
  flex-shrink: 0;
}
.home-reviews-appbar-text {
  flex: 1;
  min-width: 0;
}
.home-reviews-appbar-kicker {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.home-reviews-appbar-line {
  display: block;
  height: 4px;
  width: 100%;
  max-width: 200px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), #fb923c, rgba(250, 88, 8, 0.2));
}

.home-reviews-head {
  text-align: center;
  margin-bottom: var(--space-6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.home-reviews-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .home-reviews-title {
    font-size: 1.75rem;
  }
}

.home-reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.home-reviews-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1.125rem;
}

.home-reviews-rating-num {
  font-weight: 800;
  color: var(--gray-900);
}

.home-reviews-count {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.home-reviews-sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.home-reviews-scroll {
  overflow-x: auto;
  overflow-y: visible;
  margin: 0 calc(-1 * var(--space-3));
  padding: 8px var(--space-3) 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

@media (min-width: 768px) {
  .home-reviews-scroll {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}

.home-reviews-track {
  display: flex;
  gap: 16px;
  min-width: min-content;
}

@media (min-width: 768px) {
  .home-reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    min-width: 0;
    width: 100%;
  }
  .home-reviews-appbar {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-6);
  }
}

.home-review-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.home-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.35;
  pointer-events: none;
}

@media (min-width: 768px) {
  .home-review-card {
    flex: none;
    min-width: 0;
  }
}

.home-review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.home-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(250, 88, 7, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.home-review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--gray-900);
}

.home-review-stars-small {
  font-size: 0.75rem;
  color: #f59e0b;
  letter-spacing: 1px;
  margin-top: 2px;
}

.home-review-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-700);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-review-time {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.home-reviews-rating-only {
  margin: 0 auto var(--space-4);
  max-width: 520px;
  padding: 14px 18px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  background: rgba(250, 88, 7, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(250, 88, 7, 0.12);
}

.home-reviews-foot {
  text-align: center;
  margin: var(--space-5) 0 0;
}

.home-reviews-glink {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.home-reviews-glink:hover {
  text-decoration: underline;
}

.home-reviews-placeholder {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  background: linear-gradient(135deg, rgba(250, 88, 7, 0.06) 0%, #fff 40%);
  border-radius: 20px;
  border: 1px solid rgba(250, 88, 7, 0.2);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  text-align: center;
}

.home-reviews-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: 18px;
  background: rgba(250, 88, 7, 0.1);
  color: var(--primary);
}

.home-reviews-placeholder-title {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.home-reviews-placeholder-text {
  margin: 0;
  text-align: left;
}

.home-reviews-placeholder-err {
  margin: var(--space-4) 0 0;
  padding: 12px 14px;
  font-size: 0.8125rem;
  text-align: left;
  color: #b45309;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.home-reviews-placeholder code {
  font-size: 0.8125rem;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .home-reviews-section {
    padding: var(--space-6) 0 calc(var(--space-8) + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .home-review-card {
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(15, 23, 42, 0.04);
  }

  .home-reviews-scroll {
    padding-bottom: 16px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  MOBILE APP SHELL  (mapp-*)  — hidden on desktop        ║
   ╚══════════════════════════════════════════════════════════╝ */
.mapp-shell { display: none; }

@media (max-width: 767px) {
  .mapp-shell {
    display: block;
    padding: 0 0 8px;
  }
  .mapp-wrap {
    padding: 0 14px;
  }

  /* ── Greeting ── */
  .mapp-greet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 10px;
  }
  .mapp-greet-date {
    font-size: .6875rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
  }
  .mapp-greet-hello {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.02em;
  }
  .mapp-login-btn {
    padding: 7px 18px;
    background: #fa5608;
    color: #fff;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(250,86,8,.35);
    white-space: nowrap;
  }

  /* ── Hero 2-column grid ── */
  .mapp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }
  .mapp-hero-card {
    text-decoration: none;
    border-radius: 16px;
    padding: 18px 16px 16px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 2px 12px rgba(15,23,42,.08), 0 8px 24px rgba(15,23,42,.06);
    transition: transform .15s;
    position: relative;
    overflow: hidden;
  }
  .mapp-hero-card:active { transform: scale(.97); }
  .mapp-hero-rent {
    background: linear-gradient(155deg, #fff8f4 0%, #fff0e6 60%, #fde8d4 100%);
    border: 1.5px solid rgba(250,86,8,.2);
  }
  .mapp-hero-svc {
    background: linear-gradient(155deg, #f0f6ff 0%, #e8f0ff 60%, #d8e8ff 100%);
    border: 1.5px solid rgba(59,130,246,.2);
  }
  .mapp-hero-emoji {
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 6px;
  }
  .mapp-hero-label {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.025em;
    line-height: 1.15;
  }
  .mapp-hero-sub {
    font-size: .6875rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 1px;
  }
  .mapp-hero-arrow {
    position: absolute;
    bottom: 13px;
    right: 14px;
    width: 26px;
    height: 26px;
    border-radius: 99px;
    background: rgba(15,23,42,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 800;
    color: rgba(15,23,42,.45);
  }

  /* ── Section header ── */
  .mapp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0;
  }
  .mapp-section-head--gap {
    margin-top: 22px;
  }
  .mapp-section-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.02em;
  }
  .mapp-section-all {
    font-size: .75rem;
    font-weight: 700;
    color: #fa5608;
    text-decoration: none;
    background: rgba(250,86,8,.09);
    padding: 5px 12px;
    border-radius: 99px;
    border: 1.5px solid rgba(250,86,8,.18);
    white-space: nowrap;
  }

  /* ── Icon row: 4 visible + peek if more ── */
  .mapp-icon-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* bleed to full screen width, equal 14px indent on both sides */
    margin: 0 -14px;
    padding: 6px 14px 18px;
  }
  .mapp-icon-row::-webkit-scrollbar { display: none; }
  /* trailing spacer so last item has same right gap as left start */
  .mapp-icon-row::after {
    content: '';
    flex-shrink: 0;
    width: 6px;
  }

  .mapp-icon-item {
    /* (100vw - 14px left - 14px right - 3×8px gaps - 20px peek) / 4 ≈ 74px on 360px */
    flex: 0 0 calc((100vw - 76px) / 4);
    width: calc((100vw - 76px) / 4);
    max-width: 82px;
    min-width: 68px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: transform .15s;
  }
  .mapp-icon-item:active { transform: scale(.92); }

  .mapp-icon-circle {
    /* slightly bigger than before, less radius = app-icon style */
    width: calc((100vw - 76px) / 4);
    height: calc((100vw - 76px) / 4);
    max-width: 82px;
    min-width: 68px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow:
      0 2px 6px rgba(15,23,42,.08),
      0 6px 18px rgba(15,23,42,.1);
  }
  .mapp-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mapp-icon-circle-rent {
    background: linear-gradient(145deg, #fff4ee 0%, #fde8d4 100%);
    border: 1px solid rgba(250,86,8,.14);
  }
  .mapp-icon-circle-svc {
    background: linear-gradient(145deg, #eef4ff 0%, #d8e8ff 100%);
    border: 1px solid rgba(59,130,246,.14);
  }
  .mapp-icon-label {
    font-size: .75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    word-break: break-word;
    padding: 0 2px;
  }

  /* ── Near you: products & service types in radius ── */
  .mapp-near-block {
    margin: 6px 0 18px;
  }
  .mapp-near-label {
    font-size: .6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 8px 2px;
  }
  .mapp-near-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
  }
  .mapp-near-scroll::-webkit-scrollbar {
    display: none;
  }
  .mapp-near-card {
    flex: 0 0 min(252px, 80vw);
    max-width: 252px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    padding: 10px 10px 10px 8px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .mapp-near-card:active {
    transform: translateY(-1px) scale(.995);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  }
  .mapp-near-card--svc {
    border-color: rgba(59, 130, 246, 0.15);
  }
  .mapp-near-card-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.5rem;
  }
  .mapp-near-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mapp-near-card-img--svc {
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
  }
  .mapp-near-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
  }
  .mapp-near-card-title {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mapp-near-vendor {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.25;
    display: block;
  }
  .mapp-near-dist {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f7ee;
    border: 1px solid #ccefd8;
    border-radius: 8px;
    padding: 3px 6px;
  }
  .mapp-near-card--rent .mapp-near-dist::before,
  .mapp-near-card--svc .mapp-near-dist::before {
    content: '●';
    font-size: .625rem;
    margin-right: 4px;
    color: #22c55e;
  }
  .mapp-near-cat {
    font-size: 0.625rem;
    color: #64748b;
    font-weight: 600;
  }
  .mapp-near-card-price {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fa5608;
    margin-top: 4px;
  }

  /* ── Vendor partner card ── */
  .mapp-partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    text-decoration: none;
    background: linear-gradient(125deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 4px 14px rgba(15,23,42,.14), 0 12px 32px rgba(15,23,42,.14);
  }
  .mapp-partner-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
  }
  .mapp-partner-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .mapp-partner-copy strong {
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
  }
  .mapp-partner-copy small {
    font-size: .6875rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
  }
  .mapp-partner-cta {
    font-size: .75rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ff7a3d, #fa5608);
    color: #fff;
    border-radius: 99px;
    padding: 9px 16px;
    box-shadow: 0 4px 14px rgba(250,86,8,.45);
    white-space: nowrap;
  }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  MOBILE-ONLY BOTTOM SECTION  (mbot-*)                  ║
   ╚══════════════════════════════════════════════════════════╝ */
.mbot-section { display: none; }

@media (max-width: 767px) {
  .mbot-section {
    display: block;
    background: #ececf3;
    padding: 8px 0 20px;
  }
  .mbot-wrap {
    padding: 0 14px;
  }

  /* Stats strip */
  .mbot-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    padding: 16px 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
  }
  .mbot-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
  }
  .mbot-stat-num {
    font-size: 1.1875rem;
    font-weight: 800;
    color: #fa5608;
    letter-spacing: -.03em;
  }
  .mbot-stat-lbl {
    font-size: .625rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .mbot-stat-divider {
    width: 1px;
    height: 32px;
    background: #e5e7eb;
  }

  /* Feature cards row */
  .mbot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }
  .mbot-feat-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
  }
  .mbot-feat-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
  }
  .mbot-feat-title {
    font-size: .8125rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.01em;
  }
  .mbot-feat-sub {
    font-size: .6875rem;
    color: #6b7280;
    font-weight: 500;
  }

  /* Technician CTA card */
  .mbot-tech-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: #fff;
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 18px rgba(37,99,235,.3);
    gap: 12px;
  }
  .mbot-tech-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: .5625rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
    margin-bottom: 6px;
  }
  .mbot-tech-title {
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .mbot-tech-sub {
    font-size: .6875rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
  }
  .mbot-tech-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
  }

  /* Refer strip */
  .mbot-refer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 12px;
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
    border: 1.5px dashed rgba(250,86,8,.25);
  }
  .mbot-refer-ico {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .mbot-refer-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mbot-refer-copy strong {
    font-size: .875rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.01em;
  }
  .mbot-refer-copy small {
    font-size: .6875rem;
    color: #6b7280;
    font-weight: 500;
  }
  .mbot-refer-btn {
    padding: 8px 16px;
    background: #fa5608;
    color: #fff;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(250,86,8,.35);
  }
}
