/*
Theme Name: The Hangout Bar & Lounge
Theme URI: https://thehangoutbar.ca
Author: The Hangout Bar & Lounge
Description: Custom theme for The Hangout Bar & Lounge, Oshawa ON
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: hangout
*/


  :root {
    --black: #0a0a0a;
    --black2: #141414;
    --black3: #1e1e1e;
    --orange: #E86B1F;
    --orange-light: #F08040;
    --orange-dark: #C4561A;
    --white: #ffffff;
    --white-muted: #d4cec8;
    --white-dim: rgba(255,255,255,0.07);
    --border: rgba(232,107,31,0.25);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 74px;
    background: rgba(10,10,10,0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
  }
  .logo-img-link { display:flex; align-items:center; text-decoration:none; }
  .nav-logo-img { height: 42px; width: auto; object-fit: contain; }
  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--orange-light) !important; color: var(--white) !important; }
  .nav-order-btn {
    background: transparent !important;
    color: var(--orange) !important;
    border: 1px solid var(--orange) !important;
    padding: 0.45rem 1.2rem !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
  }
  .nav-order-btn:hover { background: var(--orange) !important; color: var(--white) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

  /* HERO */
  #home {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.88) 100%),
      url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=1600&q=80') center/cover no-repeat;
  }
  .hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 0.35rem 1.2rem;
    border-radius: 1px;
    margin-bottom: 1.8rem;
    font-weight: 500;
  }
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.4rem;
  }
  h1 em { color: var(--orange); font-style: normal; }
  .hero-sub {
    font-size: 1.05rem;
    color: var(--white-muted);
    max-width: 520px;
    margin: 0 auto 2.6rem;
    line-height: 1.7;
    font-weight: 300;
  }
  .hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Barlow', sans-serif;
  }
  .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    font-family: 'Barlow', sans-serif;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
  .hero-info {
    display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
    margin-top: 4rem;
  }
  .hero-info-item {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--white-muted);
    text-transform: uppercase;
  }
  .hero-info-item strong { color: var(--orange); display: block; font-size: 0.85rem; margin-bottom: 3px; }

  /* SECTION SHARED */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.8rem;
  }
  .section-sub {
    font-size: 1rem;
    color: var(--white-muted);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
  }
  .divider {
    width: 48px; height: 3px;
    background: var(--orange);
    margin: 1.2rem 0 2rem;
    border-radius: 1px;
  }

  /* ABOUT STRIP */
  #about {
    background: var(--black2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 70px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: center;
  }
  .about-img {
    aspect-ratio: 4/3;
    background: url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=900&q=80') center/cover;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }
  .about-img::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid var(--border);
  }
  .about-tag {
    position: absolute; bottom: 1.2rem; left: 1.2rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 1px;
  }
  .stats-row {
    display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
  }
  .stat { }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
  }

  /* MENU */
  #menu { background: var(--black); }
  .menu-tabs {
    display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  }
  .tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white-muted);
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.55rem 1.2rem;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .tab-btn:hover, .tab-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .menu-item {
    background: var(--black2);
    padding: 1.5rem 1.8rem;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem;
    transition: background 0.2s;
  }
  .menu-item:hover { background: var(--black3); }
  .menu-item-name {
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }
  .menu-item-desc {
    font-size: 0.8rem;
    color: var(--white-muted);
    line-height: 1.5;
    font-weight: 300;
  }
  .menu-item-price {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.97rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .menu-panel { display: none; }
  .menu-panel.active { display: block; }

  /* RESERVATION */
  #reservations {
    background: var(--black2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .reservation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: start;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-muted);
    margin-bottom: 0.4rem;
  }
  input, select, textarea {
    width: 100%;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--orange); }
  select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23E86B1F'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
  textarea { resize: vertical; min-height: 110px; }
  .res-info-box {
    background: var(--black3);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 1.5rem;
  }
  .res-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .res-info-row {
    display: flex; gap: 0.8rem; align-items: flex-start;
    font-size: 0.88rem;
    color: var(--white-muted);
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
  }
  .res-info-row:last-child { border-bottom: none; }
  .info-icon { color: var(--orange); flex-shrink: 0; width: 18px; text-align: center; }

  /* CATERING */
  #catering {
    background: var(--black);
    position: relative;
  }
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
  }
  .service-card {
    background: var(--black2);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }
  .service-card-img {
    height: 200px;
    background: center/cover no-repeat;
  }
  .service-card-body { padding: 2rem; }
  .service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
  }
  .service-card-desc {
    font-size: 0.88rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 1.4rem;
    font-weight: 300;
  }
  .feature-list {
    list-style: none;
    margin-bottom: 1.8rem;
  }
  .feature-list li {
    font-size: 0.84rem;
    color: var(--white-muted);
    padding: 0.4rem 0;
    display: flex; gap: 0.6rem; align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li::before { content: '—'; color: var(--orange); flex-shrink: 0; }

  /* EVENTS */
  #events {
    background: var(--black2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: start;
  }
  .event-types {
    display: grid; gap: 1rem; margin-bottom: 1.5rem;
  }
  .event-type {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: var(--black3);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.2s;
  }
  .event-type:hover { border-color: var(--orange); }
  .event-icon {
    width: 38px; height: 38px; border-radius: 2px;
    background: rgba(232,107,31,0.15);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .event-type-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
  .event-type-desc { font-size: 0.8rem; color: var(--white-muted); line-height: 1.5; font-weight: 300; }

  /* CONTACT */
  #contact {
    background: var(--black);
    padding-bottom: 60px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 2rem;
  }
  .contact-box {
    background: var(--black2);
    padding: 2.2rem 2rem;
  }
  .contact-box-title {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.8rem;
  }
  .contact-box p { font-size: 0.88rem; color: var(--white-muted); line-height: 1.8; font-weight: 300; }
  .contact-box a { color: var(--white); text-decoration: none; }
  .contact-box a:hover { color: var(--orange); }

  /* FOOTER */
  footer {
    background: var(--black2);
    border-top: 1px solid var(--border);
    padding: 2rem 5%;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }
  .footer-logo span { color: var(--orange); }
  .footer-copy { font-size: 0.75rem; color: var(--white-muted); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    font-size: 0.75rem;
    color: var(--white-muted);
    text-decoration: none;
    letter-spacing: 0.08em;
  }
  .footer-links a:hover { color: var(--orange); }

  /* SUCCESS MSG */
  .success-msg {
    display: none;
    background: rgba(232,107,31,0.12);
    border: 1px solid var(--orange);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: 2px;
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    #about, .reservation-layout, .two-col, .events-layout {
      grid-template-columns: 1fr;
    }
    .contact-grid { grid-template-columns: 1fr; }
    nav { padding: 0 4%; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--black2); padding: 1.5rem 5%; gap: 1.2rem; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    h1 { font-size: 2.6rem; }
  }

  /* ===== ORDERING MODAL ===== */
  .order-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
    overflow-y: auto;
  }
  .order-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 20px; }
  .order-modal {
    background: var(--black2);
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 100%; max-width: 1100px;
    min-height: 80vh;
    display: flex; flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .order-modal-header {
    background: var(--black3);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
  }
  .order-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
  }
  .order-modal-title span { color: var(--orange); }
  .order-badge {
    background: rgba(232,107,31,0.15);
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 1px;
  }
  .order-close {
    background: none; border: none; color: var(--white-muted);
    font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0.2rem 0.5rem;
    transition: color 0.2s;
  }
  .order-close:hover { color: var(--orange); }
  .order-layout {
    display: grid; grid-template-columns: 1fr 340px; flex: 1;
    overflow: hidden; min-height: 0;
  }
  /* Menu panel */
  .order-menu-panel {
    overflow-y: auto; padding: 1.5rem;
    border-right: 1px solid var(--border);
  }
  .order-cats {
    display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 1.5rem;
    position: sticky; top: 0; background: var(--black2); padding: 0.5rem 0;
    z-index: 2;
  }
  .ocat-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.1);
    color: var(--white-muted); font-family: 'Barlow', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; padding: 0.4rem 0.9rem; cursor: pointer;
    border-radius: 2px; transition: all 0.2s;
  }
  .ocat-btn:hover, .ocat-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
  .order-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600;
    padding: 0.4rem 0 0.8rem; margin-bottom: 0.2rem;
    border-bottom: 1px solid var(--border);
    color: var(--orange);
  }
  .order-items-grid {
    display: grid; gap: 1px; background: var(--border);
    border: 1px solid var(--border); margin-bottom: 2rem;
    border-radius: 2px; overflow: hidden;
  }
  .order-item {
    background: var(--black2); padding: 0.9rem 1rem;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; transition: background 0.15s; cursor: pointer;
  }
  .order-item:hover { background: #222; }
  .oi-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.15rem; }
  .oi-desc { font-size: 0.75rem; color: var(--white-muted); line-height: 1.4; font-weight: 300; }
  .oi-right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
  .oi-price { color: var(--orange); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
  .oi-add {
    background: var(--orange); color: var(--white); border: none;
    width: 28px; height: 28px; border-radius: 50%; font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.15s; font-family: inherit;
    line-height: 1;
  }
  .oi-add:hover { background: var(--orange-light); }
  /* Cart panel */
  .order-cart-panel {
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .cart-header {
    padding: 1rem 1.2rem 0.6rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600; color: var(--white-muted);
    display: flex; justify-content: space-between; align-items: center;
  }
  .cart-count {
    background: var(--orange); color: var(--white);
    font-size: 0.68rem; font-weight: 700;
    padding: 0.15rem 0.5rem; border-radius: 10px;
  }
  .cart-empty {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; color: var(--white-muted);
    font-size: 0.85rem; gap: 0.5rem; padding: 2rem;
  }
  .cart-empty-icon { font-size: 2.5rem; opacity: 0.3; }
  .cart-items { flex: 1; overflow-y: auto; padding: 0.5rem 1.2rem; }
  .cart-row {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .cart-row:last-child { border-bottom: none; }
  .cr-name { font-size: 0.85rem; font-weight: 500; flex: 1; line-height: 1.3; }
  .cr-price { font-size: 0.82rem; color: var(--orange); font-weight: 600; white-space: nowrap; }
  .cr-qty {
    display: flex; align-items: center; gap: 0.4rem;
  }
  .qty-btn {
    background: var(--black3); border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); width: 22px; height: 22px; border-radius: 50%;
    cursor: pointer; font-size: 0.85rem; display: flex; align-items: center;
    justify-content: center; font-family: inherit; transition: border-color 0.2s;
    line-height: 1;
  }
  .qty-btn:hover { border-color: var(--orange); color: var(--orange); }
  .qty-num { font-size: 0.82rem; min-width: 14px; text-align: center; }
  .cart-footer {
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--border);
    background: var(--black3);
  }
  .cart-totals { margin-bottom: 1rem; }
  .ct-row {
    display: flex; justify-content: space-between;
    font-size: 0.82rem; color: var(--white-muted);
    padding: 0.2rem 0;
  }
  .ct-row.total {
    font-size: 0.95rem; font-weight: 600; color: var(--white);
    border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.3rem;
  }
  .ct-row.total span:last-child { color: var(--orange); }
  /* Checkout steps */
  .checkout-panel {
    display: none; flex-direction: column;
    overflow-y: auto; padding: 1.5rem;
    grid-column: 1 / -1;
  }
  .checkout-panel.active { display: flex; }
  .checkout-steps {
    display: flex; gap: 0; margin-bottom: 2rem;
    border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
  }
  .cstep {
    flex: 1; padding: 0.7rem; text-align: center;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; color: var(--white-muted);
    border-right: 1px solid var(--border);
    background: var(--black3);
  }
  .cstep:last-child { border-right: none; }
  .cstep.active { background: var(--orange); color: var(--white); font-weight: 600; }
  .cstep.done { background: rgba(232,107,31,0.15); color: var(--orange); }
  .checkout-body { max-width: 600px; }
  .checkout-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; margin-bottom: 1.2rem; font-weight: 600;
  }
  .account-choice {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
  }
  .acc-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px; padding: 1.2rem;
    cursor: pointer; transition: border-color 0.2s;
  }
  .acc-card:hover, .acc-card.selected { border-color: var(--orange); }
  .acc-card.selected { background: rgba(232,107,31,0.07); }
  .acc-card-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
  .acc-card-desc { font-size: 0.78rem; color: var(--white-muted); line-height: 1.5; }
  .order-summary-mini {
    background: var(--black3); border: 1px solid var(--border);
    border-radius: 2px; padding: 1.2rem; margin-bottom: 1.5rem;
  }
  .osm-title { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 0.8rem; }
  .osm-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--white-muted); padding: 0.25rem 0; }
  .osm-row.total { font-weight: 600; color: var(--white); border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.3rem; }
  .osm-row.total span:last-child { color: var(--orange); }
  .pickup-notice {
    background: rgba(232,107,31,0.1); border: 1px solid var(--orange);
    padding: 0.9rem 1.1rem; border-radius: 2px; margin-bottom: 1.5rem;
    font-size: 0.85rem; line-height: 1.6;
  }
  .pickup-notice strong { color: var(--orange); }
  .conf-icon { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
  .conf-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; }
  .conf-title span { color: var(--orange); }
  .conf-sub { font-size: 0.9rem; color: var(--white-muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .conf-details {
    background: var(--black3); border: 1px solid var(--border);
    border-radius: 2px; padding: 1.2rem; margin-bottom: 1.5rem;
  }
  .conf-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .conf-row:last-child { border-bottom: none; }
  .conf-row span:first-child { color: var(--white-muted); }
  .conf-row span:last-child { font-weight: 500; }
  @media (max-width: 750px) {
    .order-layout { grid-template-columns: 1fr; }
    .order-menu-panel { border-right: none; border-bottom: 1px solid var(--border); max-height: 55vh; }
    .order-cart-panel { max-height: 40vh; }
    .account-choice { grid-template-columns: 1fr; }
  }


