  :root {
    --primary: #8B84D7;
    --coral: #E8614A;
    --peach: #FADBB0;
    --blush: #FAE8E3;
    --cream: #FDF7F5;
    --dark: #2A2D34;
    --muted: #8A7B76;
    --card-bg: #FFFFFF;
    --accent-green: #4CAF50;
    --success: #22c55e;
    --danger: #ef4444;
  }

  @font-face {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Fonts/urbanist-v18-latin/urbanist-v18-latin-regular.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('Fonts/urbanist-v18-latin/urbanist-v18-latin-700.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Fonts/montserrat-v31-latin/montserrat-v31-latin-regular.woff2') format('woff2');
  }

  @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('Fonts/montserrat-v31-latin/montserrat-v31-latin-700.woff2') format('woff2');
  }

  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

  html { scroll-behavior: smooth; background: var(--cream); overflow-x: clip; width: 100%; }

  body {
    font-family: 'Urbanist', 'Montserrat', system-ui, sans-serif;
    background: var(--cream);
    overflow-x: clip;
    width: 100%;
  }

  /* ---- HERO ORDER BUTTONS (Domino's style) ---- */
  .hero-order-btns {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 10;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-order-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.8);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .hero-order-btn.active {
    background: white;
    color: var(--coral);
    border-color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .hero-order-btn:not(.active):hover {
    background: rgba(255,255,255,0.15);
  }

  .hero-order-btn:active { transform: scale(0.96); }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #EC9489 0%, #C44A35 40%, #8B2E1E 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 180px 28px 52px;
    overflow: hidden;
  }
  .hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 30%,rgba(255,180,140,0.25) 0%,transparent 65%);}
  .hero-blob{position:absolute;top:-60px;right:-80px;width:380px;height:380px;border-radius:50%;background:rgba(255,255,255,0.06);animation:blobFloat 8s ease-in-out infinite;}
  .hero-blob2{position:absolute;top:120px;right:-30px;width:220px;height:220px;border-radius:50%;background:rgba(255,255,255,0.04);animation:blobFloat 6s ease-in-out infinite reverse;}
  @keyframes blobFloat{0%,100%{transform:translateY(0) scale(1);}50%{transform:translateY(-20px) scale(1.04);}}
  
  .hero-logo-floating {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 200px;
    height: auto;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
    transform: rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }

  .hero-logo-floating:hover {
    transform: rotate(0deg) scale(1.05);
  }

  @keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
  
  .hero-tag{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,0.18);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.25);color:#fff;font-size:12px;font-weight:500;padding:6px 14px;border-radius:50px;margin-bottom:16px;width:fit-content;animation:fadeUp 0.8s ease both;}
  .hero-tag .dot{width:6px;height:6px;background:#FFD700;border-radius:50%;animation:pulse 2s infinite;}
  @keyframes pulse{0%,100%{transform:scale(1);opacity:1;}50%{transform:scale(1.5);opacity:0.7;}}
  
  .hero h1 {
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 8px;
    animation: fadeUp 0.8s 0.1s ease both;
    z-index: 10;
    position: relative;
    hyphens: none;
    white-space: nowrap;
    letter-spacing: -1px;
  }
  .hero h1 span {
    font-style: normal;
    color: var(--peach);
  }
  .hero p {
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s ease both;
    z-index: 10;
    position: relative;
  }


  .btn-primary {
    background: white;
    color: var(--coral);
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .btn-primary:active { transform: scale(0.96); }

  .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ---- SCROLL INDICATOR ---- */
  .scroll-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.5;
    animation: fadeUp 1s 0.8s ease both;
  }

  .scroll-hint span { color: white; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }

  .scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
  }

  @keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(4px); }
  }

  /* ---- STICKY NAV ---- */
  .sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(253,247,245,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 22px;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .sticky-nav.visible {
    transform: translateY(0);
  }

  .sticky-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .address-display {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 50px;
    padding: 10px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    overflow: hidden;
  }

  .address-display svg {
    flex-shrink: 0;
    color: var(--coral);
  }

  .address-display span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
  }

  .nav-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), #C44A35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232,97,74,0.35);
  }

  /* ---- SECTION ---- */
  .section {
    padding: 28px 0 8px;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    margin-bottom: 18px;
  }

  .section-title {
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
  }

  .cat-header {
    font-family: 'Urbanist', 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    padding: 14px 22px 6px;
    letter-spacing: -0.5px;
  }

  .section-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--coral);
    text-decoration: none;
  }

  /* ---- CATEGORY CHIPS ---- */
  .chips-wrap {
    padding: 10px 18px 10px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 0;
    background: var(--cream);
    z-index: 99;
    scroll-behavior: smooth;
    margin-bottom: 10px;
    transition: top 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  body.nav-visible .chips-wrap {
    top: 70px; /* Offset for the sticky nav height */
  }

  .chips-wrap::-webkit-scrollbar { display: none; }

  .category-section {
    padding-top: 20px;
    margin-top: -20px;
  }
  
  .cat-header {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 22px 14px;
  }

  .cat-chip {
    flex-shrink: 0;
    min-width: 64px;
    height: 68px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--muted);
  }
  
  .cat-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.3s;
  }

  .cat-icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  
  .cat-name {
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }

  .cat-chip.active {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 132, 215, 0.3); /* Lavender shadow fallback */
  }
  
  .cat-chip.active .cat-icon-wrap {
    background: rgba(255,255,255,0.2);
    color: white;
  }

  .cat-chip:not(.active):active { transform: scale(0.95); }

  .hero-glass-card {
    position: relative;
    z-index: 5;
    margin: 0 22px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    padding:20px;
    border-radius:24px;
    margin-top:8px;
    box-shadow:0 8px 32px rgba(0,0,0,0.12);
    border:1px solid rgba(255,255,255,0.4);
    position:relative;
    z-index:10;
    animation:fadeUp 0.8s 0.3s ease both;
  }

  .order-toggle-wrap {
    display:flex;
    gap:12px;
    margin-bottom:16px;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  .toggle-btn {
    flex:1;
    padding:12px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.8);
    font-family:'Outfit',sans-serif;
    font-weight:600;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    transition:all 0.2s;
    background:transparent;
    color:#fff;
  }

  .toggle-btn.active {
    background:#fff;
    color:var(--coral);
    border-color:#fff;
  }

  .toggle-btn:active {
    transform:scale(0.97);
  }

  .address-search-wrap {
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .dp-input-stack {
    background:#fff;
    border-radius:24px;
    padding:16px 20px;
    display:flex;
    flex-direction:column;
    gap:14px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
  }

  .address-input-box {
    background: #fff;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .address-input-box input {
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    flex: 1;
  }
  
  .address-input-box input::placeholder {
    color: var(--muted);
  }

  .address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 50;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(10px);
  }
  
  .address-suggestions.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .suggestion-item {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
  }
  
  .suggestion-item:last-child {
    border-bottom: none;
  }
  
  .sugg-street {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
  }
  
  .sugg-city {
    font-size: 12px;
    color: var(--muted);
  }

  .custom-time-picker {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
  }
  
  .time-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
  }
  
  .time-picker-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 50;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  
  .time-picker-options.open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .time-option {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .time-option:last-child {
    border-bottom: none;
  }

  /* ---- PROMo BANNER ---- */
  .promo-banner {
    margin: 0 22px 24px;
    background: linear-gradient(135deg, var(--coral) 0%, #C44A35 100%);
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(232,97,74,0.3);
  }

  .promo-banner::after {
    content: 'ðŸ•';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    opacity: 0.3;
  }

  .promo-text { color: white; }
  .promo-text .label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; margin-bottom: 4px; }
  .promo-text h3 { font-family: 'Urbanist', sans-serif; font-size: 20px; font-weight: 800; }
  .promo-text p { font-size: 12px; opacity: 0.8; margin-top: 2px; }

  .promo-badge {
    background: white;
    color: var(--coral);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
  }

  /* ---- MENU GRID ---- */
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    row-gap: 16px;
    padding: 10px 22px 16px;
  }

  .menu-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 110px 14px 14px; /* Space inside top for the image */
    text-align: center;
    overflow: hidden;
  }
  
  .card-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background: #FFDADA;
    border-radius: 0 0 50% 50% / 0 0 24px 24px;
    z-index: 0;
  }

  .menu-card:active {
    transform: scale(0.97);
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .card-floating-img {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  
  .menu-card:hover .card-floating-img {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
  }
  
  .card-floating-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    transition: opacity 0.3s;
  }

  .fallback-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: #f8f9fa;
    border-radius: 50%;
  }
  
  .fallback-emoji svg {
    width: 44px;
    height: 44px;
    opacity: 0.4;
  }

  .card-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px; height: 28px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    z-index: 3;
  }

  .card-fav:active { transform: scale(1.3); }
  .card-fav.active { color: var(--coral); }

  .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .card-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }

  .card-desc {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }

  .card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .card-price {
    font-family: 'Outfit', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
  }

  .card-add {
    width: 32px; height: 32px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: none;
    line-height: 1;
  }

  .card-add:active { transform: scale(0.9); background: var(--primary); }

  /* ---- FEATURED WIDE CARD ---- */
  .featured-wrap {
    padding: 0 22px 24px;
  }

  .featured-card {
    background: linear-gradient(135deg, #1C1410 60%, #3D2B1F 100%);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(28,20,16,0.25);
    transition: transform 0.2s;
  }

  .featured-card:active { transform: scale(0.98); }

  .featured-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(232,97,74,0.15);
    border-radius: 50%;
  }

  .featured-emoji {
    font-size: 70px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  }

  .featured-text { flex: 1; }

  .featured-label {
    font-size: 10px;
    color: var(--peach);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 500;
  }

  .featured-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .featured-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
  }

  .featured-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .featured-price {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    color: white;
    font-weight: 800;
  }

  .featured-btn {
    background: var(--coral);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  /* ---- CART BAR ---- */
  .cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--dark);
    color: white;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 200;
    width: calc(100% - 44px);
    max-width: 386px;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    cursor: pointer;
  }

  .cart-bar.visible {
    transform: translateX(-50%) translateY(0);
  }

  .cart-count {
    background: var(--coral);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
  }

  .cart-label {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
  }

  .cart-total {
    font-family: 'Outfit', serif;
    font-size: 17px;
    font-weight: 700;
  }

  /* ---- BOTTOM PADDING ---- */
  .bottom-pad { height: 100px; }

  /* ==============================
     DETAIL MODAL
  ============================== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28,20,16,0.55);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 430px;
    background: var(--cream);
    border-radius: 28px 28px 0 0;
    z-index: 2100;
    transition: transform 0.45s cubic-bezier(0.32,1.25,0.54,1);
    max-height: 85dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
  }

  .modal-sticky-footer {
    flex-shrink: 0;
    padding: 14px 20px max(20px, env(safe-area-inset-bottom));
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  /* When open, keep sheet below the sticky nav bar */
  .modal-sheet.open {
    transform: translateX(-50%) translateY(0);
    max-height: 92dvh;
  }

  .modal-drag {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 5px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    border-radius: 50px;
    z-index: 10;
  }

  .modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px; height: 34px;
    background: white;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--dark);
    z-index: 50;
  }

  .modal-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .modal-scroll::-webkit-scrollbar { display: none; }
  
  .modal-side-bg {
    position: absolute;
    top: 30px; /* Shifted up slightly */
    right: 0;
    width: 44%; /* narrower, starting further right */
    height: 260px;
    background: #8985D1;
    border-radius: 40px 0 0 40px; /* Rounded top-left AND bottom-left */
    z-index: 0;
  }

  /* Back button inside cart/checkout sheet header (absolute positioned, circle) */
  .modal-sheet-back-btn {
    background: white;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    left: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 50;
    color: var(--dark);
  }

  /* Back button inside pizza detail modal (inline, no background) */
  .modal-back-btn {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    color: var(--dark);
  }

  .modal-left-content {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .modal-top-section {
    position: relative;
    width: 100%;
  }

  .modal-hero-img {
    position: absolute;
    right: -50px; /* Shifted further right */
    top: 40px; /* Shifted up to match new bg position */
    width: 230px;
    height: 230px;
    background: transparent;
    z-index: 3;
    pointer-events: none;
  }

  .modal-timer-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #FFE600;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }



  .modal-body-bottom {
    padding: 24px 20px;
    position: relative;
    z-index: 2;
  }

  .modal-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--dark);
    letter-spacing: -0.5px;
  }

  .modal-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }

  .modal-price {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
  }

  .modal-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--muted);
  }

  .modal-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .pizza-text-bumper {
    float: right;
    width: 175px; 
    height: 230px; 
    /* Offset so it roughly aligns with the absolute positioned pizza */
    margin-top: -10px;
    margin-bottom: 10px;
    margin-left: 15px; /* Spacing between text and bumper */
    shape-outside: circle(115px at 115px 50%); 
  }

  .modal-section-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  /* Size Options */
  .size-options-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 2px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding: 10px 4px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .size-options-row::-webkit-scrollbar {
    display: none;
  }

  .size-opt-circle {
    flex: 1;
    min-width: 0;
    height: 80px;
    border-radius: 20px;
    background: white;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    line-height: 1.2;
    color: var(--muted);
  }

  .size-opt-circle .size-price {
    color: #8985D1;
  }

  .size-opt-circle.selected {
    background: #8985D1;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(137, 133, 209, 0.35);
    position: relative;
    z-index: 5;
  }

  .size-opt-circle.selected .size-name,
  .size-opt-circle.selected .size-price {
    color: white !important;
  }

  #modalSizeSection {
    clear: right; /* Ensure it starts below the pizza bumper */
  }

  .size-options-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Force single row */
    gap: 8px;
  }

  .size-opt {
    flex: 1;
    min-width: 0;
    background: white;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 10px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
  }

  .size-opt.selected {
    border-color: var(--coral);
    background: rgba(232,97,74,0.06);
  }

  .size-opt .size-label { font-size: 12px; font-weight: 600; color: var(--dark); }
  .size-opt .size-cm { font-size: 10px; color: var(--muted); margin-top: 2px; }
  .size-opt .size-price { font-size: 12px; font-weight: 600; color: var(--coral); margin-top: 4px; }

  /* Extras */
  .extras-list { margin-bottom: 24px; }

  .extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
  }

  .extra-left { display: flex; align-items: center; gap: 12px; }

  .extra-emoji { font-size: 26px; }

  .extra-name { font-size: 14px; font-weight: 500; color: var(--dark); }
  .extra-price { font-size: 12px; color: var(--muted); margin-top: 2px; }

  .extra-check {
    width: 26px; height: 26px;
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .extra-item.checked .extra-check {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
  }

  .extra-check svg {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }

  .extra-item.checked .extra-check svg {
    transform: rotate(45deg); /* + turns into x */
  }

  /* Dough Options */
  .dough-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .dough-opt {
    background: white;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .dough-opt.selected {
    border-color: var(--coral);
    background: rgba(232,97,74,0.06);
  }

  .dough-opt .dough-name { font-size: 13px; font-weight: 600; color: var(--dark); }
  .dough-opt .dough-desc { font-size: 11px; color: var(--muted); margin-top: 2px; }

  /* Qty & Add to cart */
  .modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--cream);
    padding: 16px 22px max(28px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .qty-pill-mockup {
    display: inline-flex;
    align-items: center;
    background: #EEECF2; /* Soft purple-gray matching mockup */
    border-radius: 50px;
    padding: 6px;
    gap: 16px;
  }

  .qty-btn-mockup {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    color: var(--dark);
  }

  .qty-btn-mockup.plus {
    background: #F3A89B; /* Coral-ish from mockup */
    color: white;
    box-shadow: 0 4px 10px rgba(243,168,155,0.4);
  }

  .qty-num-mockup {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    min-width: 16px;
    text-align: center;
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blush);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-weight: 600;
    transition: background 0.2s;
  }

  .qty-btn:active { background: var(--peach); }
  .qty-num { font-weight: 700; font-size: 16px; min-width: 20px; text-align: center; }

  .btn-add-cart-mockup {
    width: 100%;
    background: #8985D1;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(137,133,209,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  
  .btn-add-cart-mockup:active {
    transform: scale(0.98);
  }

  .add-to-cart-btn {
    flex: 1;
    background: var(--coral);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(232,97,74,0.35);
    transition: transform 0.2s, background 0.2s;
  }

  .add-to-cart-btn:active { transform: scale(0.97); background: #C44A35; }

  /* ---- Ingredients chips ---- */
  .ingredients-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .ing-chip {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* Toast */
  .toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    background: var(--dark);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ---- ORDER TOGGLE ---- */
  .order-toggle {
    display: flex;
    background: #EAEAEA; /* Light grey for the track */
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
  }
  .toggle-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.3s;
  }
  .toggle-btn.active {
    background: white;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* ---- ADDRESS SEARCH ---- */
  .address-search-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    z-index: 100; /* Ensures the dropdown overlaps the button below */
    animation: fadeUp 0.8s 0.25s ease both;
  }
  .address-input-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 14px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    gap: 12px;
  }
  .address-input-box span { font-size: 20px; }
  .address-input-box input {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
  }
  .address-input-box input::placeholder { color: var(--muted); font-weight: 500; }
  .address-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 50;
    max-height: 250px;
    overflow-y: auto;
    display: none;
  }
  .address-suggestions.active { display: block; }
  .suggestion-item {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: background 0.2s;
  }
  .suggestion-item:last-child { border-bottom: none; }
  .suggestion-item:active { background: var(--blush); }
  .sugg-street { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
  .sugg-city { font-size: 12px; color: var(--muted); }

  /* ---- EXTENDED ADDRESS FIELDS ---- */
  .extended-address {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    animation: fadeUp 0.4s ease both;
  }
  .extended-address.active { display: flex; }
  
  .form-control {
    background: white;
    border: none;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 100%;
    outline: none;
  }
  .form-control:read-only {
    background: rgba(255,255,255,0.7);
    color: var(--muted);
  }
  .w-70 { width: calc(70% - 5px); }
  .w-30 { width: calc(30% - 5px); }
  .w-50 { width: calc(50% - 5px); }
  .w-100 { width: 100%; }

  /* --- ANIMATIONS & PREMIUM UI --- */
  .menu-card {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  }
  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  
  .modal-overlay {
    backdrop-filter: blur(8px);
  }

  /* Custom Time Picker */
  .custom-time-picker {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    user-select: none;
    text-align: left;
  }
  .time-picker-header {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .time-picker-options {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: 8px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
  }
  .time-picker-options.open {
    max-height: 250px;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }
  .time-option {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s;
  }
  .time-option:last-child { border-bottom: none; }
  .time-option:hover { background: #f8f9fa; color: var(--coral); }

  .nav-avatar, .hero-pizza-emoji, .featured-emoji, .pizza-emoji {
    display: flex; align-items: center; justify-content: center;
  }
  
  #modalEmoji svg {
    width: 100px;
    height: 100px;
    color: var(--coral);
    margin-top: 20px;
  }

  /* --- RESPONSIVE DESIGN (TABLET) --- */
  @media (min-width: 768px) {
    body { max-width: 768px; }
    .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .hero { min-height: 450px; height: 50vh; }
    .cart-bar { left: 50%; width: 700px; transform: translateX(-50%); border-radius: 50px; bottom: 20px; }
  }

  /* --- RESPONSIVE DESIGN (DESKTOP) --- */
  @media (min-width: 1024px) {
    html { background: #EAEAEA; }
    body { max-width: 1200px; margin: 0 auto; position: relative; box-shadow: 0 0 40px rgba(0,0,0,0.08); }
    .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 10px 40px 40px; }
    .section { padding: 0 40px; }
    .hero { min-height: 500px; height: 55vh; align-items: center; justify-content: center; text-align: center; }
    .hero h1 { font-size: 64px; text-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    .hero p { text-align: center; margin-bottom: 30px; }
    .order-toggle { margin: 0 auto 20px; width: 400px; }
    .address-search-wrap { width: 500px; margin: 0 auto; }
    
    .modal-sheet {
      top: 50%; left: 50%;
      transform: translate(-50%, -45%) scale(0.95);
      opacity: 0;
      pointer-events: none;
      width: 500px;
      height: auto;
      max-height: 90vh;
      border-radius: 24px;
      bottom: auto;
      box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    }
    .modal-sheet.open {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
      pointer-events: auto;
    }
    
    .cart-bar {
      width: 380px;
      left: auto;
      right: 40px;
      transform: translateY(120px);
      bottom: 40px;
    }
    
    .cart-bar.visible {
      transform: translateY(0) !important;
    }
  }

  /* ---- NEW CART & CHECKOUT DRAWER STYLING ---- */
  
  /* Toggle buttons for Delivery vs Pickup */
  .cart-toggle-wrap {
    display: flex;
    background: #EEECF2;
    padding: 4px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  .cart-toggle-btn {
    flex: 1;
    border: none;
    background: none;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    padding: 10px 6px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .cart-toggle-btn.active {
    background: white;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  /* Cart Item Card (Mockup Style) */
  .cart-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .cart-item-img-wrap {
    width: 75px;
    height: 75px;
    background: #FFDADA; /* soft pink */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .cart-item-img-wrap img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
  }
  .cart-item-details {
    flex: 1;
    min-width: 0;
  }
  .cart-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .cart-item-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
  }
  .cart-item-note-btn {
    display: inline-block;
    font-size: 11px;
    color: var(--coral);
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    font-weight: 600;
  }
  .cart-item-note-input {
    width: 100%;
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    outline: none;
  }
  .cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
  }
  
  /* Qty Pill Selector (Mockup Style) */
  .cart-qty-pill {
    display: flex;
    align-items: center;
    background: #EEECF2;
    border-radius: 12px;
    padding: 4px;
    gap: 8px;
  }
  .cart-qty-btn {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
  }
  .cart-qty-btn.plus {
    background: var(--coral);
    color: white;
    border-radius: 50%;
  }
  .cart-qty-num {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    min-width: 12px;
    text-align: center;
  }
  .cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 6px;
  }

  /* Cross Selling (Schon probiert?) */
  .cross-selling-box {
    margin-top: 25px;
    background: rgba(137,133,209,0.06); /* very soft lavender */
    border-radius: 20px;
    padding: 16px;
  }
  .cross-selling-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }
  .cross-selling-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cross-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .cross-item-info {
    display: flex;
    flex-direction: column;
  }
  .cross-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
  }
  .cross-item-price {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }
  .cross-add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #EEECF2;
    font-size: 16px;
    font-weight: bold;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .cross-add-btn:active {
    background: var(--coral);
    color: white;
  }

  /* Pricing Summaries */
  .cart-summary-section, .checkout-summary-section {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
  }
  .summary-row.total {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 12px;
  }

  /* Min Order Value Banner */
  .min-order-info-banner {
    background: #FFEBEB;
    color: #D93025;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    animation: pulseBorder 2s infinite;
  }
  @keyframes pulseBorder {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
  }

  /* Sticky Footer Pill Button */
  .btn-cart-checkout-pill {
    width: 100%;
    background: var(--primary); /* Lila/Lavendel according to mockup */
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px; /* Pill shape */
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(137,133,209,0.3);
    transition: transform 0.2s, opacity 0.2s;
  }
  .btn-cart-checkout-pill:disabled {
    background: #CCCCCC;
    box-shadow: none;
    cursor: not-allowed;
  }
  .btn-cart-checkout-pill:not(:disabled):active {
    transform: scale(0.98);
  }

  /* Driver Tip Buttons (Lieferando-Style) */
  .tip-button-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tip-btn {
    flex: 1;
    min-width: 60px;
    padding: 10px 6px;
    border: 1px solid #EEECF2;
    background: white;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
  }
  .tip-btn.active {
    background: var(--coral);
    box-shadow: 0 4px 12px rgba(232,97,74,0.2);
  }

/* =========================================
   ADRESS MODAL — DOMINO'S STYLE
   ========================================= */

  #addressSheet { 
    min-height: 480px;
    max-height: 92dvh;
  }

  .address-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f4f5;
    border-radius: 16px;
    padding: 14px 18px;
    border: 1.5px solid transparent;
    transition: border-color 0.2s;
  }

  .address-search-input-wrap:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(139,132,215,0.12);
  }

  .address-search-input {
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    flex: 1;
    min-width: 0;
  }

  .address-search-input::placeholder { color: var(--muted); font-weight: 400; }

  #addressDeliveryBlock { position: relative; }

  .address-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(10px);
  }

  .address-suggestions.active { opacity: 1; pointer-events: auto; transform: translateY(0); }

  .suggestion-item {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: background 0.15s;
  }
  .suggestion-item:last-child { border-bottom: none; }
  .suggestion-item:hover { background: #f8f9fa; }
  .sugg-street { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
  .sugg-city { font-size: 12px; color: var(--muted); }

  .hsnr-input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .hsnr-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(139,132,215,0.12); }

  .pickup-time-select {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: white;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A7B76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 1.2em;
    cursor: pointer;
  }

  .btn-confirm-address {
    width: 100%;
    padding: 16px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(232,97,74,0.3);
  }
  .btn-confirm-address:active { transform: scale(0.98); }

/* =========================================
   DEAL CARDS — DOMINO'S STYLE
   ========================================= */

  .deals-cards-wrap {
    padding: 16px 22px 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .deal-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s;
  }
  .deal-card:active { transform: scale(0.98); }
  .deal-card:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }

  .deal-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1C1410 0%, #3D2B1F 100%);
    z-index: 0;
  }
  .deal-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 1;
  }
  .deal-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--coral);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
  }
  .deal-card-content {
    position: relative;
    z-index: 2;
    padding: 16px 18px 18px;
  }
  .deal-card-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .deal-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .deal-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(232,97,74,0.4);
  }

/* =========================================
   BESTSELLER SEKTION — HORIZONTAL SCROLL
   ========================================= */

  .bestseller-scroll-wrap {
    padding: 16px 0 8px 22px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-right: 22px;
  }
  .bestseller-scroll-wrap::-webkit-scrollbar { display: none; }

  .bestseller-card {
    flex-shrink: 0;
    width: 155px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 14px;
    overflow: hidden;
  }
  .bestseller-card:active { transform: scale(0.97); }
  .bestseller-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

  .bestseller-card-top {
    height: 86px;
    background: #FFDADA;
    border-radius: 0 0 50% 50% / 0 0 24px 24px;
    position: relative;
    margin-bottom: 50px;
  }
  .bestseller-card-img {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
    background: #f8f9fa;
  }
  .bestseller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--coral);
    color: white;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 50px;
  }
  .bestseller-card-body { padding: 0 12px; text-align: center; }
  .bestseller-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .bestseller-card-price { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--coral); }

  /* Desktop update for new sections */
  @media (min-width: 1024px) {
    #addressSheet { min-height: 480px !important; }
    .hero-order-btns { width: 420px; align-self: center; }
    .bestseller-scroll-wrap { padding-left: 40px; padding-right: 40px; }
    #dealsSectionWrap .section-header,
    #bestsellerSectionWrap .section-header { padding-left: 40px !important; padding-right: 40px !important; }
    .deals-cards-wrap { padding-left: 40px; padding-right: 40px; }
  }
