:root{
    --bg:#ffffff;
    --bg-soft:#f6f7f8;
    --ink:#1a1a1a;
    --muted:#6b7280;
    --line:#e5e7eb;
    --green:#005a3c;          /* extra brand green */
    --green-dark:#004529;
    --green-soft:#e2efe9;
    --red:#b4001e;            /* extra brand red */
    --red-dark:#8c0017;
    --red-soft:#fbe4e7;
    --yellow:#f0d21e;         /* extra brand yellow */
    --yellow-dark:#d4b800;
    --shadow-sm:0 1px 2px rgba(0,0,0,.05);
    --shadow:0 4px 16px rgba(0,0,0,.06);
    --shadow-lg:0 12px 32px rgba(0,0,0,.10);
  }
  *{box-sizing:border-box}
  html,body{margin:0; padding:0}
  body{
    font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    color:var(--ink); background:var(--bg);
    -webkit-font-smoothing:antialiased; line-height:1.5;
  }
  h1,h2,h3,h4{margin:0 0 .5em; line-height:1.15; font-weight:700; letter-spacing:-.02em}
  h1{font-size:clamp(2rem,4vw,3.4rem); font-weight:800}
  h2{font-size:clamp(1.6rem,2.6vw,2.2rem)}
  h3{font-size:1.15rem; font-weight:600}
  p{margin:0 0 1em}
  a{color:inherit; text-decoration:none}
  img{max-width:100%; display:block}
  button{font-family:inherit}
  .wrap{max-width:1280px; margin:0 auto; padding:0 24px}

  .btn{
    display:inline-flex; align-items:center; gap:.5rem; cursor:pointer;
    padding:.75rem 1.3rem; border-radius:8px; font-weight:600; font-size:.95rem;
    border:0; transition:background .15s, transform .1s;
    text-decoration:none;
  }
  .btn:active{transform:translateY(1px)}
  .btn-primary{background:var(--red); color:#fff}
  .btn-primary:hover{background:var(--red-dark)}
  .btn-secondary{background:var(--green); color:#fff}
  .btn-secondary:hover{background:var(--green-dark)}
  .btn-outline{background:#fff; color:var(--ink); border:1.5px solid var(--line)}
  .btn-outline:hover{border-color:var(--red); color:var(--red)}
  .btn-ghost{background:transparent; color:var(--red); padding:.5rem .8rem}
  .btn-ghost:hover{background:var(--red-soft)}
  .btn-block{width:100%; justify-content:center; padding:.95rem}

  /* TOPBAR */
  .topbar{background:var(--red); color:#fff; font-size:.82rem}
  .topbar .wrap{display:flex; justify-content:space-between; align-items:center; padding:8px 24px; gap:12px; flex-wrap:wrap}
  .topbar a{opacity:.95}
  .topbar a:hover{opacity:1; text-decoration:underline}
  .topbar .sep{opacity:.4; margin:0 .5rem}

  /* HEADER */
  header.site{position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid var(--line)}
  .header-row{display:flex; align-items:center; gap:24px; padding:14px 24px}
  .logo{display:flex; align-items:center; gap:10px; flex-shrink:0; text-decoration:none}
  .logo img{height:54px; width:auto; display:block}
  .logo-text{display:none}  /* hide text label, logo is self-contained */
  footer .logo img{height:64px; filter:brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,.3))}
  .search{
    flex:1; max-width:560px; position:relative;
  }
  .search input{
    width:100%; padding:.7rem 1rem .7rem 2.6rem; border:1.5px solid var(--line);
    border-radius:8px; font-size:.95rem; background:#fff; transition:border-color .15s;
  }
  .search input:focus{outline:0; border-color:var(--red)}
  .search .ic{position:absolute; left:.85rem; top:50%; transform:translateY(-50%); color:var(--muted)}
  .header-actions{display:flex; gap:8px; align-items:center; margin-left:auto}
  .icon-btn{
    background:transparent; border:0; cursor:pointer; padding:.6rem; border-radius:8px;
    display:inline-flex; align-items:center; gap:6px; color:var(--ink); font-weight:600; font-size:.9rem;
    position:relative;
  }
  .icon-btn:hover{background:var(--bg-soft)}
  .cart-count{
    position:absolute; top:0; right:0; background:var(--red); color:#fff; font-size:.7rem;
    font-weight:700; min-width:18px; height:18px; padding:0 5px; border-radius:999px;
    display:grid; place-items:center; border:2px solid #fff;
  }
  .cart-count.hidden{display:none}

  /* NAV bar */
  .nav-bar{border-bottom:1px solid var(--line); background:#fff}
  .nav-bar ul{
    display:flex; gap:6px; list-style:none; padding:0 24px; margin:0;
    max-width:1280px; margin:0 auto; overflow-x:auto;
  }
  .nav-bar li a{
    display:block; padding:14px 16px; font-size:.92rem; font-weight:500; color:var(--ink);
    white-space:nowrap; border-bottom:3px solid transparent; margin-bottom:-1px;
  }
  .nav-bar li a:hover{color:var(--red)}
  .nav-bar li a.active{color:var(--red); border-color:var(--red)}

  @media(max-width:760px){
    .search{display:none}
    .header-actions .label{display:none}
  }

  /* HERO */
  .hero{
    background:linear-gradient(180deg, #fffceb 0%, #fff 100%);
    padding:48px 0 56px;
    border-bottom:4px solid var(--yellow);
  }
  .hero-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center}
  .hero-tag{display:inline-block; background:var(--yellow); color:var(--red); padding:.4rem .8rem; border-radius:6px; font-size:.8rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; margin-bottom:16px}
  .hero h1{margin-bottom:.4em}
  .hero p.lead{color:var(--muted); font-size:1.1rem; max-width:520px; margin-bottom:24px}
  .hero-actions{display:flex; gap:10px; flex-wrap:wrap}
  .hero-img{
    border-radius:12px; overflow:hidden; aspect-ratio:5/4;
    background:#eee; box-shadow:var(--shadow);
  }
  .hero-img img{width:100%; height:100%; object-fit:cover}
  @media(max-width:880px){
    .hero-grid{grid-template-columns:1fr}
    .hero-img{aspect-ratio:16/10}
  }

  /* SERVICE STRIP */
  .services{padding:32px 0; border-bottom:1px solid var(--line)}
  .service-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px}
  @media(max-width:880px){.service-grid{grid-template-columns:repeat(2,1fr)}}
  .service{display:flex; gap:14px; align-items:flex-start}
  .service .ic{
    width:44px; height:44px; flex-shrink:0; border-radius:10px; background:var(--red-soft);
    color:var(--red); display:grid; place-items:center; font-size:1.3rem;
  }
  .service b{display:block; font-size:.95rem; margin-bottom:2px}
  .service span{color:var(--muted); font-size:.85rem}

  /* SECTIONS */
  section{padding:56px 0}
  .section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:24px; flex-wrap:wrap}
  .section-head h2{margin-bottom:.2em}
  .section-head p{color:var(--muted); margin:0; font-size:.95rem}
  .section-head a{color:var(--red); font-weight:600; font-size:.92rem}
  .section-head a:hover{text-decoration:underline}

  /* CATEGORIES */
  .cats{display:grid; grid-template-columns:repeat(6,1fr); gap:14px}
  @media(max-width:1000px){.cats{grid-template-columns:repeat(3,1fr)}}
  @media(max-width:560px){.cats{grid-template-columns:repeat(2,1fr)}}
  .cat{
    background:#fff; border:1px solid var(--line); border-radius:10px;
    padding:18px 12px; text-align:center; cursor:pointer; transition:border-color .15s, transform .15s;
  }
  .cat:hover{border-color:var(--red); transform:translateY(-2px)}
  .cat .emoji{font-size:2rem; margin-bottom:8px; display:block}
  .cat span{font-size:.85rem; font-weight:600}

  /* PRODUCTS */
  .products{display:grid; grid-template-columns:repeat(6,1fr); gap:14px}
  @media(max-width:1200px){.products{grid-template-columns:repeat(5,1fr)}}
  @media(max-width:1000px){.products{grid-template-columns:repeat(4,1fr)}}
  @media(max-width:760px){.products{grid-template-columns:repeat(3,1fr)}}
  @media(max-width:480px){.products{grid-template-columns:repeat(2,1fr); gap:10px}}
  .product{
    background:#fff; border:1px solid var(--line); border-radius:10px;
    overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s, transform .2s;
  }
  .product:hover{box-shadow:var(--shadow); transform:translateY(-2px)}
  .product .img{aspect-ratio:1; background:#fff; position:relative; overflow:hidden; display:grid; place-items:center; padding:6px; border-bottom:1px solid var(--line)}
  .product .img img{width:100%; height:100%; object-fit:contain; image-rendering:-webkit-optimize-contrast}
  .product .badge{
    position:absolute; top:6px; left:6px; background:var(--red); color:#fff;
    padding:2px 7px; border-radius:4px; font-size:.62rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  }
  .product .body{padding:10px; display:flex; flex-direction:column; gap:4px; flex:1}
  .product .name{font-weight:600; font-size:.85rem; line-height:1.25}
  .product .en{color:var(--muted); font-size:.72rem; line-height:1.25}
  .product .price-row{display:flex; align-items:baseline; gap:4px; margin-top:4px}
  .product .price{font-size:1.05rem; font-weight:800; color:var(--red)}
  .product .unit{color:var(--muted); font-size:.72rem}
  .product .add{
    margin-top:6px; background:var(--green); color:#fff; border:0; cursor:pointer;
    padding:.45rem; border-radius:6px; font-weight:600; font-size:.78rem;
    display:inline-flex; align-items:center; justify-content:center; gap:4px;
  }
  .product .add:hover{background:var(--green-dark)}

  /* HOW IT WORKS */
  .how{background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
  .how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px}
  @media(max-width:880px){.how-grid{grid-template-columns:1fr}}
  .step{background:#fff; border-radius:10px; padding:28px; border:1px solid var(--line)}
  .step .num{
    width:32px; height:32px; border-radius:50%; background:var(--red); color:#fff;
    display:grid; place-items:center; font-weight:700; font-size:.95rem; margin-bottom:14px;
  }
  .step h3{margin-bottom:.4em}
  .step p{color:var(--muted); font-size:.92rem; margin:0}

  /* WEEKLY FLYERS */
  .flyers-section{
    background:linear-gradient(135deg, var(--yellow) 0%, #fde858 100%);
    border-top:4px solid var(--red); border-bottom:4px solid var(--green);
    padding:56px 0;
  }
  .flyers-head{display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; margin-bottom:24px}
  .flyers-head h2{margin:0; color:var(--red); font-size:clamp(1.8rem,3vw,2.6rem)}
  .flyers-head p{margin:.4em 0 0; color:#5a4500; font-weight:500}
  .flyers-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:18px; margin-top:18px}
  .flyer-card{
    position:relative; aspect-ratio:3/4; border-radius:12px; overflow:hidden; cursor:pointer;
    background:#fff; border:3px solid #fff; box-shadow:0 8px 24px rgba(0,0,0,.15);
    transition:transform .2s, box-shadow .2s;
  }
  .flyer-card:hover{transform:translateY(-4px); box-shadow:0 14px 32px rgba(0,0,0,.22)}
  .flyer-card img{width:100%; height:100%; object-fit:cover}
  .flyer-card .pdf{
    width:100%; height:100%; background:linear-gradient(135deg,var(--red),var(--red-dark)); color:#fff;
    display:flex; flex-direction:column; align-items:center; justify-content:center; padding:24px; gap:10px; text-align:center;
  }
  .flyer-card .pdf .ic{font-size:3rem}
  .flyer-card .pdf b{font-size:1.05rem; word-break:break-word}
  .flyer-card .week-badge{
    position:absolute; top:12px; left:12px; background:var(--red); color:#fff;
    padding:5px 11px; border-radius:6px; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  }
  .flyer-card .del{
    position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:50%;
    background:rgba(0,0,0,.75); color:#fff; border:0; cursor:pointer; font-size:1.1rem; font-weight:700;
    display:none; align-items:center; justify-content:center;
  }
  .admin-mode .flyer-card .del{display:flex}
  .flyers-empty{
    text-align:center; padding:50px 20px; color:#5a4500;
    background:rgba(255,255,255,.6); border-radius:12px; border:2px dashed rgba(0,0,0,.2); font-weight:500;
  }
  .flyer-dz{
    border:3px dashed rgba(180,0,30,.4); border-radius:14px; padding:36px 20px; text-align:center;
    background:rgba(255,255,255,.7); cursor:pointer; transition:border-color .15s, background .15s; margin-bottom:18px;
  }
  .flyer-dz:hover, .flyer-dz.drag{border-color:var(--red); background:#fff}
  .flyer-dz .ic-up{
    width:58px; height:58px; border-radius:50%; background:var(--red); color:#fff;
    display:grid; place-items:center; margin:0 auto 12px; font-size:1.4rem;
  }
  .flyer-dz h3{margin:0 0 4px; color:var(--red)}
  .flyer-dz p{margin:0; color:#5a4500; font-size:.92rem}
  .flyer-dz input{display:none}

  /* Lightbox */
  .lightbox{
    position:fixed; inset:0; background:rgba(0,0,0,.92); z-index:300; display:none;
    align-items:center; justify-content:center; padding:30px; cursor:zoom-out;
  }
  .lightbox.open{display:flex}
  .lightbox img,.lightbox iframe{max-width:95%; max-height:95vh; border-radius:8px; background:#fff}
  .lightbox .close{position:absolute; top:20px; right:24px; background:#fff; color:#000; width:40px; height:40px; border-radius:50%; border:0; font-size:1.4rem; font-weight:700; cursor:pointer; z-index:2}

  /* Flyers full-screen viewer */
  .flyers-modal{
    position:fixed; inset:0; background:linear-gradient(180deg, var(--yellow) 0%, #fff8c5 100%);
    z-index:200; display:none; flex-direction:column; overflow:auto;
  }
  .flyers-modal.open{display:flex}
  .flyers-modal-head{
    position:sticky; top:0; background:var(--red); color:#fff; padding:14px 24px;
    display:flex; align-items:center; justify-content:space-between; gap:14px; z-index:2;
    box-shadow:0 4px 14px rgba(0,0,0,.15);
  }
  .flyers-modal-head .title{display:flex; align-items:center; gap:12px}
  .flyers-modal-head img{height:40px; width:auto; background:#fff; border-radius:6px; padding:2px}
  .flyers-modal-head h2{margin:0; font-size:1.2rem; color:#fff}
  .flyers-modal-head .close-modal{
    background:#fff; color:var(--red); border:0; width:40px; height:40px; border-radius:50%;
    font-size:1.4rem; font-weight:700; cursor:pointer;
  }
  .flyers-modal-body{flex:1; padding:32px 24px; max-width:1280px; margin:0 auto; width:100%}
  .flyers-modal-body .flyers-grid{margin-top:0}
  .flyers-modal-body .flyer-card{aspect-ratio:auto; min-height:auto}
  .flyers-modal-body .flyer-card img{aspect-ratio:auto; width:100%; height:auto; object-fit:contain; display:block}
  .flyers-modal-body .flyers-grid{grid-template-columns:repeat(auto-fill,minmax(320px,1fr))}

  /* DEALER SPECIALS */
  .specials-wrap{background:#fff; border:1px solid var(--line); border-radius:12px; padding:32px}
  .specials-head{display:flex; justify-content:space-between; align-items:flex-end; gap:16px; flex-wrap:wrap; margin-bottom:20px}
  .admin-toggle{
    background:#fff; border:1.5px solid var(--line); padding:.55rem .9rem; border-radius:8px;
    font-size:.82rem; font-weight:600; cursor:pointer; color:var(--muted);
    display:inline-flex; align-items:center; gap:6px;
  }
  .admin-toggle:hover{border-color:var(--red); color:var(--red)}
  .admin-toggle.on{background:var(--red); color:#fff; border-color:var(--red)}
  .dropzone{
    border:2px dashed var(--line); border-radius:10px; padding:36px 20px; text-align:center;
    background:var(--bg-soft); cursor:pointer; transition:border-color .15s, background .15s;
  }
  .dropzone:hover{border-color:var(--red); background:var(--red-soft)}
  .dropzone.drag{border-color:var(--red); background:var(--red-soft)}
  .dropzone .ic-up{
    width:54px; height:54px; border-radius:50%; background:var(--red); color:#fff;
    display:grid; place-items:center; margin:0 auto 12px; font-size:1.3rem;
  }
  .dropzone h3{margin:0 0 4px}
  .dropzone p{margin:0; color:var(--muted); font-size:.9rem}
  .dropzone input{display:none}
  .specials-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; margin-top:20px}
  .special-card{
    position:relative; aspect-ratio:1; border-radius:8px; overflow:hidden;
    border:1px solid var(--line); background:var(--bg-soft);
  }
  .special-card img{width:100%; height:100%; object-fit:cover}
  .special-card .pdf{
    width:100%; height:100%; background:linear-gradient(135deg,var(--red),#960025); color:#fff;
    display:flex; flex-direction:column; align-items:center; justify-content:center; padding:18px; gap:6px; text-align:center;
  }
  .special-card .pdf b{font-size:.95rem; word-break:break-word}
  .special-card .del{
    position:absolute; top:8px; right:8px; width:28px; height:28px; border-radius:50%;
    background:rgba(0,0,0,.7); color:#fff; border:0; cursor:pointer; font-size:1rem; font-weight:700;
    display:none; align-items:center; justify-content:center;
  }
  .admin-mode .special-card .del{display:flex}
  .specials-empty{text-align:center; padding:24px; color:var(--muted); font-size:.92rem}
  .admin-only{display:none}
  .admin-mode .admin-only{display:block}

  /* CONTACT */
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px}
  @media(max-width:880px){.contact-grid{grid-template-columns:1fr}}
  .info-card{
    display:flex; gap:14px; padding:18px; background:#fff; border:1px solid var(--line); border-radius:10px;
    align-items:flex-start;
  }
  .info-card+.info-card{margin-top:12px}
  .info-card .ic{
    width:42px; height:42px; flex-shrink:0; border-radius:8px; background:var(--green-soft); color:var(--green);
    display:grid; place-items:center; font-size:1.2rem;
  }
  .info-card h4{margin:0 0 4px; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); font-weight:700}
  .info-card p{margin:0; font-weight:600}
  .map{border-radius:10px; overflow:hidden; border:1px solid var(--line); min-height:380px; height:100%}
  .map iframe{width:100%; height:100%; min-height:380px; border:0}

  /* FOOTER */
  footer{background:var(--ink); color:#cbd0d6; padding:48px 0 24px; margin-top:48px}
  .foot-grid{display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px}
  @media(max-width:880px){.foot-grid{grid-template-columns:1fr 1fr}}
  footer h5{color:#fff; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; margin:0 0 12px; font-weight:700}
  footer ul{list-style:none; padding:0; margin:0; display:grid; gap:8px; font-size:.92rem}
  footer a:hover{color:#fff}
  .foot-bottom{border-top:1px solid #2c2e34; margin-top:36px; padding-top:18px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:.82rem}

  /* CART DRAWER */
  .drawer-backdrop{
    position:fixed; inset:0; background:rgba(0,0,0,.5); opacity:0; pointer-events:none;
    transition:opacity .25s; z-index:90;
  }
  .drawer-backdrop.open{opacity:1; pointer-events:auto}
  .drawer{
    position:fixed; top:0; right:0; bottom:0; width:min(440px,100%); background:#fff;
    transform:translateX(100%); transition:transform .3s ease; z-index:100;
    display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,.15);
  }
  .drawer.open{transform:none}
  .drawer-head{padding:18px 22px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center}
  .drawer-head h3{margin:0; font-size:1.15rem}
  .drawer-close{background:none; border:0; font-size:1.6rem; cursor:pointer; color:var(--muted); line-height:1; padding:0 6px}
  .drawer-body{flex:1; overflow:auto; padding:18px 22px}
  .drawer-foot{border-top:1px solid var(--line); padding:18px 22px; background:var(--bg-soft)}

  .step-pills{display:flex; gap:6px; margin-bottom:16px}
  .step-pill{flex:1; padding:.45rem; text-align:center; background:var(--bg-soft); border-radius:6px; font-size:.72rem; font-weight:700; color:var(--muted); letter-spacing:.04em; text-transform:uppercase}
  .step-pill.active{background:var(--ink); color:#fff}
  .step-pill.done{background:var(--green); color:#fff}

  .cart-line{display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line)}
  .cart-line:last-child{border-bottom:0}
  .cart-line img{width:60px; height:60px; border-radius:8px; object-fit:cover; flex-shrink:0; border:1px solid var(--line)}
  .cart-line .info{flex:1; min-width:0}
  .cart-line .info b{display:block; font-size:.95rem}
  .cart-line .info small{color:var(--muted); font-size:.82rem}
  .qty{display:inline-flex; align-items:center; gap:6px; margin-top:6px; background:var(--bg-soft); border-radius:6px; padding:2px}
  .qty button{background:#fff; border:1px solid var(--line); width:24px; height:24px; border-radius:4px; cursor:pointer; font-weight:700}
  .qty button:hover{background:var(--green); color:#fff; border-color:var(--green)}
  .qty span{font-weight:700; min-width:22px; text-align:center; font-size:.88rem}
  .cart-line .lprice{text-align:right; font-weight:700; font-size:.95rem; flex-shrink:0}
  .cart-line .rm{display:block; margin-top:6px; background:none; border:0; color:var(--muted); cursor:pointer; font-size:.78rem; padding:0}
  .cart-line .rm:hover{color:var(--red); text-decoration:underline}
  .cart-empty{text-align:center; padding:50px 20px; color:var(--muted)}
  .cart-empty .e-ic{font-size:2.6rem; margin-bottom:10px}
  .totals{display:flex; justify-content:space-between; margin:5px 0; font-size:.92rem; color:var(--muted)}
  .totals.grand{font-size:1.05rem; font-weight:700; color:var(--ink); padding-top:10px; border-top:1px solid var(--line); margin-top:10px}
  .totals.grand b{font-size:1.25rem; color:var(--green)}

  .form-grid{display:grid; gap:14px}
  .form-grid label{display:block; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:5px}
  .form-grid input,.form-grid select,.form-grid textarea{
    width:100%; padding:.7rem .85rem; border:1.5px solid var(--line); border-radius:8px;
    font-family:inherit; font-size:.95rem; background:#fff;
  }
  .form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{outline:0; border-color:var(--green)}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
  .pickup-tip{background:var(--green-soft); border-left:3px solid var(--green); padding:12px 14px; border-radius:6px; font-size:.85rem; color:var(--green-dark); margin-top:14px}

  .confirmation{text-align:center; padding:14px 6px}
  .conf-ic{width:72px; height:72px; border-radius:50%; background:var(--green); color:#fff; display:grid; place-items:center; font-size:2.2rem; margin:0 auto 14px}
  .order-num{display:inline-block; background:var(--bg-soft); padding:8px 18px; border-radius:6px; font-weight:700; font-size:1.15rem; letter-spacing:.04em; margin:8px 0}
  .conf-details{text-align:left; background:var(--bg-soft); border-radius:8px; padding:16px; margin:14px 0; font-size:.92rem}
  .conf-details div{display:flex; justify-content:space-between; padding:4px 0}
