    /* ── Premium Splash Screen Style ── */
    .splash-screen-overlay {
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, #1a7a2e 0%, #0f5a20 50%, #1f8a36 100%);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
      overflow: hidden;
    }
    .splash-screen-overlay.fade-out {
      opacity: 0;
      visibility: hidden;
    }
    .splash-floating-emojis {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }
    .splash-fe {
      position: absolute;
      font-size: 2rem;
      animation: splashFloat linear infinite;
      opacity: 0;
      bottom: -100px;
    }
    @keyframes splashFloat {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 0.12;
      }
      90% {
        opacity: 0.12;
      }
      100% {
        transform: translateY(-115vh) rotate(360deg);
        opacity: 0;
      }
    }
    .splash-content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      animation: splashPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      z-index: 2;
      position: relative;
    }
    .splash-logo-container {
      width: 110px;
      height: 110px;
      background: white;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border: 4px solid rgba(255, 255, 255, 0.3);
      position: relative;
      animation: logoPulse 2s infinite ease-in-out;
    }
    .splash-logo {
      width: 75px;
      height: 75px;
      object-fit: contain;
    }
    .splash-title {
      font-family: 'Baloo 2', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      margin: 0;
      text-shadow: 0 4px 12px rgba(0,0,0,0.1);
      letter-spacing: 0.5px;
    }
    .splash-subtitle {
      font-size: 1.15rem;
      font-weight: 800;
      color: #ffffff;
      margin: -2px 0 25px 0;
      letter-spacing: 0.5px;
      line-height: 1.5;
      text-transform: none;
      font-family: 'Baloo 2', sans-serif;
      text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .splash-subtitle span {
      color: #fef08a;
      font-size: 1.05rem;
      font-weight: 700;
      display: inline-block;
      margin-top: 4px;
    }
    .splash-loader-bar {
      width: 140px;
      height: 4px;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }
    .splash-loader-progress {
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 10px;
      position: absolute;
      left: -100%;
      animation: splashProgress 1.8s ease-in-out infinite;
    }
    @keyframes splashPop {
      0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    @keyframes logoPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 25px 45px rgba(255,255,255,0.25);
      }
    }
    @keyframes splashProgress {
      0% {
        left: -100%;
      }
      50% {
        left: 0;
      }
      100% {
        left: 100%;
      }
    }

    :root {
      --green: #1a7a2e;
      --green-light: #27a844;
      --green-pale: #e8f5ec;
      --orange: #f97316;
      --orange-light: #fff7ed;
      --yellow: #fbbf24;
      --text: #1c2b1e;
      --text-muted: #6b7c6d;
      --bg: #f0f7f1;
      --white: #ffffff;
      --card-shadow: 0 2px 12px rgba(26, 122, 46, 0.10);
      --radius: 16px;
      --radius-sm: 10px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Hind', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      width: 100%;
      padding-bottom: 120px; /* Space for bottom sticky cart */
    }

    @media (max-width: 600px) {
      body {
        padding-bottom: 85px; /* Slimmer space for bottom sticky cart on mobile */
      }
    }

    /* ── Header ── */
    header {
      background: var(--green);
      padding: 0 10px;
      position: relative;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
      width: 100%;
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo span {
      font-size: 1.6rem;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .location-badge {
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .cart-btn {
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 24px;
      padding: 8px 18px;
      cursor: pointer;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s, transform 0.1s;
      position: relative;
    }

    .cart-btn:hover {
      background: #ea6c0a;
      transform: scale(1.04);
    }

    .cart-count {
      background: #fff;
      color: var(--orange);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    @media (max-width: 600px) {
      header {
        padding: 0 8px;
      }

      .header-inner {
        height: 60px;
        flex-direction: row;
        justify-content: space-between;
        overflow: hidden;
      }

      .logo {
        font-size: 1.1rem;
        gap: 4px;
        flex-shrink: 0;
      }

      .logo span {
        font-size: 1.2rem;
      }

      .header-right {
        gap: 4px;
        flex-shrink: 1;
        overflow: hidden;
      }

      .location-badge {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 10px !important;
        padding: 5px 8px !important;
        font-size: 0.8rem !important;
        color: #fff !important;
        font-family: 'Baloo 2', sans-serif !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        height: 34px !important;
        min-width: unset !important;
      }
      .location-badge span {
        display: inline !important;
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
      }

      .coins-badge {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px dashed #fbbf24 !important;
        color: #fbbf24 !important;
        border-radius: 10px !important;
        padding: 5px 8px !important;
        font-family: 'Baloo 2', sans-serif !important;
        font-weight: 700 !important;
        font-size: 0.8rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        height: 34px !important;
        min-width: unset !important;
      }

      #userGreeting {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: #fff !important;
        border-radius: 50% !important;
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.05rem !important;
        cursor: pointer !important;
      }
      #userNameDisplay {
        display: none !important;
      }

      .cart-btn {
        background: var(--orange) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 10px !important;
        padding: 5px 8px !important;
        font-family: 'Baloo 2', sans-serif !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        height: 34px !important;
        min-width: unset !important;
      }
      .cart-btn-text {
        display: none !important;
      }
      .cart-count {
        position: static !important;
        margin-left: 2px !important;
        background: #fff !important;
        color: var(--orange) !important;
        border-radius: 50% !important;
        width: 18px !important;
        height: 18px !important;
        font-size: 0.72rem !important;
        font-weight: 900 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }
    }

    /* ── Search / Hero ── */
    .hero {
      background: linear-gradient(135deg, #1a7a2e 0%, #0f5a20 60%, #27a844 100%);
      padding: 28px 20px 36px;
      text-align: center;
    }

    .hero h1 {
      font-family: 'Baloo 2', sans-serif;
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      color: #fff;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .hero p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      margin-bottom: 18px;
    }

    .search-bar {
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 50px;
      padding: 6px 6px 6px 18px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0,0,0,0.05);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .search-bar:focus-within {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .search-bar input {
      flex: 1;
      border: none;
      outline: none;
      padding: 10px 0;
      font-size: 1rem;
      font-weight: 500;
      background: transparent;
      color: #333;
    }

    .search-controls {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .search-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1.1rem;
      background: var(--green);
      color: #fff;
    }

    /* ── Main layout ── */
    .main-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 24px 16px;
    }

    /* ── Category Chips ── */
    .category-container {
      margin-bottom: 24px;
    }

    .category-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: none;
    }

    .category-scroll::-webkit-scrollbar {
      display: none;
    }

    .sub-category-scroll {
      display: none;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 0 0;
      border-top: 1px solid rgba(26, 122, 46, 0.1);
      margin-top: 8px;
      animation: slideDownSub 0.3s ease-out;
    }

    @keyframes slideDownSub {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .chip {
      flex-shrink: 0;
      background: var(--white);
      border: 2px solid transparent;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .chip:hover,
    .chip.active {
      background: var(--green-pale);
      border-color: var(--green);
      color: var(--green);
    }

    .chip.sub {
      font-size: 0.78rem;
      padding: 4px 12px;
      background: #f9fafb;
    }

    .chip.sub.active {
      background: var(--green);
      color: #fff;
      border-color: var(--green);
    }

    /* ── Product Grid ── */
    .section-title {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 14px;
    }

    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(26, 122, 46, 0.15);
    }

    .product-img {
      width: 100%;
      height: 110px;
      background: var(--green-pale);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-img.loading-skeleton::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform: translateX(-100%);
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      100% {
        transform: translateX(100%);
      }
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
      display: block;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform: translateZ(0);
    }

    .out-of-stock-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(239, 68, 68, 0.9);
      color: #fff;
      border-radius: 6px;
      padding: 2px 8px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    .product-info {
      padding: 10px 12px 12px;
    }

    .product-name-en {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.2;
    }

    .product-name-hi {
      font-family: 'Hind', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .product-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }

    .product-price {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--green);
    }

    .product-unit {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* Price Comparison Styling */
    .price-compare-container {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: auto;
      padding-top: 8px;
    }
    .market-price-row {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.95rem;
      color: #1e293b;
      font-weight: 800;
      flex-wrap: wrap;
    }
    .market-price-row span:first-child {
      font-size: 1.05rem;
      font-weight: 900;
      color: #0f172a;
    }
    .market-slashed {
      text-decoration: line-through;
      color: #4b5563;
      font-weight: 900;
      font-size: 1.05rem;
      margin: 0 2px;
    }
    .our-price-row {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }
    .our-price-tag {
      background: #22c55e;
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 900;
      padding: 2px 8px;
      border-radius: 6px;
      white-space: nowrap;
      font-family: 'Baloo 2', sans-serif;
    }
    .sasta-badge {
      background: #ffedd5;
      color: #ea580c;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 6px;
      white-space: nowrap;
    }
    .product-footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 6px;
      width: 100%;
    }

    .add-btn {
      background: var(--white);
      color: var(--green);
      border: 1.5px solid var(--green);
      border-radius: 10px;
      width: 90px;
      height: 32px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
    }

    .add-btn:hover {
      background: var(--green-pale);
    }

    .add-btn:disabled {
      background: #f3f4f6;
      border-color: #d1d5db;
      color: #9ca3af;
      cursor: not-allowed;
      font-size: 0.65rem;
      width: 72px;
    }

    .qty-control {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--green);
      color: #fff;
      border-radius: 10px;
      width: 90px;
      height: 32px;
      padding: 0 4px;
      box-shadow: 0 2px 8px rgba(26, 122, 46, 0.2);
      flex-shrink: 0;
    }

    .qty-btn {
      width: 26px;
      height: 26px;
      background-color: #ffffff !important;
      color: #000000 !important;
      border: 1.5px solid #000000 !important;
      border-radius: 6px;
      font-size: 1.2rem;
      cursor: pointer;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.1s;
    }

    .qty-btn:hover {
      transform: scale(1.1);
    }

    .qty-display {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      min-width: 24px;
      text-align: center;
      color: #fff;
    }

    .qty-input {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      width: 40px;
      text-align: center;
      color: #000000;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 6px;
      padding: 2px 0;
      margin: 0 4px;
      outline: none;
      -moz-appearance: textfield;
    }
    .qty-input:focus {
      background: #fff;
      border-color: var(--green);
      box-shadow: 0 0 0 2px rgba(26,122,46,0.2);
    }
    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    /* ── Combo Section (Automatic) ── */
    .combo-section {
      margin: 10px 0 25px 0;
      padding: 0 4px;
    }
    .combo-scroll {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      padding: 10px 4px 20px 4px;
      scrollbar-width: none;
    }
    .combo-scroll::-webkit-scrollbar { display: none; }
    
    .combo-card {
      flex: 0 0 280px;
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      position: relative;
      border: 1px solid rgba(0,0,0,0.05);
      cursor: pointer;
    }
    .combo-card-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .combo-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--orange);
      color: white;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 800;
      box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    }
    .combo-card-info {
      padding: 15px;
    }
    /* ── Premium Combo Showcase UI ── */
    .combo-bundle-container {
      width: 100%;
      height: 100%;
      background: url('/images/combo_bg.png') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 15px;
      padding: 30px 15px 15px 15px;
      box-sizing: border-box;
      overflow: hidden;
    }
    .combo-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: linear-gradient(135deg, #ff4e50, #f9d423);
      color: white;
      font-size: 0.65rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(255, 78, 80, 0.4);
      z-index: 10;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .ingredient-showcase-card {
      background: transparent;
      border: none;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      overflow: visible;
      padding: 0;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      filter: drop-shadow(0 12px 16px rgba(0,0,0,0.35));
    }
    .ingredient-showcase-card:hover {
      transform: translateY(-8px) scale(1.15);
      filter: drop-shadow(0 16px 24px rgba(0,0,0,0.45));
    }
    .ingredient-showcase-card img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .combo-card-title {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 2px;
    }
    .combo-card-contents {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      font-weight: 600;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .combo-card-price {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--green);
    }

    /* ── Cart Sidebar ── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 600;
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .cart-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .cart-sidebar {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      width: min(400px, 100vw);
      background: var(--bg);
      color: var(--text);
      z-index: 601;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
      box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
      border-left: 1px solid var(--border);
    }

    .cart-sidebar.open {
      transform: translateX(0);
    }

    .cart-header {
      padding: 24px 20px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-header h3 {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.4rem;
      color: var(--green);
    }

    .cart-close {
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: var(--text-muted);
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
      background: var(--bg);
    }

    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      gap: 12px;
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-name {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
    }

    .cart-item-price {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      padding: 2px;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    .cart-item-qty .qty-btn {
      width: 32px !important;
      height: 32px !important;
      background-color: #ffffff !important;
      color: #000000 !important;
      border: 2px solid #000000 !important;
      border-radius: 8px !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 1.4rem !important;
      font-weight: 900 !important;
      line-height: 1 !important;
      transition: transform 0.1s !important;
    }

    .cart-item-qty .qty-btn:active {
      transform: scale(0.9);
    }

    .cart-item-qty .qty-display {
      font-family: 'Baloo 2', sans-serif !important;
      font-weight: 800 !important;
      font-size: 1.1rem !important;
      color: #000 !important;
      min-width: 20px !important;
      text-align: center !important;
    }

    [data-theme="dark"] .cart-item-qty {
      background: #1f2937 !important;
      border-color: #374151 !important;
    }

    [data-theme="dark"] .cart-item-qty .qty-btn {
      background-color: #ffffff !important;
      color: #000000 !important;
    }

    [data-theme="dark"] .cart-item-qty .qty-display {
      color: #ffffff !important;
    }

    .cart-footer {
      padding: 24px;
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: var(--text);
    }

    .cart-subtotal strong {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      color: var(--green);
      font-size: 1.4rem;
    }

    .checkout-btn {
      width: 100%;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 14px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .checkout-btn:hover {
      background: var(--green-light);
    }

    /* ── Toast ── */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--text);
      color: #fff;
      border-radius: 12px;
      padding: 12px 24px;
      font-weight: 600;
      font-size: 0.9rem;
      z-index: 999;
      transition: transform 0.3s;
      pointer-events: none;
    }

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

    .loading {
      text-align: center;
      padding: 60px;
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .hero {
        padding: 20px 16px 28px;
      }
    }


    /* ── Product Modal ── */
    .pm-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .pm-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .pm-modal {
      background: var(--white);
      border-radius: 24px;
      width: 100%;
      max-width: 420px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
      transform: translateY(20px) scale(0.95);
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .pm-overlay.open .pm-modal {
      transform: translateY(0) scale(1);
    }

    .pm-img-box {
      width: 100%;
      height: 260px;
      background: var(--green-pale);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
    }

    .pm-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pm-close {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pm-body {
      padding: 20px 24px;
    }

    .pm-title {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .pm-sub {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .pm-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .pm-price {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--green);
    }

    .pm-recipes-btn {
      display: block;
      width: 100%;
      background: linear-gradient(135deg, var(--orange), #ea6c0a);
      color: #fff;
      text-align: center;
      border-radius: 12px;
      padding: 12px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      margin-bottom: 16px;
    }

    .pm-badges {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }

    .pm-badge {
      background: var(--green-pale);
      color: var(--green);
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    /* ── Recipe Modal ── */
    .recipe-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .recipe-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .recipe-modal {
      background: #fff;
      border-radius: 24px;
      width: 100%;
      max-width: 680px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
      transform: translateY(20px) scale(0.96);
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .recipe-overlay.open .recipe-modal {
      transform: translateY(0) scale(1);
    }

    @keyframes slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .recipe-modal-header {
      background: linear-gradient(135deg, #1a7a2e, #27a844);
      padding: 24px 24px 20px;
      border-radius: 24px 24px 0 0;
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .recipe-modal-title {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }

    .recipe-modal-sub {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.88rem;
      margin-top: 4px;
    }

    .recipe-close {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .recipe-close:hover {
      background: rgba(255, 255, 255, 0.35);
    }

    .recipe-body {
      padding: 20px 24px 28px;
    }

    /* Loading shimmer */
    .recipe-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 48px 20px;
      gap: 16px;
      color: var(--text-muted);
    }

    .recipe-spinner {
      width: 52px;
      height: 52px;
      border: 4px solid var(--green-pale);
      border-top-color: var(--green);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    .recipe-loading-text {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1rem;
      color: var(--green);
      font-weight: 600;
    }

    .recipe-loading-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Recipe cards grid */
    .recipes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
      margin-top: 4px;
    }

    .recipe-card {
      border: 1.5px solid var(--green-pale);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }

    .recipe-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(26, 122, 46, 0.14);
    }

    .recipe-card-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      background: var(--green-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
    }

    .recipe-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }

    .recipe-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(26, 122, 46, 0.9);
      color: #fff;
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.7rem;
      font-weight: 700;
      backdrop-filter: blur(4px);
    }

    .recipe-card-body {
      padding: 14px 16px 16px;
    }

    .recipe-card-name {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .recipe-card-name-hi {
      font-size: 0.82rem;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .recipe-card-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .recipe-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .recipe-meta-chip {
      background: var(--green-pale);
      color: var(--green);
      border-radius: 20px;
      padding: 3px 10px;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .recipe-origin {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 8px;
      font-style: italic;
    }

    .recipe-section-title {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .recipe-tip {
      background: #fff9e6;
      border: 1.5px solid #fbbf24;
      border-radius: 12px;
      padding: 14px 16px;
      font-size: 0.85rem;
      color: #92400e;
      margin-top: 16px;
      line-height: 1.5;
    }

    .recipe-error {
      text-align: center;
      padding: 40px 20px;
      color: var(--text-muted);
    }

    /* Tap hint on card */
    .recipe-hover-hint {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--green);
      background: rgba(255, 255, 255, 0.85);
      border-radius: 20px;
      padding: 2px 10px;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
      border: 1px solid var(--green-pale);
    }

    .product-card:hover .recipe-hover-hint {
      opacity: 1;
    }

    .recipe-link-btn {
      display: block;
      background: var(--green-pale);
      color: var(--green);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      margin: 6px 0 10px;
      text-align: center;
      transition: background 0.2s, transform 0.1s;
      font-family: 'Baloo 2', sans-serif;
      border: 1.5px solid transparent;
    }

    .recipe-link-btn:hover {
      background: var(--green);
      color: #fff;
      transform: scale(1.02);
    }

    /* ── Real vegetable images ── */
    .product-img {
      overflow: hidden;
    }

    .product-img img {
      transition: transform .4s ease, opacity .4s;
    }

    .product-img:hover img {
      transform: scale(1.08);
    }

    .product-img .recipe-hover-hint {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(26, 122, 46, .85), transparent);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      padding: 18px 10px 8px;
      text-align: center;
      opacity: 0;
      transition: opacity .25s;
      pointer-events: none;
    }

    .product-img:hover .recipe-hover-hint {
      opacity: 1;
    }

    /* ── Dark Mode ── */
    [data-theme="dark"] {
      --bg: #111827;
      --text: #f9fafb;
      --text-muted: #9ca3af;
      --white: #1f2937;
      --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
      --green-pale: #374151;
    }

    .theme-toggle {
      background: rgba(255, 255, 255, .15);
      border: 1.5px solid rgba(255, 255, 255, .25);
      color: #fff;
      border-radius: 8px;
      padding: 7px 10px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Prevent zoom on mobile inputs */
    input,
    select,
    textarea {
      font-size: 16px !important;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 95px;
      right: 20px;
      background: #25d366;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
      z-index: 100;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 2px 2px 20px rgba(0, 0, 0, .5);
    }

    @media (max-width:768px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 95px;
        right: 15px;
      }
    }

    /* ── Touch Feedback & Transitions ── */
    .chip, .add-btn, .qty-btn, .product-card, .recipe-link-btn, .sticky-cart {
      -webkit-tap-highlight-color: transparent;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    
    .chip:active {
      transform: scale(0.95);
    }
    
    .add-btn:active {
      transform: scale(0.94);
    }
    
    .qty-btn:active {
      transform: scale(0.85);
    }
    
    .product-card:active {
      transform: scale(0.985);
      box-shadow: 0 4px 10px rgba(26, 122, 46, 0.08);
    }
    
    .recipe-link-btn:active {
      transform: scale(0.96);
    }
    
    /* ── Products Grid Fade Transition ── */
    .products-grid {
      transition: opacity 0.12s ease-out, transform 0.12s ease-out;
      will-change: opacity, transform;
    }
    
    .products-grid.grid-fade-out {
      opacity: 0;
      transform: translateY(8px);
    }

    /* ── Custom PWA Install Banner Style ── */
    .pwa-install-banner {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(150%);
      width: 90%;
      max-width: 500px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-radius: var(--radius);
      z-index: 10000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
      padding: 20px;
      box-sizing: border-box;
    }

    [data-theme="dark"] .pwa-install-banner {
      background: rgba(31, 41, 55, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .pwa-install-banner.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .pwa-banner-content {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    .pwa-close-btn {
      position: absolute;
      top: -8px;
      right: -8px;
      background: rgba(0, 0, 0, 0.05);
      border: none;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 700;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    
    [data-theme="dark"] .pwa-close-btn {
      background: rgba(255, 255, 255, 0.1);
    }

    .pwa-close-btn:hover {
      background: rgba(0, 0, 0, 0.1);
      transform: scale(1.05);
    }

    .pwa-close-btn:active {
      transform: scale(0.95);
    }

    .pwa-banner-header {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .pwa-app-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    .pwa-text-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
      padding-right: 18px;
    }

    .pwa-app-name {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
    }

    .pwa-app-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.35;
      font-weight: 500;
    }

    .pwa-action-row {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .pwa-install-btn {
      flex: 1;
      background: var(--green);
      color: #ffffff;
      border: none;
      padding: 10px 18px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(26, 122, 46, 0.25);
      transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .pwa-install-btn:hover {
      background: var(--green-light);
      box-shadow: 0 6px 16px rgba(39, 168, 68, 0.35);
      transform: translateY(-1px);
    }

    .pwa-install-btn:active {
      transform: translateY(1px);
    }

    .pwa-later-btn {
      background: transparent;
      color: var(--text-muted);
      border: 1.5px solid var(--text-muted);
      padding: 9px 16px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.2s;
    }

    .pwa-later-btn:hover {
      background: rgba(0, 0, 0, 0.03);
      color: var(--text);
      border-color: var(--text);
    }
    
    [data-theme="dark"] .pwa-later-btn:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    /* iOS instructions style */
    .pwa-ios-instructions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: rgba(26, 122, 46, 0.06);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      border: 1px dashed rgba(26, 122, 46, 0.25);
    }
    
    [data-theme="dark"] .pwa-ios-instructions {
      background: rgba(31, 41, 55, 0.5);
      border: 1px dashed rgba(255, 255, 255, 0.15);
    }

    .pwa-ios-step {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .pwa-step-num {
      background: var(--green);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pwa-step-text {
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.4;
      font-weight: 550;
    }

    .pwa-ios-icon-share {
      font-size: 0.95rem;
      margin: 0 2px;
    }

    .pwa-ios-icon-add {
      font-size: 0.9rem;
      margin: 0 2px;
    }

    /* Mobile optimization */
    @media (max-width: 600px) {
      .pwa-install-banner {
        bottom: 12px;
        width: 94%;
        padding: 16px;
      }
      .pwa-app-icon {
        width: 48px;
        height: 48px;
      }
      .pwa-app-name {
        font-size: 1.15rem;
      }
      .pwa-app-desc {
        font-size: 0.8rem;
      }
    }

    /* ── Floating Support Button ── */
    #floatingSupportBtn {
      position: fixed;
      bottom: 170px;
      right: 20px;
      z-index: 490;
      background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(2,132,199,0.4);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    #floatingSupportBtn:hover {
      transform: scale(1.1);
    }
    #floatingSupportBtn:hover #supportBtnLabel {
      opacity: 1;
      transform: translateX(0);
    }
    @media (max-width: 768px) {
      #floatingSupportBtn {
        bottom: 160px;
        right: 15px;
        width: 50px;
        height: 50px;
      }
      #floatingSupportBtn #supportBtnLabel {
        display: none !important;
      }
    }


