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

:root {
  --red: #b82e2e;
  --red-dark: #8b1a1a;
  --red-light: #d94a4a;
  --cream: #fff8f0;
  --gold: #d4a04a;
  --gold-light: #f0d68a;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red-dark);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Cart button in header */
.cart-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.cart-btn:hover {
  color: var(--gold-light);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7));
}

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

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-hours {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 35px;
  letter-spacing: 1px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,74,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* About */
.about {
  background: var(--white);
}

.about-text {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  flex: 1 1 200px;
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.1rem;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Hours */
.hours {
  background: var(--red-dark);
  color: var(--white);
}

.hours .section-title {
  color: var(--white);
}

.hours .section-title::after {
  background: var(--gold);
}

.hours-grid {
  max-width: 480px;
  margin: 0 auto 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.05rem;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-closed .hours-time {
  color: var(--gold-light);
  font-weight: 600;
}

.hours-time {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hours-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

.hours-note a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Menu */
.menu {
  background: var(--cream);
}

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

.menu-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.menu-category {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-dark);
  padding: 30px 0 10px;
  margin: 0;
  position: relative;
}

.menu-category::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 2px;
}

.menu-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-card-featured .menu-img {
  height: 100%;
  min-height: 240px;
}

.menu-card-featured .menu-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.menu-card-featured .menu-body h3 {
  font-size: 1.5rem;
}

.menu-card-featured .menu-desc {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.menu-card-featured .add-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.menu-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.menu-body {
  padding: 18px 20px 20px;
}

.menu-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.size-picker {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.size-btn {
  width: 36px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.15s;
}

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

.size-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}



.menu-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.add-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
}

.qty-btn:hover {
  background: var(--cream);
}

.qty-value {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.add-btn {
  flex: 1;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.add-btn:hover {
  background: var(--red-dark);
}

.add-btn.added {
  background: var(--gold);
  color: var(--dark);
}

/* Order */
.order {
  background: var(--red-dark);
  color: var(--white);
}

.order .section-title {
  color: var(--white);
}

.order .section-title::after {
  background: var(--gold);
}

.order-options {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.order-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
}

.order-card-highlight {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(212,160,74,0.3);
}

.order-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.order-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.order-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.order-card .btn {
  margin-top: 10px;
}

/* Order cart summary */
.order-cart-summary {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
}

.order-cart-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-light);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
}

.order-cart-items {
  list-style: none;
  margin-bottom: 10px;
}

.order-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.order-cart-item .item-info span {
  font-weight: 600;
}

.order-cart-item .item-qty {
  color: rgba(255,255,255,0.6);
  margin: 0 4px;
}

.order-cart-empty {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 12px 0;
}

.order-cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.95);
  color: var(--text);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid var(--gold);
  background: var(--white);
}

.order-form textarea {
  resize: vertical;
}

.order-form .btn {
  align-self: flex-start;
}

#order-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#order-submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Catering */
.catering {
  background: var(--white);
}

.catering-intro {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.catering-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.catering-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-left: 4px solid var(--gold);
  transition: transform 0.2s;
}

.catering-item:hover {
  transform: translateY(-3px);
}

.catering-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red-dark);
  margin-bottom: 10px;
}

.catering-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.catering-cta {
  text-align: center;
}

.catering-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.contact-block p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-block a {
  color: var(--red);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--red-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* Cart sidebar */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 160;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.cart-sidebar-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red-dark);
}

.cart-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}

.cart-close:hover {
  color: var(--red);
}

.cart-sidebar-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-size {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.85rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.cart-item-qty button {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
}

.cart-item-qty button:hover {
  background: var(--cream);
}

.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.cart-checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
}

/* Topping modal */
.topping-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 170;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.topping-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.topping-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: var(--white);
  border-radius: 14px;
  width: 460px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 60px);
  z-index: 180;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.topping-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.topping-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #eee;
}

.topping-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red-dark);
}

.modal-price {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 2px;
  display: block;
}

.modal-size {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.topping-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
}

.topping-modal-close:hover {
  color: var(--red);
}

.topping-modal-body {
  padding: 20px 28px;
  overflow-y: auto;
  flex: 1;
}

.modal-section {
  margin-bottom: 20px;
}

.modal-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.topping-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.88rem;
  color: var(--text);
  user-select: none;
}

.topping-check:hover {
  border-color: var(--gold);
  background: #fffcf5;
}

.topping-check input[type="checkbox"] {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.topping-check:has(input:checked) {
  border-color: var(--red);
  background: #fff5f5;
}

.topping-grid .topping-check:first-child {
  border-color: var(--gold);
  background: #fffcf5;
  font-weight: 600;
}

.topping-grid .topping-check:first-child:has(input:checked) {
  border-color: var(--gold);
  background: #fff6e0;
}

.topping-modal-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.modal-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.modal-qty-control button {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
}

.modal-qty-control button:hover {
  background: var(--cream);
}

.modal-qty-control span {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

#modal-add-btn {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 12px 24px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

/* Responsive */
@media (max-width: 900px) {
  .order-options {
    grid-template-columns: 1fr;
  }
  .catering-details {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .nav-toggle {
    display: block;
  }
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card-featured {
    grid-template-columns: 1fr;
  }
  .menu-card-featured .menu-img {
    min-height: 160px;
    height: 160px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .cart-sidebar {
    width: 100vw;
  }
}
