/* ============================================================
   KYUKYU RAMEN 99 — styles.css
   Stack: Bootstrap 5 + Flexbox + Poppins
   Palette: #e9e3cb (bg), #ab0000 (accent), #380000 (brand text), #000 (headers)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #e9e3cb;
  --bg-dark: #d8d1b0;
  --accent: #ab0000;
  --accent-dark: #7a0000;
  --brand: #380000;
  --black: #000000;
  --white: #ffffff;
  --card-bg: #f5f0e0;
  --card-shadow: 0 4px 24px rgba(56,0,0,0.10);
  --card-hover-shadow: 0 8px 40px rgba(56,0,0,0.18);
  --header-h: 70px;
  --radius: 16px;
  --radius-sm: 8px;
  --font: 'Poppins', sans-serif;
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--brand);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- NOODLE WAVY PATTERN ---------- */
.noodle-bg, .footer-noodle-bg, .testi-noodle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40'%3E%3Cpath d='M0 20 Q15 5 30 20 Q45 35 60 20 Q75 5 90 20 Q105 35 120 20' stroke='%23380000' stroke-width='3' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 40px;
  z-index: 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  overflow: visible;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -1px;
  flex-shrink: 0;
  font-family: serif;
}

.logo-mark.sm { width: 36px; height: 36px; font-size: 12px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav .nav-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.main-nav .nav-link.active {
  color: var(--accent);
  background: rgba(171,0,0,0.15);
}

.admin-link {
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.cart-btn {
  position: relative;
  background: var(--accent);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.cart-btn:hover { background: var(--accent-dark); transform: scale(1.05); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--white);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font);
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - var(--header-h));
  padding: 60px 80px;
  gap: 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(171,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(171,0,0,0.1);
  color: var(--accent);
  border: 1px solid rgba(171,0,0,0.2);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -2px;
}

.accent-text { color: var(--accent); }

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--brand);
  opacity: 0.8;
  line-height: 1.7;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171,0,0,0.35);
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--brand);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid rgba(56,0,0,0.25);
  transition: var(--transition);
}

.btn-ghost-custom:hover {
  border-color: var(--brand);
  background: rgba(56,0,0,0.05);
  color: var(--brand);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px 24px;
  width: fit-content;
  border: 1px solid rgba(56,0,0,0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--brand);
  opacity: 0.7;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(56,0,0,0.12);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 420px;
  height: 420px;
  position: relative;
}

.bowl-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(171,0,0,0.12);
}

.ring-1 { width: 320px; height: 320px; animation: spinRing 20s linear infinite; }
.ring-2 { width: 240px; height: 240px; animation: spinRing 15s linear infinite reverse; }
.ring-3 { width: 160px; height: 160px; animation: spinRing 10s linear infinite; }

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-bowl-img {
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 48px rgba(171,0,0,0.35);
  z-index: 2;
}

.bowl-emoji-big {
  font-size: 80px;
  line-height: 1;
  animation: bobBowl 3s ease-in-out infinite;
}

@keyframes bobBowl {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-tag {
  position: absolute;
  background: var(--white);
  color: var(--brand);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 99px;
  box-shadow: var(--card-shadow);
  z-index: 3;
  white-space: nowrap;
  border: 1px solid rgba(56,0,0,0.08);
}

.tag-1 { top: 50px; left: 20px; animation: floatTag 4s ease-in-out infinite; }
.tag-2 { top: 60px; right: 10px; animation: floatTag 4.5s ease-in-out infinite 0.5s; }
.tag-3 { bottom: 80px; left: 10px; animation: floatTag 3.8s ease-in-out infinite 1s; }

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- SECTION SHARED ---------- */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1px;
}

.section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--brand);
  opacity: 0.75;
}

.light-title { color: var(--white) !important; }

/* ---------- QUICK ACCESS CARDS ---------- */
.quick-section {
  padding: 80px 80px;
  background: var(--bg);
}

.cards-flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid rgba(56,0,0,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
}

.featured-card {
  background: var(--brand);
  color: var(--white);
  border-color: transparent;
}

.featured-card h3, .featured-card p { color: var(--white); }
.featured-card p { opacity: 0.8; }

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(171,0,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}

.featured-card .card-icon-wrap {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.quick-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
}

.quick-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--brand);
  opacity: 0.75;
  line-height: 1.6;
}

/* ---------- FEATURED SECTION ---------- */
.featured-section {
  padding: 80px 80px;
  background: var(--bg-dark);
}

.featured-flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.featured-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(56,0,0,0.07);
  transition: var(--transition);
}

.featured-item:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }

.feat-img {
  font-size: 48px;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: rgba(171,0,0,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feat-info h4 { font-size: 15px; font-weight: 800; color: var(--black); }
.feat-info p { font-size: 12px; color: var(--brand); opacity: 0.7; line-height: 1.5; }

.feat-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
}

.feat-order-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.feat-order-btn:hover { background: var(--accent-dark); color: var(--white); }

.view-all-wrap { display: flex; justify-content: center; }

/* ---------- TESTIMONIALS ---------- */
.testi-section {
  padding: 80px 80px;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}

.testi-flex {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
}

.testi-featured {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.04);
}

.testi-stars { font-size: 16px; color: #f5a623; }

.testi-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
}

.testi-author { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); }

/* ---------- PAGE BANNER ---------- */
.page-banner {
  background: var(--brand);
  padding: 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40'%3E%3Cpath d='M0 20 Q15 5 30 20 Q45 35 60 20 Q75 5 90 20 Q105 35 120 20' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 120px 40px;
  opacity: 0.04;
}

.page-banner h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  position: relative;
}

.page-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px;
  background: var(--card-bg);
  border-bottom: 1px solid rgba(56,0,0,0.08);
  flex-wrap: wrap;
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}

.filter-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  background: transparent;
  border: 1.5px solid rgba(56,0,0,0.18);
  padding: 7px 18px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover { border-color: var(--accent); color: var(--accent); }

.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---------- MENU LAYOUT ---------- */
/* ===================================================
   PASTE THESE RULES into Styles.css
   REPLACE everything from "MENU LAYOUT" down to
   "CART SIDEBAR" with this block
   =================================================== */

/* ---------- MENU LAYOUT ---------- */
.menu-layout {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - var(--header-h) - 60px);
  transition: all 0.35s ease;
  position: relative;
}

.catalogue-area {
  flex: 1;
  padding: 100px 40px 40px;
  transition: all 0.35s ease;
}

.catalogue-shrunk { padding-right: 24px; }

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 10px;
}

/* ---------- MENU CARDS ---------- */
.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(56,0,0,0.07);
  transition: var(--transition);
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  margin-top: 90px;
   
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

/* Image that floats above the card */
.menu-card-img-wrap {
  position: absolute;
  top: -130px;        /* was -70px */
  left: 50%;
  transform: translateX(-50%);
  width: 250px;       /* was 250px */
  height: 250px;      /* was 250px */
  z-index: 2;
  pointer-events: none;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.22));
  transition: transform 0.35s ease;
}

.menu-card:hover .menu-card-img {
  transform: translateY(-6px) scale(1.06);
}

/* Space reserved inside card so text sits below the floating image */
.menu-card-img-spacer {
  height: 50px;      /* was 110px */
  flex-shrink: 0;
}

/* Emoji fallback when no imageUrl */
.menu-card-emoji {
  height: 120px;
  background: rgba(171,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  z-index: 3;
  letter-spacing: 0.5px;
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;

}

.menu-card-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.menu-card-desc {
  font-size: 12px;
  color: var(--brand);
  opacity: 0.7;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(1.55em * 3);  /* exactly 3 lines */
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.menu-card-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.add-to-cart-btn:hover { background: var(--accent-dark); transform: scale(1.03); }
.add-to-cart-btn.added { background: #1a7a3f; }



/* ---------- CART SIDEBAR ---------- */
.cart-sidebar {
  width: 0;
  min-height: calc(100vh - var(--header-h) - 60px);
  background: var(--card-bg);
  border-left: 2px solid rgba(56,0,0,0.1);
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--header-h) + 60px);
  max-height: calc(100vh - var(--header-h) - 60px);
}

.cart-sidebar.sidebar-open {
  width: 340px;
  min-width: 340px;
}

.layout-split .catalogue-area { flex-grow: 1; }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(56,0,0,0.1);
  flex-shrink: 0;
}

.sidebar-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-sidebar-btn {
  background: transparent;
  border: none;
  color: var(--brand);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.close-sidebar-btn:hover { background: rgba(56,0,0,0.1); }

.sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.empty-cart-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--brand);
  opacity: 0.5;
  text-align: center;
  padding: 40px 20px;
}

.empty-icon { font-size: 48px; }
.empty-cart-msg p { font-size: 14px; font-weight: 500; line-height: 1.5; }

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid rgba(56,0,0,0.07);
  transition: var(--transition);
}

.sidebar-item:hover { border-color: rgba(171,0,0,0.2); }

.si-emoji {
  font-size: 28px;
  width: 40px;
  height: 40px;
  background: rgba(171,0,0,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.si-info { flex: 1; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.si-name { font-size: 12px; font-weight: 700; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.si-price { font-size: 11px; color: var(--accent); font-weight: 600; }

.si-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.si-qty-ctrl span { font-size: 14px; font-weight: 800; color: var(--black); width: 18px; text-align: center; }

.qty-btn {
  width: 22px;
  height: 22px;
  background: rgba(56,0,0,0.1);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--accent); color: var(--white); }

.si-remove {
  background: transparent;
  border: none;
  color: rgba(56,0,0,0.4);
  font-size: 14px;
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.si-remove:hover { color: var(--accent); }

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid rgba(56,0,0,0.1);
  flex-shrink: 0;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--brand);
  font-weight: 500;
}

.del-row { opacity: 0.7; }

.pkg-row { color: rgba(56,0,0,0.7); font-size: 13px; }
.pkg-row small { font-size: 11px; }

.total-row {
  font-size: 15px;
  font-weight: 900;
  color: var(--black);
  padding-top: 6px;
  border-top: 1px dashed rgba(56,0,0,0.15);
}

.checkout-btn {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: 4px;
}

.checkout-btn:hover { background: var(--accent-dark); }

.view-cart-btn {
  background: transparent;
  color: var(--brand);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  border: 1.5px solid rgba(56,0,0,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.view-cart-btn:hover { border-color: var(--brand); background: rgba(56,0,0,0.05); }

/* ---------- ABOUT PAGE ---------- */
.about-section {
  padding: 80px 80px;
  background: var(--bg);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-submark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submark-circle {
  width: 240px;
  height: 240px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(56,0,0,0.25);
  position: relative;
  z-index: 2;
}

.submark-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.submark-kanji {
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  font-family: serif;
  line-height: 1;
}

.submark-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sm-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(171,0,0,0.2);
  animation: spinRing 25s linear infinite;
}

.sm-ring.r1 { width: 300px; height: 300px; }
.sm-ring.r2 { width: 360px; height: 360px; animation-direction: reverse; animation-duration: 35s; }

.about-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-headline {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.about-body {
  font-size: 15px;
  color: var(--brand);
  opacity: 0.85;
  line-height: 1.75;
}

.about-mission-box {
  background: var(--brand);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 8px;
}

.about-mission-box p {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* Values */
.values-section {
  padding: 80px 80px;
  background: var(--bg-dark);
}

.values-flex {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.value-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(56,0,0,0.07);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }

.value-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(171,0,0,0.15);
  line-height: 1;
}

.value-card h4 { font-size: 16px; font-weight: 800; color: var(--black); }
.value-card p { font-size: 13px; color: var(--brand); opacity: 0.75; line-height: 1.6; }

/* Team */
.team-section { padding: 80px 80px; background: var(--bg); }

.team-flex {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(56,0,0,0.07);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); }

.featured-team {
  background: var(--brand);
  border-color: transparent;
  transform: scale(1.04);
}

.featured-team h4, .featured-team p { color: var(--white); }
.featured-team p { opacity: 0.8; }

.team-avatar {
  font-size: 54px;
  width: 80px;
  height: 80px;
  background: rgba(171,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-team .team-avatar { background: rgba(255,255,255,0.1); }

.team-card h4 { font-size: 16px; font-weight: 800; color: var(--black); }
.team-role { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; }
.team-card p { font-size: 13px; color: var(--brand); opacity: 0.75; line-height: 1.6; }
.featured-team .team-role { color: rgba(255,255,255,0.6); }

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 60px 80px; }

.contact-flex {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 300px;
}

.contact-info h3 { font-size: 24px; font-weight: 800; color: var(--black); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(171,0,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 13px; font-weight: 700; color: var(--black); }
.contact-item span { font-size: 13px; color: var(--brand); opacity: 0.75; }
.contact-social-title { font-size: 13px; font-weight: 700; color: var(--black); margin-top: 4px; }

.contact-form-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
}

.contact-form-wrap h3 { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 24px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}

.form-group-custom label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}

.form-input-custom {
  font-family: var(--font);
  font-size: 14px;
  color: var(--brand);
  background: var(--card-bg);
  border: 1.5px solid rgba(56,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-input-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(171,0,0,0.12);
}

.form-textarea { resize: vertical; }

.form-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,122,63,0.1);
  color: #1a7a3f;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26,122,63,0.25);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 80px 40px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-mark { background: var(--accent); }
.footer-logo .logo-main { font-size: 16px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h5 {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.footer-links a, .footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-footer .footer-bottom { padding: 20px 40px; }

/* ---------- ADMIN ---------- */
.admin-body { background: #f0ebe0; }

.admin-header {
  background: var(--brand);
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 28px;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-nav-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.admin-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.admin-user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 99px;
  margin-left: 8px;
}

.admin-layout {
  display: flex;
  min-height: calc(100vh - 60px);
}

.admin-sidebar {
  width: 220px;
  background: var(--brand);
  flex-shrink: 0;
  padding: 24px 0;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
}

.admin-side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}

.side-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.side-nav-item:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.side-nav-item.active { color: var(--white); background: var(--accent); }

.admin-main {
  flex: 1;
  padding: 28px 36px;
  overflow-x: hidden;
}

.admin-page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-page-title h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
}

.admin-date { font-size: 13px; color: rgba(56,0,0,0.5); font-weight: 500; }

.admin-stat-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 2px 12px rgba(56,0,0,0.07);
  border: 1px solid rgba(56,0,0,0.06);
}

.stat-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.stat-card-icon.orange { background: rgba(255,140,0,0.12); color: #e07800; }
.stat-card-icon.green { background: rgba(26,122,63,0.12); color: #1a7a3f; }
.stat-card-icon.red { background: rgba(171,0,0,0.12); color: var(--accent); }
.stat-card-icon.blue { background: rgba(0,90,180,0.12); color: #005ab4; }

.stat-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stat-card-num { font-size: 22px; font-weight: 900; color: var(--black); }
.stat-card-label { font-size: 12px; color: rgba(56,0,0,0.55); font-weight: 500; }

.stat-card-trend {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 99px;
}

.stat-card-trend.up { background: rgba(26,122,63,0.1); color: #1a7a3f; }
.stat-card-trend.down { background: rgba(171,0,0,0.1); color: var(--accent); }

.admin-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.order-status-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.order-status-card {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(56,0,0,0.07);
  border: 1px solid rgba(56,0,0,0.06);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
}

.status-new .status-header { background: rgba(0,90,180,0.08); color: #005ab4; }
.status-prep .status-header { background: rgba(255,140,0,0.1); color: #e07800; }
.status-deliver .status-header { background: rgba(128,0,128,0.08); color: #800080; }
.status-done .status-header { background: rgba(26,122,63,0.1); color: #1a7a3f; }

.status-count { font-size: 18px; font-weight: 900; }

.order-item-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px;
}

.kanban-order-item {
  background: rgba(233,227,203,0.5);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1px solid rgba(56,0,0,0.06);
}

.ko-id { font-size: 11px; font-weight: 800; color: var(--accent); }
.ko-customer { font-size: 12px; font-weight: 700; color: var(--black); }
.ko-items { font-size: 11px; color: var(--brand); opacity: 0.7; }
.ko-total { font-size: 12px; font-weight: 700; color: var(--brand); }
.ko-time { font-size: 10px; color: rgba(56,0,0,0.45); }

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(56,0,0,0.07);
  border: 1px solid rgba(56,0,0,0.06);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
}

.admin-table th {
  background: var(--brand);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  text-align: left;
}

.admin-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--brand);
  border-bottom: 1px solid rgba(56,0,0,0.05);
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(233,227,203,0.5); }
.admin-table td img { display: block; }

.order-id-cell { font-weight: 800; color: var(--accent) !important; }
.items-cell { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.time-cell { white-space: nowrap; opacity: 0.6; }

.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.badge-new { background: rgba(0,90,180,0.1); color: #005ab4; }
.badge-prep { background: rgba(255,140,0,0.12); color: #e07800; }
.badge-deliver { background: rgba(128,0,128,0.1); color: #800080; }
.badge-done { background: rgba(26,122,63,0.1); color: #1a7a3f; }

.action-btns { display: flex; gap: 6px; }

.action-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}

.view-btn { background: rgba(0,90,180,0.1); color: #005ab4; }
.view-btn:hover { background: #005ab4; color: white; }
.edit-btn { background: rgba(171,0,0,0.1); color: var(--accent); }
.edit-btn:hover { background: var(--accent); color: white; }

/* ---------- HEADER ACTIONS ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.user-btn {
  position: relative;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.user-btn:hover { background: rgba(255,255,255,0.2); }
.user-btn.logged-in { background: var(--accent); border-color: var(--accent); }
.user-btn.logged-in:hover { background: var(--accent-dark); }

/* ---------- USER DROPDOWN ---------- */
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(56,0,0,0.18);
  border: 1px solid rgba(56,0,0,0.08);
  min-width: 180px;
  z-index: 2000;
  padding: 8px 0;
  overflow: hidden;
  animation: dropIn 0.15s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ud-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  padding: 10px 16px 2px;
}

.ud-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  padding: 0 16px 10px;
  border-bottom: 1px solid rgba(56,0,0,0.07);
}

.ud-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.ud-item:hover { background: rgba(233,227,203,0.6); }

.ud-logout {
  color: var(--accent);
  margin-top: 4px;
  border-top: 1px solid rgba(56,0,0,0.08);
  padding-top: 10px;
}

/* ---------- AUTH MODAL ---------- */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.auth-modal-overlay.modal-open {
  opacity: 1;
  pointer-events: all;
}

.auth-modal-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 36px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(56,0,0,0.25);
  border: 1px solid rgba(56,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.auth-modal-overlay.modal-open .auth-modal-card {
  transform: scale(1);
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(56,0,0,0.06);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand);
  font-size: 14px;
  transition: var(--transition);
}

.auth-modal-close:hover { background: rgba(171,0,0,0.1); color: var(--accent); }

.auth-modal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(56,0,0,0.06);
  border-radius: 10px;
  padding: 4px;
}

.auth-tab-btn {
  flex: 1;
  padding: 9px;
  border: none;
  border-radius: 7px;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(56,0,0,0.55);
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab-btn.active {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(56,0,0,0.1);
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  opacity: 0.75;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.auth-input {
  background: var(--white);
  border: 1.5px solid rgba(56,0,0,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--brand);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(171,0,0,0.1);
}

.auth-input::placeholder { color: rgba(56,0,0,0.3); }

.auth-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(171,0,0,0.07);
  border: 1px solid rgba(171,0,0,0.15);
  border-radius: 8px;
  padding: 8px 12px;
}

.co-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------- MISC ---------- */
.menu-loading, .menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(56,0,0,0.45);
  font-size: 15px;
  font-weight: 500;
}

#kyu-toast { font-family: var(--font, 'Poppins', sans-serif); }
#my-orders-modal { font-family: var(--font, 'Poppins', sans-serif); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-section { padding: 60px 40px; }
  .hero-visual { flex: 0 0 320px; height: 320px; }
  .hero-bowl-img { width: 160px; height: 160px; }
  .bowl-emoji-big { font-size: 64px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 130px; height: 130px; }
  .quick-section, .featured-section, .testi-section, .about-section, .values-section, .team-section { padding: 60px 40px; }
  .footer-inner { padding: 48px 40px 32px; gap: 40px; }
  .footer-bottom { padding: 16px 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .auth-modal-card { padding: 28px 24px; }
  .header-actions { gap: 8px; }
  .user-btn { width: 40px; height: 40px; font-size: 16px; }

  .hero-section {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .hero-cta { justify-content: center; }
  .hero-stats { width: 100%; }
  .hero-eyebrow { align-self: center; }
  .hero-content { max-width: 100%; align-items: center; }
  .hero-visual { flex: none; width: 280px; height: 280px; }

  .quick-section, .featured-section, .testi-section, .about-section, .values-section, .team-section { padding: 48px 20px; }
  .page-banner { padding: 36px 24px; }
  .contact-section { padding: 40px 24px; }
  .filter-bar { padding: 14px 20px; }
  .catalogue-area { padding: 90px 20px 20px; }

  .cart-sidebar.sidebar-open {
    position: fixed;
    top: calc(var(--header-h) + 60px);
    right: 0;
    width: 90vw !important;
    max-height: calc(100vh - var(--header-h) - 60px);
    z-index: 500;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }

  .about-flex { flex-direction: column; gap: 40px; text-align: center; }
  .submark-circle { width: 180px; height: 180px; }
  .submark-kanji { font-size: 48px; }
  .sm-ring.r1 { width: 240px; height: 240px; }
  .sm-ring.r2 { width: 290px; height: 290px; }

  .admin-sidebar { display: none; }
  .admin-main { padding: 20px; }

  .footer-inner { padding: 40px 20px 24px; gap: 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
}