/**
 * 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);
}
.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: 10px 40px 10px 44px;
    font-size: 0.875rem;
    border-radius: 999px;
    background: var(--gray-50);
    border: 1px solid rgba(0,0,0,0.06);
    min-height: 42px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .home-mobile-search .home-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
  }
  .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-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    z-index: 1;
  }
  .home-mobile-search .home-search-btn svg {
    width: 18px;
    height: 18px;
    color: #e84d07;
  }
  .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% - 110px);
    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 */
.home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-6);
}
.home-slider-wrap {
  overflow: hidden;
  width: 100%;
}
.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%; }
}
@media (max-width: 767px) {
  .home-slider {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-5);
  }
  .home-slider-wrap {
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
    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;
  }
}
/* 4 categories per row everywhere; 2 rows = 8 shown. Reference: rounded cards, image + label */
.home .hero-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
@media (max-width: 767px) {
  .home .hero-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
  }
}
@media (min-width: 768px) {
  .home .hero-categories-grid {
    gap: var(--space-4);
    grid-template-rows: repeat(2, auto);
  }
}
/* Category card: Rentomojo-style premium – rounded, clean, image clear, no bg gap */
.home .hero-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: #f4f800;
  border-radius: var(--radius-2xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  text-decoration: none;
  color: #000000;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  border: solid 1px;
  border-color: #000000;
  border-radius: 30px;
}
.home .hero-cat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
/* Image area – no bg, no gap; image fills rounded area only */
.home .hero-cat-card .hero-cat-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
@media (max-width: 767px) {
  .home .hero-categories-grid {
    gap: var(--space-2);
    grid-template-columns: repeat(4, 1fr);
  }
  .home .hero-cat-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    background: var(--white);
  }
  .home .hero-cat-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
  }
  .home .hero-cat-card .hero-cat-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
  }
  .home .hero-cat-card .hero-cat-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 0;
  }
  .home .hero-cat-card .hero-cat-img-wrap .hero-cat-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .home .hero-cat-card .hero-cat-img-wrap .hero-cat-fallback[style*="display: flex"] {
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  .home .hero-cat-card .hero-cat-label {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    /* padding: var(--space-1) var(--space-2) var(--space-2); */
    font-size: 0.6875rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    background-color: #f4f800;
    
  }
}
/* Image fills wrap – no gap, same radius as card; image clear */
.home .hero-cat-card .hero-cat-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.home .hero-cat-card .hero-cat-img-wrap .hero-cat-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-400);
  background: var(--gray-50);
}
.home .hero-cat-card .hero-cat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-800);
  text-align: center;
  line-height: 1.3;
  padding: var(--space-2) var(--space-2) var(--space-3);
  flex: 0 0 auto;
}
.home .hero-categories .view-all {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.home .hero-categories .view-all:hover { text-decoration: underline; }

/* 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); }

/* 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; }

/* Home uses shared .app-bottom-nav (see design-system). Mobile padding for bottom nav */
.home.body-home { padding-bottom: 5rem; }
@media (min-width: 768px) { .home.body-home { padding-bottom: 0; } }
