html {
    scroll-behavior: smooth; /* Ginagawa nitong swabe ang pagtalon ng page gamit ang anchor */
    scroll-padding-top: 80px; /* Proteksyon para hindi matakpan ng fixed navbar mo ang heading */
}
:root {
  --black: #0a0a0a;
  --black-rich: #111111;
  --black-soft: #1a1a1a;
  --black-mid: #222222;
  --black-light: #2e2e2e;
  --gold: #c9a84c;
  --gold-light: #e2c472;
  --gold-bright: #f0d080;
  --gold-dark: #9a7a32;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.3);
  --white: #ffffff;
  --white-soft: #f8f5ee;
  --white-muted: #d4cfc5;
  --white-dim: rgba(255, 255, 255, 0.65);
  --white-faint: rgba(255, 255, 255, 0.08);


  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Raleway', sans-serif;


  --nav-h: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;


  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}




.gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.gold-divider span:not(.diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider .diamond {
  color: var(--gold);
  font-size: 10px;
  flex: none;
}

.centered .gold-divider {
  justify-content: center;
}

.centered .gold-divider span:not(.diamond) {
  flex: 0 0 60px;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
  width: 100%;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary .btn-text {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-loader {
  display: none;
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid var(--black);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-primary.loading .btn-text {
  opacity: 0.5;
}

.btn-primary.loading .btn-loader {
  display: block;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.3s, border-color 0.3s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost::after {
  content: ' →';
}

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


.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

.section-desc {
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
}


.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black-mid);
  border: 1px solid var(--gold-border);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-color: #4caf50;
}

.toast.error {
  border-color: #e74c3c;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 1px 0 var(--gold-border);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-crown {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-iii {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-tagline {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 14px;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

.nav-link--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.nav-auth-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-login {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.btn-nav-login:hover {
  background: var(--gold-pale);
}

.btn-nav-register {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}

.btn-nav-register:hover {
  opacity: 0.85;
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 4px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  z-index: 1010;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.visible {
  opacity: 1;
  pointer-events: all;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-rich) 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.02) 60px,
      rgba(201, 168, 76, 0.02) 61px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 9vw, 7rem);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: var(--white-muted);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 8px;
  -webkit-text-fill-color: var(--white-muted);
}

.hero-title-sub .amp {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s var(--ease) 0.8s both;
}

.hero-cta .btn-primary {
  width: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 1s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 4px;
}

.stat-divider {
  color: var(--gold-dark);
  font-size: 8px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s var(--ease) 1.5s both;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  position: relative;
  animation: scrollPulse 1.8s ease infinite;
}

.about-strip {
  padding: 100px 0;
  background: var(--black-rich);
  border-top: 1px solid var(--gold-border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 8px;
}

.about-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.about-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
}


.services-teaser {
  position: relative;
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 40%);
}

.services-teaser .section-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--black-soft), var(--black-mid));
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  padding: 3px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}


.cta-banner {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(135deg, var(--black-mid) 0%, var(--black-soft) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(201, 168, 76, 0.015) 40px,
      rgba(201, 168, 76, 0.015) 41px);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-crown {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
  animation: pulse 3s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-actions .btn-primary {
  width: auto;
}


.footer {
  background: var(--black);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gold-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-crown {
  font-size: 2rem;
  color: var(--gold);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--white-muted);
  font-size: 1rem;
}

.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li,
.footer-links-col ul a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color 0.2s;
}

.footer-links-col ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 8px;
}

.copyright {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  margin-top: 16px;
}


.auth-page {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}


.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 70%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    var(--black);
  z-index: 0;
}


.gold-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

.auth-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 100vh;
}

.auth-card {
  background: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.05);
  animation: slideUp 0.6s var(--ease-bounce) both;
}

.auth-card--register {
  max-width: 560px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}

.logo-img {
  max-height: 90px;
  max-width: 200px;
  margin: 0 auto;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-direction: column;
}

.crown-icon {
  font-size: 3.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
  animation: pulse 3s ease-in-out infinite;
}

.logo-text-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-iii {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.logo-kings {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--white-muted);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.auth-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-muted);
  margin-top: 4px;
}


.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 0.9rem;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.input-wrapper input {
  width: 100%;
  background: var(--black-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 44px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.input-wrapper input:focus {
  border-color: var(--gold);
  background: var(--black-mid);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.input-wrapper input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-wrapper input.valid {
  border-color: #4caf50;
}

.toggle-pass {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  font-size: 0.85rem;
  opacity: 0.4;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
  color: var(--white);
}

.toggle-pass:hover {
  opacity: 0.9;
}

.field-error {
  font-size: 0.72rem;
  color: #e74c3c;
  min-height: 1em;
  display: block;
}


.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--white-dim);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  background: var(--black-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.checkbox-label input:checked+.custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked+.custom-checkbox::after {
  content: '✓';
  color: var(--black);
  font-size: 11px;
  font-weight: bold;
}

.forgot-link,
.auth-link {
  font-size: 0.8rem;
  color: var(--gold);
  transition: color 0.2s;
}

.forgot-link:hover,
.auth-link:hover {
  color: var(--gold-bright);
}


.password-strength {
  height: 3px;
  background: var(--black-light);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}

.strength-fill.weak {
  background: #e74c3c;
  width: 33%;
}

.strength-fill.fair {
  background: #f39c12;
  width: 66%;
}

.strength-fill.strong {
  background: #4caf50;
  width: 100%;
}

.strength-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.checkbox-group {
  gap: 4px;
}

.auth-footer-text {
  text-align: center;
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-top: -4px;
}

.auth-back {
  text-align: center;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.back-link {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--white-muted);
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--gold);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo{
  width: 100%;
  
}
.menubg{
  aspect-ratio: 16/9;
 background-size: cover;
}

.titlemenu{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;

}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.7));
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.2;
  }
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.5);
  }
}


@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--black-rich);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 1000;
    transition: right 0.4s var(--ease);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-auth-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-left: none;
    border-top: 1px solid var(--gold-border);
    gap: 10px;
  }

  .btn-nav-login,
  .btn-nav-register {
    text-align: center;
    padding: 12px 16px;
    width: 100%;
    font-size: 0.8rem;
  }


  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }


  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }


  .services-grid {
    grid-template-columns: 1fr 1fr;
  }


  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline-light {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }


  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }


  .auth-card {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 425px) {
  :root {
    --nav-h: 70px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title-line {
    font-size: 2.8rem;
  }

  .hero-title-sub {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .about-strip {
    padding: 64px 0;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .services-teaser {
    padding: 64px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 64px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .auth-card--register {
    padding: 28px 20px;
  }

  .auth-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 375px) {
  .hero-title-line {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .auth-card {
    padding: 24px 16px;
  }

  .logo-img {
    max-height: 70px;
  }
}


@media (max-width: 320px) {
  :root {
    --nav-h: 64px;
  }

  .nav-crown {
    font-size: 1.4rem;
  }

  .nav-iii {
    font-size: 0.9rem;
  }

  .nav-tagline {
    display: none;
  }

  .hero-title-line {
    font-size: 2rem;
  }

  .hero-title-sub {
    font-size: 0.78rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-badge {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .auth-card {
    padding: 20px 14px;
    border-radius: var(--radius-md);
  }

  .auth-title {
    font-size: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .input-wrapper input {
    font-size: 0.85rem;
    padding: 11px 38px;
  }

  .crown-icon {
    font-size: 2.8rem;
  }
}






















.menu-page {
  background: var(--black);
  overflow-x: hidden;
}


.navbar--menu {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 1px 0 var(--gold-border);
  backdrop-filter: blur(14px);
}

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

.menu-nav-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.menu-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}

.menu-nav-link:hover,
.menu-nav-link.active {
  color: var(--gold-light);
}

.menu-nav-link.active::after,
.menu-nav-link:hover::after {
  transform: scaleX(1);
}


.nav-user-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  transition: box-shadow 0.2s;
  flex-shrink: 0;
}

.nav-user-avatar:hover {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

.avatar-initials {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
  overflow: hidden;
}

.user-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-header {
  padding: 16px 18px;
  background: var(--black-mid);
}

.dropdown-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.dropdown-email {
  display: block;
  font-size: 0.72rem;
  color: var(--white-muted);
  margin-top: 2px;
}

.dropdown-divider {
  height: 1px;
  background: var(--gold-border);
}

.dropdown-item {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--white-muted);
  transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold-light);
}

.dropdown-item--logout {
  color: #e74c3c;
}

.dropdown-item--logout:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.menu-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 4px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  z-index: 1010;
}

.menu-burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-burger.open .burger-line:nth-child(2) {
  opacity: 0;
}
.menu-burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobile-nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(14px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  transform: translateY(-120%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
}

.drawer-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.drawer-link:last-child {
  border-bottom: none;
}

.drawer-link:hover {
  color: var(--gold-light);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── MENU HERO ───────────────────────────────────────────── */
.menu-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
}

.menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.2) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

/* Fallback if no image */
.menu-hero-bg:not(:has(.menu-hero-img)) {
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    var(--black-rich);
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeInUp 0.7s var(--ease) both;
}

.menu-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(201, 168, 76, 0.35));
  margin-bottom: 12px;
}

.menu-hero-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-dim);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ── PREVIEW CARDS ───────────────────────────────────────── */
.menu-previews {
  background: var(--black-rich);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 56px 0;
}

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

.preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--black-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.6s var(--ease) calc(var(--delay, 0) * 1ms) forwards;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.preview-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--black-mid);
}

.preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.preview-card:hover .preview-img-wrap img {
  transform: scale(1.06);
}

.preview-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-dark);
}

.preview-img-wrap.img-error .preview-img-fallback {
  display: flex;
}

.preview-info {
  padding: 22px 22px 26px;
}

.preview-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.preview-info p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.preview-cta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
}

.preview-cta:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}

/* ── STICKY FILTER BAR ───────────────────────────────────── */
.menu-filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(17, 17, 17, 0.97);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(14px);
  padding: 0;
}

.filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 7px 16px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-tab:hover {
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.filter-tab.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
}

.filter-search-wrap {
  position: relative;
  flex-shrink: 0;
}

.search-icon {
  position: absolute;
  left: 490px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  opacity: 0.45;
  pointer-events: none;
}

.filter-search {
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 8px 18px 8px 34px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--white);
  width: 200px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-search::placeholder {
  color: rgba(255,255,255,0.2);
}

.filter-search:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ── MAIN CONTENT ────────────────────────────────────────── */
.menu-main {
  padding: 72px 0 120px;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.menu-section {
  scroll-margin-top: calc(var(--nav-h) + 62px);
  margin-bottom: 0;
}

.menu-section-header {
  margin-bottom: 44px;
}

.menu-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 72px 0;
}

.menu-section-divider span:not(.diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.menu-section-divider .diamond {
  color: var(--gold-dark);
  font-size: 12px;
}

/* ── DISHES GRID ─────────────────────────────────────────── */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── DISH CARD ───────────────────────────────────────────── */
.dish-card {
  background: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 1;
  transform: translateY(28px);
}

.dish-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.3s, box-shadow 0.3s;
}

.dish-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.1);
}

.dish-card--featured {
  border-color: var(--gold-dark);
  background: linear-gradient(160deg, var(--black-soft), var(--black-mid));
}

.dish-card--featured:hover {
  border-color: var(--gold-bright);
}

/* hidden state for filter */
.dish-card.hidden {
  display: none;
}

/* ── DISH IMAGE ──────────────────────────────────────────── */
.dish-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--black-mid);
  flex-shrink: 0;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.dish-card:hover .dish-img {
  transform: scale(1.07);
}

.dish-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: var(--black-mid);
}

.dish-img-wrap.img-error .dish-img-fallback {
  display: flex;
}

/* ── BADGES ──────────────────────────────────────────────── */
.dish-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  z-index: 2;
}

.dish-badge--popular {
  background: rgba(201, 168, 76, 0.92);
  color: var(--black);
}

.dish-badge--signature {
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.dish-badge--veg {
  background: rgba(76, 175, 80, 0.88);
  color: #fff;
}

/* ── DISH BODY ───────────────────────────────────────────── */
.dish-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.dish-tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  padding: 2px 8px;
  border-radius: 20px;
}

.dish-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.dish-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.dish-add-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.dish-add-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.dish-add-btn:active {
  transform: scale(0.95);
}

.dish-add-btn.added {
  background: linear-gradient(135deg, #2d6a2d, #4caf50);
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.no-results-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

/* ── FLOATING CART ───────────────────────────────────────── */
.cart-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  animation: fadeInUp 0.5s var(--ease) 0.5s both;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  position: relative;
}

.cart-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.55);
}

.cart-icon {
  font-size: 1rem;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 4px;
  transition: transform 0.2s var(--ease-bounce);
}

.cart-count.bump {
  animation: bumpScale 0.3s var(--ease-bounce);
}

@keyframes bumpScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* ── ORDER DRAWER ────────────────────────────────────────── */
.order-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--black-soft);
  border-left: 1px solid var(--gold-border);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.order-drawer.open {
  right: 0;
}

.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.order-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.order-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--gold-border);
  background: var(--black-mid);
  flex-shrink: 0;
}

.order-drawer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-drawer-close {
  font-size: 0.9rem;
  color: var(--white-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.order-drawer-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.order-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}

.order-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  gap: 8px;
  padding: 40px;
}

.order-empty-icon {
font-size: 1rem;
}
/* ── ORDER ITEM ──────────────────────────────────────────── */
.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--black-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.3s var(--ease) both;
}

.order-item-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.order-item-price {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  white-space: nowrap;
  margin-right: 8px;
}

.order-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  position: relative;
}

.qty-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.qty-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white);
  min-width: 18px;
  text-align: center;
}

/* ── ORDER FOOTER ────────────────────────────────────────── */
.order-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--gold-border);
  background: var(--black-mid);
  flex-shrink: 0;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.order-total-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .previews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-nav-links {
    display: none;
  }

  .menu-burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .menu-hero {
    height: 320px;
  }

  .previews-grid {
    grid-template-columns: 1fr;
  }

  .filter-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 10px;
    align-items: stretch;
  }

  .filter-search {
    width: 100%;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .cart-float {
    bottom: 20px;
    right: 16px;
    left: 16px;
  }

  .cart-btn {
    width: 100%;
    justify-content: center;
  }

  .order-drawer {
    width: 100vw;
    right: -100vw;
  }
}

@media (max-width: 425px) {
  .menu-main {
    padding: 48px 0 100px;
  }

  .menu-previews {
    padding: 40px 0;
  }

  .menu-section-divider {
    margin: 48px 0;
  }
}
/* ── GALLERY SECTION ───────────────────────────────────── */
.gallery-section {
  padding: 90px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--white-muted);
  padding: 10px 24px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--black-rich);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.gallery-item {
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-img-wrapper {
  position: relative;
  height: 240px;
  background-color: var(--black-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  font-family: var(--font-display);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-img-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/* ── LIGHTBOX MODAL POPOUTS ────────────────────────────── */

.modal-placeholder-view {
  width: 100%;
  height: 400px;
  background: var(--black-soft);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
}

.modal-close {
  position: absolute;
  top: 30px; right: 40px;
  color: var(--white-muted);
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.modal-close:hover { color: var(--gold); }

.modal-caption {
  margin-top: 15px;
  color: var(--white-soft);
  font-family: var(--font-display);
  letter-spacing: 1px;
}
/* ── ULTRA FIX FOR ROYAL GALLERY MODAL OVERRIDES ── */
#galleryModal.gallery-modal {
    display: none;
    position: fixed !important;
    z-index: 999999 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(6, 6, 6, 0.96) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(8px) !important;
}

/* Ang mismong card container na may hawak sa picture at text */
#galleryModal .modal-content-wrapper {
    width: 90% !important;
    max-width: 750px !important;
    background: #111111 !important; /* Itim na background shield */
    border: 2px solid var(--gold) !important; /* Gintong border line */
    border-radius: 12px !important;
    padding: 30px 20px 20px 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important; /* Isalansan pababa ang image at text */
    align-items: center !important;
    position: relative !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
}

/* Box housing the actual image layout */
#galleryModal #modalViewArea {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Puwersahing lumaki ang picture nang tama */
#galleryModal #modalViewArea img {
    width: 100% !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    display: block !important;
}

/* Text caption styling sa ilalim ng ulam/setup */
#galleryModal #modalCaptionText {
    font-family: var(--font-display), 'Cinzel', serif !important;
    color: var(--gold-light) !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-top: 15px !important;
    text-align: center !important;
}

/* Pwesto at disenyo ng close '✕' button sa kanang itaas ng gintong kahon */
#galleryModal #modalCloseBtn {
    position: absolute !important;
    top: 15px !important;       /* Distansya mula sa itaas na border */
    right: 20px !important;     /* Distansya mula sa kanang border */
    color: #ffffff !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 9999999 !important; /* Puwersahing lumutang sa ibabaw ng kahit ano */
    transition: color 0.2s ease !important;
    font-weight: bold !important;
}

#galleryModal #modalCloseBtn:hover {
    color: var(--gold-bright) !important;
}
/* Siguraduhing laging litaw at clickable ang "X" sa loob ng card frame */
#galleryModal #modalCloseBtn.modal-close {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    color: #ffffff !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 99999999 !important; /* Lumulutang sa pinaka-ibabaw */
    display: block !important;
    transition: color 0.2s ease !important;
}

#galleryModal #modalCloseBtn.modal-close:hover {
    color: var(--gold-bright) !important;
}
/* ── ♛ ROYAL LIGHTBOX SHIELD STYLING ── */
#iiiKingsRoyalModal.royal-lightbox-shield {
    display: none;
    position: fixed !important;
    z-index: 9999999 !important; /* Puwersahing lumutang sa itaas ng lahat */
    top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important;
    background: rgba(8, 8, 8, 0.97) !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(8px) !important;
}

/* Ang eleganteng gintong kahon ng Larawan */
#iiiKingsRoyalModal .royal-lightbox-card {
    width: 90% !important;
    max-width: 750px !important;
    background: #111111 !important;
    border: 2px solid var(--gold, #c9a84c) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important; /* Isalansan pababa ang mga laman */
    align-items: center !important;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9) !important;
}

/* Container housing the popup preview aspect ratio */
#iiiKingsRoyalModal .royal-lightbox-view-area {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Ang mismong itsura ng malaking larawan */
#iiiKingsRoyalModal .royal-lightbox-view-area img {
    width: 100% !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    display: block !important;
}

/* Eleganteng gintong caption text */
#iiiKingsRoyalModal .royal-lightbox-caption {
    font-family: 'Cinzel', serif !important;
    color: #c9a84c !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-top: 15px !important;
    text-align: center !important;
}

/* Ang bagong ligtas at clickable na "X" Button */
#iiiKingsRoyalModal .royal-lightbox-close {
    position: absolute !important;
    top: 10px !important;
    right: 18px !important;
    color: #ffffff !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: color 0.2s ease !important;
}

#iiiKingsRoyalModal .royal-lightbox-close:hover {
    color: #fff3d1 !important;
}
.menu-details-block {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(201, 168, 76, 0.2); /* Manipis na gintong linya bilang divider */
}

.menu-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #111111;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}
/* Eto ay para sa parent container ng search input */
.search-container, 
div:has(> #menuSearchInput) {
    display: flex !important;
    justify-content: center !important; /* Itutulak nito ang search input sa pinakagitna horizontally */
    width: 100% !important;
    margin: 30px auto !important; /* Magbibigay ng magandang espasyo sa itaas at ibaba */
    padding: 0 20px !important;
    box-sizing: border-box !important;
}
/* Direktang pagpupuwesto sa mismong search input box */
#menuSearchInput, 
input[placeholder*="Search"] {
    display: block !important;
    margin-left: auto !important;  /* Magic trick para sa automatic horizontal centering */
    margin-right: auto !important; /* Magic trick para sa automatic horizontal centering */
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    max-width: 400px !important;   /* Nilimitahan natin ang lapad para maging eleganteng tignan sa gitna */
    width: 100% !important;
}
/* ── ♛ EXACT FIX FOR FLOATING CART BUTTON CLICK ── */

/* Ang main parent outer box wrapper */
div#cartFloat.cart-float {
    position: fixed !important;
    bottom: 25px !important;       /* Distansya mula sa ilalim ng screen */
    right: 25px !important;        /* Distansya mula sa kanang bahagi */
    z-index: 99999999 !important;  /* Puwersahing lumutang sa ibabaw ng kahit anong gallery o active elements */
    pointer-events: auto !important; /* Siguraduhing tumatanggap ng mouse clicks */
}

/* Ang mismong gintong pill button shape */
#cartBtn.cart-btn {
    cursor: pointer !important;       /* Lalabas ang "kamay" icon na patunay na clickable ito */
    pointer-events: auto !important;   /* Siguraduhing clickable ang loob ng button */
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.2s ease-in-out !important;
}

/* Hover animation para sumayaw ng kaunti kapag itinutok ang mouse */
#cartBtn.cart-btn:hover {
    transform: translateY(-3px) scale(1.04) !important; /* Bahagyang aangat at lalaki */
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5) !important; /* Liliwanag ang royal gold glow */
}

/* Siguraduhin na ang mga teksto at counter sa loob ay hindi rin haharang sa click event */
#cartBtn.cart-btn span {
    pointer-events: none !important; /* Ipapasa ang click diretso sa main button body */
}
/* Puwersahing maging clickable ang coordinates ng cart area */
#cartFloat, #cartBtn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

#cartBtn * {
    pointer-events: none !important; /* Ipasa ang click ng font icons/text sa main button */
}
/* Food Row Cards (image_e921b2.png) */
.rc-food-card {
    background: #1c1c1c !important;
    border: 1px solid rgba(201, 168, 76, 0.15) !important;
    border-radius: 6px !important;
    padding: 16px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 20px 15px 20px !important;
}

.rc-card-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.rc-food-name {
    font-family: 'Cinzel', serif !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.rc-food-price {
    color: #c9a84c !important;
    font-size: 0.8rem !important;
}

.rc-counter-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.rc-qty-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
}

.rc-qty-num {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    min-width: 12px !important;
    text-align: center !important;
}

/* ──── DRAWER BILLING FOOTER BLOCK ─── */
.rc-drawer-footer {
    padding: 20px 25px 35px 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #151515 !important;
}

.rc-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 25px !important;
}

.rc-total-row span:first-child {
    font-family: 'Cinzel', serif !important;
    color: #888888 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
}

.rc-grand-price {
    font-family: 'Cinzel', serif !important;
    color: #c9a84c !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
}

/* Gintong "RESERVE & CONFIRM" Main Button */
.rc-confirm-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  position: relative;
}

.rc-confirm-btn:hover {
    transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.55);
}
/* ── FLOATING CART ───────────────────────────────────────── */
.cart-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  animation: fadeInUp 0.5s var(--ease) 0.5s both;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
  position: relative;
}

.cart-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.55);
}

.cart-icon {
  font-size: 1rem;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 4px;
  transition: transform 0.2s var(--ease-bounce);
}

.cart-count.bump {
  animation: bumpScale 0.3s var(--ease-bounce);
}

@keyframes bumpScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}
/* ── ♛ CRITICAL OVERLAY LAYER FIX ── */

/* Ang lalagyan ng Cart Drawer ay dapat nasa PINAKA-ITAAS na sapin */
#orderDrawer {
    position: fixed !important;
    top: 0 !important;
    right: -420px; /* Nakatago sa simula */
    width: 400px !important;
    height: 100vh !important;
    background-color: #151515 !important;
    border-left: 1px solid rgba(201, 168, 76, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: right 0.35s ease-in-out !important;
    
    /* FIX: Ginawa nating 10,000,000 para siguradong walang makakatakip sa cart panels mo */
    z-index: 100000000 !important; 
}

/* Lalabas ang drawer kapag pinindot ang My Order button */
#orderDrawer.open {
    right: 0 !important;
}

/* Ang madilim/blur na background wrapper */
.order-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px) !important; /* Ito ang nagpapalabo ng background mo */
    display: none; /* Nakatago kapag sarado ang cart */
    
    /* FIX: Mas mababa dapat ito sa orderDrawer para hindi niya matakpan ang cart data */
    z-index: 99999999 !important; 
}

/* Kapag aktibo ang overlay */
.order-overlay.active {
    display: block !important;
}