﻿    :root {
      --bg: #f8f5ed;
      --panel: #ffffff;
      --panel-2: #f5efe1;
      --accent: #c49a2f;
      --accent-2: #9c6b1a;
      --muted: #6b7280;
      --text: #0f172a;
      --shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    body {
      background:
        radial-gradient(circle at 18% 18%, rgba(196, 154, 47, 0.18), transparent 32%),
        radial-gradient(circle at 82% 6%, rgba(116, 134, 177, 0.18), transparent 30%),
        linear-gradient(160deg, #fdfaf4 0%, #f6efe0 48%, #f8f5ed 100%);
      color: var(--text);
      font-family: "Cairo", "Manrope", sans-serif;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    @media (max-width: 576px) {
      body {
        font-size: 15px;
      }

      .search-box input {
        font-size: 14px;
      }
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' fill='rgba(0,0,0,0)'/%3E%3Ccircle cx='6' cy='6' r='1.2' fill='%23000000'/%3E%3Ccircle cx='60' cy='30' r='1' fill='%23000000'/%3E%3Ccircle cx='90' cy='90' r='1' fill='%23000000'/%3E%3Ccircle cx='18' cy='92' r='1' fill='%23000000'/%3E%3Ccircle cx='110' cy='14' r='1' fill='%23000000'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
      z-index: 0;
    }

    .hero {
      position: relative;
      background: linear-gradient(135deg, rgba(196, 154, 47, 0.12), rgba(255, 255, 255, 0.92));
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: var(--shadow);
      border-radius: 20px;
      padding: 28px 24px;
      margin: 26px 0;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      color: var(--text);
      overflow: hidden;
    }

    .brand h1 {
      margin: 0;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #0f172a;
    }

    .brand small {
      color: var(--muted);
      font-weight: 600;
    }

    .brand .logo {
      width: 92px;
      height: auto;
      border-radius: 14px;
      object-fit: contain;
      background: transparent;
      padding: 6px 10px;
      border: 1px solid transparent;
      box-shadow: 0 12px 28px transparent;
      margin-inline-end: 14px;
      z-index: 1;
    }

    .brand-head {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

.lang-toggle button {
      border: 1px solid rgba(196, 154, 47, 0.55);
      background: #fff7e3;
      color: var(--text);
      width: 44px;
      height: 44px;
      padding: 0;
      border-radius: 50%;
      font-weight: 800;
      letter-spacing: 0.2px;
      transition: all .18s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .lang-toggle button.active {
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
      box-shadow: 0 14px 24px rgba(196, 154, 47, 0.35);
      border-color: transparent;
      transform: translateY(-2px);
    }

    .lang-toggle {
      position: relative;
      z-index: 2;
    }

    #nb-lang-toggle {
      position: fixed;
      left: 16px;
      bottom: 16px;
      z-index: 1100;
      border: 1px solid rgba(196, 154, 47, 0.55);
      background: #fff7e3;
      color: var(--text);
      width: 49px;
      height: 49px;
      padding: 0;
      border-radius: 50%;
      font-weight: 800;
      letter-spacing: 0.2px;
      transition: all .18s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 14px 24px rgba(196, 154, 47, 0.35);
    }

    #nb-lang-toggle:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--accent), #e9c468);
      border-color: transparent;
    }

    .card-wrap {
      background: linear-gradient(145deg, var(--panel), var(--panel-2));
      border: 1px solid rgba(0, 0, 0, 0.03);
      border-radius: 18px;
      box-shadow: var(--shadow);
      padding: 18px;
      margin-bottom: 24px;
      transition: transform .15s ease, box-shadow .2s ease;
    }

    .card-wrap:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
    }

    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    }

    .section-title h3 {
      margin: 0;
      font-weight: 700;
      letter-spacing: 0.4px;
      color: #0f172a;
    }

    .section-title small {
      color: var(--muted);
      font-weight: 600;
    }

    .table {
      --bs-table-bg: transparent;
      --bs-table-striped-bg: rgba(0, 0, 0, 0.01);
      --bs-table-hover-bg: rgba(0, 0, 0, 0.02);
      color: var(--text);
    }

    thead th {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
      color: var(--muted);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      background: transparent;
    }

    tbody td {
      border-color: rgba(0, 0, 0, 0.04) !important;
      vertical-align: middle;
    }

    .price {
      color: #b58900;
      font-weight: 800;
    }

    .food-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-avatar {
      display: none;
    }

    .thumb {
      width: 62px;
      height: 62px;
      border-radius: 14px;
      object-fit: cover;
      background: #f1eadb;
      border: 1px solid #e6dcc6;
      flex-shrink: 0;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .controls {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 8px 0 14px;
    }

    .actions-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .actions-row::-webkit-scrollbar { display: none; }

    .search-row { width: 100%; }

    /* chips scroller across all devices */
    #chips {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 6px 2px 4px;
      scrollbar-width: none;
    }
    #chips::-webkit-scrollbar { display: none; }

    .chip-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      min-width: 56px;
    }

    /* Mobile-first styling inspired by reference */
    @media (max-width: 576px) {
      .chip-btn {
        width: 56px;
        height: 56px;
      }

      .actions-row {
        padding: 6px 8px;
        border-radius: 14px;
      }

      .grid-card {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        text-align: start;
      }
      .grid-card img {
        width: 90px !important;
        height: 90px !important;
        object-fit: cover;
        border-radius: 14px;
        margin: 0;
        flex-shrink: 0;
      }
      .grid-card .meta {
        flex: 1;
        min-width: 0;
      }

      .grid-card .pill-price,
      .grid-card .pill-cal {
        justify-content: flex-start;
      }

      .pill {
        border-radius: 5px !important;
        padding: 6px 5px !important;
        font-weight: 800 !important;
        font-size: 11px !important;
        gap: 6px !important;
      }

      .grid-card button.btn-add {
        margin-top: 8px;
        width: fit-content;
      }
    }

    .controls.stuck {
      position: sticky;
      top: 0;
      z-index: 60;
      padding: 10px 12px;
      margin: 0 0 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 237, 0.94));
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 14px;
      box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
      gap: 8px;
    }

    .cart-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fff;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
      font-weight: 800;
      color: #0f172a;
      text-decoration: none;
      line-height: 1.2;
      flex-shrink: 0;
    }

    .cart-count {
      min-width: 24px;
      height: 24px;
      padding: 0 6px;
      border-radius: 999px;
      background: #c49a2f;
      color: #0f172a;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 12px;
    }

    .chip-btn {
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fff7e3;
      color: var(--text);
      border-radius: 50%;
      padding: 0;
      font-weight: 700;
      transition: .15s ease;
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
      cursor: pointer;
      width: 56px;
      height: 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.25;
      gap: 4px;
    }

.chip-btn .chip-ico {
  font-size: 30px;
  line-height: 1;
}

    .chip-btn .chip-text {
      display: none;
    }

    .chip-btn.active {
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
    }

    .chip-label {
      font-size: 13px;
      text-align: center;
      line-height: 1.2;
      color: var(--text);
    }

    .search-row .search-box {
      position: relative;
      width: 100%;
    }

    .search-box input {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 10px 12px;
      background: #fff;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
      font-weight: 600;
    }

    .toggle-btn {
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #ffffff;
      border-radius: 12px;
      padding: 8px 12px;
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
      min-width: 30%;
      font-size: 14px;
    }

    .toggle-btn.active {
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
      border-color: transparent;
    }

    .grid-card {
      background: linear-gradient(160deg, #ffffff 0%, #fbf7ed 100%);
      border: 1px solid rgba(0, 0, 0, 0.04);
      border-radius: 16px;
      padding: 14px;
      box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
      height: 100%;
    }

    .grid-card img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 12px;
      font-weight: 700;
      font-size: 13px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: #fff;
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
    }

    .pill-cal {
      color: #0f172a;
      background: #eef2ff;
      border-color: rgba(79, 70, 229, 0.16);
    }

    .pill-price {
      color: #7c5213;
      background: #fff7e3;
      border-color: rgba(196, 154, 47, 0.25);
    }

    .btn-add {
      border: none;
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
    }

    .btn-add:hover { opacity: .92; }

    /* Keep Bootstrap button variants aligned with brand theme */
    .btn {
      border-radius: 10px;
      font-weight: 700;
      transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary,
    .btn-success,
    .btn-warning {
      color: #0f172a;
      border-color: transparent;
      background: linear-gradient(135deg, var(--accent), #e9c468);
      box-shadow: 0 10px 18px rgba(196, 154, 47, 0.25);
    }

    .btn-primary:hover,
    .btn-success:hover,
    .btn-warning:hover {
      color: #0f172a;
      border-color: transparent;
      background: linear-gradient(135deg, #d0a13a, #efcf7d);
    }

    .btn-outline-primary,
    .btn-outline-secondary,
    .btn-outline-dark {
      color: #7c5213;
      border-color: rgba(196, 154, 47, 0.45);
      background: #fff9ef;
    }

    .btn-outline-primary:hover,
    .btn-outline-secondary:hover,
    .btn-outline-dark:hover {
      color: #0f172a;
      border-color: transparent;
      background: linear-gradient(135deg, var(--accent), #e9c468);
    }

    /* toast */
    #toast {
      position: fixed;
      inset: auto 50% 20px auto;
      transform: translateX(50%);
      background: #0f172a;
      color: #fff;
      padding: 10px 14px;
      border-radius: 12px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      z-index: 9999;
      font-weight: 700;
    }

    #toast.show {
      opacity: 1;
      transform: translateX(50%) translateY(-6px);
    }

    #scroll-top {
      position: fixed;
      right: 16px;
      bottom: 16px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 800;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
      z-index: 10000;
      transform: translateY(8px);
    }

    #scroll-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .announce {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #fffaf0, #fff3d6);
      border: 1px solid rgba(196, 154, 47, 0.25);
      border-radius: 20px;
      padding: 18px 18px 16px 18px;
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
      color: #4a3208;
    }

    .announce::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(196, 154, 47, 0.25), transparent 60%);
      top: -50px;
      left: -30px;
      opacity: .6;
    }

    .announce::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(116, 134, 177, 0.18), transparent 60%);
      bottom: -50px;
      right: -10px;
      opacity: .5;
    }

    .announce-header {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .pill-new {
      background: linear-gradient(135deg, var(--accent), #e9c468);
      color: #0f172a;
      border-radius: 999px;
      padding: 4px 12px;
      font-weight: 800;
      box-shadow: 0 8px 18px rgba(196, 154, 47, 0.35);
      font-size: 13px;
    }

    .announce-title {
      margin: 0;
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .announce-body {
      position: relative;
      z-index: 1;
      margin-top: 10px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 10px;
    }

    .contact-card {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      color: #4a3208;
    }

    .contact-card small {
      color: #7a6130;
      font-weight: 600;
    }

    @media (max-width: 576px) {
      .chip {
        background: rgba(196, 154, 47, 0.12);
        border: 1px solid rgba(196, 154, 47, 0.25);
        color: #8b6b14;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
      }

      @media (max-width: 576px) {
        .hero {
          flex-direction: column;
          align-items: flex-start;
        }

          .lang-toggle {
            position: absolute;
            inset-inline-end: 10px;
            top: 10px;
            width: 49px;
          }

          .lang-toggle button {
            width: 49px;
            height: 49px;
          }

        table thead {
          display: none;
        }

        table tr {
          display: block;
          border: 1px solid #ece7db;
          border-radius: 12px;
          margin-bottom: 12px;
          overflow: hidden;
          background: #fff;
        }

        table td {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 10px 14px;
          border-bottom: 1px solid #f2ede2 !important;
        }

        table td:last-child {
          border-bottom: none !important;
        }

        table td::before {
          content: attr(data-label);
          color: #6b7280;
          font-weight: 600;
          font-size: 12px;
          margin-inline-end: 10px;
        }
      }

      @media print {
        body {
          background: #fff;
          color: #000;
        }

        .hero,
        .controls {
          box-shadow: none;
          border: 1px solid #ddd;
          background: #fff;
        }

        .lang-toggle,
        .toggle-btn,
        .chip-btn,
        #view-toggle,
        #nb-lang-toggle {
          display: none !important;
        }

        .thumb {
          box-shadow: none;
        }

        .card-wrap {
          box-shadow: none;
          border: 1px solid #ddd;
        }
      }

      /* install prompt */
      #install-prompt {
        position: fixed;
        inset: auto 16px 16px auto;
        z-index: 9999;
        display: none;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
        padding: 14px 16px;
        max-width: 260px;
        color: #0f172a;
      }

      #install-prompt.show {
        display: block;
      }

      #install-prompt .actions {
        display: flex;
        gap: 8px;
        margin-top: 10px;
      }

      #install-prompt button {
        border: none;
        padding: 9px 12px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
      }

      #btn-install {
        background: linear-gradient(135deg, var(--accent), #e9c468);
        color: #0f172a;
        flex: 1;
      }

      #btn-dismiss {
        background: #f3f4f6;
        color: #111827;
      }

      /* install floating button */
      #install-fab {
        position: fixed;
        left: 16px;
        bottom: 70px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, var(--accent), #e9c468);
        color: #0f172a;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        display: none;
        place-items: center;
        font-size: 18px;
        font-weight: 800;
        cursor: pointer;
        z-index: 10000;
      }
      #install-fab.show { display: grid; }
    }

  .details-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: none;
  }

  .details-modal.show {
    display: block;
  }

  .details-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
  }

  .details-sheet {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    margin: 0 auto;
    width: min(520px, calc(100vw - 20px));
    background: linear-gradient(180deg, #fff 0%, #fbf7ed 100%);
    border-radius: 18px 18px 0 0;
    padding: 16px 16px 18px;
    box-shadow: 0 -16px 36px rgba(15, 23, 42, 0.2);
  }

  .details-close {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
  }

  .details-head {
    margin-bottom: 8px;
    padding-inline-end: 40px;
  }

  .details-head h4 {
    margin: 0;
    font-weight: 800;
  }

  .details-description {
    color: #374151;
    min-height: 22px;
    font-size: 14px;
  }

  .details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .details-chip {
    border: 1px solid rgba(196, 154, 47, 0.22);
    background: #fff7e3;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #7c5213;
  }

  .qty-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
    align-items: center;
  }

  .qty-row input {
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    width: 100%;
    background: #fff;
  }

  .qty-action {
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
  }

  .qty-presets {
    display: flex;
    gap: 8px;
  }

  .qty-preset {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #fff;
    padding: 8px 0;
    font-weight: 800;
    cursor: pointer;
  }

  .qty-preset.active {
    background: linear-gradient(135deg, var(--accent), #e9c468);
    border-color: transparent;
  }

  /* Grid product cards (mobile-first) */
  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: start;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  }

  .order-media {
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
  }

  .order-card img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
  }

  .order-plus {
    position: absolute;
    inset-inline-start: 8px;
    bottom: 8px;
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
  }

  .order-plus i {
    pointer-events: none;
  }

  .order-meta {
    min-width: 0;
  }

  .order-title {
    margin: 0 0 2px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
  }

  .order-subtitle {
    margin: 0 0 4px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.3;
  }

  .order-desc {
    margin: 0 0 2px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .order-cal {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.3;
  }

  .order-price {
    margin-top: 2px;
    color: #0f172a;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.3;
  }

  @media (min-width: 992px) {
    .products-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
  }

  @media (max-width: 576px) {
    .order-card img {
      width: 100% !important;
      height: 100% !important;
    }
  }
  .btn-close {
      display: none;
    }
