/* Add your extracted CSS here */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #B67513;
  --gold-light: rgba(182,117,19,0.15);
  --gold-border: rgba(182,117,19,0.45);
  --dark: #0a0806;
  --cream: #f5efe6;
  --overlay-dark: rgba(10,8,6,0.55);
  --overlay-card: rgba(255,255,255,0.12);
  --overlay-card-hover: rgba(255,255,255,0.2);
  --glass: rgba(255,255,255,0.08);
  --radius: 14px;
  --radius-sm: 8px;
}

body {
  background: #0a0806;
  min-height: 100vh;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  padding: 0;
}

/* ── App Layout Container ── */
.app-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #0a0806;
}

/* ── Screen system ── */
.screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.screen.active { display: flex; opacity: 1; pointer-events: all; }

/* ── Status bar ── */
.status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 100;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.status-icons { display: flex; gap: 6px; align-items: center; font-size: 11px; }

/* ── Bottom nav ── */
.bottom-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(10,8,6,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(182,117,19,0.2);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px 8px;
  z-index: 100;
}
.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-btn.active { color: var(--gold); }
.nav-btn svg { width: 20px; height: 20px; }
.nav-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-btn.active .nav-dot { opacity: 1; }
.nav-btn-wrap { position: relative; display: inline-flex; flex-direction: column; align-items: center; }

/* ── BG image ── */
.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Cart badge ── */
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.visible { display: flex; }

/* ========================
   SCREEN 1 — HOME
======================== */
#screen-home .bg-img { filter: brightness(0.75); }

.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.3) 0%,
    rgba(10,8,6,0.0) 30%,
    rgba(10,8,6,0.0) 55%,
    rgba(10,8,6,0.85) 100%
  );
}

.home-logo {
  position: absolute;
  top: 56px;
  left: 24px;
  right: 24px;
  z-index: 10;
}
.home-logo h1 {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 36px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-logo p {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.home-enter-btn {
  position: absolute;
  bottom: 140px;
  left: 24px;
  right: 24px;
  z-index: 10;
}
.home-headline {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 42px;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.home-headline span { color: var(--gold); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 16px;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(182,117,19,0.4);
}
.btn-primary:hover { background: #c8851a; transform: translateY(-2px); }

/* ========================
   SCREEN 2 — LOGIN
======================== */
#screen-login .bg-img { filter: brightness(0.5); }

.login-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0.3) 0%, rgba(10,8,6,0.7) 100%);
}

.login-content {
  position: absolute;
  top: 60px;
  left: 24px;
  right: 24px;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-title {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 40px;
  color: white;
  text-align: center;
  margin-bottom: 8px;
}
.login-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.input-group { margin-bottom: 16px; }
.input-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.input-field {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(182,117,19,0.3);
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(10px);
}
.input-field::placeholder { color: rgba(255,255,255,0.3); }
.input-field:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 18px;
  color: white;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 8px;
  margin-bottom: 28px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(182,117,19,0.35);
}
.btn-login:hover { background: #c8851a; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.divider span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.social-btn:hover { background: rgba(255,255,255,0.14); }
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ========================
   SCREEN 3 — MENU
======================== */
#screen-menu .bg-img { filter: brightness(0.55); }

.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.2) 30%, rgba(10,8,6,0.5) 100%);
}

.menu-header {
  position: absolute;
  top: 52px;
  left: 0; right: 0;
  z-index: 10;
  padding: 16px 24px 20px;
  background: linear-gradient(to bottom, rgba(10,8,6,0.7), transparent);
}
.menu-header h2 {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 28px;
  color: white;
}
.menu-header p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.search-bar {
  position: absolute;
  top: 140px;
  left: 20px; right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(182,117,19,0.3);
  border-radius: 50px;
  padding: 10px 18px;
  backdrop-filter: blur(12px);
}
.search-bar svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.4); }

.menu-list {
  position: absolute;
  top: 200px;
  left: 16px; right: 16px;
  bottom: 80px;
  z-index: 10;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-list::-webkit-scrollbar { display: none; }

.menu-item {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(12px);
  height: 72px;
}
.menu-item:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(182,117,19,0.4);
  transform: translateX(2px);
}
.menu-item-info {
  flex: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-item-name {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 16px;
  color: white;
  letter-spacing: 0.5px;
}
.menu-item-price {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
}
.menu-item-img {
  width: 90px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}

/* ========================
   SCREEN 4 — PRODUCT
======================== */
#screen-product .bg-img {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  object-position: center top;
}

.product-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(10,8,6,0.3) 0%, transparent 40%, rgba(10,8,6,0.6) 100%);
}

.product-back {
  position: absolute;
  top: 52px;
  left: 20px;
  z-index: 20;
  width: 36px; height: 36px;
  background: rgba(10,8,6,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: white;
}

.product-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  background: #0f0c09;
  border-radius: 28px 28px 0 0;
  padding: 24px 24px 90px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  border-top: 1px solid rgba(182,117,19,0.2);
  overflow-y: auto;
}

.product-name {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 30px;
  color: white;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.product-pricing {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.price-pill {
  padding: 8px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.price-pill.selected,
.price-pill:hover {
  background: var(--gold);
  color: white;
}
.btn-cart {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 17px;
  color: white;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(182,117,19,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-cart:hover { background: #c8851a; transform: translateY(-1px); }

/* ========================
   SCREEN 5 — CHECKOUT
======================== */
#screen-checkout .bg-img {
  height: 50%;
  object-position: center;
  filter: brightness(0.5);
}

.checkout-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56%;
  background: #0f0c09;
  border-radius: 28px 28px 0 0;
  padding: 28px 24px 90px;
  z-index: 10;
  border-top: 1px solid rgba(182,117,19,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-title {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}
.pay-btn {
  margin-top: auto;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 17px;
  color: white;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(182,117,19,0.35);
}
.pay-btn:hover { background: #c8851a; }

/* ========================
   SCREEN 6 — ORDER COMPLETE
======================== */
#screen-complete {
  background: #0a0806;
  align-items: center;
  justify-content: center;
}
.complete-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  z-index: 10;
}
.complete-icon {
  width: 90px; height: 90px;
  background: rgba(182,117,19,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182,117,19,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(182,117,19,0); }
}
.complete-icon svg { width: 40px; height: 40px; color: var(--gold); }
.complete-title {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 32px;
  color: white;
}
.complete-sub {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.complete-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(182,117,19,0.08) 0%, transparent 70%);
}
.btn-back-home {
  margin-top: 16px;
  padding: 14px 40px;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 16px;
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(182,117,19,0.35);
}

/* ========================
   SCREEN 7 — CART
======================== */
#screen-cart {
  background: #0a0806;
  flex-direction: column;
}
.cart-header {
  padding: 56px 24px 20px;
  border-bottom: 1px solid rgba(182,117,19,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 28px;
  color: white;
}
.cart-header span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color 0.2s;
}
.cart-header span:hover { color: #e05555; }

.cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-list::-webkit-scrollbar { display: none; }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.25);
  padding-bottom: 80px;
}
.cart-empty svg { width: 52px; height: 52px; opacity: 0.3; }
.cart-empty p {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Jacques Francois Shadow', cursive;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px;
  position: relative;
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 15px;
  color: white;
  margin-bottom: 3px;
}
.cart-item-size {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(182,117,19,0.4);
  background: rgba(182,117,19,0.1);
  color: var(--gold);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
  font-family: monospace;
}
.qty-btn:hover { background: var(--gold); color: white; }
.qty-num {
  font-size: 15px;
  color: white;
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}
.cart-item-price {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  align-self: flex-start;
  padding-top: 2px;
}
.cart-remove {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
  border-radius: 50%;
}
.cart-remove:hover { color: #e05555; }
.cart-remove svg { width: 14px; height: 14px; }

.cart-summary {
  padding: 16px 20px;
  border-top: 1px solid rgba(182,117,19,0.15);
  flex-shrink: 0;
  margin-bottom: 72px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.summary-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summary-value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.summary-total .summary-label {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 16px;
  color: white;
  text-transform: none;
  letter-spacing: 0;
}
.summary-total .summary-value {
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 20px;
  color: var(--gold);
}
.divider-thin {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 10px 0;
}
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jacques Francois Shadow', cursive;
  font-size: 17px;
  color: white;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 14px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(182,117,19,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-checkout:hover { background: #c8851a; transform: translateY(-1px); }

/* ========================================================
   ACCESSIBILITY & UTILITIES
   ======================================================== */
.status-bar {
  display: none !important; /* Hide mock status bars on all viewports */
}

/* Accessibility focus states */
input:focus, button:focus, [role="button"]:focus, a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

[role="button"] {
  cursor: pointer;
}

/* Premium Scrollbar custom styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(182, 117, 19, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(182, 117, 19, 0.5);
}

/* ========================================================
   DESKTOP NAVIGATION HEADER
   ======================================================== */
.desktop-header {
  display: none;
}

@media (min-width: 768px) {
  .desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    background: rgba(10, 8, 6, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(182, 117, 19, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
  }
  
  .header-logo {
    cursor: pointer;
  }
  
  .header-logo h1 {
    font-family: 'Jacques Francois Shadow', cursive;
    font-size: 28px;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
  }
  
  .desktop-nav {
    display: flex;
    gap: 32px;
  }
  
  .desktop-nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
  }
  
  .desktop-nav-link:hover,
  .desktop-nav-link.active {
    color: var(--gold);
  }
  
  .desktop-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
  }
  
  .desktop-cart-icon-wrap {
    position: relative;
    cursor: pointer;
    color: white;
    padding: 8px;
    transition: color 0.3s;
  }
  
  .desktop-cart-icon-wrap:hover {
    color: var(--gold);
  }
  
  .desktop-cart-icon-wrap svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  
  .desktop-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .desktop-cart-badge.visible {
    display: flex;
  }

  .bottom-nav {
    display: none !important; /* Hide mobile bottom nav */
  }
}

/* ========================================================
   RESPONSIVE SCREEN LAYOUTS (TABLET & DESKTOP)
   ======================================================== */
@media (min-width: 768px) {
  /* Base override for all screens on large devices */
  .screen {
    position: static;
    width: 100%;
    min-height: calc(100vh - 80px);
    overflow: visible;
    opacity: 1;
    pointer-events: all;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    box-sizing: border-box;
  }

  /* ── SCREEN 1: HOME ── */
  #screen-home {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
  
  #screen-home.active {
    display: flex;
  }
  
  #screen-home .bg-img {
    position: relative;
    width: 50%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(182, 117, 19, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    order: 2;
  }
  
  .home-overlay {
    display: none;
  }
  
  .home-logo {
    display: none;
  }
  
  .home-enter-btn {
    position: static;
    width: 45%;
    z-index: 10;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  
  .home-headline {
    font-size: 56px;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.2;
  }

  /* ── SCREEN 2: LOGIN ── */
  #screen-login {
    display: none;
    align-items: center;
    justify-content: center;
  }
  #screen-login.active {
    display: flex;
  }
  
  #screen-login .bg-img {
    display: none !important;
  }
  
  .login-overlay {
    display: none;
  }
  
  .login-content {
    position: static;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 117, 19, 0.2);
    border-radius: var(--radius);
    padding: 48px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }
  
  .login-title {
    font-size: 36px;
    margin-bottom: 4px;
  }
  
  .login-subtitle {
    margin-bottom: 36px;
  }

  /* ── SCREEN 3: MENU ── */
  #screen-menu {
    display: none;
    flex-direction: column;
    gap: 40px;
  }
  #screen-menu.active {
    display: flex;
  }
  
  #screen-menu .bg-img,
  .menu-overlay {
    display: none !important;
  }
  
  .menu-header {
    position: static;
    padding: 0;
    background: none;
    text-align: center;
  }
  
  .menu-header h2 {
    font-size: 44px;
    margin-bottom: 8px;
  }
  
  .menu-header p {
    font-size: 14px;
    letter-spacing: 3px;
  }
  
  .search-bar {
    position: static;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
  }
  
  .menu-list {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    overflow-y: visible;
    margin-top: 16px;
    width: 100%;
  }
  
  .menu-item {
    flex-direction: column;
    height: auto;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background-color 0.3s;
  }
  
  .menu-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  .menu-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .menu-item-info {
    padding: 24px;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  
  .menu-item-name {
    font-size: 20px;
  }
  
  .menu-item-price {
    font-size: 15px;
  }

  /* ── SCREEN 4: PRODUCT DETAIL ── */
  #screen-product {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  #screen-product.active {
    display: flex;
  }
  
  #screen-product .bg-img {
    position: relative;
    width: 48%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(182, 117, 19, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }
  
  .product-overlay {
    display: none;
  }
  
  .product-back {
    position: absolute;
    top: 104px;
    left: 40px;
  }
  
  .product-sheet {
    position: static;
    width: 48%;
    height: auto;
    background: none;
    border-top: none;
    padding: 0;
    overflow-y: visible;
  }
  
  .product-name {
    font-size: 44px;
    margin-bottom: 16px;
  }
  
  .product-desc {
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.8;
  }
  
  .product-pricing {
    margin-bottom: 36px;
  }
  
  .price-pill {
    padding: 10px 24px;
    font-size: 15px;
  }
  
  .btn-cart {
    padding: 18px;
    font-size: 18px;
  }

  /* ── SCREEN 7: CART ── */
  #screen-cart {
    display: none;
    grid-template-areas: 
      "header header"
      "list summary";
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-content: start;
  }
  #screen-cart.active {
    display: grid;
  }
  
  .cart-header {
    grid-area: header;
    padding: 0 0 20px 0;
    margin-bottom: 0;
  }
  
  .cart-list {
    grid-area: list;
    position: static;
    overflow-y: visible;
    padding: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  
  .cart-summary {
    grid-area: summary;
    position: sticky;
    top: 120px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 117, 19, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 0;
  }

  /* ── SCREEN 5: CHECKOUT ── */
  #screen-checkout {
    display: none;
    align-items: center;
    justify-content: center;
  }
  #screen-checkout.active {
    display: flex;
  }
  
  #screen-checkout .bg-img,
  #screen-checkout div[style*="background"] {
    display: none !important;
  }
  
  .checkout-sheet {
    position: static;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 117, 19, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    border-top: 1px solid rgba(182, 117, 19, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    height: auto;
  }
  
  .checkout-title {
    font-size: 30px;
    margin-bottom: 8px;
  }

  /* ── SCREEN 6: ORDER COMPLETE ── */
  #screen-complete {
    display: none;
    align-items: center;
    justify-content: center;
  }
  #screen-complete.active {
    display: flex;
  }
  
  .complete-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 117, 19, 0.2);
    border-radius: var(--radius);
    padding: 60px 48px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  }
}

