/* ============================
   LUMIÈRE CSS — CLEAN REWRITE
   Mobile-first, tested for 375px+
   ============================ */

/* --- Reset & Base --- */
:root {
  --cream: #F7F3EE;
  --dark: #1A1208;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --muted: #8A7D6B;
  --white: #FFF;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,243,238,0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; letter-spacing: 0.12em;
  color: var(--dark); text-decoration: none;
}
.logo span { color: var(--gold); }

/* Nav links — hidden on mobile, dropdown */
nav ul {
  display: none; list-style: none;
  position: absolute; top: 52px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
nav ul.open { display: flex; }
nav ul a {
  display: block; padding: 12px 20px;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; font-weight: 500;
}
nav ul a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 6px; }
.lookup-btn, .cart-btn {
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
}
.lookup-btn {
  background: transparent; border: 1px solid rgba(26,18,8,0.15);
  color: var(--muted); padding: 7px 10px;
}
.cart-btn {
  background: var(--dark); color: var(--cream);
  padding: 7px 12px; position: relative;
}
.cart-count {
  position: absolute; top: -5px; right: -5px;
  background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 700;
  width: 15px; height: 15px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px 4px;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--dark); transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* --- HERO --- */
.hero {
  padding: 68px 16px 36px;
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-left { max-width: 600px; }
.hero-right { display: none; } /* hidden on mobile */
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  background: linear-gradient(135deg, #2A1F0D, #1A1208, #0D0802);
}
.hero-img-placeholder svg { width: 100px; opacity: 0.3; }
.hero-badge {
  position: absolute; bottom: 32px; left: -16px;
  background: var(--gold); color: var(--dark);
  padding: 16px 20px; font-family: 'Playfair Display', serif;
}
.hero-badge strong { display: block; font-size: 24px; }
.hero-badge span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

.hero-tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; line-height: 1.15; margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--dark); color: var(--cream);
  padding: 12px 22px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  display: inline-block; transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold); }
.btn-outline {
  border: 1px solid var(--dark); color: var(--dark);
  padding: 12px 22px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* --- SECTION HEADERS --- */
.section { padding: 36px 16px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 20px; gap: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.see-all {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--gold-light); padding-bottom: 2px;
  white-space: nowrap; flex-shrink: 0;
}
.see-all:hover { color: var(--gold); }

/* --- CATEGORIES --- */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.cat-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.cat-bg-1 { background: linear-gradient(160deg,#2C1810,#0D0802); }
.cat-bg-2 { background: linear-gradient(160deg,#1A2C1A,#080D08); }
.cat-bg-3 { background: linear-gradient(160deg,#1A1A2C,#08080D); }
.cat-bg-4 { background: linear-gradient(160deg,#2C2610,#0D0B02); }
.cat-overlay { position: absolute; inset: 0; background: rgba(201,168,76,0.1); opacity: 0; transition: opacity 0.3s; }
.cat-card:hover .cat-overlay { opacity: 1; }
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(26,18,8,0.9), transparent);
}
.cat-info h3 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 13px; margin-bottom: 2px; }
.cat-info span { color: var(--gold); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }

/* --- PRODUCTS --- */
.products-section { background: var(--white); padding: 36px 16px; }
.filter-bar {
  display: flex; gap: 6px; margin-bottom: 20px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 8px 14px;
  border: 1px solid rgba(26,18,8,0.15); background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; flex-shrink: 0; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark); color: var(--cream); border-color: var(--dark);
}
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prod-card { position: relative; }
.prod-img {
  aspect-ratio: 3/4; background: var(--cream);
  position: relative; overflow: hidden; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.prod-img img { max-width: 100%; height: auto; }
.prod-emoji { font-size: 48px; }

/* Product slider */
.prod-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.prod-slide {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
  opacity: 0; transition: opacity 0.3s;
}
.prod-slide:first-child { opacity: 1; }
.prod-slide.active { opacity: 1; }
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,18,8,0.4); color: #fff;
  border: none; width: 26px; height: 26px;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; opacity: 0.7;
}
.slide-prev { left: 4px; }
.slide-next { right: 4px; }
.slide-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; z-index: 2;
}
.slide-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
}
.slide-dot.active { background: var(--gold); }

.prod-tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--gold); color: var(--dark);
  padding: 3px 8px; font-size: 9px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; z-index: 1;
}
.prod-wish {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; border: none;
  opacity: 0; transition: opacity 0.2s; z-index: 1;
}
.prod-card:hover .prod-wish, .prod-card.touched .prod-wish { opacity: 1; }
.prod-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--dark); color: var(--cream); border: none;
  padding: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; z-index: 1;
  transform: translateY(100%); transition: transform 0.3s;
}
.prod-card:hover .prod-add, .prod-card.touched .prod-add { transform: translateY(0); }
.prod-brand { color: var(--muted); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 3px; }
.prod-name {
  font-family: 'Playfair Display', serif; font-size: 13px;
  line-height: 1.3; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-new { font-size: 13px; font-weight: 500; }
.price-old { font-size: 11px; color: var(--muted); text-decoration: line-through; }

/* --- BANNER --- */
.banner { background: var(--dark); padding: 36px 16px; }
.banner-text { color: var(--cream); }
.banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; line-height: 1.2; margin-bottom: 12px;
}
.banner-text h2 em { color: var(--gold); font-style: italic; }
.banner-text p { color: rgba(247,243,238,0.55); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.stats { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--gold);
}
.stat span { font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,243,238,0.45); }
.banner-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.banner-img {
  aspect-ratio: 1; background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; border: 1px solid rgba(201,168,76,0.1);
}
.banner-img:first-child { grid-column: span 2; aspect-ratio: 2/1; font-size: 36px; }

/* --- CONTACT --- */
.contact-section { padding: 36px 16px; background: var(--cream); }
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; }
.c-icon {
  width: 34px; height: 34px; background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.c-text strong {
  display: block; font-size: 9px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.c-text span { font-size: 13px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 16px; }
.form-row { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 12px;
  border: 1px solid rgba(26,18,8,0.12); background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 90px; resize: none; }
.submit-btn {
  width: 100%; padding: 13px; background: var(--dark); color: var(--cream);
  border: none; font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}
.submit-btn:hover { background: var(--gold); }

/* --- FOOTER --- */
footer {
  background: #0D0802; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.footer-logo { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 16px; letter-spacing: 0.1em; }
.footer-logo span { color: var(--gold); }
footer p { font-size: 11px; color: rgba(247,243,238,0.45); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(247,243,238,0.35); text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

/* --- TOAST --- */
.toast {
  position: fixed; bottom: 12px; left: 12px; right: 12px;
  background: var(--dark); color: var(--cream);
  padding: 10px 14px; font-size: 13px; z-index: 999;
  transform: translateY(120%); transition: transform 0.3s;
  display: flex; gap: 6px; align-items: center; justify-content: center;
}
.toast.show { transform: translateY(0); }
.toast .tick { color: var(--gold); }

/* --- CART --- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(26,18,8,0.5);
  z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 100%; height: 100vh; height: 100dvh;
  background: var(--cream); z-index: 201;
  transform: translateX(100%); transition: transform 0.35s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 14px 16px; border-bottom: 1px solid rgba(26,18,8,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 16px; }
.cart-close {
  background: none; border: none; font-size: 24px;
  cursor: pointer; color: var(--muted); padding: 4px;
}
.cart-body { flex: 1; overflow-y: auto; padding: 14px 16px; -webkit-overflow-scrolling: touch; }
.cart-empty { text-align: center; padding: 48px 16px; color: var(--muted); }
.big-emoji { font-size: 40px; margin-bottom: 10px; }
.cart-item {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid rgba(26,18,8,0.06); align-items: center;
}
.cart-item-emoji {
  width: 44px; height: 44px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; font-size: 24px;
}
.cart-item-emoji img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Playfair Display', serif; font-size: 13px; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 12px; color: var(--muted); }
.cart-item-qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid rgba(26,18,8,0.15); background: transparent;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.qty-num { font-size: 13px; min-width: 18px; text-align: center; }
.cart-item-remove {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 13px; padding: 4px; flex-shrink: 0;
}
.cart-footer {
  border-top: 1px solid rgba(26,18,8,0.1);
  padding: 14px 16px; flex-shrink: 0; background: var(--white);
}
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cart-total-price { font-family: 'Playfair Display', serif; font-size: 18px; }
.checkout-btn {
  width: 100%; padding: 12px; background: var(--dark); color: var(--cream); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}
.checkout-btn:hover { background: var(--gold); }
.checkout-btn:disabled { background: var(--muted); cursor: not-allowed; }
.checkout-view, .result-view { display: none; }
.checkout-view.active, .result-view.active { display: block; }
.cart-view { display: block; }
.cart-view.hidden { display: none; }
.back-btn {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 13px;
  display: flex; align-items: center; gap: 4px; margin-bottom: 14px;
}
.ck-group { margin-bottom: 10px; }
.ck-group label {
  display: block; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.ck-group input, .ck-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid rgba(26,18,8,0.12); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; -webkit-appearance: none; border-radius: 0;
}
.ck-group input:focus, .ck-group textarea:focus { border-color: var(--gold); }
.ck-group textarea { height: 60px; resize: none; }
.ck-row { display: flex; flex-direction: column; gap: 0; }
.ck-summary {
  background: var(--white); padding: 10px; margin-bottom: 14px;
  border: 1px solid rgba(26,18,8,0.06);
}
.ck-summary-item {
  display: flex; justify-content: space-between;
  font-size: 12px; padding: 3px 0; color: var(--muted); gap: 4px;
}
.ck-summary-item span:first-child {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ck-summary-item span:last-child { flex-shrink: 0; }
.ck-summary-item.total {
  color: var(--dark); font-weight: 600;
  border-top: 1px solid rgba(26,18,8,0.1); margin-top: 4px; padding-top: 8px; font-size: 14px;
}
.place-order-btn {
  width: 100%; padding: 12px; background: var(--gold); color: var(--dark); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; cursor: pointer;
}
.place-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.result-view { text-align: center; padding-top: 20px; }
.result-icon { font-size: 44px; margin-bottom: 10px; }
.result-title { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; }
.result-code {
  background: var(--dark); color: var(--gold);
  padding: 8px 16px; display: inline-block;
  font-size: 15px; letter-spacing: 0.1em; margin: 10px 0;
}
.result-note { color: var(--muted); font-size: 12px; line-height: 1.5; margin-bottom: 20px; }

/* Bank card */
.bank-card { background: var(--dark); color: var(--cream); padding: 14px; margin: 14px 0; text-align: left; }
.bank-card-title { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,0.2); }
.bank-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px; flex-wrap: wrap; }
.bank-label { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); min-width: 56px; flex-shrink: 0; }
.bank-value { flex: 1; color: var(--cream); min-width: 0; word-break: break-all; }
.bank-account { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); }
.bank-copy { background: rgba(201,168,76,0.15); border: none; color: var(--gold); padding: 3px 6px; font-size: 12px; cursor: pointer; flex-shrink: 0; }
.bank-note { font-size: 11px; color: var(--muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(201,168,76,0.15); line-height: 1.4; }

/* Lookup modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,18,8,0.5);
  z-index: 300; display: none; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); padding: 20px; width: 100%; max-width: 460px;
  max-height: 85vh; overflow-y: auto; position: relative;
}
.modal-box-close { position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); }
.modal-box h3 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 14px; }
.lookup-form { display: flex; gap: 6px; margin-bottom: 12px; }
.lookup-form input {
  flex: 1; padding: 10px 12px;
  border: 1px solid rgba(26,18,8,0.12); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; min-width: 0; -webkit-appearance: none; border-radius: 0;
}
.lookup-form input:focus { border-color: var(--gold); }
.lookup-form button {
  padding: 10px 14px; background: var(--dark); color: var(--cream); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; flex-shrink: 0;
}
.lookup-error { color: #D64545; font-size: 13px; padding: 4px 0; display: none; }
.lookup-error.show { display: block; }
.lookup-result { display: none; }
.lookup-result.show { display: block; }
.order-detail-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(26,18,8,0.05); font-size: 13px; gap: 8px; }
.order-detail-label { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.order-status-badge { display: inline-block; padding: 2px 8px; font-size: 11px; font-weight: 600; }
.order-items-list { margin-top: 10px; }
.order-items-list h4 { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.oi-row { display: flex; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid rgba(26,18,8,0.04); font-size: 12px; }
.oi-emoji { font-size: 16px; flex-shrink: 0; }
.oi-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.oi-qty { color: var(--muted); flex-shrink: 0; }


/* ===========================================
   TABLET — min-width: 600px
   =========================================== */
@media (min-width: 600px) {
  nav { height: 58px; padding: 0 20px; }
  nav ul { top: 58px; }
  .hero { padding: 74px 24px 48px; }
  .hero h1 { font-size: 36px; }
  .section, .products-section { padding: 48px 24px; }
  .banner { padding: 48px 24px; }
  .contact-section { padding: 48px 24px; }
  .cat-grid { gap: 12px; }
  .prod-grid { gap: 14px; }
  .prod-name { font-size: 14px; }
  .form-row { flex-direction: row; gap: 12px; }
  .form-row > .form-group { flex: 1; }
  .ck-row { flex-direction: row; gap: 10px; }
  .ck-row > .ck-group { flex: 1; }
  .cart-drawer { width: 400px; }
  .toast { left: auto; right: 16px; max-width: 320px; }
  footer { flex-direction: row; justify-content: space-between; padding: 20px 24px; text-align: left; }
}

/* ===========================================
   DESKTOP — min-width: 960px
   =========================================== */
@media (min-width: 960px) {
  nav { height: 66px; padding: 0 40px; }
  nav ul {
    display: flex !important; position: static; flex-direction: row;
    gap: 24px; padding: 0; border: none; box-shadow: none; background: transparent;
  }
  nav ul a { padding: 0; display: inline; font-size: 13px; }
  nav ul a:hover { background: transparent; }
  .hamburger { display: none; }
  .logo { font-size: 22px; }
  .hero { display: grid; grid-template-columns: 1fr 1fr; padding-top: 66px; min-height: 100vh; }
  .hero-left { padding: 80px 48px; }
  .hero h1 { font-size: clamp(36px, 4.5vw, 56px); }
  .hero-right { display: flex !important; position: relative; background: var(--dark); overflow: hidden; }
  .section, .products-section { padding: 64px 40px; }
  .section-title { font-size: 32px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cat-img { font-size: 56px; }
  .cat-info { padding: 14px 16px; }
  .cat-info h3 { font-size: 15px; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .prod-name { font-size: 15px; }
  .prod-brand { font-size: 11px; }
  .prod-emoji { font-size: 72px; }
  .slide-prev, .slide-next { opacity: 0; transition: opacity 0.2s; }
  .prod-card:hover .slide-prev, .prod-card:hover .slide-next { opacity: 0.8; }
  .banner { padding: 64px 40px; display: flex; flex-direction: row; gap: 40px; align-items: center; }
  .banner-visual { margin-top: 0; flex-shrink: 0; width: 280px; }
  .banner-text h2 { font-size: clamp(22px, 3vw, 36px); }
  .stats { gap: 32px; }
  .stat strong { font-size: 34px; }
  .contact-section { display: flex; flex-direction: row; gap: 48px; padding: 64px 40px; }
  .contact-section > * { flex: 1; }
  .cart-drawer { width: 440px; }
  footer { padding: 28px 40px; }
}

/* ===========================================
   LARGE — min-width: 1200px
   =========================================== */
@media (min-width: 1200px) {
  nav { padding: 0 56px; height: 72px; }
  .hero-left { padding: 96px 56px 96px 80px; }
  .section, .products-section { padding: 72px 56px; }
  .section-title { font-size: 38px; }
  .cat-grid { gap: 20px; }
  .prod-grid { gap: 24px; }
  .banner { padding: 72px 56px; gap: 56px; }
  .contact-section { padding: 72px 56px; gap: 64px; }
  footer { padding: 32px 56px; }
}