/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-charcoal: #000000;
  --text-cream: #f5f5f0;
  --text-muted: #d4d4cc;
  --accent-gold: #d4af37;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Lato", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel Decorative", "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-cream);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 3rem 0 1.5rem;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem 0 1rem;
}

.nav-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  min-height: 60px;
  width: 100%;
}

/* Left Navigation Links - Desktop */
.nav-links-left {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  justify-self: start;
}

/* Center Logo */
.logo-center {
  position: relative;
  z-index: 10;
  text-align: center;
  justify-self: center;
  margin: 0;
}

.logo-center .logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-cream);
  display: block;
  line-height: 1.3;
  transition: var(--transition);
}

.logo-center:hover .logo-text {
  color: var(--accent-gold);
}

/* Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  justify-self: end;
}

/* Menu Toggle - Hidden on Desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
  justify-self: start;
}

/* Ensure menu toggle is hidden on desktop */
@media (min-width: 992px) {
  .menu-toggle {
    display: none !important;
  }
  
  .nav-links-left {
    display: flex !important;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* Language Toggle */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--text-cream);
  color: var(--text-cream);
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
  border-radius: 4px;
  min-width: 45px;
  text-align: center;
}

.lang-toggle:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Icon Buttons */
.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-cream);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}

.icon-btn:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.btn {
  padding: 0.875rem 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}

.btn-order {
  background: transparent;
  color: var(--text-cream);
  border: 1px solid var(--text-cream);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-cream);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle:hover span {
  background: var(--accent-gold);
}

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

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-container video.hidden {
  opacity: 0;
  display: none;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-container.no-video .video-fallback {
  opacity: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 6rem;
}

.hero-text-overlay {
  text-align: left;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--text-cream);
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-cream);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  line-height: 1.1;
}

/* Footer */
.footer {
  background: var(--bg-charcoal);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
}

/* About Section */
.about-section {
  background: var(--bg-dark);
  padding: 10rem 0;
}

.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-section .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--text-cream);
}

.about-section .section-description {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-social-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* About Social Icons */
.about-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 0;
}

.about-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--text-cream);
  border-radius: 50%;
  color: var(--text-cream);
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}

.about-social .social-icon:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
  border-color: var(--text-cream);
  transform: translateY(-3px);
}

.about-social .social-icon svg {
  width: 24px;
  height: 24px;
}

/* Catering Section */
.catering-section {
  position: relative;
  background: var(--bg-dark);
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.catering-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.catering-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.catering-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.catering-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.catering-section .container {
  position: relative;
  z-index: 3;
  padding: 8rem 2rem;
  width: 100%;
}

.catering-section .catering-video-container.no-video .catering-video-fallback {
  opacity: 1;
}

.catering-section .catering-video-container video.hidden {
  display: none;
}

.catering-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.catering-section .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-cream);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.catering-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.catering-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.catering-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.catering-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.catering-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.catering-paragraph {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  background: var(--bg-dark);
  padding: 10rem 0;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--text-cream);
}

.contact-header .section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-cream);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-cream);
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: 2px solid var(--accent-gold);
  padding: 1.2rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
  align-self: center;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: transparent;
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* Menu Section */
.menu-section {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 10rem 0;
  overflow: hidden;
}

/* Falling elements animation */
.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(212, 175, 55, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.menu-section .container {
  position: relative;
  z-index: 2;
}

/* Falling elements */
.falling-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.falling-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: fallDown linear infinite;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.falling-element:nth-child(odd) {
  background: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.falling-element:nth-child(3n) {
  background: rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.falling-element:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.falling-element:nth-child(2) {
  left: 25%;
  animation-duration: 12s;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
  opacity: 0.2;
}

.falling-element:nth-child(3) {
  left: 40%;
  animation-duration: 10s;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
}

.falling-element:nth-child(4) {
  left: 55%;
  animation-duration: 14s;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
  opacity: 0.25;
}

.falling-element:nth-child(5) {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 1.5s;
  width: 4px;
  height: 4px;
}

.falling-element:nth-child(6) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  width: 3px;
  height: 3px;
  opacity: 0.2;
}

.falling-element:nth-child(7) {
  left: 15%;
  animation-duration: 9s;
  animation-delay: 0.5s;
  width: 4px;
  height: 4px;
  opacity: 0.15;
}

.falling-element:nth-child(8) {
  left: 60%;
  animation-duration: 15s;
  animation-delay: 4s;
  width: 5px;
  height: 5px;
  opacity: 0.2;
}

.falling-element:nth-child(9) {
  left: 5%;
  animation-duration: 11s;
  animation-delay: 0.8s;
  width: 3px;
  height: 3px;
  opacity: 0.25;
}

.falling-element:nth-child(10) {
  left: 30%;
  animation-duration: 13s;
  animation-delay: 2.2s;
  width: 4px;
  height: 4px;
  opacity: 0.15;
}

.falling-element:nth-child(11) {
  left: 45%;
  animation-duration: 9s;
  animation-delay: 0.3s;
  width: 6px;
  height: 6px;
  opacity: 0.2;
}

.falling-element:nth-child(12) {
  left: 65%;
  animation-duration: 12s;
  animation-delay: 1.8s;
  width: 3px;
  height: 3px;
  opacity: 0.3;
}

.falling-element:nth-child(13) {
  left: 75%;
  animation-duration: 14s;
  animation-delay: 3.5s;
  width: 4px;
  height: 4px;
  opacity: 0.18;
}

.falling-element:nth-child(14) {
  left: 20%;
  animation-duration: 10s;
  animation-delay: 0.6s;
  width: 5px;
  height: 5px;
  opacity: 0.22;
}

.falling-element:nth-child(15) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: 4.5s;
  width: 3px;
  height: 3px;
  opacity: 0.15;
}

.falling-element:nth-child(16) {
  left: 35%;
  animation-duration: 11s;
  animation-delay: 1.2s;
  width: 4px;
  height: 4px;
  opacity: 0.25;
}

.falling-element:nth-child(17) {
  left: 90%;
  animation-duration: 13s;
  animation-delay: 2.8s;
  width: 4px;
  height: 4px;
  opacity: 0.2;
}

.falling-element:nth-child(18) {
  left: 12%;
  animation-duration: 15s;
  animation-delay: 5s;
  width: 5px;
  height: 5px;
  opacity: 0.18;
}

.falling-element:nth-child(19) {
  left: 80%;
  animation-duration: 10s;
  animation-delay: 0.4s;
  width: 3px;
  height: 3px;
  opacity: 0.28;
}

.falling-element:nth-child(20) {
  left: 28%;
  animation-duration: 12s;
  animation-delay: 1.5s;
  width: 4px;
  height: 4px;
  opacity: 0.2;
}

@keyframes fallDown {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: translateY(50vh) translateX(20px) rotate(180deg);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) translateX(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* Additional falling elements with different patterns */
.falling-element:nth-child(4n) {
  animation-name: fallDownSway;
}

@keyframes fallDownSway {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  25% {
    transform: translateY(25vh) translateX(-15px) rotate(90deg);
  }
  50% {
    transform: translateY(50vh) translateX(15px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(-10px) rotate(270deg);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) translateX(10px) rotate(360deg);
    opacity: 0;
  }
}

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}

.menu-header .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--text-cream);
}

.menu-header .section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.menu-pickup {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pickup-link {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.pickup-link:hover {
  border-bottom-color: var(--accent-gold);
  opacity: 0.8;
}

.menu-order-section {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.menu-order-info {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
}

.menu-order-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.menu-order-btn-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--text-cream);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.menu-order-btn-simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.menu-order-btn-simple:hover::before {
  left: 100%;
}

.menu-order-btn-simple:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.menu-order-btn-simple:active {
  transform: translateY(0);
}

/* Menu Back Button */
.menu-back-wrapper {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--text-cream);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.menu-back-btn:hover::before {
  left: 100%;
}

.menu-back-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

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

.menu-back-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-back-btn:hover svg {
  transform: translateX(-3px);
}

/* Add to Cart Button */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  color: var(--text-cream);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.add-to-cart-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Cart Sidebar */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--bg-charcoal);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-cream);
  margin: 0;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--text-cream);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  gap: 1rem;
}

.cart-empty svg {
  opacity: 0.3;
}

.cart-empty p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
}

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

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-cream);
  margin: 0 0 0.5rem 0;
}

.cart-item-weight {
  color: var(--accent-gold);
  font-weight: 400;
  font-size: 0.9em;
}

.cart-item-meat {
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 0.9em;
  margin-right: 0.5rem;
}

.cart-item-price {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin: 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-quantity-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
}

.cart-item-quantity {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-cream);
  min-width: 30px;
  text-align: center;
}

.cart-remove-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn:hover {
  color: #ff4444;
  transform: scale(1.1);
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-cream);
}

.cart-total-price {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent-gold);
  border: none;
  border-radius: 50px;
  color: var(--bg-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.cart-checkout-btn:hover {
  background: #e0c26e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cart-checkout-btn {
  text-decoration: none;
  display: block;
  text-align: center;
}

/* Checkout Page Styles */
.checkout-section {
  padding: 12rem 0 6rem;
  background: var(--bg-dark);
  min-height: 100vh;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-title {
  font-family: "Cinzel Decorative", "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 3rem;
  text-align: center;
}

.checkout-cart-summary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-cart-summary h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-items {
  margin-bottom: 1.5rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-item:last-of-type {
  border-bottom: none;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
}

.checkout-item-weight {
  color: var(--accent-gold);
  font-weight: 400;
  font-size: 0.9em;
}

.checkout-item-meat {
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 0.9em;
  margin-right: 0.5rem;
}

.checkout-item-details {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkout-item-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-left: 1rem;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-cream);
}

.checkout-total-price {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.checkout-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-form h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-form h2:first-child {
  margin-top: 0;
}

.checkout-form .form-group {
  margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 0.5rem;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-cream);
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkout-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkout-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkout-submit-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}

.btn-checkout-submit {
  width: 100%;
  max-width: 400px;
  padding: 1.25rem 2.5rem;
  background: var(--accent-gold);
  border: none;
  border-radius: 50px;
  color: var(--bg-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-checkout-submit:hover {
  background: #e0c26e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.checkout-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-empty svg {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.checkout-empty h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 1rem;
}

.checkout-empty p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout-section {
    padding: 10rem 0 4rem;
  }

  .checkout-container {
    padding: 0 1rem;
  }

  .checkout-cart-summary,
  .checkout-form {
    padding: 1.5rem;
  }

  .checkout-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .checkout-item-price {
    margin-left: 0;
    align-self: flex-end;
  }

  .checkout-form h2 {
    font-size: 1.3rem;
  }
}

/* Legal Pages Styles */
.legal-section {
  padding: 12rem 0 6rem;
  background: var(--bg-dark);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-family: "Cinzel Decorative", "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 1rem;
  text-align: center;
}

.legal-last-updated {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-text {
  font-family: "Montserrat", sans-serif;
  color: var(--text-cream);
  line-height: 1.8;
}

.legal-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-cream);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-cream);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.legal-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-muted);
}

.legal-text ul li {
  margin-bottom: 0.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.legal-text ul li strong {
  color: var(--text-cream);
  font-weight: 600;
}

.legal-text a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}

.legal-text a:hover {
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: "Montserrat", sans-serif;
}

.cookie-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-cream);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.cookie-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.about-section .menu-pickup {
  justify-content: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.about-section .section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* Menu Buttons */
.menu-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  width: 100%;
}

.menu-button {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 1.5rem 3.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 50px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.menu-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-gold);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.menu-button:hover::before {
  width: 300px;
  height: 300px;
}

.menu-button:hover {
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.menu-button span {
  position: relative;
  z-index: 1;
}

/* Menu Content */
.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-category {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.menu-category:last-child {
  border-bottom: none;
}

.category-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.category-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}


.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  gap: 1rem;
}

.menu-item:hover {
  padding-left: 1rem;
  border-bottom-color: var(--accent-gold);
}

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

/* Card-to-Row Transformer Layout for Zrazy and Chebureky */
.menu-item-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.menu-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-item-card:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.menu-item-card:hover::before {
  opacity: 1;
}

.menu-item-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
}

.menu-item-icon svg {
  width: 40px;
  height: 40px;
}

.menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.menu-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-item-header .item-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-cream);
  line-height: 1.5;
}

.menu-item-header .item-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-left: 0;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.menu-item-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item-actions {
  width: 100%;
}

.menu-item-card .add-to-cart-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item-card .add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Desktop: Row Layout */
@media (min-width: 768px) {
  .menu-item-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }

  /* Cards without visual block - content takes full width */
  .menu-item-card-no-visual {
    gap: 0;
  }

  .menu-item-visual {
    width: 120px;
    min-width: 120px;
    height: 120px;
    padding: 0;
    flex-shrink: 0;
  }

  .menu-item-icon {
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }

  .menu-item-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex: 1;
  }

  /* For cards without visual, content should take full width */
  .menu-item-card-no-visual .menu-item-content {
    width: 100%;
  }

  .menu-item-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1.5rem;
  }

  .menu-item-header .item-name {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    flex: 1;
  }

  .menu-item-header .item-price {
    font-size: 1.35rem;
    margin-left: 0;
    align-self: center;
  }

  .menu-item-options {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .menu-item-actions {
    width: auto;
    min-width: 180px;
  }

  .menu-item-card .add-to-cart-btn {
    width: 100%;
    min-width: 180px;
  }
}

.menu-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

.menu-item-info .item-name-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.item-name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-cream);
  line-height: 1.6;
}

.item-price {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--accent-gold);
  margin-left: 2rem;
  white-space: nowrap;
}

/* Weight selection buttons for Chebureky category */
.category-weight-selector {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.category-weight-selector .weight-btn {
  background: transparent;
  border: 1px solid var(--text-cream);
  color: var(--text-cream);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-weight-selector .weight-btn:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.category-weight-selector .weight-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.category-weight-selector .weight-btn.active:hover {
  background: #e0c26e;
  border-color: #e0c26e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Category options container for weight and meat selectors */
.category-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

/* Meat selection buttons for Chebureky category */
.category-meat-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.category-meat-selector .meat-btn {
  background: transparent;
  border: 1px solid var(--text-cream);
  color: var(--text-cream);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-meat-selector .meat-btn:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.category-meat-selector .meat-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.category-meat-selector .meat-btn.active:hover {
  background: #e0c26e;
  border-color: #e0c26e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Item name container with meat buttons */
.item-name-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.item-meat-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.item-meat-selector .meat-btn {
  background: transparent;
  border: 1px solid var(--text-cream);
  color: var(--text-cream);
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.item-meat-selector .meat-btn:hover {
  background: var(--text-cream);
  color: var(--bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.item-meat-selector .meat-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.item-meat-selector .meat-btn.active:hover {
  background: #e0c26e;
  border-color: #e0c26e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Family Pack */
.family-pack-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.family-pack-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.family-pack-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.family-pack-offer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.offer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offer-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text-cream);
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin: 0;
}

.offer-item:not(:last-child) .offer-text::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold),
    transparent
  );
  margin: 1rem auto 0;
}

.offer-highlight {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: 1px;
}

.family-pack-benefits {
  text-align: left;
  max-width: 600px;
  margin: 4rem auto 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.family-pack-benefits h4 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.family-pack-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.family-pack-benefits li {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.family-pack-order-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.family-pack-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.family-pack-order-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.family-pack-order-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.search-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-cream);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.search-close {
  background: transparent;
  border: none;
  color: var(--text-cream);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-cream);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 1rem;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.search-result-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateX(5px);
}

.search-result-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.search-result-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.search-result-item .result-link {
  color: var(--text-cream);
  text-decoration: none;
  display: block;
}

.search-no-results {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-info {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo .logo-text {
  font-size: 2.5rem;
}

.footer-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.footer-contact h3,
.footer-social h3 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-family: "Cinzel Decorative", "Playfair Display", serif;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal-link:hover {
  color: var(--accent-gold);
}

.footer-legal-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-copyright {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-muted);
}

.footer-made-by {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-muted);
}

.heart-icon {
  color: var(--text-cream);
  width: 16px;
  height: 16px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.footer-ttmms-link {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-ttmms-link:hover {
  color: var(--text-cream);
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Responsive Design - Standard Breakpoints
   ======================================== */

/* Large Desktop (xl) - 1200px and up */
@media (min-width: 1200px) {
  .nav-container {
    max-width: 1800px;
  }
}

/* Desktop (lg) - 992px to 1199px */
@media (max-width: 1199px) {
  .nav-container {
    padding: 0 3rem;
  }

  .container {
    padding: 0 3rem;
  }

  .hero-content {
    padding: 0 3rem 5rem;
  }

  .logo-center .logo-text {
    font-size: 1.2rem;
  }

  .nav-actions {
    gap: 1rem;
  }

  .nav-links-left {
    gap: 2rem;
  }

  .footer-content {
    gap: 4rem;
  }
}

/* Tablet (md) - 768px to 991px */
@media (max-width: 991px) {
  .navbar {
    padding: 2rem 0 1rem;
  }

  .navbar.scrolled {
    padding: 1.5rem 0 0.75rem;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
    padding: 0 2rem;
    gap: 1rem;
    min-height: 50px;
  }

  /* Hide nav links on tablet/mobile, show menu toggle */
  .nav-links-left {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 2.5rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .nav-links-left.active {
    left: 0;
    display: flex;
  }

  .nav-links-left a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  /* Menu Toggle - Left */
  .menu-toggle {
    display: flex;
    justify-self: start;
  }

  /* Logo - Center */
  .logo-center {
    justify-self: center;
  }

  .logo-center .logo-text {
    font-size: 1.1rem;
  }

  /* Actions - Right */
  .nav-actions {
    justify-self: end;
    gap: 0.8rem;
  }

  .icon-btn {
    padding: 0.4rem;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Video zoom out slightly for tablets */
  .video-container video {
    object-fit: cover;
    object-position: bottom center;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    width: calc(100% / 0.9);
    height: calc(100% / 0.9);
    margin-left: calc((100% - 100% / 0.9) / 2);
    margin-top: calc((100% - 100% / 0.9) / 2);
  }

  /* Hero Section */
  .hero-content {
    padding: 0 2rem 4rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }

  /* Footer */
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .container {
    padding: 0 2rem;
  }
}

/* Mobile Landscape / Small Tablet (sm) - 576px to 767px */
@media (max-width: 767px) {
  .navbar {
    padding: 1.75rem 0 0.75rem;
  }

  .navbar.scrolled {
    padding: 1.25rem 0 0.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
    gap: 0.75rem;
    min-height: 45px;
  }

  .logo-center .logo-text {
    font-size: 1rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .icon-btn {
    padding: 0.35rem;
  }

  .icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .lang-toggle {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    min-width: 40px;
  }

  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }
  .contact-section {
    padding: 6rem 0;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .catering-section {
    min-height: 80vh;
  }

  .catering-section .container {
    padding: 6rem 1.5rem;
  }

  .catering-section .section-title {
    margin-bottom: 2rem;
  }

  .catering-text {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .catering-buttons {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .catering-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }

  .menu-section {
    padding: 6rem 0;
  }

  .menu-buttons {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .menu-button {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
  }

  .menu-categories {
    gap: 2.5rem;
  }

  .menu-category {
    padding-bottom: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  /* Zrazy now uses standard category title, same as Chebureky */

  /* Card grid layout for menu items - 2 columns */
  .menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
  }

  .menu-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-item:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25), 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .menu-item:hover::before {
    opacity: 1;
  }

  /* Card-to-row items on mobile - enhanced stack layout */
  .menu-item-card {
    padding: 1.25rem;
    gap: 1rem;
    grid-column: 1 / -1; /* Full width on mobile for better UX */
  }

  /* Cards without visual block - no visual spacing */
  .menu-item-card-no-visual {
    gap: 0;
  }

  .menu-item-card .menu-item-visual {
    padding: 1rem;
    border-radius: 14px;
  }

  .menu-item-card .menu-item-icon {
    width: 60px;
    height: 60px;
  }

  .menu-item-card .menu-item-icon svg {
    width: 32px;
    height: 32px;
  }

  .menu-item-card .menu-item-header {
    gap: 0.625rem;
  }

  .menu-item-card .menu-item-header .item-name {
    font-size: 1rem;
    font-weight: 600;
  }

  .menu-item-card .menu-item-header .item-price {
    font-size: 1.25rem;
    padding: 0.4rem 0.875rem;
    align-self: flex-start;
  }

  .menu-item-card .menu-item-options {
    gap: 0.875rem;
  }

  .menu-item-card .add-to-cart-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .menu-item-info {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .item-name-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
  }

  .item-name {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-cream);
    min-height: auto;
    display: block;
    word-wrap: break-word;
  }

  .item-price {
    margin-left: 0;
    font-size: 1.25rem;
    align-self: center;
    margin-top: 0;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
  }

  .item-price-options {
    align-items: flex-start;
    width: 100%;
  }

  .weight-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .weight-btn {
    flex: 1;
    text-align: center;
  }

  .add-to-cart-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }

  .item-meat-selector {
    width: 100%;
    justify-content: stretch;
    gap: 0.5rem;
  }

  .item-meat-selector .meat-btn {
    flex: 1;
    padding: 0.625rem 0.75rem;
    font-size: 0.7rem;
    text-align: center;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensure category title is centered and well-spaced */
  .category-title-container {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .category-weight-selector {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  /* Improved spacing for better card appearance */
  .menu-item-info {
    min-height: auto;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .family-pack-offer {
    gap: 1.5rem;
    margin: 3rem 0;
  }

  .family-pack-benefits {
    padding: 2rem;
  }

  .family-pack-order-buttons {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .family-pack-order-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .about-social {
    gap: 1.5rem;
  }

  .about-social .social-icon {
    width: 45px;
    height: 45px;
  }

  .about-social .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .nav-container {
    padding: 0 1.5rem;
    min-height: 45px;
  }

  .logo-center .logo-text {
    font-size: 1rem;
  }

  .nav-actions {
    gap: 0.8rem;
  }

  .btn-order {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .icon-btn {
    padding: 0.4rem;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .lang-toggle {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    min-width: 40px;
  }

  /* Video zoom out for mobile - shows more of the video */
  .video-container video {
    object-fit: cover;
    object-position: bottom center;
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    width: calc(100% / 0.85);
    height: calc(100% / 0.85);
    margin-left: calc((100% - 100% / 0.85) / 2);
    margin-top: calc((100% - 100% / 0.85) / 2);
  }

  .hero-content {
    padding: 0 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 3rem);
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: clamp(1.25rem, 6vw, 2.5rem);
    letter-spacing: 2px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .footer-logo .logo-text {
    font-size: 2rem;
  }

  .footer-contact h3,
  .footer-social h3 {
    font-size: 1.1rem;
  }
}

/* Mobile Portrait (xs) - up to 575px */
@media (max-width: 575px) {
  /* Zrazy mobile layout adaptation for very small screens - switch to 2 columns */
  .zrazy-mobile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .zrazy-option-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .zrazy-option-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .zrazy-option-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .zrazy-option-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .zrazy-option-card:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .zrazy-option-card {
    padding: 1rem;
  }

  .zrazy-option-name {
    font-size: 0.9rem;
  }

  .zrazy-option-card .add-to-cart-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8rem;
  }

  .zrazy-mobile-header {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .zrazy-header-title {
    font-size: 1.1rem;
  }


  .zrazy-kg-btn {
    padding: 0.4rem 0.875rem;
    font-size: 0.85rem;
  }

  .search-overlay {
    padding-top: 8rem;
  }

  .search-container {
    padding: 0 1.5rem;
  }

  .search-input {
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    font-size: 1rem;
  }

  .search-result-item {
    padding: 1.2rem;
  }

  .search-result-item h4 {
    font-size: 1rem;
  }

  /* Adjust menu cards for smaller screens */
  .menu-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-item {
    padding: 1.25rem;
  }

  .item-name {
    min-height: auto;
    font-size: 0.95rem;
    margin-bottom: 0;
    display: block;
    word-wrap: break-word;
  }

  .item-price {
    font-size: 1.15rem;
    margin-left: 0;
    flex-shrink: 0;
  }

  .menu-item-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .item-name-container {
    flex: 1;
    min-width: 0;
  }

  .search-result-item p {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .catering-section {
    min-height: 70vh;
  }

  .catering-section .container {
    padding: 4rem 1rem;
  }

  .catering-paragraph {
    text-align: left;
  }

  .catering-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

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

  .menu-section {
    padding: 4rem 0;
  }

  .menu-header {
    margin-bottom: 3rem;
  }

  .menu-pickup {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .menu-order-section {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .menu-order-info {
    font-size: 0.9rem;
  }

  .menu-order-buttons-wrapper {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .menu-order-btn-simple {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .menu-back-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .menu-back-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .menu-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .menu-button {
    width: 100%;
    text-align: center;
    padding: 1.2rem 2rem;
  }

  .menu-categories {
    gap: 2.5rem;
  }

  .category-title {
    font-size: 1.25rem;
  }

  .category-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .category-options-container {
    width: 100%;
    align-items: flex-start;
  }

  .category-meat-selector,
  .category-weight-selector {
    width: 100%;
    justify-content: flex-start;
  }

  .category-weight-selector .weight-btn {
    flex: 1;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
  }

  .item-name-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
  }

  .menu-item-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .item-meat-selector {
    width: 100%;
    justify-content: flex-start;
  }

  .item-meat-selector .meat-btn {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .item-name {
    font-size: 0.9rem;
    margin-bottom: 0;
    display: block;
    word-wrap: break-word;
  }

  .item-price {
    font-size: 1rem;
    margin-left: 0;
    flex-shrink: 0;
  }

  .family-pack-title {
    font-size: 1.75rem;
  }

  .family-pack-text {
    font-size: 1rem;
  }

  .family-pack-benefits {
    padding: 1.5rem;
  }

  .family-pack-order-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    margin-top: 2.5rem;
  }

  .family-pack-order-btn {
    justify-content: center;
    width: 100%;
    padding: 1rem 1.8rem;
  }

  .about-section {
    padding: 6rem 0;
  }

  .about-social {
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .about-social .social-icon {
    width: 40px;
    height: 40px;
  }

  .about-social .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .navbar {
    padding: 1.5rem 0 0.5rem;
  }

  .navbar.scrolled {
    padding: 1rem 0 0.5rem;
  }

  .nav-container {
    padding: 0 1rem;
    gap: 0.5rem;
    min-height: 40px;
  }

  .logo-center .logo-text {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .menu-toggle {
    width: 26px;
    height: 20px;
  }

  .menu-toggle span {
    height: 1.5px;
  }

  .btn-order {
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .icon-btn {
    padding: 0.35rem;
  }

  .icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
    top: -3px;
    right: -3px;
  }

  .lang-toggle {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    min-width: 38px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 0 1rem 2.5rem;
    align-items: flex-end;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 5vw, 2rem);
    letter-spacing: 1.5px;
  }

  /* Video zoom out more for extra small screens - shows even more of the video */
  .video-container video {
    object-fit: cover;
    object-position: bottom center;
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    width: calc(100% / 0.75);
    height: calc(100% / 0.75);
    margin-left: calc((100% - 100% / 0.75) / 2);
    margin-top: calc((100% - 100% / 0.75) / 2);
  }

  .video-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .container {
    padding: 0 1rem;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-info {
    max-width: 100%;
  }

  .footer-logo .logo-text {
    font-size: 1.75rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
  }

  .social-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
    width: 100%;
    order: -1;
  }

  .footer-copyright,
  .footer-made-by {
    width: 100%;
    justify-content: center;
  }

  .legal-section {
    padding: 10rem 0 4rem;
  }

  .legal-text h2 {
    font-size: 1.5rem;
  }

  .legal-text h3 {
    font-size: 1.2rem;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Extra Small Mobile - up to 375px */
@media (max-width: 375px) {
  .nav-container {
    padding: 0 0.75rem;
    gap: 0.4rem;
  }

  .logo-center .logo-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .icon-btn svg {
    width: 14px;
    height: 14px;
  }

  .lang-toggle {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    min-width: 35px;
  }

  .menu-toggle {
    width: 24px;
    height: 18px;
  }

  .btn-order {
    padding: 0.45rem 0.9rem;
    font-size: 0.6rem;
  }

  .hero-content {
    padding: 0 0.75rem 2rem;
  }

  .hero-title {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4.5vw, 1.75rem);
  }

  .container {
    padding: 0 0.75rem;
  }
}

/* Landscape Orientation */
@media (max-width: 991px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .navbar {
    padding: 1.5rem 0 0.75rem;
  }

  .nav-links-left.active {
    height: 100vh;
    overflow-y: auto;
    padding-top: 2rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .menu-toggle,
  .nav-actions,
  .video-container,
  .video-overlay {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-content {
    position: relative;
    padding: 2rem;
  }
}

/* Form Notifications */
.form-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-cream);
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
  word-wrap: break-word;
}

.form-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.form-notification-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  border-left: 4px solid #155724;
}

.form-notification-error {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-left: 4px solid #721c24;
}

/* Zrazy special mobile layout (1-767px) */
.zrazy-mobile-layout {
  display: none;
}

.zrazy-desktop-layout {
  display: block;
}

@media (max-width: 767px) {
  .zrazy-mobile-layout {
    display: block;
  }

  .zrazy-desktop-layout {
    display: none;
  }

  .zrazy-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .zrazy-header-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-cream);
    flex: 1;
  }

  .zrazy-kg-btn {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    color: var(--accent-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }

  .zrazy-kg-btn.active {
    background: var(--accent-gold);
    color: var(--bg-dark);
  }

  .zrazy-kg-btn:hover {
    background: rgba(212, 175, 55, 0.3);
  }

  .zrazy-kg-btn.active:hover {
    background: #e0c26e;
  }


  .zrazy-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  /* Ensure proper order: Chicken (1,1), Pork (1,2), Beef (1,3), Cabbage (2,1), Mushrooms (2,2-3) */
  .zrazy-option-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .zrazy-option-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .zrazy-option-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .zrazy-option-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .zrazy-option-card:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .zrazy-option-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .zrazy-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .zrazy-option-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
  }

  .zrazy-option-card:hover::before {
    opacity: 1;
  }

  .zrazy-option-name {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-cream);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
  }

  .zrazy-option-card .add-to-cart-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .zrazy-option-card .add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  }

  .zrazy-option-card .add-to-cart-btn svg {
    flex-shrink: 0;
  }

  .zrazy-option-card .add-to-cart-btn span {
    white-space: nowrap;
  }

  .zrazy-mobile-header {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .zrazy-kg-btn {
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .zrazy-kg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }

  .zrazy-kg-btn.active {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  }
}

@media (max-width: 768px) {
  .form-notification {
    top: 80px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .form-notification.show {
    transform: translateY(0);
  }
}
