/* ==========================================================================
   RETAIL-MOBILE.CSS (Phone Overrides)
   Max-Width: 768px
   ========================================================================== */

@media screen and (max-width: 768px) {

  /* --- 1. Hero & Intro --- */
  .retail-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)), url(/assets/heros/retail_hero_mobile.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding-top: 20rem;
}

  /* --- 2. The Dashboard (Ghost Stats) --- */
  .dashboard-section {
    padding: 4rem 0;
  }

  /* CRITICAL: Stack the stats vertically */
  .ghost-stats-container {
    flex-direction: column !important; 
    gap: 4rem; 
    margin: 3rem auto;
    width: 100%;
    padding: 0 1rem;
  }

  /* TRANSFORM: Vertical Divider -> Horizontal Separator */
  .ghost-divider {
    width: 10rem !important; /* Short horizontal line */
    height: 1px !important; 
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 1rem auto;
  }

  .stat-number {
    font-size: 3.2rem; 
  }

  
  /* --- 4. Gallery Grid --- */
  .gallery-grid {
    grid-template-columns: 1fr; /* Single column stack */
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .gallery-card {
    /* Remove hover lift on mobile */
    transform: none !important;
  }
  
  .gallery-img {
    height: 25rem; /* Shorter images for mobile scroll */
  }

  .cta-text {
  font-size: 1.5rem;
  max-width: 60% !important;
  line-height: 1.2;
}

}