    :root {
      --df-cream: #ffe3c8;
      --df-cream-soft: #fff4e8;
      --df-cream-deep: #f0cba8;
      --df-forest: #0c3b2e;
      --df-forest-deep: #072820;
      --df-leaf: #164a3a;
      --df-mango: var(--df-cream);
      --df-mango-hot: var(--df-cream-deep);
      --df-mist: #f3e0c8;
      --df-ink: #0c3b2e;
      --df-muted: #5a6b64;
      --df-paper: #fff8f0;
      --df-line: rgba(12, 59, 46, 0.12);
      --df-danger: #b42318;
      --font-display: "Sora", sans-serif;
      --font-body: "IBM Plex Sans", sans-serif;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--df-ink);
      background: #fff;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .brand, .display {
      font-family: var(--font-display);
      letter-spacing: -0.03em;
    }

    .container{
      max-width: 1400px;
    }

    .df-nav {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--df-cream);
      border-bottom: 1px solid rgba(12, 59, 46, 0.08);
    }
    .df-nav-inner {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.7rem 0;
      min-height: 76px;
    }
    .brand-block {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      flex: 0 0 auto;
      line-height: 1.05;
    }
    .brand {
      font-weight: 800;
      font-size: 1.42rem;
      color: var(--df-forest);
      text-decoration: none;
      white-space: nowrap;
    }
    .brand span { color: var(--df-forest); }
    .brand-tag {
      display: flex;
      align-items: center;
      gap: 0.28rem;
      margin-top: 0.12rem;
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #7a847c;
      white-space: nowrap;
    }
    .brand-tag .bolt {
      color: var(--df-forest);
      flex: 0 0 auto;
    }
    .nav-divider {
      width: 1px;
      height: 38px;
      background: rgba(12, 59, 46, 0.14);
      flex: 0 0 auto;
    }
    .nav-link-df {
      color: var(--df-ink) !important;
      font-weight: 500;
      font-size: 0.92rem;
      text-decoration: none;
    }
    .nav-link-df:hover { color: var(--df-leaf) !important; }

    .loc-chip {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--df-paper);
      border: 1px solid rgba(12, 59, 46, 0.12);
      border-radius: 12px;
      padding: 0.4rem 0.7rem 0.4rem 0.55rem;
      text-align: left;
      max-width: 190px;
      cursor: pointer;
      color: var(--df-forest);
      flex: 0 0 auto;
    }
    .loc-chip:hover { border-color: rgba(12, 59, 46, 0.28); }
    .loc-chip .pin {
      display: grid;
      place-items: center;
      color: var(--df-leaf);
      flex: 0 0 auto;
    }
    .loc-chip .loc-text { min-width: 0; }
    .loc-chip .loc-label {
      display: block;
      font-size: 0.62rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6d776f;
      opacity: 1;
    }
    .loc-value-row {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      min-width: 0;
    }
    .loc-chip .loc-value {
      display: block;
      font-size: 0.84rem;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--df-forest);
    }
    .loc-chevron {
      color: var(--df-forest);
      flex: 0 0 auto;
      opacity: 0.75;
    }

    .loc-modal-content {
      border: 0;
      border-radius: 18px;
      overflow: hidden;
    }
    .loc-modal-content .modal-body { position: relative; }
    .loc-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
    }
    .loc-modal-icon {
      width: 52px;
      height: 52px;
      margin: 0.15rem auto 0.85rem;
      display: grid;
      place-items: center;
      background: var(--df-mist);
      border-radius: 14px;
      font-size: 1.45rem;
    }
    .loc-modal-content h3 {
      color: var(--df-forest);
      font-weight: 800;
      text-align: center;
    }
    .loc-modal-sub {
      color: var(--df-muted);
      font-size: 0.9rem;
      text-align: center;
      margin-bottom: 1.1rem;
    }
    .loc-modal-content #modalZip {
      border-radius: 10px;
      padding: 0.65rem 0.85rem;
    }

    .nav-search {
      flex: 1 1 240px;
      max-width: 560px;
      position: relative;
      display: flex;
      align-items: center;
    }
    .nav-search input {
      width: 100%;
      height: 46px;
      border: 1.5px solid rgba(12, 59, 46, 0.14);
      border-radius: 999px;
      padding: 0.55rem 3.1rem 0.55rem 2.55rem;
      background: #fff;
      font-size: 0.9rem;
      color: var(--df-ink);
    }
    .nav-search input::placeholder { color: #9aa39c; }
    .nav-search input:focus {
      outline: none;
      border-color: var(--df-leaf);
      box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.12);
    }
    .nav-search input[type="search"]::-webkit-search-decoration,
    .nav-search input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
    }
    .nav-search .search-ico {
      position: absolute;
      left: 0.95rem;
      top: 50%;
      transform: translateY(-50%);
      color: #5e6a64;
      pointer-events: none;
      display: grid;
      place-items: center;
    }
    .nav-search-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: var(--df-forest);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      padding: 0;
    }
    .nav-search-btn:hover { background: var(--df-leaf); }
    .search-drop {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid var(--df-line);
      border-radius: 12px;
      box-shadow: 0 16px 40px rgba(12, 59, 46, 0.12);
      z-index: 1040;
      max-height: 320px;
      overflow: auto;
      display: none;
    }
    .search-drop.open { display: block; }
    .search-drop button {
      display: block;
      width: 100%;
      text-align: left;
      border: none;
      background: transparent;
      padding: 0.7rem 1rem;
      font-size: 0.88rem;
      cursor: pointer;
    }
    .search-drop button:hover { background: var(--df-mist); }
    .search-drop .hint {
      padding: 0.55rem 1rem 0.25rem;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--df-muted);
    }

    .nav-icon-links {
      display: flex;
      align-items: center;
      gap: 0.15rem;
      flex: 0 0 auto;
    }
    .nav-item-df {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.18rem;
      min-width: 58px;
      padding: 0.15rem 0.35rem;
      color: var(--df-forest) !important;
      text-decoration: none !important;
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1;
    }
    .nav-item-df:hover,
    .nav-item-df.active {
      color: var(--df-leaf);
    }
    .nav-item-ico {
      display: grid;
      place-items: center;
      height: 24px;
    }
    .nav-hot {
      position: absolute;
      top: -6px;
      right: 2px;
      background: var(--df-forest);
      color: var(--df-cream);
      font-size: 0.52rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0.12rem 0.38rem;
      border-radius: 999px;
      line-height: 1;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      flex: 0 0 auto;
    }
    .wish-btn {
      position: relative;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: #fff;
      border: 1.5px solid rgba(12, 59, 46, 0.14);
      border-radius: 12px;
      color: var(--df-forest) !important;
      text-decoration: none;
    }
    .wish-btn:hover {
      background: var(--df-mist);
      color: var(--df-forest) !important;
    }
    body[data-page="wishlist"] .wish-btn svg { fill: var(--df-forest); }
    .cart-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      height: 42px;
      padding: 0 1.05rem 0 0.85rem;
      background: var(--df-forest);
      border: none;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--df-cream);
      cursor: pointer;
    }
    .cart-pill:hover { background: var(--df-leaf); color: var(--df-cream); }
    .cart-pill .cart-ico { display: grid; place-items: center; }
    .cart-count, .wish-count {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--df-cream);
      color: var(--df-forest);
      font-size: 0.65rem;
      font-weight: 800;
      min-width: 1.15rem;
      height: 1.15rem;
      padding: 0 0.2rem;
      border-radius: 999px;
      display: grid;
      place-items: center;
      line-height: 1;
      border: 2px solid var(--df-forest);
    }
    .cart-count[hidden], .wish-count[hidden] { display: none !important; }

    .btn-df {
      background: var(--df-forest);
      color: var(--df-cream);
      border: none;
      font-weight: 600;
      border-radius: 10px;
      padding: 0.7rem 1.25rem;
      transition: transform 0.2s ease, background 0.2s ease;
    }
    .btn-df:hover { background: var(--df-leaf); color: var(--df-cream); transform: translateY(-1px); }
    .btn-df-outline {
      background: transparent;
      color: var(--df-forest);
      border: 1.5px solid var(--df-forest);
      font-weight: 600;
      border-radius: 10px;
      padding: 0.65rem 1.15rem;
    }
    .btn-df-outline:hover { background: var(--df-forest); color: #fff; }
    .btn-mango {
      background: var(--df-forest);
      color: var(--df-cream);
      border: none;
      font-weight: 700;
      border-radius: 10px;
      padding: 0.7rem 1.25rem;
    }
    .btn-mango:hover { background: var(--df-leaf); color: var(--df-cream); }

    .view { display: block; animation: rise 0.45s ease both; }
    /* multi-page: each HTML file is its own view */
    @keyframes rise {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }

    .hero-banner {
      --hero-bg: var(--df-cream);
      --hero-teal: var(--df-forest);
      --hero-teal-hover: var(--df-leaf);
      --hero-ink: var(--df-forest);
      --hero-muted: #7a6e5e;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--hero-bg);
      min-height: 560px;
      padding: 4.75rem 0 5rem;
    }
    .hero-banner > .container {
      width: 100%;
      position: relative;
      z-index: 2;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
      animation: heroIn 0.65s ease both;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: none; }
    }
    .hero-title {
      margin: 0 0 0.7rem;
      font-family: "Poppins", var(--font-display), sans-serif;
      font-size: clamp(1.85rem, 4.6vw, 3.15rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
      color: var(--hero-ink);
      text-transform: none;
    }
    .hero-sub {
      margin: 0 auto;
      max-width: 28rem;
      font-family: "Poppins", var(--font-body), sans-serif;
      font-size: clamp(0.98rem, 1.6vw, 1.15rem);
      font-weight: 500;
      line-height: 1.45;
      color: var(--hero-ink);
    }
    .hero-search {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      max-width: 34rem;
      margin: 1.85rem auto 1.2rem;
      padding: 0.38rem 0.38rem 0.38rem 1.05rem;
      background: #fff;
      border-radius: 999px;
      box-shadow: 0 12px 32px rgba(90, 70, 20, 0.1);
    }
    .hero-pin {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }
    .hero-search input {
      flex: 1 1 auto;
      min-width: 0;
      border: 0;
      background: transparent;
      font-family: "Poppins", var(--font-body), sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--hero-ink);
      padding: 0.7rem 0.4rem;
    }
    .hero-search input::placeholder {
      color: #b3b0aa;
      font-weight: 500;
    }
    .hero-search input:focus {
      outline: none;
    }
    .hero-locate {
      display: grid;
      place-items: center;
      width: 2.4rem;
      height: 2.4rem;
      border: 0;
      background: transparent;
      border-radius: 50%;
      cursor: pointer;
      flex: 0 0 auto;
    }
    .hero-locate:hover {
      background: var(--df-cream-soft);
    }
    .hero-search-btn {
      border: 0;
      border-radius: 999px;
      background: var(--hero-teal);
      color: #fff;
      font-family: "Poppins", var(--font-display), sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.72rem 1.45rem;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .hero-search-btn:hover {
      background: var(--hero-teal-hover);
      transform: translateY(-1px);
    }
    .hero-cities {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.35rem 1.15rem;
      max-width: 38rem;
      margin: 0 auto;
    }
    .hero-cities button {
      border: 0;
      background: none;
      padding: 0;
      font-family: "Poppins", var(--font-body), sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--hero-muted);
      cursor: pointer;
    }
    .hero-cities button:hover {
      color: var(--hero-ink);
    }
    .hero-foods {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }
    .hf {
      --px: 0px;
      --py: 0px;
      --tilt: 0deg;
      --depth: 0.5;
      position: absolute;
      object-fit: contain;
      user-select: none;
      will-change: transform;
      translate: var(--px) var(--py);
      rotate: calc(var(--r, 0deg) + var(--tilt));
      animation: heroFloat 5.5s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hf-chili { --r: -32deg; --depth: 0.32; width: 92px; top: 7%; left: 6%; animation-delay: 0.1s; }
    .hf-watermelon { --r: 18deg; --depth: 0.55; width: 118px; top: 22%; left: 13%; animation-delay: 0.8s; }
    .hf-burger { --r: -12deg; --depth: 0.78; width: 108px; top: 44%; left: 4%; animation-delay: 0.4s; }
    .hf-fries { --r: 16deg; --depth: 0.48; width: 86px; top: 58%; left: 16%; animation-delay: 1.1s; }
    .hf-garlic { --r: -8deg; --depth: 0.28; width: 78px; bottom: 14%; left: 7%; animation-delay: 0.6s; }
    .hf-milk { --r: 10deg; --depth: 0.42; width: 72px; bottom: 6%; left: 18%; animation-delay: 1.4s; }
    .hf-package { --r: -16deg; --depth: 0.35; width: 100px; top: 6%; right: 8%; animation-delay: 0.3s; }
    .hf-bread { --r: 14deg; --depth: 0.62; width: 112px; top: 24%; right: 4%; animation-delay: 0.9s; }
    .hf-carrot { --r: 28deg; --depth: 0.5; width: 96px; top: 42%; right: 14%; animation-delay: 0.2s; }
    .hf-pepper { --r: -18deg; --depth: 0.7; width: 88px; top: 58%; right: 5%; animation-delay: 1.2s; }
    .hf-coffee { --r: 8deg; --depth: 0.38; width: 74px; bottom: 14%; right: 16%; animation-delay: 0.5s; }
    .hf-cake { --r: -10deg; --depth: 0.85; width: 90px; bottom: 5%; right: 6%; animation-delay: 1s; }
    @media (prefers-reduced-motion: reduce) {
      .hf { animation: none; translate: none; rotate: var(--r, 0deg); }
    }

    body[data-page="shop"] .nav-item-df[href="shop.html"],
    body[data-page="food"] .nav-item-df[href="food.html"],
    body[data-page="offers"] .nav-item-df[href="offers.html"],
    body[data-page="account"] .nav-item-df[href="account.html"],
    body[data-page="admin"] .nav-item-df[href="admin.html"] {
      color: var(--df-leaf);
    }

    .hero-search input[type="search"]::-webkit-search-decoration,
    .hero-search input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
    }

    @media (min-width: 1200px) {
      .hero-banner {
        min-height: 620px;
        padding: 5.5rem 0 5.75rem;
      }
      .hf-chili { width: 110px; left: 7%; }
      .hf-watermelon { width: 142px; left: 14%; }
      .hf-burger { width: 128px; left: 5%; }
      .hf-fries { width: 100px; left: 18%; }
      .hf-garlic { width: 92px; left: 8%; }
      .hf-milk { width: 86px; left: 20%; }
      .hf-package { width: 118px; right: 8%; }
      .hf-bread { width: 132px; right: 4%; }
      .hf-carrot { width: 114px; right: 15%; }
      .hf-pepper { width: 104px; right: 5%; }
      .hf-coffee { width: 88px; right: 17%; }
      .hf-cake { width: 108px; right: 6%; }
    }

    .pop-categories {
      padding: 2.25rem 0 1.75rem;
    }
    .grocery-cats-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.15rem;
    }
    .grocery-cats-head .section-title {
      margin-bottom: 0;
      font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    }
    .pop-cat-rail {
      display: flex;
      justify-content: space-evenly;
      align-items: flex-start;
      gap: 0.5rem 0.75rem;
      flex-wrap: wrap;
    }
    .pop-cat {
      appearance: none;
      border: none;
      background: transparent;
      padding: 0.35rem 0.4rem;
      text-align: center;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
      min-width: 96px;
      flex: 1 1 96px;
      max-width: 128px;
      transition: transform 0.2s ease;
    }
    .pop-cat.active {
      outline: none;
      box-shadow: none;
      transform: none;
    }
    .pop-cat:hover {
      transform: translateY(-4px);
      box-shadow: none;
      background: transparent;
    }
    .pop-cat:nth-child(n) { background: transparent; }
    .pop-cat-img {
      width: 88px;
      height: 76px;
      display: grid;
      place-items: center;
    }
    .pop-cat-img svg {
      width: 88px;
      height: 76px;
      display: block;
      transition: transform 0.25s ease;
    }
    .pop-cat:hover .pop-cat-img svg { transform: scale(1.06); }
    .pop-cat strong {
      display: block;
      font-family: "Poppins", var(--font-body), sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--df-forest);
      line-height: 1.25;
      letter-spacing: 0;
      text-transform: none;
    }
    .pop-cat.active strong {
      color: var(--df-leaf);
    }
    .pop-cat small { display: none; }

    .zip-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      max-width: 36rem;
    }
    .zip-bar input {
      flex: 1 1 180px;
      border: 1.5px solid var(--df-line);
      border-radius: 10px;
      padding: 0.9rem 1rem;
      font-weight: 500;
      min-width: 0;
      background: #fff;
    }
    .zip-bar input:focus { outline: 2px solid var(--df-forest); border-color: transparent; }
    .zip-status {
      margin-top: 0.85rem;
      font-size: 0.95rem;
      min-height: 1.4rem;
      color: var(--df-leaf);
      font-weight: 600;
    }

    .section { padding: 3.5rem 0; }
    .section-muted {
      background: #fff;
    }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--df-forest);
      margin-bottom: 0.35rem;
    }
    .section-sub {
      color: var(--df-muted);
      margin-bottom: 1.75rem;
      max-width: 36rem;
    }

    .deals-band {
      position: relative;
      padding: 0.35rem 0 2.5rem;
      background: transparent;
    }
    .deals-head {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem 1.5rem;
      margin-bottom: 1rem;
    }
    .deals-head .section-title {
      margin-bottom: 0;
      font-size: clamp(1.45rem, 2.6vw, 1.9rem);
      letter-spacing: -0.03em;
      color: var(--df-forest);
    }
    .deals-all {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--df-leaf);
      text-decoration: none;
      white-space: nowrap;
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      transition: color 0.2s, transform 0.2s;
    }
    .deals-all:hover {
      color: var(--df-forest);
      transform: translateX(3px);
    }

    .deal-board {
      border: 2px solid var(--df-forest);
      border-radius: 20px;
      overflow: hidden;
      background: transparent;
    }
    .deal-line {
      display: grid;
      grid-template-columns: minmax(8.5rem, 12rem) 1fr auto;
      align-items: center;
      gap: 0.75rem 1.25rem;
      padding: 1.05rem 1.35rem;
      border-bottom: 1px solid var(--df-line);
      text-decoration: none;
      color: var(--df-forest);
      background: transparent;
      transition: background 0.2s ease;
    }
    .deal-line:last-child { border-bottom: none; }
    .deal-line:hover {
      background: var(--df-cream-soft);
      color: var(--df-forest);
    }
    .deal-line strong {
      font-family: var(--font-display);
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .deal-line span {
      font-size: 0.9rem;
      color: var(--df-muted);
    }
    .deal-line em {
      font-style: normal;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.32rem 0.65rem;
      border-radius: 8px;
      border: 1.5px solid var(--df-forest);
      background: transparent;
      color: var(--df-forest);
      white-space: nowrap;
    }

    @media (max-width: 700px) {
      .deal-line {
        grid-template-columns: 1fr auto;
        padding: 0.95rem 1.1rem;
      }
      .deal-line span { grid-column: 1 / 2; }
      .deal-line em { grid-row: 1 / 3; align-self: center; }
    }

    .cat-rail {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .cat-item {
      appearance: none;
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 14px;
      padding: 1rem 0.75rem;
      text-align: left;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(12, 59, 46, 0.04);
    }
    .cat-item:hover {
      border-color: var(--df-leaf);
      transform: translateY(-2px);
    }
    .cat-item.active {
      border-color: var(--df-forest);
      background: var(--df-forest);
      box-shadow: 0 8px 20px rgba(12, 59, 46, 0.18);
    }
    .cat-item strong {
      display: block;
      font-family: var(--font-display);
      font-size: 0.95rem;
      color: var(--df-forest);
      margin-bottom: 0.15rem;
    }
    .cat-item small { color: var(--df-muted); font-size: 0.75rem; }
    .cat-item.active strong,
    .cat-item.active small { color: #fff; }
    .cat-item.active small { opacity: 0.85; }

    .subcat-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-bottom: 1.25rem;
    }
    .subcat-chip {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 999px;
      padding: 0.4rem 0.85rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--df-forest);
      cursor: pointer;
    }
    .subcat-chip.active, .subcat-chip:hover {
      background: var(--df-mist);
      border-color: var(--df-leaf);
    }

    .brand-rail {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 0.5rem;
    }
    .brand-pill {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 10px;
      padding: 0.65rem 1rem;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--df-forest);
      cursor: pointer;
      font-family: var(--font-display);
    }
    .brand-pill:hover, .brand-pill.active {
      border-color: var(--df-forest);
      background: var(--df-mist);
    }

    .tab-panel { animation: rise 0.35s ease both; }

    .load-more-wrap:not([hidden]) {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }
    .btn-load-more {
      min-width: 180px;
      padding: 0.75rem 2rem;
      border-radius: 999px;
      font-weight: 700;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .product {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      position: relative;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
      text-align: center;
    }
    .product:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(12, 59, 46, 0.08);
      border-color: var(--df-cream-deep);
    }
    .product::after {
      content: "";
      position: absolute;
      left: 18%;
      right: 18%;
      bottom: 0;
      height: 2px;
      background: var(--df-forest);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .product:hover::after { opacity: 1; }
    .product.oos { opacity: 0.72; }
    .product-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 0.28rem 0.62rem;
      border-radius: 6px;
      color: #fff;
      line-height: 1.2;
    }
    .product-badge.sale { background: var(--df-forest); }
    .product-badge.off { background: var(--df-leaf); }
    .product-badge.hot { background: var(--df-forest-deep); }
    .product-badge.oos { background: var(--df-danger); }
    .badge-src {
      position: absolute;
      left: 0.65rem;
      bottom: 0.65rem;
      background: rgba(7, 40, 32, 0.88);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.28rem 0.55rem;
      border-radius: 6px;
    }
    .badge-off {
      position: absolute;
      top: 0.65rem;
      left: 0.65rem;
      background: var(--df-forest);
      color: var(--df-cream);
      font-size: 0.7rem;
      font-weight: 800;
      padding: 0.28rem 0.5rem;
      border-radius: 6px;
    }
    .badge-oos {
      position: absolute;
      top: 0.65rem;
      right: 0.65rem;
      background: var(--df-danger);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.28rem 0.5rem;
      border-radius: 6px;
    }
    .wish-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: none;
      background: transparent;
      color: #c8c8c8;
      cursor: pointer;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: color 0.2s, transform 0.2s;
    }
    .wish-btn svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linejoin: round;
    }
    .wish-btn:hover { color: var(--df-forest); transform: scale(1.08); }
    .wish-btn.on { color: var(--df-forest); }
    .wish-btn.on svg { fill: currentColor; }
    .product-media {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 190px;
      padding: 2.1rem 1.4rem 0.4rem;
      background: #fff;
      border: none;
      cursor: pointer;
      position: relative;
    }
    .product-media img {
      max-height: 168px;
      max-width: 88%;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 8px 14px rgba(12, 59, 46, 0.12));
    }
    .product:hover .product-media img { transform: scale(1.05); }
    .product-body {
      padding: 0.35rem 1.1rem 0.2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.22rem;
      flex: 1;
    }
    .product-cat {
      margin: 0;
      font-size: 0.78rem;
      color: var(--df-muted);
      font-weight: 500;
    }
    .product-body h3 {
      font-size: 1rem;
      margin: 0;
      color: var(--df-forest);
      font-weight: 700;
      line-height: 1.3;
    }
    .product-body h3 button {
      border: none;
      background: none;
      padding: 0;
      font: inherit;
      color: inherit;
      cursor: pointer;
    }
    .product-body h3 button:hover { color: var(--df-leaf); }
    .product-meta { font-size: 0.8rem; color: var(--df-muted); }
    .product-stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.05rem;
      line-height: 1;
    }
    .product-stars .star {
      color: #e0e0e0;
      font-size: 0.82rem;
    }
    .product-stars .star.on { color: var(--df-forest); }
    .product-stars .star-count {
      margin-left: 0.28rem;
      font-size: 0.75rem;
      color: #b0b0b0;
      font-weight: 500;
    }
    .rating-row {
      font-size: 0.78rem;
      color: var(--df-leaf);
      font-weight: 600;
    }
    .price-row {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.2rem;
      padding-top: 0.15rem;
      flex-wrap: wrap;
    }
    .product .price { font-weight: 700; color: var(--df-forest); font-size: 1.12rem; }
    .price { font-weight: 700; color: var(--df-forest); font-size: 1.02rem; }
    .price-sale { color: #b8b8b8; text-decoration: line-through; font-size: 0.86rem; font-weight: 500; }
    .product-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.55rem 1rem 1.15rem;
      margin-top: auto;
    }
    .product-act {
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 8px;
      background: var(--df-mist);
      color: var(--df-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
    }
    .product-act svg { width: 18px; height: 18px; }
    .product-act:hover { color: var(--df-forest); background: var(--df-mist); }
    .product-act.cart { background: var(--df-mist); color: var(--df-muted); }
    .product:hover .product-act.cart,
    .product-act.cart:hover {
      background: var(--df-forest);
      color: #fff;
    }
    .product-act.on { color: var(--df-leaf); }
    @media (hover: hover) {
      .product-act.ghost {
        opacity: 0;
        transform: translateY(6px);
        pointer-events: none;
      }
      .product:hover .product-act.ghost {
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-bottom: 1.5rem;
      align-items: center;
    }
    .toolbar input, .toolbar select {
      border: 1px solid var(--df-line);
      border-radius: 10px;
      padding: 0.6rem 0.85rem;
      background: #fff;
      min-width: 140px;
    }
    .toolbar input { flex: 1 1 200px; }

    .panel {
      background: #fff;
      border: 1px solid var(--df-line);
      border-radius: 16px;
      padding: 1.25rem;
    }
    .panel h3 {
      font-size: 1.1rem;
      color: var(--df-forest);
      margin-bottom: 1rem;
    }
    .line-item {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--df-line);
    }
    .line-item:last-child { border-bottom: none; }
    .totals .row-line {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.45rem;
      font-size: 0.95rem;
    }
    .totals .grand {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1.5px solid var(--df-forest);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--df-forest);
    }

    .delivery-opt {
      display: grid;
      gap: 0.55rem;
    }
    .delivery-opt label {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      border: 1.5px solid var(--df-line);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      cursor: pointer;
      margin: 0;
    }
    .delivery-opt label.active {
      border-color: var(--df-forest);
      background: var(--df-mist);
    }
    .delivery-opt strong { display: block; font-size: 0.95rem; color: var(--df-forest); }
    .delivery-opt small { color: var(--df-muted); }

    .slot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 0.5rem;
    }
    .slot {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 10px;
      padding: 0.65rem 0.5rem;
      text-align: center;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--df-forest);
    }
    .slot.active, .slot:hover {
      border-color: var(--df-forest);
      background: var(--df-mist);
    }

    .pay-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 0.5rem;
    }
    .pay-opt {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 10px;
      padding: 0.75rem 0.5rem;
      text-align: center;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      color: var(--df-forest);
    }
    .pay-opt.active {
      border-color: var(--df-forest);
      background: var(--df-mist);
    }

    .addr-type {
      display: flex;
      gap: 0.45rem;
      flex-wrap: wrap;
      margin-bottom: 0.85rem;
    }
    .addr-type button {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 8px;
      padding: 0.4rem 0.75rem;
      font-weight: 600;
      font-size: 0.82rem;
      color: var(--df-forest);
    }
    .addr-type button.active {
      background: var(--df-forest);
      color: #fff;
      border-color: var(--df-forest);
    }

    .variant-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 0.75rem 0;
    }
    .variant-chip {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 8px;
      padding: 0.45rem 0.7rem;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      color: var(--df-forest);
    }
    .variant-chip.active {
      border-color: var(--df-forest);
      background: var(--df-mist);
    }

    .account-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
    }
    .account-tabs button {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 8px;
      padding: 0.45rem 0.8rem;
      font-weight: 600;
      font-size: 0.82rem;
      color: var(--df-forest);
    }
    .account-tabs button.active {
      background: var(--df-forest);
      color: #fff;
      border-color: var(--df-forest);
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .stat-strip.stat-5 {
      grid-template-columns: repeat(5, 1fr);
    }
    .stat {
      background: var(--df-mist);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
    }
    .stat strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--df-forest);
    }
    .stat span { font-size: 0.8rem; color: var(--df-muted); }

    .profile-hero {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.25rem;
      align-items: center;
      padding: 1.35rem 1.5rem;
      border-radius: 18px;
      margin-bottom: 1.25rem;
      background:
        linear-gradient(125deg, rgba(12, 59, 46, 0.98) 0%, rgba(12, 59, 46, 0.92) 55%, rgba(255, 227, 200, 0.35) 100%),
        radial-gradient(circle at 90% 10%, rgba(255, 227, 200, 0.22), transparent 45%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .profile-hero::after {
      content: "";
      position: absolute;
      inset: auto -20% -60% auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }
    .profile-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      border: 2px solid rgba(255, 255, 255, 0.45);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.45rem;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }
    .profile-hero h2 {
      font-size: 1.45rem;
      margin: 0 0 0.25rem;
      color: #fff;
    }
    .profile-hero .profile-meta {
      margin: 0;
      font-size: 0.88rem;
      opacity: 0.92;
      line-height: 1.45;
    }
    .profile-hero .profile-meta span { opacity: 0.75; }
    .profile-badge {
      display: inline-block;
      margin-top: 0.45rem;
      background: var(--df-cream);
      color: var(--df-forest);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 6px;
    }
    .profile-hero-actions {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      z-index: 1;
    }
    .profile-hero-actions .btn {
      white-space: nowrap;
      font-size: 0.85rem;
    }
    .profile-hero-actions .btn-light-df {
      background: rgba(255, 255, 255, 0.95);
      color: var(--df-forest);
      border: none;
      font-weight: 700;
      border-radius: 10px;
      padding: 0.55rem 0.95rem;
    }
    .profile-hero-actions .btn-ghost-df {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.45);
      font-weight: 600;
      border-radius: 10px;
      padding: 0.5rem 0.95rem;
    }
    .profile-hero-actions .btn-ghost-df:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .quick-tile {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 14px;
      padding: 1rem 0.9rem;
      text-align: left;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
      color: var(--df-ink);
    }
    .quick-tile:hover {
      border-color: var(--df-leaf);
      background: var(--df-mist);
      transform: translateY(-2px);
    }
    .quick-tile .qt-ico {
      display: block;
      font-size: 1.25rem;
      margin-bottom: 0.35rem;
    }
    .quick-tile strong {
      display: block;
      font-size: 0.9rem;
      color: var(--df-forest);
      margin-bottom: 0.15rem;
    }
    .quick-tile span {
      font-size: 0.78rem;
      color: var(--df-muted);
      line-height: 1.3;
    }

    .addr-card, .pay-card, .reward-card {
      border: 1px solid var(--df-line);
      border-radius: 14px;
      padding: 1.1rem 1.15rem;
      background: #fff;
      margin-bottom: 0.75rem;
      position: relative;
    }
    .addr-card.default, .pay-card.default {
      border-color: var(--df-leaf);
      background: linear-gradient(180deg, var(--df-cream-soft) 0%, #fff 60%);
    }
    .default-tag {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      background: var(--df-mist);
      color: var(--df-forest);
      padding: 0.2rem 0.45rem;
      border-radius: 6px;
    }
    .toggle-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--df-line);
    }
    .toggle-row:last-child { border-bottom: none; }
    .toggle-row strong { display: block; font-size: 0.92rem; color: var(--df-forest); }
    .toggle-row small { color: var(--df-muted); }
    .form-switch .form-check-input {
      width: 2.6em;
      height: 1.35em;
      cursor: pointer;
      background-color: var(--df-cream-deep);
      border-color: var(--df-cream-deep);
    }
    .form-switch .form-check-input:checked {
      background-color: var(--df-forest);
      border-color: var(--df-forest);
    }
    .wallet-bar {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .wallet-chip {
      border-radius: 14px;
      padding: 1.1rem 1.15rem;
      background: var(--df-mist);
    }
    .wallet-chip.gold {
      background: linear-gradient(135deg, var(--df-cream-soft), var(--df-cream));
    }
    .wallet-chip .label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--df-muted);
      margin-bottom: 0.25rem;
    }
    .wallet-chip .value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--df-forest);
      letter-spacing: -0.03em;
    }
    .auth-gate {
      max-width: 420px;
      margin: 0 auto;
      text-align: center;
    }
    .auth-gate .auth-tabs {
      display: inline-flex;
      gap: 0.35rem;
      margin-bottom: 1.25rem;
      background: var(--df-mist);
      padding: 0.3rem;
      border-radius: 10px;
    }
    .auth-gate .auth-tabs button {
      border: none;
      background: transparent;
      padding: 0.45rem 1rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--df-muted);
    }
    .auth-gate .auth-tabs button.active {
      background: #fff;
      color: var(--df-forest);
      box-shadow: 0 2px 8px rgba(12, 59, 46, 0.08);
    }
    .pref-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }
    .pref-chips button {
      border: 1.5px solid var(--df-line);
      background: #fff;
      border-radius: 999px;
      padding: 0.4rem 0.85rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--df-ink);
      cursor: pointer;
    }
    .pref-chips button.active {
      border-color: var(--df-forest);
      background: var(--df-mist);
      color: var(--df-forest);
    }
    .ticket-list .ticket-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--df-line);
      font-size: 0.9rem;
    }
    .ticket-list .ticket-item:last-child { border-bottom: none; }
    .status-pill {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      padding: 0.2rem 0.5rem;
      border-radius: 6px;
      background: var(--df-mist);
      color: var(--df-muted);
      white-space: nowrap;
    }
    .status-pill.open { background: var(--df-cream); color: var(--df-forest); }
    .status-pill.resolved { background: var(--df-mist); color: var(--df-forest); }

    @media (max-width: 991px) {
      .stat-strip.stat-5 { grid-template-columns: repeat(3, 1fr); }
      .quick-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .profile-hero {
        grid-template-columns: auto 1fr;
        gap: 1rem;
      }
      .profile-hero-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
      }
      .wallet-bar { grid-template-columns: 1fr; }
    }
    @media (max-width: 576px) {
      .stat-strip.stat-5 { grid-template-columns: repeat(2, 1fr); }
      .quick-grid { grid-template-columns: 1fr 1fr; }
    }

    .steps {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 1rem 0;
    }
    .step {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.35rem 0.55rem;
      border-radius: 6px;
      background: var(--df-mist);
      color: var(--df-muted);
    }
    .step.done { background: var(--df-mist); color: var(--df-forest); }
    .step.now { background: var(--df-forest); color: var(--df-cream); }

    .confirm-box {
      text-align: center;
      padding: 2.5rem 1.5rem;
      max-width: 480px;
      margin: 0 auto;
    }
    .confirm-box .check {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--df-mist);
      color: var(--df-forest);
      display: grid;
      place-items: center;
      font-size: 1.75rem;
      font-weight: 800;
      margin: 0 auto 1.25rem;
    }

    .coupon-card {
      border: 1.5px dashed var(--df-leaf);
      border-radius: 12px;
      padding: 1rem;
      background: #fff;
      margin-bottom: 0.75rem;
    }
    .coupon-card code {
      background: var(--df-mist);
      padding: 0.2rem 0.5rem;
      border-radius: 6px;
      font-weight: 700;
      color: var(--df-forest);
    }

    .rec-strip {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--df-line);
    }
    .rec-strip h4 {
      font-size: 0.9rem;
      color: var(--df-forest);
      margin-bottom: 0.65rem;
    }
    .rec-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0;
      font-size: 0.88rem;
    }

    .offcanvas { --bs-offcanvas-width: min(400px, 100%); }
    .qty-ctrl {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid var(--df-line);
      border-radius: 8px;
      padding: 0.15rem;
    }
    .qty-ctrl button {
      width: 28px;
      height: 28px;
      border: none;
      background: var(--df-mist);
      border-radius: 6px;
      font-weight: 700;
      color: var(--df-forest);
    }

    .df-toast {
      position: fixed;
      bottom: 1.25rem;
      left: 50%;
      transform: translateX(-50%) translateY(120%);
      background: var(--df-forest);
      color: var(--df-cream);
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.9rem;
      z-index: 2000;
      transition: transform 0.3s ease;
      white-space: nowrap;
      max-width: 90vw;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .df-toast.show { transform: translateX(-50%) translateY(0); }

    .cookie-banner {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 2100;
      max-width: 520px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--df-line);
      border-radius: 16px;
      box-shadow: 0 18px 48px rgba(12, 59, 46, 0.18);
      padding: 1.15rem 1.25rem;
      display: none;
      animation: rise 0.4s ease both;
    }
    .cookie-banner.show { display: block; }
    .cookie-banner h3 {
      font-size: 1.05rem;
      color: var(--df-forest);
      margin: 0 0 0.4rem;
    }
    .cookie-banner p {
      margin: 0 0 1rem;
      font-size: 0.88rem;
      color: var(--df-muted);
      line-height: 1.45;
    }
    .cookie-banner a {
      color: var(--df-leaf);
      font-weight: 600;
      text-decoration: underline;
    }
    .cookie-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .cookie-actions .btn {
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.88rem;
    }

    footer.df-footer {
      background: var(--df-forest-deep);
      color: rgba(255, 255, 255, 0.8);
      padding: 2.5rem 0;
      margin-top: 2rem;
    }
    footer.df-footer .brand { color: var(--df-cream); }
    footer.df-footer .brand span { color: var(--df-cream); }
    footer.df-footer a { color: var(--df-cream); text-decoration: none; }
    footer.df-footer a:hover { color: #fff; }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.88rem;
    }

    @media (max-width: 1100px) {
      .hf-chili, .hf-package { width: 78px; }
      .hf-watermelon, .hf-bread { width: 96px; }
      .hf-burger, .hf-carrot { width: 88px; }
    }
    @media (max-width: 991px) {
      .hero-banner {
        min-height: 480px;
        padding: 3.5rem 0 3.75rem;
      }
      .hf-garlic, .hf-coffee, .hf-fries, .hf-pepper { display: none; }
      .hf-chili { width: 72px; left: 2%; }
      .hf-watermelon { width: 86px; left: 6%; top: 18%; }
      .hf-burger { width: 80px; left: 2%; }
      .hf-milk { width: 58px; left: 10%; }
      .hf-package { width: 78px; right: 2%; }
      .hf-bread { width: 88px; right: 1%; }
      .hf-carrot { width: 76px; right: 8%; }
      .hf-cake { width: 72px; right: 2%; }
    }
    @media (max-width: 1200px) {
      .pop-cat-rail {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .pop-cat-rail::-webkit-scrollbar { display: none; }
      .pop-cat {
        flex: 0 0 auto;
        max-width: none;
        min-width: 120px;
      }
    }
    @media (max-width: 1199.98px) {
      .nav-item-df { min-width: 52px; padding: 0.15rem 0.2rem; }
      .nav-search { max-width: 420px; }
    }
    @media (max-width: 991.98px) {
      .nav-icon-links,
      .nav-divider-end { display: none; }
      .nav-actions { margin-left: auto; }
      .nav-search { max-width: none; }
    }
    @media (max-width: 768px) {
      .nav-search { display: none !important; }
      .brand-tag { display: none; }
      .nav-divider { display: none; }
      .loc-chip { max-width: 132px; }
      .df-nav-inner { gap: 0.55rem; min-height: 64px; padding: 0.55rem 0; }
      .pop-cat-rail {
        gap: 0.35rem 0.75rem;
      }
      .pop-cat { min-width: 104px; }
      .pop-cat-img,
      .pop-cat-img svg {
        width: 72px;
        height: 62px;
      }
      .pop-cat strong { font-size: 0.8rem; }
    }
    @media (max-width: 576px) {
      .stat-strip { grid-template-columns: 1fr; }
      .hero-banner {
        min-height: 420px;
        padding: 2.75rem 0 3rem;
      }
      .hero-search {
        margin-top: 1.4rem;
        padding-left: 0.85rem;
      }
      .hero-search-btn { padding: 0.65rem 1.1rem; }
      .hero-cities { gap: 0.3rem 0.75rem; }
      .hf-burger, .hf-bread, .hf-milk, .hf-package { display: none; }
      .hf-chili { width: 58px; top: 6%; left: 2%; }
      .hf-watermelon { width: 70px; top: 16%; left: 4%; }
      .hf-carrot { width: 64px; top: auto; bottom: 10%; right: 6%; }
      .hf-cake { width: 62px; bottom: 4%; right: 2%; }
    }

    .section-heading {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--df-forest);
      margin-bottom: 0.35rem;
    }

    /* Dual store chooser */
    .choose-section {
      padding: 2.1rem 0 1.75rem;
    }
    .choose-section .section-heading {
      margin-bottom: 1.1rem;
    }
    .choose-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      min-height: 280px;
    }
    .choose-pane {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 280px;
      padding: 1.75rem 1.5rem 1.5rem 1.75rem;
      text-decoration: none;
      overflow: hidden;
      background: transparent;
      color: var(--df-forest);
      border-radius: 28px;
    }
    .choose-pane.grocery {
      border: 2px solid var(--df-cream-deep);
    }
    .choose-pane.food {
      border: 2px solid var(--df-forest);
    }
    .choose-pane.grocery:hover,
    .choose-pane.food:hover { color: var(--df-forest); }
    .choose-copy {
      position: relative;
      z-index: 2;
      max-width: 15.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .choose-pill {
      display: inline-flex;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.7rem;
    }
    .choose-pane.grocery .choose-pill { color: var(--df-leaf); }
    .choose-pane.food .choose-pill { color: var(--df-leaf); }
    .choose-copy h3 {
      font-size: clamp(1.7rem, 2.5vw, 2.15rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      margin: 0 0 0.4rem;
      line-height: 1.05;
    }
    .choose-copy p {
      margin: 0 0 1.15rem;
      font-size: 0.92rem;
      line-height: 1.45;
    }
    .choose-pane.grocery .choose-copy p,
    .choose-pane.food .choose-copy p { color: var(--df-muted); }
    .choose-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .choose-cta::after {
      content: "→";
      transition: transform 0.2s ease;
    }
    .choose-pane:hover .choose-cta::after { transform: translateX(4px); }
    .choose-img {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 58%;
      height: 100%;
      object-fit: contain;
      object-position: right bottom;
      pointer-events: none;
    }
    .choose-pane.food .choose-img {
      width: 50%;
      right: 0.4rem;
      object-position: center;
    }

    @media (max-width: 900px) {
      .choose-split { grid-template-columns: 1fr; }
      .choose-pane { min-height: 220px; }
      .choose-img { width: 48%; }
      .choose-pane.food .choose-img { width: 42%; }
    }
    @media (max-width: 576px) {
      .choose-pane {
        min-height: 0;
        padding: 1.25rem 1.15rem 7.5rem;
        border-radius: 22px;
      }
      .choose-copy { max-width: 100%; }
      .choose-img,
      .choose-pane.food .choose-img {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 7.2rem;
        object-position: center;
      }
      .choose-copy h3 { font-size: 1.5rem; }
      .choose-copy p { margin-bottom: 0.85rem; }
    }

    .food-filter-stack {
      display: flex;
      flex-direction: column;
      gap: 0.95rem;
      margin: 1.15rem 0 1.25rem;
    }
    .food-cat-rail {
      display: flex;
      flex-wrap: nowrap;
      gap: 0.15rem;
      margin-bottom: 0;
      overflow-x: auto;
      padding: 0;
      background: #fff;
      border-bottom: 1px solid var(--df-line);
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .food-cat-rail::-webkit-scrollbar { display: none; }
    .food-cat-chip {
      appearance: none;
      position: relative;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      padding: 0.8rem 1.15rem 0.85rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--df-muted);
      cursor: pointer;
      font-family: var(--font-body);
      white-space: nowrap;
      line-height: 1.2;
      transition: color 0.15s ease;
    }
    .food-cat-chip:hover {
      color: var(--df-forest);
    }
    .food-cat-chip.active {
      color: var(--df-forest);
      font-weight: 600;
    }
    .food-cat-chip.active::after {
      content: "";
      position: absolute;
      left: 0.7rem;
      right: 0.7rem;
      bottom: -1px;
      height: 3px;
      background: var(--df-forest);
      border-radius: 3px 3px 0 0;
    }
    .food-cat-chip:focus-visible {
      outline: 2px solid var(--df-forest);
      outline-offset: -2px;
    }

    .food-diet-rail {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0;
    }
    .food-diet-rail .diet-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #8a9590;
    }
    .food-diet-seg {
      display: inline-flex;
      align-items: center;
      gap: 0.12rem;
      padding: 0.28rem;
      border-radius: 999px;
      background: var(--df-cream-soft);
      box-shadow: 0 6px 18px rgba(12, 59, 46, 0.08);
    }
    .food-diet-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      border: none;
      background: transparent;
      border-radius: 999px;
      padding: 0.52rem 1.15rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--df-forest);
      cursor: pointer;
      font-family: var(--font-body);
      line-height: 1;
      transition: background 0.18s ease, color 0.18s ease;
    }
    .food-diet-chip:hover:not(.active) {
      background: rgba(255, 255, 255, 0.65);
    }
    .food-diet-chip.active {
      background: var(--df-forest);
      color: var(--df-cream);
    }
    .food-diet-chip.active .veg-mark.veg,
    .food-diet-chip.active .veg-mark.nonveg {
      border-color: var(--df-cream);
      color: var(--df-cream);
    }
    .food-diet-chip:focus-visible {
      outline: 2px solid var(--df-forest);
      outline-offset: 2px;
    }
    .veg-mark {
      display: inline-flex;
      width: 14px;
      height: 14px;
      border: 1.5px solid;
      border-radius: 2px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      vertical-align: middle;
    }
    .veg-mark::after {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }
    .veg-mark.veg { border-color: #166534; color: #166534; }
    .veg-mark.nonveg { border-color: #9a3412; color: #9a3412; }
    .badge-veg {
      position: absolute;
      left: 0.55rem;
      bottom: 0.45rem;
      top: auto;
      z-index: 2;
      background: rgba(255, 255, 255, 0.95);
      padding: 0.2rem;
      border-radius: 4px;
      line-height: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .product-media .badge-veg {
      left: 0.35rem;
      bottom: 0.2rem;
    }

    .addon-list { margin: 0.75rem 0 0; }
    .addon-list label {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.45rem 0;
      font-size: 0.9rem;
      cursor: pointer;
      border-bottom: 1px solid var(--df-line);
    }
    .addon-list label:last-child { border-bottom: none; }
    .addon-list input { accent-color: var(--df-forest); }
    .addon-price { margin-left: auto; color: var(--df-muted); font-weight: 600; font-size: 0.85rem; }

    .cart-section-label {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--df-muted);
      margin: 0.85rem 0 0.4rem;
    }
    .cart-section-label:first-child { margin-top: 0; }
    .line-item .addons-mini {
      font-size: 0.75rem;
      color: var(--df-muted);
      margin-top: 0.15rem;
    }

    .eta-banner {
      background: linear-gradient(120deg, var(--df-cream-soft), var(--df-cream));
      border: 1px solid var(--df-cream-deep);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      margin-bottom: 1rem;
      color: var(--df-forest);
      font-weight: 700;
    }

    .admin-order {
      border: 1px solid var(--df-line);
      border-radius: 14px;
      padding: 1rem 1.1rem;
      background: #fff;
      margin-bottom: 0.85rem;
    }
    .admin-order h4 {
      font-size: 1.05rem;
      margin: 0 0 0.35rem;
      color: var(--df-forest);
    }
    .admin-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
    .badge-channel {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.15rem 0.45rem;
      border-radius: 6px;
      background: var(--df-mist);
      color: var(--df-forest);
    }
    .badge-channel.food { background: var(--df-cream); color: var(--df-forest); }

    /* Product detail modal — dedicated layout (avoid .product-img aspect-ratio clash) */
    #productModal .modal-dialog {
      max-width: 920px;
    }
    #productModal .product-modal-content {
      border-radius: 16px;
      overflow: hidden;
      border: none;
    }
    #productModal .product-modal-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
      align-items: stretch;
      min-height: 0;
    }
    #productModal .product-modal-media {
      position: relative;
      min-height: 280px;
      background: #fff center / contain no-repeat;
      padding: 1.5rem;
    }
    #productModal .product-modal-body {
      position: relative;
      padding: 1.35rem 1.5rem 1.5rem;
      background: #fff;
      min-width: 0;
      max-height: min(86vh, 720px);
      overflow-y: auto;
    }
    #productModal .product-modal-close {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      z-index: 5;
    }
    #productModal .modal-badge {
      display: inline-block;
      background: rgba(7, 40, 32, 0.92);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
    }
    #productModal .product-modal-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1rem;
      padding-top: 0.85rem;
      border-top: 1px solid var(--df-line);
    }
    @media (max-width: 767.98px) {
      #productModal .product-modal-layout {
        grid-template-columns: 1fr;
      }
      #productModal .product-modal-media {
        min-height: 200px;
        aspect-ratio: 16 / 10;
      }
      #productModal .product-modal-body {
        max-height: none;
      }
    }


/* multi-page link resets */
a.btn-shop-now,
a.choose-pane,
a.deals-all,
a.deal-line,
a.icon-pill,
a.wish-btn,
a.btn {
  text-decoration: none;
  cursor: pointer;
}
a.choose-pane,
a.deal-line {
  color: inherit;
}
a.choose-pane:hover,
a.deal-line:hover {
  color: inherit;
}
a.btn-shop-now {
  display: inline-flex;
}
a.icon-pill,
a.wish-btn,
a.btn {
  color: inherit;
}
