:root {
      --bg: #08090c;
      --panel: #101116;
      --panel-2: #171922;
      --line: rgba(255, 255, 255, .11);
      --text: #fff7ef;
      --muted: #b8bcc7;
      --orange: #ff6a21;
      --orange-2: #ff8f3d;
      --cyan: #00e7ff;
      --pink: #ff2d8d;
      --green: #36ff93;
      --danger: #ff4242;
      --shadow: 0 24px 70px rgba(0, 0, 0, .44);
      --glow-orange: 0 0 18px rgba(255, 106, 33, .54);
      --glow-cyan: 0 0 18px rgba(0, 231, 255, .38);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(8,9,12,.94), rgba(8,9,12,.98)),
        repeating-linear-gradient(90deg, rgba(255,106,33,.08) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(0deg, rgba(0,231,255,.05) 0 1px, transparent 1px 34px),
        #08090c;
      font-family: 'Tajawal', Tahoma, Arial, sans-serif;
      overflow-x: hidden;
      -webkit-tap-highlight-color: rgba(255, 106, 33, .18);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: .16;
      background:
        radial-gradient(circle at 12px 12px, rgba(255,255,255,.32) 1px, transparent 1px) 0 0 / 84px 84px,
        linear-gradient(135deg, transparent 0 48%, rgba(255,106,33,.28) 49% 51%, transparent 52%);
      pointer-events: none;
    }

    button, input, textarea { font: inherit; }
    button { cursor: pointer; }
    img { display: block; max-width: 100%; }

    .app {
      max-width: 1280px;
      margin: 0 auto;
      padding: 18px;
    }

    .hero {
      position: relative;
      display: grid;
      overflow: hidden;
      border: 1px solid rgba(255,106,33,.4);
      border-radius: 8px;
      background: #07080b;
      box-shadow: var(--shadow), 0 0 0 1px rgba(0,231,255,.08), var(--glow-orange);
      animation: heroReveal .45s ease both;
    }

    .hero-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: clamp(22px, 4vw, 56px);
      align-items: center;
      min-height: 360px;
      padding: clamp(24px, 5vw, 64px);
      background:
        linear-gradient(135deg, rgba(255,106,33,.2), transparent 42%),
        linear-gradient(225deg, rgba(0,231,255,.12), transparent 45%),
        #0c0d12;
    }

    .hero-copy {
      display: grid;
      gap: 14px;
      min-width: 0;
    }

    .hero-title {
      margin: 0;
      color: var(--orange);
      font-size: clamp(58px, 10vw, 118px);
      line-height: .9;
      text-shadow: 0 0 24px rgba(255,106,33,.66);
    }

    .hero-categories {
      margin: 0;
      max-width: 760px;
      color: white;
      font-size: clamp(20px, 3vw, 32px);
      line-height: 1.75;
      font-weight: 900;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border: 1px solid rgba(0,231,255,.36);
      border-radius: 8px;
      color: var(--cyan);
      background: rgba(0,231,255,.08);
      box-shadow: var(--glow-cyan);
      font-size: 13px;
      font-weight: 900;
    }

    .tagline {
      margin: 0;
      color: rgba(255,247,239,.88);
      font-size: clamp(15px, 1.7vw, 18px);
      line-height: 1.7;
      max-width: 620px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .neon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 16px;
      border: 1px solid rgba(255,106,33,.5);
      border-radius: 8px;
      background: linear-gradient(180deg, var(--orange), #df4d16);
      color: white;
      font-weight: 900;
      text-decoration: none;
      box-shadow: var(--glow-orange);
    }

    .hero-brand {
      display: flex;
      justify-content: center;
    }

    .promotion-card {
      width: min(100%, 310px);
      display: grid;
      gap: 4px;
      padding: 18px;
      border: 1px solid rgba(54,255,147,.42);
      border-radius: 8px;
      background: rgba(54,255,147,.08);
      text-align: center;
      box-shadow: 0 0 18px rgba(54,255,147,.18);
    }

    .promotion-card[hidden] { display: none; }

    .promotion-value {
      color: var(--green);
      font-size: 25px;
      font-weight: 900;
      text-shadow: 0 0 14px rgba(54,255,147,.35);
    }

    .toolbar {
      position: sticky;
      top: 0;
      z-index: 20;
      display: grid;
      grid-template-columns: minmax(240px, 1fr) minmax(0, 1.35fr);
      gap: 12px;
      align-items: center;
      margin: 16px 0;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(9,10,14,.82);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 42px rgba(0,0,0,.34);
    }

    .search {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 14px;
      border: 1px solid rgba(0,231,255,.28);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
      color: var(--cyan);
    }

    .search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
    }

    .search input::placeholder { color: rgba(255,255,255,.46); }

    .category-shell {
      display: block;
      min-width: 0;
    }

    .category-rail {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x proximity;
      overscroll-behavior-inline: contain;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,106,33,.72) rgba(255,255,255,.08);
      min-width: 0;
      padding: 3px 4px 7px;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x;
      direction: rtl;
    }

    .category-rail::-webkit-scrollbar {
      height: 5px;
    }

    .category-rail::-webkit-scrollbar-track {
      background: rgba(255,255,255,.08);
      border-radius: 999px;
    }

    .category-rail::-webkit-scrollbar-thumb {
      background: rgba(255,106,33,.72);
      border-radius: 999px;
    }

    .seg {
      flex: 0 0 auto;
      min-height: 44px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
      color: var(--muted);
      font-size: 14px;
      font-weight: 900;
      scroll-snap-align: center;
      transition: .18s ease;
      user-select: none;
    }

    .seg.active {
      border-color: rgba(255,106,33,.72);
      background: rgba(255,106,33,.18);
      color: white;
      box-shadow: var(--glow-orange);
    }

    .seg:hover {
      transform: translateY(-2px);
      border-color: rgba(0,231,255,.5);
      color: white;
    }

    .seg:active {
      transform: translateY(0) scale(.98);
    }

    .seg,
    .section-title-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .ui-icon {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      color: currentColor;
      filter: drop-shadow(0 0 8px rgba(0,231,255,.18));
    }

    .seg .ui-icon {
      width: 19px;
      height: 19px;
      color: var(--cyan);
    }

    .seg.active .ui-icon {
      color: white;
      filter: drop-shadow(0 0 10px rgba(255,106,33,.68));
    }

    .content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 370px;
      gap: 16px;
      align-items: start;
    }

    .menu-feed {
      display: grid;
      gap: 16px;
    }

    .section {
      display: grid;
      gap: 12px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 14px;
      padding: 0 4px;
    }

    .section-tools {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .collapse-btn {
      width: 40px;
      height: 36px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0,231,255,.3);
      border-radius: 8px;
      color: var(--cyan);
      background: rgba(0,231,255,.08);
      box-shadow: var(--glow-cyan);
      transition: .18s ease;
    }

    .collapse-btn:hover,
    .collapse-btn[aria-expanded="false"] {
      border-color: rgba(255,106,33,.52);
      color: var(--orange-2);
      background: rgba(255,106,33,.12);
      box-shadow: var(--glow-orange);
    }

    .collapse-btn svg {
      transition: transform .2s ease;
    }

    .collapse-btn[aria-expanded="false"] svg {
      transform: rotate(180deg);
    }

    .section.collapsed .items-grid {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
      transform: translateY(-8px);
    }

    .section-title {
      margin: 0;
      color: white;
      font-size: clamp(24px, 4vw, 38px);
      line-height: 1.1;
      text-shadow: 0 0 18px rgba(255,106,33,.44);
    }

    .section-title-wrap .ui-icon {
      width: 34px;
      height: 34px;
      color: var(--orange-2);
      filter: drop-shadow(0 0 12px rgba(255,106,33,.5));
    }

    .section-note {
      margin: 5px 0 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }

    .section-count {
      min-width: 44px;
      height: 36px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0,231,255,.3);
      border-radius: 8px;
      color: var(--cyan);
      background: rgba(0,231,255,.08);
      font-weight: 900;
    }

    .items-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      max-height: 5200px;
      transition: max-height .35s ease, opacity .22s ease, transform .22s ease;
    }

    .item-card {
      position: relative;
      display: grid;
      gap: 12px;
      min-height: 218px;
      padding: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,106,33,.11), transparent 38%),
        linear-gradient(225deg, rgba(0,231,255,.08), transparent 44%),
        var(--panel);
      box-shadow: 0 18px 40px rgba(0,0,0,.28);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .item-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
      transform: translateX(110%);
      transition: .42s ease;
      pointer-events: none;
    }

    .item-card:hover {
      border-color: rgba(255,106,33,.42);
      box-shadow: 0 18px 40px rgba(0,0,0,.34), var(--glow-orange);
      transform: translateY(-2px);
    }

    .item-card:hover::before { transform: translateX(-110%); }

    .offer-notice-card {
      align-content: start;
      border-color: rgba(54,255,147,.38);
      background:
        linear-gradient(135deg, rgba(54,255,147,.12), transparent 46%),
        linear-gradient(225deg, rgba(255,106,33,.11), transparent 44%),
        var(--panel);
      box-shadow: 0 18px 40px rgba(0,0,0,.3), 0 0 18px rgba(54,255,147,.12);
    }

    .offer-badge {
      border-color: rgba(54,255,147,.42);
      background: rgba(54,255,147,.09);
      color: var(--green);
    }

    .offer-notice-value {
      color: var(--green);
      font-size: clamp(42px, 7vw, 72px);
      line-height: 1;
      font-weight: 900;
      text-align: center;
      text-shadow: 0 0 20px rgba(54,255,147,.34);
    }

    .offer-browse-btn {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(54,255,147,.35);
      border-radius: 8px;
      background: rgba(54,255,147,.09);
      color: var(--green);
      font-weight: 900;
      transition: transform .16s ease, box-shadow .16s ease;
    }

    .offer-browse-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 18px rgba(54,255,147,.2);
    }

    .item-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .item-heading {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      min-width: 0;
    }

    .dish-symbol {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border: 1px solid rgba(0,231,255,.22);
      border-radius: 8px;
      background: rgba(0,231,255,.08);
      color: var(--cyan);
      box-shadow: var(--glow-cyan);
    }

    .dish-symbol .ui-icon {
      width: 21px;
      height: 21px;
    }

    .item-name {
      margin: 0;
      color: white;
      font-size: 19px;
      line-height: 1.45;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 9px;
      border: 1px solid rgba(255,106,33,.4);
      border-radius: 8px;
      color: var(--orange-2);
      background: rgba(255,106,33,.08);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .desc {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
    }

    .option-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      margin-top: auto;
    }

    .option-grid[data-count="2"],
    .option-grid[data-count="3"] {
      grid-template-columns: 1fr;
    }

    .option-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      min-height: 43px;
      padding: 8px 10px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
      color: white;
      text-align: right;
      transition: .15s ease;
    }

    .option-btn:hover,
    .option-btn.selected {
      border-color: rgba(0,231,255,.44);
      background: rgba(0,231,255,.09);
      box-shadow: var(--glow-cyan);
      transform: translateX(-2px);
    }

    .option-btn span:first-child {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .option-price {
      color: var(--orange-2);
      font-weight: 900;
      white-space: nowrap;
    }

    .price-stack {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 6px;
    }

    .old-price {
      color: var(--muted);
      font-size: .78em;
      font-weight: 500;
      text-decoration: line-through;
      text-decoration-color: var(--danger);
    }

    .sale-price {
      color: var(--green);
      font-weight: 900;
    }

    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 2px;
    }

    .selected-price {
      color: var(--green);
      font-size: 20px;
      font-weight: 900;
      text-shadow: 0 0 14px rgba(54,255,147,.32);
      white-space: nowrap;
      display: none;
    }

    .selected-price .old-price {
      font-size: 14px;
    }

    .add-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 14px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(180deg, var(--orange), #e04d14);
      color: white;
      font-weight: 900;
      box-shadow: var(--glow-orange);
      transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    }

    .add-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .add-btn:active {
      transform: translateY(0) scale(.98);
    }

    .add-btn .ui-icon {
      width: 20px;
      height: 20px;
    }

    .add-btn.inquiry {
      background: linear-gradient(180deg, var(--cyan), #008fa4);
      box-shadow: var(--glow-cyan);
      color: #061014;
    }

    .empty-results {
      padding: 28px;
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: 8px;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      text-align: center;
      line-height: 1.8;
    }

    .cart {
      position: sticky;
      top: 92px;
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(255,106,33,.34);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,106,33,.12), transparent 38%),
        rgba(16,17,22,.94);
      box-shadow: var(--shadow), var(--glow-orange);
    }

    .cart-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .cart h2 {
      margin: 0;
      font-size: 23px;
    }

    .cart-count {
      min-width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--orange);
      color: white;
      font-weight: 900;
      box-shadow: var(--glow-orange);
    }

    .cart-status {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid rgba(0,231,255,.26);
      border-radius: 8px;
      color: var(--cyan);
      background: rgba(0,231,255,.08);
      font-size: 12px;
      font-weight: 900;
    }

    .cart-step {
      display: grid;
      gap: 12px;
      animation: sectionReveal .22s ease both;
    }

    .cart-step[hidden] {
      display: none;
    }

    .cart-lines {
      display: grid;
      gap: 9px;
      max-height: 304px;
      overflow: auto;
      padding-left: 4px;
    }

    .cart-empty {
      padding: 18px;
      border: 1px dashed rgba(255,255,255,.18);
      border-radius: 8px;
      color: var(--muted);
      line-height: 1.7;
      text-align: center;
    }

    .cart-line {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 10px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
    }

    .cart-line strong {
      display: block;
      color: white;
      line-height: 1.45;
    }

    .cart-line small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      line-height: 1.5;
    }

    .cart-line .cart-line-total {
      grid-column: 1 / -1;
      color: var(--orange-2);
    }

    .qty {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .icon-btn {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 8px;
      background: rgba(255,255,255,.05);
      color: white;
      font-size: 18px;
      font-weight: 900;
    }

    .icon-btn:hover {
      border-color: rgba(0,231,255,.42);
      color: var(--cyan);
    }

    .customer {
      display: grid;
      gap: 8px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .customer input,
    .customer textarea {
      width: 100%;
      min-height: 44px;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 8px;
      outline: 0;
      background: rgba(255,255,255,.045);
      color: var(--text);
    }

    .customer textarea {
      min-height: 78px;
      resize: vertical;
    }

    .customer input:focus,
    .customer textarea:focus {
      border-color: rgba(0,231,255,.48);
      box-shadow: var(--glow-cyan);
    }

    .customer input.invalid,
    .customer textarea.invalid {
      border-color: rgba(255,66,66,.8);
      box-shadow: 0 0 18px rgba(255,66,66,.28);
    }

    .fulfillment {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .fulfillment-option {
      position: relative;
      display: block;
      min-width: 0;
      cursor: pointer;
    }

    .fulfillment-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .fulfillment-option span {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 10px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
      color: var(--muted);
      font-weight: 900;
      text-align: center;
      transition: .16s ease;
    }

    .fulfillment-option input:checked + span {
      border-color: rgba(0,231,255,.46);
      background: rgba(0,231,255,.1);
      color: white;
      box-shadow: var(--glow-cyan);
    }

    .address-input[hidden] {
      display: none;
    }

    .total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: 21px;
      font-weight: 900;
    }

    .send {
      width: 100%;
      min-height: 52px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(180deg, var(--green), #16bd68);
      color: #061014;
      font-weight: 900;
      box-shadow: 0 0 20px rgba(54,255,147,.34);
    }

    .send:disabled {
      opacity: .48;
      cursor: not-allowed;
      box-shadow: none;
    }

    .secondary-action {
      min-height: 52px;
      border: 1px solid rgba(0,231,255,.34);
      border-radius: 8px;
      background: rgba(0,231,255,.08);
      color: var(--cyan);
      font-weight: 900;
      box-shadow: var(--glow-cyan);
    }

    .cart-actions {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
      gap: 8px;
    }

    .contact-line {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.7;
      text-align: center;
    }

    .mobile-cart-btn {
      position: fixed;
      inset: auto 12px 12px 12px;
      z-index: 50;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 58px;
      padding: 0 14px;
      border: 1px solid rgba(0,231,255,.42);
      border-radius: 8px;
      background: #0d1015;
      color: white;
      box-shadow: var(--shadow), var(--glow-cyan);
      font-weight: 900;
    }

    .mobile-cart-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(255,106,33,.18);
      color: var(--orange-2);
      box-shadow: var(--glow-orange);
    }

    .mobile-cart-icon .ui-icon {
      width: 22px;
      height: 22px;
    }

    .drawer {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      background: rgba(0,0,0,.62);
      backdrop-filter: blur(12px);
    }

    .drawer.open { display: block; }

    .drawer-card {
      position: absolute;
      inset: auto 0 0 0;
      max-height: 88vh;
      overflow: auto;
      padding: 14px;
      border-top: 1px solid rgba(255,106,33,.48);
      border-radius: 8px 8px 0 0;
      background: #101116;
      box-shadow: var(--shadow), var(--glow-orange);
    }

    .drawer-close {
      float: left;
      margin-bottom: 8px;
    }

    .toast {
      position: fixed;
      left: 14px;
      bottom: 86px;
      z-index: 90;
      max-width: min(360px, calc(100vw - 28px));
      transform: translateY(16px);
      opacity: 0;
      padding: 12px 14px;
      border: 1px solid rgba(0,231,255,.38);
      border-radius: 8px;
      background: #101116;
      color: white;
      box-shadow: var(--shadow), var(--glow-cyan);
      transition: .2s ease;
      pointer-events: none;
      font-weight: 900;
      line-height: 1.55;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .startup-loader {
      position: fixed;
      inset: 0;
      z-index: 160;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at top, rgba(255,106,33,.15), transparent 36%),
        #0b0c10;
      transition: opacity .35s ease, visibility .35s ease;
    }

    .startup-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .startup-loader-card {
      display: grid;
      justify-items: center;
      gap: 14px;
      padding: 22px 24px;
      border: 1px solid rgba(255,106,33,.42);
      border-radius: 10px;
      background: rgba(16,17,22,.94);
      box-shadow: var(--shadow), var(--glow-orange);
      text-align: center;
      min-width: 210px;
    }

    .startup-loader-card img {
      width: 104px;
      height: 104px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 0 0 1px rgba(255,255,255,.05);
    }

    .startup-loader-text {
      display: grid;
      gap: 3px;
    }

    .startup-loader-text strong {
      color: white;
      font-size: 20px;
    }

    .startup-loader-text span {
      color: var(--muted);
      font-size: 13px;
    }

    .back-top {
      position: fixed;
      left: 14px;
      bottom: 152px;
      z-index: 48;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,106,33,.42);
      border-radius: 8px;
      background: rgba(16,17,22,.92);
      color: var(--orange-2);
      box-shadow: var(--shadow), var(--glow-orange);
    }

    .site-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 18px;
      padding: 20px;
      border: 1px solid rgba(255,106,33,.36);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,106,33,.1), transparent 42%),
        rgba(16,17,22,.96);
      box-shadow: var(--shadow), var(--glow-orange);
    }

    .footer-brand {
      display: grid;
      gap: 5px;
      min-width: 0;
    }

    .footer-brand strong {
      color: var(--orange-2);
      font-size: 25px;
      text-shadow: 0 0 14px rgba(255,106,33,.38);
    }

    .footer-brand span {
      color: var(--muted);
      line-height: 1.6;
    }

    .footer-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-icon {
      min-width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.045);
      color: white;
      text-decoration: none;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }

    .footer-icon:hover {
      transform: translateY(-2px);
      border-color: currentColor;
    }

    .footer-icon svg {
      width: 25px;
      height: 25px;
      flex: 0 0 auto;
    }

    .footer-icon span {
      font-weight: 900;
      direction: ltr;
    }

    .footer-icon.call { color: var(--cyan); box-shadow: var(--glow-cyan); }
    .footer-icon.whatsapp { color: var(--green); box-shadow: 0 0 18px rgba(54,255,147,.2); }
    .footer-icon.location { color: var(--orange-2); box-shadow: var(--glow-orange); }
    .footer-icon.facebook { color: #53a0ff; box-shadow: 0 0 18px rgba(24,119,242,.22); }

    .creator-credit {
      margin-top: 20px;
      padding: 16px 10px 2px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .creator-credit a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255,255,255,.78);
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition: color .16s ease, transform .16s ease, filter .16s ease;
      margin-left: 10px;
    }

    .creator-credit a:hover {
      color: white;
      transform: translateY(-2px);
      filter: drop-shadow(0 0 9px rgba(255,255,255,.28));
    }

    .creator-logo {
      width: 35px;
      height: auto;
    }

    .scroll-reveal {
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity .48s ease,
        transform .48s ease,
        border-color .18s ease,
        box-shadow .18s ease;
      transition-delay: var(--scroll-delay, 0ms);
      will-change: opacity, transform;
    }

    .scroll-reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .item-card.scroll-reveal.in-view:hover {
      transform: translateY(-2px);
    }

    @keyframes heroReveal {
      from { opacity: 0; transform: translateY(10px) scale(.992); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

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

    @keyframes cardReveal {
      from { opacity: 0; transform: translateY(14px) scale(.985); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }

    @media (max-width: 1080px) {
      .content { grid-template-columns: 1fr; }
      .cart.desktop { display: none; }
      .mobile-cart-btn { display: flex; }
      .app { padding-bottom: 88px; }
    }

    @media (max-width: 820px) {
      .app { padding: 10px 10px 88px; }
      .hero-main {
        grid-template-columns: 1fr;
        min-height: 0;
      }
      .hero-brand {
        justify-content: stretch;
      }
      .promotion-card { width: 100%; }
      .toolbar { grid-template-columns: 1fr; }
      .category-rail { padding: 4px 2px 8px; }
      .seg {
        min-height: 50px;
        padding: 0 16px;
        font-size: 15px;
      }
      .items-grid { grid-template-columns: 1fr; }
      .section-head { align-items: start; }
      .item-card { min-height: 0; }
      .option-btn { min-height: 50px; }
      .add-btn { min-height: 50px; }
      .icon-btn {
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 520px) {
      .hero-main { padding: 22px 16px; }
      .hero-copy { text-align: center; }
      .eyebrow { margin-inline: auto; }
      .hero-title { font-size: 64px; }
      .hero-categories { font-size: 20px; }
      .hero-categories,
      .tagline {
        text-align: center;
      }
      .tagline { font-size: 16px; }
      .promotion-card { width: 100%; justify-self: center; }
      .hero-actions { flex-direction: column; }
      .hero-actions { width: 100%; }
      .neon-btn { width: 100%; }
      .site-footer {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
      }
      .footer-brand { text-align: center; }
      .footer-actions {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .footer-icon {
        min-width: 0;
        width: 100%;
        padding: 0;
      }
      .footer-icon span { display: none; }
      .card-footer { align-items: stretch; flex-direction: column; }
      .selected-price { white-space: normal; }
      .add-btn { width: 100%; }
      .cart-actions { grid-template-columns: 1fr; }
      .fulfillment { grid-template-columns: 1fr; }
    }
