

        /* Custom CSS for branding and layout */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff; /* Light gray background for consistency */
            position: relative; /* Needed for watermark positioning */
        }
        
        main {
            //background-color: #ff0000; /* Light gray background for consistency */
        }
        

        /* Header Specific Styles */
        .app-header {
          background-color: #ffffff; 
          padding: 0.5rem; /* Unified padding */
          display: flex;
          align-items: center;
          justify-content: space-between; /* Adjusted for better spacing */
          gap: 1rem;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 1000;
          box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added a subtle shadow */
        }

        .app-header img {
          max-height: 40px;
          height: auto;
          width: auto;
          margin-right: 5px;
          margin-left: 5px;
          flex-shrink: 0;
        }

        .app-header .brand-text { /* Scoped brand-text to header */
          font-size: 1.4rem;
          font-weight: 900;
          font-family: 'Arial', Impact, sans-serif;
          text-transform: uppercase;
          letter-spacing: 1px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          text-align: left;
          margin-right: 0.5rem;
        }

        .app-header .brand-text .store { color: var(--logo-blue); }
        .app-header .brand-text .run { color: var(--yellow); }

        .app-header .header-page-name { /* Scoped header-page-name to header */
          color: var(--logo-blue);
          font-weight: 700;
          font-size: 1.2rem;
          letter-spacing: 1px;
          padding: 0;
          margin-left: 4px;
          align-self: center;
        }

        /* Watermark/Faded Logo Background */
        .store-run-watermark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10vw; /* Responsive font size for large text */
            color: rgba(0, 0, 0, 0.05); /* Very faded black for subtle effect */
            font-weight: bold;
            z-index: -1; /* Ensures watermark is behind content */
            pointer-events: none; /* Allows clicks to pass through */
            text-align: center;
            white-space: nowrap; /* Prevents text wrap */
            opacity: 0.2; /* Controls the intensity of the watermark */
        }

        /* Screen Container Management */
        .screen-container {
            display: none; /* All screens are hidden by default */
            min-height: calc(100vh - 120px); /* Adjusts height to fit between header and bottom nav */
            padding-bottom: 80px; /* Provides space for the fixed bottom navigation */
            padding-top: 60px; /* Provides space for the fixed header */
            overflow-y: auto; /* Enables vertical scrolling within content if needed */
            -webkit-overflow-scrolling: touch; /* Improves scrolling performance on iOS devices */
        }

        .screen-container.active {
            display: block; /* Only the active screen is visible */
        }

        /* Fixed Bottom Navigation Bar */
        .bottom-nav-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff; /* White background for the nav bar */
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow above the nav bar */
            z-index: 1000; /* Ensures nav bar is above other content */
            border-radius: 1.5rem 1.5rem 0 0; /* Rounded top corners */
        }

        /* Dropup Menu Styling */
        .dropup-menu {
            position: fixed;
            bottom: 72px; /* Positioned just above the bottom navigation bar */
            left: 50%;
            transform: translateX(-50%); /* Centers the dropup menu */
            background-color: #ffffff;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15); /* More prominent shadow */
            border-radius: 1.5rem;
            padding: 1.5rem;
            z-index: 999; /* Below bottom nav, above main content */
            width: 90%;
            max-width: 300px; /* Limits max width for larger screens */
            display: none; /* Hidden by default */
            animation: slideUp 0.3s ease-out forwards; /* Simple slide-up animation */
        }

        .dropup-menu.active {
            display: block; /* Shows the dropup menu when active */
        }

        /* Dropup Menu Animation */
        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        /* Custom Scrollbar (for better mobile feel, though browser-dependent) */
        .screen-container::-webkit-scrollbar {
            width: 8px;
        }
        .screen-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .screen-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        .screen-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* map screen full size */
        #map-container {
            width: 100%;
            height: calc(100vh - 220px); /* Adjusted height for map controls */
        }

        /* Card Styling (Subtle borders, shadows, hover states) */
        .card {
            background-color: #ffffff;
            border-radius: 0.75rem; /* Tailwind `rounded-lg` equivalent */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Tailwind `shadow-md` equivalent */
            transition: all 0.2s ease-in-out; /* Smooth transitions for hover effects */
        }
        .card:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); /* Tailwind `shadow-lg` equivalent on hover */
            transform: translateY(-2px); /* Slight lift effect on hover */
        }

        /* Swiping effect for driver/store profiles (visual only, no JS for actual swipe gestures in this MVP) */
        .profile-carousel {
            display: flex;
            overflow-x: scroll; /* Enables horizontal scrolling */
            scroll-snap-type: x mandatory; /* Snaps to the start of each child element */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        }
        .profile-card {
            flex: 0 0 100%; /* Each card takes up 100% of the carousel's width */
            scroll-snap-align: start; /* Aligns the start of the card with the scroll container */
        }

        /* Custom Primary and Secondary Colors (Store Run branding) */
        .store-run-blue {
            background-color: #3B82F6; /* A vibrant blue */
        }
        .store-run-yellow {
            background-color: #FBBF24; /* A bright yellow */
        }
        .text-store-run-blue {
            color: #3B82F6;
        }
        .text-store-run-yellow {
            color: #FBBF24;
        }

        /* Message Box Styling (for custom alert/confirm) */
        .message-box-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000; /* Above all other content */
        }
        .message-box {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            max-width: 90%;
            min-width: 280px;
        }

        /* Multi-step form specific styles */
        .tab-button {
            @apply flex-1 text-center py-2 px-1 text-sm font-semibold cursor-pointer border-b-2 border-transparent text-gray-500 hover:text-store-run-blue;
        }
        .tab-button.active {
            @apply text-store-run-blue border-store-run-blue;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .error-message {
            @apply text-red-500 text-xs mt-1;
        }
        .input-error {
            @apply border-red-500;
        }
        
        #screen-map {
          position: relative;
          height: calc(100vh - 120px);
          width: 100%;
          overflow: hidden;
        }
    
        .error-message {
            color: #FF0000;
        }


        /* Add this to your existing <style> tag */
        
        #map-screen {
            padding: 0; /* Removes padding to make map full screen */
            position: relative;
            z-index: 1; /* Add this line to bring the map screen forward */
            height: calc(100vh - 120px); 
            width: 100%;
            overflow: hidden;
        }
        
        #map-container {
            width: 100%;
            height: 100%; /* Fills the entire screen container */
        }
 
 
 


#place-type-select {
    flex-grow: 1; /* This makes the select input expand */
}


#search-container {
    position: absolute;
    top: 0px;          /* Exactly matches the 56px header height for a perfect fit. */
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}



/* === START: New CSS for Profile Cards === */

/* A wrapper for each card in the carousel */
.profile-carousel-item {
  width: 100%; /* Fixed width for consistent card size */
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  /* Carousel-specific styles */
  flex: 280 0 280px; /* Ensures cards don't shrink and size automatically */
  scroll-snap-align: center; /* Centers the card when scrolling */
  margin: 0 10px; /* Adds spacing between cards */
}

.profile-carousel-item .profile-image {
  width: 100%;
  height: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.profile-carousel-item .contact-buttons {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 2;
}

.profile-carousel-item .circle-btn {
  width: 50px;
  height: 50px;
  background: #007BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s;
  text-decoration: none; /* Removes underline from links */
}

.profile-carousel-item .circle-btn:hover {
  background: #005ecb;
}

.profile-carousel-item .circle-btn i {
  font-size: 20px;
  color: white;
}

.profile-carousel-item .profile-details {
  background: #fff;
  padding: 50px 20px 30px; /* Increased top padding to make space for buttons */
  border-radius: 30px 30px 0 0;
  margin-top: -10px;
  text-align: center;
}

.profile-carousel-item .profile-details h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}

.profile-carousel-item .profile-details p {
  color: #777;
  margin-bottom: 6px;
  font-size: 14px;
}
/* === END: New CSS for Profile Cards === */


        .content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            padding: 50px 80px;
        }
        
        .column h2 {
            color: #1e5bc6;
            font-size: 1.5em;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .x-icon {
            width: 35px;
            height: 35px;
            background-color: #dc3545;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .check-icon {
            width: 35px;
            height: 35px;
            background-color: #5cb85c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .item-text {
            color: #333;
            font-size: .5em;
        }



    
        /* Header: 50-50 Split on Mobile */
        .header {
            display: flex;
            align-items: center;
            padding: 15px 10px;
            gap: 100px;
            border-bottom: 1px solid #eee;
        }
        
        .logo-box {
            width: 40%;
            display: flex;
            justify-content: center;
        }
        
        .logo {
            width: 100%;
            max-width: 60px;
            height: auto;
            object-fit: contain;
        }
        
        .header-content {
            width: 100%;
        }
        
        .header-content h1 {
            color: #1e5bc6;
            font-size: 1.1rem;
            font-weight: bold;
            line-height: 1.1;
        }
        
        .header-content p {
            color: #666;
            font-size: 0.75rem;
            margin-top: 4px;
        }
        
        /* Two Columns on Mobile */
        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px 10px;
            flex: 1;
        }
        
        .column h2 {
            color: #1e5bc6;
            font-size: 1rem;
            margin-bottom: 12px;
            font-weight: bold;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 5px;
        }
        
        .item {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        
        .x-icon, .check-icon {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 1px;
        }
        
        .x-icon { 
            color: white;background-color: #dc3545; }
            
        .check-icon { 
            color: white;background-color: #5cb85c; }
        
        .item-text {
            color: #333;
            font-size: 0.5rem;
            font-weight: bold;
        }
        
        

    .center-container {
      width: 100%;
      text-align: center;
    }











    /* HERO */

    .hero {
      //display: grid;
      //grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      //gap: 32px;
      align-items: center;
      margin-bottom: 40px;
    }

    .hero-logo {
      height: 90px;
      width: auto;
      margin-bottom: 20px;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
    }

    .hero-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--ink-muted);
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: clamp(14px, 4vw, 16px);
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 14px;
    }
    
    .hero-title2{font:800 clamp(32px,4vw,40px)/0.8;margin-bottom:14px;}

    .hero-highlight {
      background: linear-gradient(120deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      color: #3B82F6;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--ink-muted);
      max-width: 420px;
      margin-bottom: 20px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 12px;
    }

    .badge {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(0, 87, 184, 0.08);
      color: var(--primary-dark);
      font-weight: 500;
    }

    .badge-alt {
      background: rgba(255, 211, 0, 0.12);
      color: var(--accent-dark);
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #f9fafb;
      box-shadow: 0 14px 30px rgba(0, 87, 184, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(0, 87, 184, 0.55);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.9);
      color: var(--ink-soft);
      border: 1px solid rgba(10, 10, 10, 0.18);
    }

    .btn-outline:hover {
      background: rgba(247, 249, 252, 1);
    }

    .btn-ghost {
      background: rgba(10, 10, 10, 0.4);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .hero-note {
      font-size: 12px;
      color: var(--ink-muted);
    }

    .hero-note strong {
      color: var(--ink-soft);
    }

    .hero-visual {
      position: relative;
      padding: 18px;
      border-radius: 24px;
      background: radial-gradient(circle at top, #dbeafe 0, #eff6ff 40%, #ffffff 100%);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-map {
      border-radius: 18px;
      background: var(--ink-soft);
      padding: 16px;
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }

    .hero-map-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      font-size: 12px;
      color: #9ca3af;
    }

    .hero-map-title {
      font-weight: 600;
      color: #e5e7eb;
    }

    .hero-map-pills {
      display: flex;
      gap: 6px;
      font-size: 10px;
    }

    .pill {
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .pill-active {
      background: var(--primary);
      border-color: var(--primary-light);
      color: #e5e7eb;
    }

    .map-grid {
      position: absolute;
      inset: 40px 16px 16px 16px;
      background-image: linear-gradient(
          to right,
          rgba(148, 163, 184, 0.18) 1px,
          transparent 1px
        ),
        linear-gradient(
          to bottom,
          rgba(148, 163, 184, 0.18) 1px,
          transparent 1px
        );
      background-size: 26px 26px;
      border-radius: 14px;
      overflow: hidden;
    }

    .map-pin {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #f9fafb;
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.6);
    }

    .pin-store {
      background: #f97316;
    }

    .pin-runner {
      background: #22c55e;
    }

    .pin-customer {
      background: #3b82f6;
    }

    .hero-stat-card {
      position: absolute;
      bottom: 14px;
      right: 14px;
      background: rgba(15, 23, 42, 0.96);
      border-radius: 14px;
      padding: 10px 12px;
      font-size: 11px;
      color: #e5e7eb;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .hero-stat-card strong {
      font-size: 12px;
    }

    .hero-stat-row {
      display: flex;
      justify-content: space-between;
      margin-top: 4px;
    }

    .hero-floating {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #fef9c3;
      color: #854d0e;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      border: 1px solid #facc15;
      box-shadow: 0 10px 20px rgba(250, 204, 21, 0.35);
    }

    /* SECTION WRAPPERS */

    section {
      margin-bottom: 40px;
    }

    .section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--ink-muted);
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #3B82F6;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--ink-muted);
      max-width: 520px;
      margin-bottom: 18px;
    }

    /* MISSION */

    .mission {
      background: rgba(255, 255, 255, 0.96);
      border-radius: var(--radius-lg);
      padding: 20px 18px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 87, 184, 0.16);
    }

    .mission-main {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .mission-flow {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 10px;
      font-size: 13px;
    }

    .flow-card {
      border-radius: var(--radius-md);
      padding: 12px 12px 10px;
      background: var(--ink-soft);
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
    }

    .flow-card-alt {
      background: #ecfdf5;
      color: #064e3b;
    }

    .flow-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      opacity: 0.8;
      margin-bottom: 6px;
    }

    .flow-steps {
      font-size: 12px;
    }

    .flow-arrow {
      margin: 0 4px;
      opacity: 0.7;
    }

    /* THREE COLUMN VALUE */

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .value-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: var(--radius-lg);
      padding: 16px 14px 14px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 87, 184, 0.14);
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 14px;
    }

    .value-icon {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 4px;
    }

    .value-icon.stores {
      background: #fef3c7;
    }

    .value-icon.runners {
      background: #dcfce7;
    }

    .value-icon.customers {
      background: #dbeafe;
    }

    .value-title {
      font-weight: 600;
      font-size: 15px;
    }

    .value-text {
      color: var(--ink-muted);
      font-size: 13px;
    }

    .value-link {
      margin-top: 4px;
      font-size: 13px;
      color: var(--primary);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* MAP SECTION */

    .map-section {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: center;
    }

    .map-card {
      border-radius: var(--radius-lg);
      background: var(--ink-soft);
      padding: 16px;
      color: #e5e7eb;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }

    .map-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .map-legend {
      display: flex;
      gap: 10px;
      font-size: 11px;
    }

    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
    }

    .map-body {
      position: absolute;
      inset: 40px 16px 16px 16px;
      background-image: linear-gradient(
          to right,
          rgba(148, 163, 184, 0.18) 1px,
          transparent 1px
        ),
        linear-gradient(
          to bottom,
          rgba(148, 163, 184, 0.18) 1px,
          transparent 1px
        );
      background-size: 26px 26px;
      border-radius: 14px;
    }

    .map-section-text {
      font-size: 14px;
      color: var(--ink-muted);
    }

    /* FEATURED SECTIONS */

    .feature-split {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: center;
      margin-bottom: 28px;
    }

    .feature-card {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.98);
      padding: 16px 14px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 87, 184, 0.14);
      font-size: 14px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .avatar {
      border-radius: 999px;
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #f9fafb;
      font-size: 14px;
      font-weight: 600;
    }

    .driver-card,
    .store-card {
      border-radius: 14px;
      background: var(--ink-soft);
      color: #e5e7eb;
      padding: 10px;
      font-size: 12px;
    }

    .driver-card:nth-child(2),
    .store-card:nth-child(2) {
      background: #ffffff;
    }

    .driver-name,
    .store-name {
      font-weight: 600;
      margin-bottom: 2px;
    }

    .driver-meta,
    .store-meta {
      font-size: 11px;
      color: #9ca3af;
    }

    /* JOIN US */

    .join {
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at top left, var(--primary) 0, #111827 40%, #020617 100%);
      color: #e5e7eb;
      padding: 20px 18px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 20px;
      align-items: center;
    }

    .join-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #3B82F6;
    }

    .join-text {
      font-size: 14px;
      color: #cbd5f5;
      margin-bottom: 14px;
      color: #000000;
    }

    .join-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .join-stats {
      font-size: 12px;
      color: #9ca3af;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .join-stat {
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .join-stat strong {
      display: block;
      font-size: 14px;
      color: #e5e7eb;
    }

    /* TO-DO SECTION */

    .todo {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: center;
    }

    .todo-card {
      border-radius: var(--radius-lg);
      background: #ffffff;
      padding: 16px 14px;
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(0, 87, 184, 0.14);
      font-size: 13px;
    }

    .todo-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .todo-title {
      font-weight: 600;
      font-size: 14px;
    }

    .todo-tag {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: #eef2ff;
      color: #4f46e5;
    }

    .todo-list {
      list-style: none;
      display: grid;
      gap: 6px;
    }

    .todo-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 10px;
      background: #f9fafb;
    }

    .todo-checkbox {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      border: 1px solid #d1d5db;
      background: #ffffff;
    }

    .todo-item.done {
      opacity: 0.6;
      text-decoration: line-through;
    }
    
