/* ─── CRITICAL FIX ─────────────────────────────────────────────────────────── */
[hidden] { display: none !important; }

/* ─── RESET ──────────────────────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }
img   { display: block; max-width: 100%; }

/* ─── VARIABLES ──────────────────────────────────────────────────────────────*/
:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface-2: #181818;
  --border:    #1E1E1E;
  --border-2:  #282828;
  --red:       #C41E1E;
  --red-h:     #E02424;
  --red-dim:   rgba(196, 30, 30, 0.12);
  --red-glow:  rgba(196, 30, 30, 0.38);
  --red-light: #E53535;  /* lighter red for WA button */
  --white:     #FFFFFF;
  --text:      #F0F0F0;
  --text-2:    #AAAAAA;
  --text-3:    #555555;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-arabic:  'Cairo', sans-serif;

  --header-h:   64px;
  --strip-h:    34px;
  --nav-h:      52px;
  --top-offset: calc(var(--header-h) + var(--strip-h) + var(--nav-h));

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 2px 16px rgba(0,0,0,0.45);
  --tr:        0.2s ease;
}

/* ─── HEADER ─────────────────────────────────────────────────────────────────*/
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-cleaver { height: 36px; width: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--red); font-style: italic; }
.logo-tagline { font-family: var(--font-display); font-size: 0.6rem; color: var(--text-2); letter-spacing: 0.18em; margin-top: 2px; }

.cart-btn {
  position: relative; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-2);
  transition: background var(--tr), border-color var(--tr);
}
.cart-btn:hover { background: var(--surface-2); border-color: var(--red); }
.cart-btn:active { transform: scale(0.94); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid var(--bg);
  animation: badge-pop 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes badge-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ─── INFO STRIP ─────────────────────────────────────────────────────────────*/
.info-strip {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  height: var(--strip-h);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,.92);
}
.strip-dot { opacity: 0.6; }
.strip-link { color: white; font-weight: 700; }
.strip-link:hover { text-decoration: underline; }

/* ─── CATEGORY NAV ───────────────────────────────────────────────────────────*/
.cat-nav {
  position: sticky; top: calc(var(--header-h) + var(--strip-h)); z-index: 98;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px; overflow-x: auto; overflow-y: hidden;
  background: var(--bg); border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0; padding: 7px 18px;
  border-radius: 999px; border: 1px solid var(--border-2);
  font-size: 0.82rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap; transition: all var(--tr);
}
.cat-tab:hover { border-color: var(--red); color: var(--text); }
.cat-tab.active { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 0 18px var(--red-glow); }

/* ─── MENU MAIN ──────────────────────────────────────────────────────────────*/
.menu-main { margin-top: var(--top-offset); min-height: calc(100vh - var(--top-offset)); padding: 0 0 80px; }

/* ─── CATEGORY SECTION HEADER ────────────────────────────────────────────────*/
.cat-section-header { display: flex; align-items: baseline; gap: 12px; padding: 28px 18px 14px; }
.cat-section-title  { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.06em; color: var(--red); text-transform: uppercase; }
.cat-section-arabic { font-family: var(--font-arabic); font-size: 1rem; color: var(--text-3); font-weight: 600; }

/* ─── MENU GRID ──────────────────────────────────────────────────────────────*/
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 12px 8px; }

/* ─── MENU CARD ──────────────────────────────────────────────────────────────*/
.menu-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.menu-card:hover { transform: translateY(-2px); box-shadow: var(--shadow), 0 0 0 1px var(--red-dim); border-color: #2A2A2A; }

/* Out-of-stock card */
.menu-card.oos { opacity: 0.6; }
.menu-card.oos:hover { transform: none; }

/* Card image */
.card-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:not(.oos):hover .card-img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #140808 0%, #1E0C0C 50%, #140808 100%);
}
.oos-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
}
.oos-overlay span { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em; color: rgba(255,255,255,.7); }
.card-qty-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  animation: badge-pop 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

/* Card body */
.card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 11px 12px 12px; gap: 8px; }
.card-names { flex: 1; }
.card-name { font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.card-name-ar { font-family: var(--font-arabic); font-size: 0.78rem; font-weight: 500; color: var(--text-3); margin-top: 3px; direction: rtl; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.card-price { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.03em; color: var(--white); white-space: nowrap; }

/* Add button */
.add-btn {
  flex-shrink: 0; width: 34px; height: 34px;
  border-radius: 50%; background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), transform 0.12s;
}
.add-btn:hover { background: var(--red-h); }
.add-btn:active { transform: scale(0.88); }
.add-btn.added { animation: add-pulse 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes add-pulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 var(--red-glow); }
  50%  { transform: scale(1.22); box-shadow: 0 0 0 8px transparent; }
  100% { transform: scale(1); }
}

/* Description button */
.desc-btn {
  flex-shrink: 0; padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--red); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--tr), color var(--tr);
}
.desc-btn:hover { background: var(--red); color: white; }
.desc-btn.added { background: var(--red); color: white; }

/* Out of stock label */
.oos-label { font-size: 0.72rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.05em; white-space: nowrap; }

/* ─── SKELETON ───────────────────────────────────────────────────────────────*/
.skeleton-wrap { padding: 12px; }
.skeleton-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.skel-card {
  height: 220px; border-radius: var(--radius);
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite ease-in-out;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── EMPTY STATE ────────────────────────────────────────────────────────────*/
.empty-state { padding: 64px 24px; text-align: center; color: var(--text-2); }
.empty-state p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.empty-call { display: inline-block; padding: 12px 24px; background: var(--red); color: white; border-radius: 999px; font-weight: 600; font-size: 0.9rem; }

/* ─── CART OVERLAY ───────────────────────────────────────────────────────────*/
.cart-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.72); opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

/* ─── CART DRAWER ────────────────────────────────────────────────────────────*/
.cart-drawer {
  position: fixed; top: 0; right: -420px; z-index: 200;
  width: 400px; max-width: 100vw; height: 100dvh;
  background: #0E0E0E; border-left: 1px solid var(--border-2);
  display: flex; flex-direction: column;
  transition: right 0.36s cubic-bezier(0.32,0.72,0,1);
}
.cart-drawer.open { right: 0; }
.cart-drawer::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--red); box-shadow:0 0 20px var(--red-glow); }

.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-head-right { display: flex; align-items: center; gap: 10px; }
.clear-cart-btn {
  font-size: 0.76rem; font-weight: 600; color: var(--text-3);
  padding: 5px 10px; border: 1px solid var(--border-2); border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.clear-cart-btn:hover { color: var(--red); border-color: var(--red); background: var(--red-dim); }
.cart-title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; }
.cart-close { width:36px; height:36px; border-radius:50%; background:var(--surface-2); color:var(--text-2); display:flex; align-items:center; justify-content:center; transition: background var(--tr); }
.cart-close:hover { background: var(--border-2); }

.cart-body { flex:1; overflow-y:auto; padding:12px 16px; scrollbar-width:thin; scrollbar-color:var(--border-2) transparent; }

.cart-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; padding:60px 0; text-align:center; }
.cart-empty p { font-size:1rem; color:var(--text-2); }
.cart-empty span { font-size:0.82rem; color:var(--text-3); }

.cart-list { display:flex; flex-direction:column; gap:2px; }
.cart-item { display:flex; align-items:flex-start; gap:10px; padding:12px 0; border-bottom:1px solid var(--border); }
.cart-item:last-child { border-bottom:none; }
.ci-info { flex:1; min-width:0; }
.ci-name { font-size:0.88rem; font-weight:600; color:var(--text); }
.ci-name-ar { font-family:var(--font-arabic); font-size:0.75rem; color:var(--text-3); direction:rtl; }
.ci-note { font-size:0.75rem; color:var(--text-2); margin-top:3px; font-style:italic; line-height:1.4; }
.ci-controls { display:flex; align-items:center; gap:8px; flex-shrink:0; margin-top:2px; }
.qty-btn { width:28px; height:28px; border-radius:50%; background:var(--surface-2); border:1px solid var(--border-2); color:var(--text); font-size:1rem; display:flex; align-items:center; justify-content:center; transition:background var(--tr); line-height:1; }
.qty-btn:hover { background:var(--border-2); border-color:var(--red); }
.qty-num { font-size:0.9rem; font-weight:700; min-width:18px; text-align:center; }
.ci-right { display:flex; flex-direction:column; align-items:flex-end; gap:6px; flex-shrink:0; }
.ci-price { font-family:var(--font-display); font-size:0.95rem; letter-spacing:0.03em; white-space:nowrap; }
.ci-remove { width:24px; height:24px; border-radius:50%; color:var(--text-3); display:flex; align-items:center; justify-content:center; transition:background var(--tr), color var(--tr); }
.ci-remove:hover { background:rgba(196,30,30,.15); color:var(--red); }

/* Cart footer */
.cart-foot { padding:16px 20px 24px; border-top:1px solid var(--border); flex-shrink:0; }
.cart-total-row { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:14px; }
.total-label { font-size:0.9rem; color:var(--text-2); font-weight:500; }
.total-price-wrap { text-align:right; }
.total-price { font-family:var(--font-display); font-size:1.4rem; letter-spacing:0.04em; display:block; }
.total-usd { font-size:0.78rem; color:var(--text-2); display:block; margin-top:1px; }

.wa-btn {
  width:100%; display:flex; align-items:center; justify-content:center; gap:10px;
  padding:16px; background:var(--red-light); color:white;
  font-size:0.95rem; font-weight:700; border-radius:var(--radius);
  transition:background var(--tr), transform 0.12s;
  letter-spacing:0.02em;
}
.wa-btn:hover { background:var(--red-h); }
.wa-btn:active { transform:scale(0.98); }

/* ─── DESCRIPTION MODAL ──────────────────────────────────────────────────────*/
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(3px);
}
.bottom-sheet {
  width: 100%; max-width: 540px;
  max-height: 88dvh;
  background: #0E0E0E;
  border: 1px solid var(--border-2);
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column;
  animation: sheet-up 0.3s cubic-bezier(0.32,0.72,0,1);
  overflow: hidden;
}
.bottom-sheet::before { content:''; display:block; width:36px; height:4px; background:var(--border-2); border-radius:99px; margin:10px auto 0; flex-shrink:0; }
@keyframes sheet-up { from { transform: translateY(40px); opacity:0; } to { transform: translateY(0); opacity:1; } }

.sheet-head-names { display: flex; flex-direction: column; gap: 2px; }
.sheet-head { display:flex; align-items:center; justify-content:space-between; padding:14px 20px 12px; border-bottom:1px solid var(--border); flex-shrink:0; }
.sheet-head h3 { font-size:1.05rem; font-weight:700; }
.sheet-head-name { display:flex; flex-direction:column; }
.sheet-title-en { font-size:1.05rem; font-weight:700; color:var(--text); }
.sheet-title-ar { font-family:var(--font-arabic); font-size:0.85rem; color:var(--text-3); direction:rtl; margin-top:2px; }
.sheet-close { width:32px; height:32px; border-radius:50%; background:var(--surface-2); color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:background var(--tr); flex-shrink:0; }
.sheet-close:hover { background:var(--border-2); }

.sheet-body { flex:1; overflow-y:auto; padding:18px 20px; }
.sheet-desc-text { font-size:0.9rem; color:var(--text-2); line-height:1.65; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); padding:14px 16px; margin-bottom:16px; }
.sheet-note-label { font-size:0.78rem; font-weight:600; color:var(--text-2); letter-spacing:0.04em; margin-bottom:8px; display:block; }
.sheet-textarea {
  width:100%; background:var(--surface); border:1px solid var(--border-2);
  border-radius:var(--radius-sm); color:var(--text); font-size:0.88rem;
  padding:12px 14px; resize:none; min-height:88px; font-family:var(--font-body);
  transition:border-color var(--tr), box-shadow var(--tr);
  outline:none;
}
.sheet-textarea::placeholder { color:var(--text-3); }
.sheet-textarea:focus { border-color:var(--red); box-shadow:0 0 0 3px var(--red-dim); }

.sheet-foot { display:flex; gap:10px; padding:14px 20px 20px; border-top:1px solid var(--border); flex-shrink:0; }
.ghost-btn { display:inline-flex; align-items:center; justify-content:center; padding:12px 20px; background:transparent; color:var(--text-2); font-size:0.88rem; font-weight:500; border:1px solid var(--border-2); border-radius:var(--radius-sm); transition:background var(--tr); }
.ghost-btn:hover { background:var(--surface-2); color:var(--text); }
.primary-btn { display:inline-flex; align-items:center; justify-content:center; gap:6px; padding:12px 20px; background:var(--red); color:white; font-size:0.88rem; font-weight:600; border-radius:var(--radius-sm); transition:background var(--tr), transform 0.12s; }
.primary-btn:hover { background:var(--red-h); }
.primary-btn:active { transform:scale(0.97); }

/* ─── CHECKOUT MODAL ─────────────────────────────────────────────────────────*/
.checkout-sheet { /* inherits bottom-sheet */ }
.co-form { display:flex; flex-direction:column; gap:14px; }
.co-field { display:flex; flex-direction:column; gap:6px; }
.co-label { font-size:0.78rem; font-weight:600; color:var(--text-2); letter-spacing:0.04em; }
.co-input {
  width:100%; padding:13px 16px;
  background:var(--surface); border:1px solid var(--border-2);
  border-radius:var(--radius-sm); color:var(--text); font-size:0.9rem;
  outline:none; transition:border-color var(--tr), box-shadow var(--tr);
  font-family:var(--font-body);
}
.co-input::placeholder { color:var(--text-3); }
.co-input:focus { border-color:var(--red); box-shadow:0 0 0 3px var(--red-dim); }

.order-type-group { display:flex; gap:8px; flex-wrap:wrap; }
.order-type-opt { display:none; }
.order-type-label {
  flex:1; min-width:80px;
  display:flex; align-items:center; justify-content:center;
  padding:11px 10px; border:1px solid var(--border-2);
  border-radius:var(--radius-sm);
  font-size:0.82rem; font-weight:600; color:var(--text-2);
  cursor:pointer; transition:all var(--tr); text-align:center;
  user-select:none;
}
.order-type-opt:checked + .order-type-label { border-color:var(--red); background:var(--red-dim); color:var(--white); box-shadow:0 0 0 1px var(--red); }
.order-type-label:hover { border-color:var(--red); color:var(--text); }

.co-total { display:flex; justify-content:space-between; align-items:flex-end; padding:14px 0 4px; border-top:1px solid var(--border); margin-top:4px; }
.co-total-label { font-size:0.85rem; color:var(--text-2); }
.co-total-amounts { text-align:right; }
.co-lbp { font-family:var(--font-display); font-size:1.3rem; display:block; }
.co-usd-el { font-size:0.78rem; color:var(--text-2); display:block; }
.co-error { font-size:0.82rem; color:#ef4444; margin-top:6px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────*/
.footer { text-align:center; padding:40px 24px 32px; border-top:1px solid var(--border); color:var(--text-3); font-size:0.82rem; line-height:2; }
.footer-logo { display:flex; align-items:baseline; justify-content:center; gap:8px; margin-bottom:8px; }
.footer-name { font-family:'Cairo',sans-serif; font-style:italic; font-size:1.4rem; font-weight:700; color:var(--red); }
.footer-sub  { font-family:var(--font-display); font-size:0.7rem; letter-spacing:0.2em; color:var(--text-3); }
.footer-copy { margin-top:8px; font-size:0.75rem; opacity:0.5; }
.footer-dev  { font-size:0.72rem; color:var(--text-3); margin-top:4px; }
.footer-dev a { color:var(--text-2); transition:color var(--tr); }
.footer-dev a:hover { color:var(--red); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media (max-width: 480px) {
  :root { --header-h:58px; --strip-h:30px; --nav-h:48px; }
  .logo-name { font-size:1.1rem; }
  .logo-cleaver { height:30px; }
  .cart-drawer {
    width:100%; right:auto !important; top:auto; bottom:-100%;
    height:88dvh; border-left:none; border-top:1px solid var(--border-2);
    border-radius:20px 20px 0 0;
    transition:bottom 0.36s cubic-bezier(0.32,0.72,0,1);
  }
  .cart-drawer::before { border-radius:20px 20px 0 0; }
  .cart-drawer.open { bottom:0; right:auto !important; }
  .cart-foot { padding-bottom:max(24px, env(safe-area-inset-bottom)); }
  .sheet-foot { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
}
@media (min-width: 640px) {
  .menu-grid { grid-template-columns:repeat(3,1fr); gap:14px; padding:0 16px 12px; }
  .cat-section-header { padding:32px 20px 16px; }
  .bottom-sheet { border-radius:18px; max-height:90vh; }
  .bottom-sheet::before { display:none; }
  .modal-overlay { align-items:center; padding:24px; }
}
@media (min-width: 1024px) {
  .menu-main { max-width:1100px; margin-left:auto; margin-right:auto; }
  .menu-grid { grid-template-columns:repeat(4,1fr); gap:16px; }
}

/* ─── INGREDIENT MODAL ───────────────────────────────────────────────────────*/
.ing-section-label { font-size:0.8rem; font-weight:600; color:var(--text-2); letter-spacing:0.04em; margin-bottom:12px; display:block; }
.ing-list { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.ing-row {
  display:flex; align-items:center; gap:12px;
  padding:12px 14px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-sm); cursor:pointer;
  transition:border-color var(--tr), background var(--tr);
  user-select:none;
}
.ing-row:hover { border-color:var(--border-2); }
.ing-row.checked { border-color:var(--red-dim); }

/* Custom checkbox box */
.ing-check-box {
  width:22px; height:22px; flex-shrink:0;
  border:2px solid var(--border-2); border-radius:5px;
  background:var(--surface-2);
  display:flex; align-items:center; justify-content:center;
  transition:all var(--tr);
  position:relative;
}
.ing-row.checked .ing-check-box {
  background:var(--red); border-color:var(--red);
}
.ing-row.checked .ing-check-box::after {
  content:'';
  width:5px; height:10px;
  border:2px solid white; border-top:none; border-left:none;
  transform:rotate(45deg);
  position:absolute; top:1px;
}
.ing-name { flex:1; font-size:0.9rem; font-weight:500; color:var(--text); }
.ing-row:not(.checked) .ing-name { color:var(--text-3); text-decoration:line-through; }

/* ─── SHARED MODAL SHEET ─────────────────────────────────────────────────────*/
.sheet-note-label { font-size:0.78rem; font-weight:600; color:var(--text-2); letter-spacing:0.04em; margin-bottom:8px; display:block; }
.optional-tag { font-weight:400; color:var(--text-3); }
.sheet-textarea {
  width:100%; background:var(--surface); border:1px solid var(--border-2);
  border-radius:var(--radius-sm); color:var(--text); font-size:0.88rem;
  padding:12px 14px; resize:none; min-height:80px;
  font-family:var(--font-body); outline:none;
  transition:border-color var(--tr), box-shadow var(--tr);
}
.sheet-textarea::placeholder { color:var(--text-3); }
.sheet-textarea:focus { border-color:var(--red); box-shadow:0 0 0 3px var(--red-dim); }

/* ─── CHECKOUT SHEET EXTRAS ──────────────────────────────────────────────────*/
.co-total-row { display:flex; justify-content:space-between; align-items:flex-end; padding:14px 0 12px; border-top:1px solid var(--border); margin-top:8px; }
.co-total-label { font-size:0.88rem; color:var(--text-2); font-weight:500; }
.co-total-amounts { text-align:right; }
.co-lbp { font-family:var(--font-display); font-size:1.4rem; letter-spacing:0.04em; display:block; }
.co-usd { font-size:0.78rem; color:var(--text-2); display:block; margin-top:1px; }
.co-error { font-size:0.82rem; color:#ef4444; font-weight:500; }
.co-back-btn { width:100%; margin-top:8px; justify-content:center; }

/* Cart removed/note text */
.ci-removed { font-size:0.74rem; color:var(--red); margin-top:3px; line-height:1.4; }
.ci-note    { font-size:0.74rem; color:var(--text-2); margin-top:2px; font-style:italic; line-height:1.4; }
