@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --orange: #FF6600;
  --orange-dark: #CC5200;
  --orange-light: #FFF4EE;
  --dark: #111111;
  --mid: #444444;
  --gray: #888888;
  --light: #FDF9F4;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --border: #EEEEEE;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(255,102,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--dark);
  line-height: 1;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--orange); background: var(--orange-light); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 16px !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .accent { color: var(--orange); }

.hero-copy {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-pillars {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-pillar {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  flex: 1;
  min-width: 180px;
}

.hero-pillar strong {
  display: block;
  font-style: normal;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover { background: #333; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 48px; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-copy {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CATEGORY CARDS ── */
.grid-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(255,102,0,0.2); }
.category-card:hover::after { transform: scaleX(1); }

.category-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.category-card:hover .category-number { color: rgba(255,102,0,0.15); }

.category-name {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.category-word {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.category-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.category-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--orange-light);
  color: var(--orange);
}

/* ── MENU CARDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  box-shadow: var(--shadow);
}

.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.menu-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: transform 0.3s;
}

.menu-card:hover img { transform: scale(1.03); }

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.badge {
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-dark { background: var(--dark); }
.badge-gold { background: var(--gold); }
.badge-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }

.price {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--dark);
}

.menu-card h3 {
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.menu-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.menu-card a { color: var(--orange); font-weight: 800; text-decoration: none; }
.menu-card a:hover { text-decoration: underline; }

/* ── DISH PAGE ── */
.dish-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dish-img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }

.dish-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.dish-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dish-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.dish-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 28px;
}

.dish-word-reveal {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--mid);
  font-style: italic;
}

.dish-word-reveal strong { color: var(--orange); font-style: normal; }

.dish-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--dark);
  letter-spacing: 1px;
}

.dish-specs {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.dish-specs li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dish-specs li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
}

/* ── PARTNER CARDS ── */
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.partner-card h3 {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ── CALLOUT BAND ── */
.callout-band {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.callout-band .section-title { color: var(--white); }
.callout-band .section-copy { color: rgba(255,255,255,0.6); margin: 0 auto 32px; }

/* ── PHILOSOPHY STRIP ── */
.philosophy-strip {
  background: var(--orange);
  padding: 24px 0;
  overflow: hidden;
}

.philosophy-strip-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.philosophy-strip span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0.9;
}

.philosophy-strip span.dot {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── RULE REVEAL ── */
.rule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.rule-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.rule-title {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.rule-copy { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── COMMUNITY / VOTING ── */
.submission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.submission-card:hover { box-shadow: var(--shadow-hover); }

.submission-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}

.submission-name {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 6px 0 4px;
}

.submission-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }

.vote-bar {
  background: var(--orange-light);
  border-radius: 4px;
  height: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.vote-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
}

/* ── GIFT CARDS ── */
.gift-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
}

.gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.gift-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 2px;
}

.gift-card-body { padding: 24px; }

.gift-card-name {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.gift-card-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }

/* ── CHACHKAS / MERCH ── */
.merch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  text-align: center;
}

.merch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.merch-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.merch-card-body { padding: 20px; }
.merch-name { font-weight: 900; font-size: 1rem; margin-bottom: 4px; }
.merch-price { color: var(--orange); font-weight: 900; font-size: 1.1rem; }

/* ── NFT SECTION ── */
.nft-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.nft-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.2) 0%, transparent 70%);
}

.nft-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--orange);
}

/* ── ABOUT / FRANCHISE ── */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.pillar-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pillar-copy { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

/* ── FORM ELEMENTS ── */
input, textarea, select {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--orange); }

label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 6px;
}

.form-group { margin-bottom: 20px; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dish-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-pillars { gap: 20px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-categories { grid-template-columns: 1fr; }
  .site-nav { gap: 2px; }
  .site-nav a { font-size: 0.7rem; padding: 6px 8px; }
  .hero { padding: 60px 0 48px; }
  .section { padding: 48px 0; }
  .footer-row { flex-direction: column; text-align: center; }
}

/* ── CATEGORY COLOR PALETTE ── */
.category-card { border: 3px solid #111111; box-shadow: 5px 5px 0px #111111; color: inherit; }
.category-card:hover { transform: translate(-2px, -4px); box-shadow: 7px 9px 0px #111111; }
.cat-1  { background: #FF6600; color: #3D1A00; }
.cat-2  { background: #FFD93D; color: #3D2800; }
.cat-3  { background: #FF4D6D; color: #3D0015; }
.cat-4  { background: #C77DFF; color: #1A003D; }
.cat-5  { background: #06D6A0; color: #003D2A; }
.cat-6  { background: #FF9F1C; color: #3D2000; }
.cat-7  { background: #4CC9F0; color: #001D2E; }
.cat-8  { background: #F72585; color: #3D0020; }
.cat-9  { background: #FFBE0B; color: #3D2A00; }
.cat-10 { background: #8338EC; color: #F0E6FF; }
.cat-11 { background: #3A86FF; color: #E8F1FF; }
.cat-12 { background: #80ED99; color: #003D15; }
.cat-1 .category-word, .cat-2 .category-word, .cat-3 .category-word,
.cat-4 .category-word, .cat-5 .category-word, .cat-6 .category-word,
.cat-7 .category-word, .cat-8 .category-word, .cat-9 .category-word { opacity: 0.65; }
.cat-10 .category-word, .cat-11 .category-word, .cat-12 .category-word { opacity: 0.7; }
.category-badge { background: rgba(0,0,0,0.12); border: 1.5px solid rgba(0,0,0,0.15); }
.cat-10 .category-badge, .cat-11 .category-badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }

/* ── HERO REDESIGN — Creamy & Fun ── */
.hero { background: #FDF9F4 !important; color: #111111 !important; padding: 80px 0 60px !important; }
.hero::before { display: none !important; }
.hero-eyebrow { color: #FF6600 !important; }
.hero-title { font-size: clamp(5rem, 13vw, 10rem) !important; line-height: 0.88 !important; color: #111111 !important; }
.hero-title .accent { color: #FF6600 !important; }
.hero-copy { color: #555555 !important; font-size: 1.2rem !important; }
.hero-pillars { border-top: 2px solid #EEEEEE !important; }
.hero-pillar { color: #777777 !important; }
.hero-pillar strong { color: #111111 !important; }
.btn-ghost { color: #111111 !important; border-color: #CCCCCC !important; }
.btn-ghost:hover { border-color: #FF6600 !important; color: #FF6600 !important; background: transparent !important; }

/* ── NO MORE BLACK — все тёмные фоны убираем ── */
.hero { background: #FDF9F4 !important; padding: 32px 0 24px !important; }
.hero-title { font-family: 'Nunito', sans-serif !important; font-size: clamp(2rem, 5vw, 3.2rem) !important; line-height: 1.1 !important; color: #111111 !important; font-weight: 900 !important; margin-bottom: 10px !important; }
.hero-copy { font-size: 1rem !important; margin-bottom: 16px !important; color: #666666 !important; }
.hero-eyebrow { display: none !important; }
.hero-pillars { display: none !important; }
.callout-band { background: #FFF4EE !important; }
.callout-band .section-title { color: #111111 !important; }
.callout-band .section-copy { color: #555555 !important; }
.callout-band .section-eyebrow { color: #FF6600 !important; }
.callout-band .btn-primary { background: #FF6600 !important; }
.site-footer { background: #FDF9F4 !important; border-top: 2px solid #EEEEEE !important; }
.footer-brand { color: #FF6600 !important; }
.footer-links a { color: #888888 !important; }
.footer-row { color: #888888 !important; }
section[style*="background:var(--dark)"], section[style*="background: var(--dark)"] { background: #FDF9F4 !important; }
.nft-card { background: #111111 !important; }

/* ── IMAGE OVERLAY BRANDING ── */
.img-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 12px; margin-bottom: 12px; }
.img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 12px; }
.img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.72)); padding: 28px 12px 10px; border-radius: 0 0 12px 12px; pointer-events: none; }
.overlay-brand { font-size: 0.58rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #FF6600; margin-bottom: 2px; }
.overlay-name { font-size: 0.95rem; font-weight: 900; color: #ffffff; line-height: 1.1; }
.overlay-badge { position: absolute; top: 8px; right: 8px; background: #FF6600; color: #fff; font-size: 0.58rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; border: 2px solid #fff; pointer-events: none; }

/* ── CATEGORY CARDS FIX ── */
.category-card {
  border: 3px solid rgba(255,255,255,0.6) !important;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.15) !important;
}
.category-card:hover {
  border-color: rgba(255,255,255,0.9) !important;
  box-shadow: 6px 8px 0px rgba(0,0,0,0.2) !important;
}
.category-number { color: rgba(255,255,255,0.25) !important; opacity: 1 !important; }
.category-word { color: rgba(255,255,255,0.75) !important; opacity: 1 !important; }
.category-name { color: rgba(255,255,255,1) !important; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.category-desc { color: rgba(255,255,255,0.82) !important; opacity: 1 !important; }
.category-badge {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.95) !important;
}
.cat-1 .category-word,
.cat-2 .category-word,
.cat-3 .category-word,
.cat-4 .category-word,
.cat-5 .category-word,
.cat-6 .category-word,
.cat-7 .category-word,
.cat-8 .category-word,
.cat-9 .category-word,
.cat-10 .category-word,
.cat-11 .category-word,
.cat-12 .category-word { color: rgba(255,255,255,0.75) !important; }

/* ── MENU PAGE — WHITE CARDS ── */
.category-card { background: #FFFFFF !important; color: #111111 !important; border: 2px solid #EEEEEE !important; box-shadow: 4px 4px 0px #DDDDDD !important; }
.category-card:hover { box-shadow: 6px 8px 0px #CCCCCC !important; border-color: #FF6600 !important; }
.category-number { color: rgba(255,102,0,0.2) !important; }
.category-word { color: #FF6600 !important; }
.category-name { color: #111111 !important; text-shadow: none !important; }
.category-desc { color: #666666 !important; }
.category-badge { background: #FFF4EE !important; color: #FF6600 !important; border-color: #FFDDCC !important; }

/* ── FIX MENU GRID CARD HEIGHT ── */
.category-card { align-self: start !important; }
.category-card .img-wrap img { aspect-ratio: 4/3 !important; width: 100% !important; object-fit: cover !important; }

/* ── AUTH NAV ── */
.auth-nav { display: flex; align-items: center; gap: 8px; }

.auth-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF6600;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.auth-btn-login:hover { background: #E55A00; }

.auth-btn-logout {
  background: none;
  color: var(--gray);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  border: 1.5px solid #ddd;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
}
.auth-btn-logout:hover { border-color: #FF6600; color: #FF6600; }

#auth-user-wrap { display: flex !important; }
