/* CSS Custom Properties - Theme Variables */
:root {
  --primary-color: #dc2626;
  --secondary-color: #374151;
  --accent-color: #ffffff;
  --whatsapp-color: #25D366;
  --phone-color: #3b82f6;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================================
   MODERN RESPONSIVE FOUNDATION
   ======================================== */

/* Enhanced Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overflow-x: hidden;
}

/* Responsive Base Body */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  min-height: 100dvh;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Container System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Grid Base */
.grid {
  display: grid;
  gap: 1rem;
}

.flex {
  display: flex;
}

/* Responsive Typography Scale */
html {
  font-size: 14px;
}

@media (min-width: 576px) {
  html { font-size: 15px; }
  .container { padding: 0 24px; }
}

@media (min-width: 768px) {
  html { font-size: 16px; }
  .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
  html { font-size: 16px; }
}

/* Touch-Friendly Interactive Elements */
button, a, input, textarea, select {
  min-height: 44px;
  min-width: 44px;
}

/* Improved Focus Accessibility */
:focus {
  outline: 2px solid var(--primary-color, #dc2626);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Images & Media */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modern Viewport Units Support */
@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Kaiser Burger Premium Preloader */
.kaiser-preloader{
  position:fixed;
  inset:0;
  background:#121212;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
  opacity:1;
  visibility:visible;
  transition:opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  font-family:'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.kaiser-preloader.loaded{
  opacity:0;
  visibility:hidden;
}

.preloader-bg-pattern{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(231,76,60,0.03) 0%, transparent 50%),
             radial-gradient(circle at 80% 70%, rgba(255,215,0,0.02) 0%, transparent 50%);
  animation:patternMove 20s ease-in-out infinite;
}

.preloader-content{
  position:relative;
  z-index:10;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:40px;
}

.logo-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  animation:logoEntrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-crown{
  position:relative;
  width:80px;
  height:60px;
  animation:crownPulse 2s ease-in-out infinite;
}

.crown-gem{
  position:absolute;
  top:5px;
  left:50%;
  transform:translateX(-50%);
  width:12px;
  height:12px;
  background:radial-gradient(circle, #ffd700, #ffb347);
  border-radius:50%;
  box-shadow:0 0 20px rgba(255,215,0,0.6);
  animation:gemSparkle 2s ease-in-out infinite;
}

.crown-points{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:2px;
  align-items:flex-end;
}

.point{
  background:linear-gradient(to top, #ffd700, #ffed4e);
  border-radius:2px 2px 0 0;
  box-shadow:0 0 10px rgba(255,215,0,0.4);
}

.point:nth-child(1){width:8px; height:20px;}
.point:nth-child(2){width:10px; height:30px;}
.point:nth-child(3){width:12px; height:40px;}
.point:nth-child(4){width:10px; height:30px;}
.point:nth-child(5){width:8px; height:20px;}

.brand-name{
  font-size:48px;
  font-weight:900;
  letter-spacing:3px;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  animation:textPulse 2.5s ease-in-out infinite;
}

.word-kaiser{
  background:linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:goldShimmer 3s ease-in-out infinite;
  text-shadow:0 0 30px rgba(255,215,0,0.3);
}

.word-burger{
  color:#ffffff;
  font-size:32px;
  font-weight:600;
  letter-spacing:8px;
  opacity:0.9;
}

.brand-tagline{
  font-size:14px;
  color:rgba(255,255,255,0.6);
  font-weight:300;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0;
  animation:taglineFade 3s ease-in-out infinite;
}

.spinner-container{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.circular-spinner{
  position:relative;
  width:80px;
  height:80px;
}

.spinner-track{
  position:absolute;
  inset:0;
  border:3px solid rgba(255,255,255,0.1);
  border-radius:50%;
}

.spinner-progress{
  position:absolute;
  inset:0;
  border:3px solid transparent;
  border-top-color:#e74c3c;
  border-right-color:#e74c3c;
  border-radius:50%;
  animation:spinnerRotate 1.2s linear infinite;
  filter:drop-shadow(0 0 8px rgba(231,76,60,0.4));
}

.loading-percentage{
  position:absolute;
  font-size:16px;
  font-weight:700;
  color:#ffd700;
  text-shadow:0 0 10px rgba(255,215,0,0.5);
  animation:percentageUpdate 3s ease-in-out infinite;
}

.status-text{
  font-size:16px;
  color:rgba(255,255,255,0.7);
  font-weight:400;
  letter-spacing:1px;
  animation:statusBlink 2s ease-in-out infinite;
}

.top-bun::before{
  content:'';
  position:absolute;
  top:15px;
  left:15px;
  right:15px;
  bottom:10px;
  background:linear-gradient(135deg, #f4e4bc, #e6d07a);
  border-radius:65px 65px 15px 15px;
}

.sesame-seed{
  position:absolute;
  width:5px;
  height:3px;
  background:radial-gradient(ellipse, #f5deb3, #ddd8b8);
  border-radius:50%;
  box-shadow:0 1px 2px rgba(0,0,0,0.3);
  z-index:10;
}

.s1{top:18px; left:25px; animation:seedFall 0.3s ease-out 1.8s forwards;}
.s2{top:15px; left:65px; animation:seedFall 0.3s ease-out 1.9s forwards;}
.s3{top:22px; left:105px; animation:seedFall 0.3s ease-out 2s forwards;}
.s4{top:28px; left:45px; animation:seedFall 0.3s ease-out 2.1s forwards;}
.s5{top:20px; left:85px; animation:seedFall 0.3s ease-out 2.2s forwards;}

/* Lettuce - More leafy */
.lettuce{
  width:150px;
  height:18px;
  background:linear-gradient(135deg, #7cfc00 0%, #32cd32 50%, #228b22 100%);
  top:-200px;
  border-radius:75px;
  animation:dropLettuce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s forwards;
  position:relative;
}

.lettuce::before{
  content:'';
  position:absolute;
  inset:-3px;
  background:radial-gradient(ellipse at 20% 30%, #90ee90, transparent 50%),
             radial-gradient(ellipse at 80% 70%, #98fb98, transparent 50%),
             radial-gradient(ellipse at 50% 80%, #adff2f, transparent 40%);
  border-radius:75px;
  z-index:-1;
}

.lettuce::after{
  content:'';
  position:absolute;
  top:2px;
  left:10px;
  right:10px;
  height:8px;
  background:linear-gradient(90deg, transparent, #32cd32, transparent);
  border-radius:50px;
  opacity:0.7;
}

/* Tomato - More realistic */
.tomato{
  width:140px;
  height:12px;
  background:linear-gradient(135deg, #ff6347 0%, #ff4500 50%, #dc143c 100%);
  top:-200px;
  border-radius:70px;
  animation:dropTomato 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.3s forwards;
  position:relative;
  box-shadow:inset 0 2px 4px rgba(255,255,255,0.3), 0 2px 8px rgba(220,20,60,0.4);
}

.tomato::before{
  content:'';
  position:absolute;
  top:2px;
  left:20px;
  width:4px;
  height:4px;
  background:radial-gradient(circle, rgba(255,255,255,0.8), transparent);
  border-radius:50%;
}

/* Cheese - Melting effect */
.cheese{
  width:145px;
  height:10px;
  background:linear-gradient(135deg, #fff8dc 0%, #ffd700 30%, #ffb347 70%, #ffa500 100%);
  top:-200px;
  border-radius:72px;
  animation:dropCheese 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.6s forwards;
  box-shadow:0 0 15px rgba(255,215,0,0.4);
  position:relative;
}

.cheese::before{
  content:'';
  position:absolute;
  bottom:-3px;
  left:10px;
  width:20px;
  height:8px;
  background:linear-gradient(135deg, #ffd700, #ffa500);
  border-radius:0 0 20px 20px;
  opacity:0.8;
}

.cheese::after{
  content:'';
  position:absolute;
  bottom:-3px;
  right:15px;
  width:15px;
  height:6px;
  background:linear-gradient(135deg, #ffd700, #ffa500);
  border-radius:0 0 15px 15px;
  opacity:0.8;
}

/* Patty - More meat-like */
.patty{
  width:150px;
  height:22px;
  background:linear-gradient(135deg, #8b4513 0%, #a0522d 30%, #654321 70%, #3e2723 100%);
  top:-200px;
  border-radius:75px;
  animation:dropPatty 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.9s forwards;
  position:relative;
  box-shadow:inset 0 3px 6px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.4);
}

.patty::before{
  content:'';
  position:absolute;
  inset:2px;
  background:linear-gradient(135deg, #a0522d 0%, #8b4513 50%, #654321 100%);
  border-radius:73px;
  box-shadow:inset 0 2px 4px rgba(0,0,0,0.2);
}

.patty::after{
  content:'';
  position:absolute;
  top:6px;
  left:20px;
  right:20px;
  height:4px;
  background:linear-gradient(90deg, transparent, rgba(139,69,19,0.8), transparent);
  border-radius:50px;
}

/* Bottom Bun - More realistic base */
.bottom-bun{
  width:165px;
  height:25px;
  background:linear-gradient(135deg, #daa520 0%, #b8860b 50%, #cd853f 100%);
  top:150px;
  border-radius:15px 15px 82px 82px;
  animation:none;
  box-shadow:inset 0 3px 6px rgba(0,0,0,0.1), 0 -2px 10px rgba(0,0,0,0.2);
  position:relative;
}

.bottom-bun::before{
  content:'';
  position:absolute;
  top:3px;
  left:8px;
  right:8px;
  height:8px;
  background:linear-gradient(135deg, #f4e4bc, #daa520);
  border-radius:15px;
}

/* Loading Text */
.loading-text{
  display:flex;
  gap:8px;
  margin-bottom:30px;
  font-size:24px;
  font-weight:700;
  color:#ffffff;
  text-shadow:0 0 20px rgba(255,255,255,0.3);
}

.loading-word{
  display:inline-block;
  animation:letterBounce 1.5s ease-in-out infinite;
  will-change:transform;
}

.loading-space{
  width:12px;
}

/* Progress Bar */
.burger-progress{
  width:300px;
  height:4px;
  background:rgba(255,255,255,0.1);
  border-radius:4px;
  overflow:hidden;
}

.progress-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #dc2626, #fbbf24, #10b981);
  border-radius:4px;
  animation:progressLoad 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow:0 0 15px rgba(220,38,38,0.5);
}

/* Loading Screen - Ultra Premium Modern */
.loading-screen-premium{
  position:fixed;
  inset:0;
  background:radial-gradient(ellipse at center, 
    #1a1a2e 0%, 
    #16213e 25%, 
    #0f3460 50%, 
    #0a2540 75%, 
    #000000 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  overflow:hidden;
  transition:all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family:'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dynamic-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.bg-layer{
  position:absolute;
  inset:0;
  background-size:150% 150%;
  animation:bgMove 20s ease-in-out infinite;
  opacity:0.3;
}

.layer-1{
  background:radial-gradient(circle at 20% 50%, 
    rgba(220,38,38,0.4) 0%, 
    transparent 50%);
  animation-delay:0s;
}

.layer-2{
  background:radial-gradient(circle at 80% 20%, 
    rgba(251,191,36,0.3) 0%, 
    transparent 60%);
  animation-delay:7s;
}

.layer-3{
  background:radial-gradient(circle at 40% 80%, 
    rgba(59,130,246,0.2) 0%, 
    transparent 70%);
  animation-delay:14s;
}

.particle-system{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.particle{
  position:absolute;
  width:4px;
  height:4px;
  background:linear-gradient(45deg, #ffffff, #fbbf24);
  border-radius:50%;
  box-shadow:0 0 10px rgba(255,255,255,0.8);
  animation:particleFloat 15s linear infinite;
}

.p1{top:10%; left:10%; animation-delay:0s;}
.p2{top:20%; left:80%; animation-delay:2s; width:3px; height:3px;}
.p3{top:60%; left:15%; animation-delay:4s; width:5px; height:5px;}
.p4{top:80%; left:70%; animation-delay:6s;}
.p5{top:40%; left:90%; animation-delay:8s; width:3px; height:3px;}
.p6{top:70%; left:40%; animation-delay:10s;}
.p7{top:30%; left:60%; animation-delay:12s; width:6px; height:6px;}
.p8{top:90%; left:25%; animation-delay:14s;}

.loading-interface{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-rows:auto auto 1fr;
  gap:40px;
  max-width:600px;
  width:100%;
  padding:0 30px;
  text-align:center;
}

.brand-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}

.logo-container{
  position:relative;
  width:120px;
  height:120px;
  margin:0 auto;
  animation:logoEntrance 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-ring{
  position:absolute;
  inset:0;
  border:3px solid transparent;
  border-radius:50%;
  background:linear-gradient(45deg, #dc2626, #fbbf24) border-box;
  mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite:subtract;
  -webkit-mask-composite:xor;
  animation:ringRotate 3s linear infinite;
}

.logo-crown{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
}

.crown-peak{
  width:8px;
  height:25px;
  background:linear-gradient(to bottom, #ffd700, #ffed4e);
  border-radius:4px 4px 0 0;
  box-shadow:0 0 15px rgba(255,215,0,0.6);
}

.crown-peak:nth-child(2){
  height:35px;
  width:10px;
}

.crown-base-line{
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:40px;
  height:6px;
  background:linear-gradient(to right, #dc2626, #ef4444);
  border-radius:3px;
  box-shadow:0 0 10px rgba(220,38,38,0.6);
}

.logo-glow{
  position:absolute;
  inset:-10px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
  animation:glowPulse 2s ease-in-out infinite;
}

.brand-title{
  font-size:42px;
  font-weight:800;
  background:linear-gradient(135deg, 
    #ffffff 0%, 
    #ffd700 25%, 
    #ffffff 50%, 
    #ffd700 75%, 
    #ffffff 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:titleShimmer 3s ease-in-out infinite;
  margin:0;
  letter-spacing:2px;
  text-shadow:0 0 30px rgba(255,255,255,0.3);
}

.brand-tagline{
  font-size:16px;
  color:rgba(255,255,255,0.7);
  margin:0;
  font-weight:300;
  letter-spacing:1px;
  animation:taglineFade 2s ease-in-out infinite;
}

.status-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:25px;
}

.loading-indicator{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.spinner-ring{
  width:80px;
  height:80px;
  position:relative;
  border-radius:50%;
}

.spinner-segment{
  position:absolute;
  inset:0;
  border:3px solid transparent;
  border-radius:50%;
  animation:spinnerRotate 2s linear infinite;
}

.spinner-segment:nth-child(1){
  border-top-color:#dc2626;
  animation-delay:0s;
}

.spinner-segment:nth-child(2){
  border-right-color:#fbbf24;
  animation-delay:0.5s;
}

.spinner-segment:nth-child(3){
  border-bottom-color:#10b981;
  animation-delay:1s;
}

.spinner-segment:nth-child(4){
  border-left-color:#3b82f6;
  animation-delay:1.5s;
}

.loading-percentage{
  position:absolute;
  font-size:18px;
  font-weight:700;
  color:#ffffff;
  text-shadow:0 0 10px rgba(255,255,255,0.5);
}

.status-text{
  font-size:18px;
  color:rgba(255,255,255,0.8);
  font-weight:500;
  animation:statusPulse 2s ease-in-out infinite;
}

.progress-container{
  width:100%;
  max-width:400px;
}

.progress-bar-modern{
  position:relative;
  width:100%;
  height:8px;
  background:rgba(255,255,255,0.1);
  border-radius:10px;
  overflow:hidden;
  backdrop-filter:blur(10px);
}

.progress-fill-modern{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, 
    #dc2626 0%, 
    #fbbf24 50%, 
    #10b981 100%);
  background-size:200% 100%;
  border-radius:10px;
  animation:progressLoad 4s ease-in-out infinite;
  position:relative;
}

.progress-glow{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.4) 50%, 
    transparent 100%);
  animation:progressGlowMove 2s ease-in-out infinite;
  border-radius:10px;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:20px;
}

.feature-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:20px;
  background:rgba(255,255,255,0.05);
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation:featureEntrance 1s ease-out forwards;
  opacity:0;
  transform:translateY(20px);
}

.feature-item[data-delay="0"]{animation-delay:1s;}
.feature-item[data-delay="200"]{animation-delay:1.2s;}
.feature-item[data-delay="400"]{animation-delay:1.4s;}

.feature-icon{
  font-size:24px;
  filter:drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.feature-item span{
  font-size:14px;
  color:rgba(255,255,255,0.8);
  font-weight:500;
  text-align:center;
}

.crown-top, .crown-base{
  width:60px;
  height:30px;
  background:linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  border-radius:30px 30px 0 0;
  position:relative;
  margin:0 auto;
  box-shadow:0 0 20px rgba(255,215,0,0.5);
}

.crown-base{
  width:80px;
  height:20px;
  background:linear-gradient(45deg, #dc2626, #ef4444, #dc2626);
  border-radius:0;
  margin-top:-5px;
  box-shadow:0 0 15px rgba(220,38,38,0.5);
}

.crown-jewel{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  width:12px;
  height:12px;
  background:radial-gradient(circle, #60a5fa, #3b82f6);
  border-radius:50%;
  box-shadow:0 0 10px rgba(59,130,246,0.8);
  animation:jewelSparkle 2s ease-in-out infinite;
}

.loading-title{
  font-size:36px;
  font-weight:800;
  background:linear-gradient(135deg, #ffffff, #ffd700, #ffffff);
  background-size:200% 200%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:titleGlow 3s ease-in-out infinite;
  margin-bottom:15px;
  letter-spacing:2px;
}

.loading-desc{
  color:rgba(255,255,255,0.8);
  font-size:16px;
  font-weight:400;
  margin-bottom:40px;
  animation:descFade 2s ease-in-out infinite;
}

.loading-animation{
  margin-bottom:40px;
}

.loading-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(45deg, #dc2626, #ffd700);
  animation:dotBounce 1.5s ease-in-out infinite;
}

.dot-2{ animation-delay:0.2s; }
.dot-3{ animation-delay:0.4s; }

.loading-progress-modern{
  position:relative;
}

.progress-track{
  width:280px;
  height:6px;
  background:rgba(255,255,255,0.1);
  border-radius:10px;
  margin:0 auto 15px;
  overflow:hidden;
  position:relative;
}

.progress-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #dc2626, #ffd700, #dc2626);
  background-size:200% 100%;
  border-radius:10px;
  animation:progressGlow 3s ease-in-out infinite;
  box-shadow:0 0 15px rgba(220,38,38,0.5);
}

.progress-text{
  color:rgba(255,255,255,0.7);
  font-size:14px;
  font-weight:500;
  animation:textBlink 2s ease-in-out infinite;
}

.loading-spinner::before{
  content:'';
  position:absolute;
  inset:-10px;
  border:2px solid rgba(255,255,255,0.05);
  border-top:2px solid rgba(255,255,255,0.2);
  border-radius:50%;
  animation:ultraSpin 2s linear infinite reverse;
}

.loading-subtitle{
  font-size:16px;
  font-weight:400;
  margin-bottom:30px;
  letter-spacing:0.5px;
  opacity:0.9;
  color:rgba(255,255,255,0.8);
  animation:subtitleFade 3s ease-in-out infinite;
}

.loading-progress{
  width:200px;
  height:3px;
  background:rgba(255,255,255,0.2);
  border-radius:3px;
  margin:20px auto 0;
  overflow:hidden;
  position:relative;
}

.progress-bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #ffffff, #fbbf24, #ffffff);
  border-radius:3px;
  animation:progressFlow 3s ease-in-out infinite;
  box-shadow:0 0 10px rgba(255,187,36,0.5);
}

/* Floating Particles */
.particles{
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}

.particle{
  position:absolute;
  width:6px;
  height:6px;
  background:linear-gradient(45deg, rgba(255,255,255,0.8), rgba(251,191,36,0.6));
  border-radius:50%;
  box-shadow:0 0 10px rgba(255,255,255,0.5);
}

.particle:nth-child(1){
  top:20%;
  left:10%;
  animation:floatUp 8s linear infinite;
  animation-delay:0s;
}

.particle:nth-child(2){
  top:60%;
  left:80%;
  width:4px;
  height:4px;
  animation:floatUp 6s linear infinite;
  animation-delay:1s;
}

.particle:nth-child(3){
  top:80%;
  left:20%;
  width:8px;
  height:8px;
  animation:floatUp 10s linear infinite;
  animation-delay:2s;
}

.particle:nth-child(4){
  top:30%;
  left:70%;
  width:5px;
  height:5px;
  animation:floatUp 7s linear infinite;
  animation-delay:1.5s;
}

/* Responsive Design for Modern Loading Screen */
@media (max-width: 768px){
  .loading-card{
    padding:50px 30px;
    border-radius:30px;
  }
  
  .crown-top, .crown-base{
    width:50px;
    height:25px;
  }
  
  .crown-base{
    width:65px;
    height:18px;
  }
  
  .loading-title{
    font-size:28px;
    margin-bottom:12px;
  }
  
  .loading-desc{
    font-size:14px;
    margin-bottom:30px;
  }
  
  .progress-track{
    width:220px;
  }
  
  .float-item{
    font-size:20px;
  }
}

@media (max-width: 480px){
  .loading-card{
    padding:40px 25px;
    border-radius:25px;
  }
  
  .crown-top, .crown-base{
    width:45px;
    height:22px;
  }
  
  .crown-base{
    width:58px;
    height:15px;
  }
  
  .loading-title{
    font-size:24px;
    margin-bottom:10px;
    letter-spacing:1px;
  }
  
  .loading-desc{
    font-size:13px;
    margin-bottom:25px;
  }
  
  .progress-track{
    width:180px;
    height:4px;
  }
  
  .dot{
    width:10px;
    height:10px;
  }
  
  .float-item{
    font-size:18px;
  }
  
  .bg-circle-1{
    width:200px;
    height:200px;
  }
  
  .bg-circle-2{
    width:150px;
    height:150px;
  }
  
  .bg-circle-3{
    width:100px;
    height:100px;
  }
}

/* Kaiser Preloader Responsive */
@media (max-width: 768px){
  .preloader-content{
    gap:30px;
    padding:0 20px;
  }
  
  .logo-crown{
    width:60px;
    height:45px;
  }
  
  .crown-gem{
    width:10px;
    height:10px;
  }
  
  .point:nth-child(1){width:6px; height:15px;}
  .point:nth-child(2){width:8px; height:25px;}
  .point:nth-child(3){width:10px; height:35px;}
  .point:nth-child(4){width:8px; height:25px;}
  .point:nth-child(5){width:6px; height:15px;}
  
  .brand-name{
    font-size:36px;
    letter-spacing:2px;
  }
  
  .word-burger{
    font-size:24px;
    letter-spacing:6px;
  }
  
  .brand-tagline{
    font-size:12px;
    letter-spacing:1px;
  }
  
  .circular-spinner{
    width:60px;
    height:60px;
  }
  
  .loading-percentage{
    font-size:14px;
  }
  
  .status-text{
    font-size:14px;
  }
}

@media (max-width: 480px){
  .preloader-content{
    gap:25px;
    padding:0 15px;
  }
  
  .logo-crown{
    width:50px;
    height:35px;
  }
  
  .crown-gem{
    width:8px;
    height:8px;
  }
  
  .point:nth-child(1){width:5px; height:12px;}
  .point:nth-child(2){width:6px; height:20px;}
  .point:nth-child(3){width:8px; height:28px;}
  .point:nth-child(4){width:6px; height:20px;}
  .point:nth-child(5){width:5px; height:12px;}
  
  .brand-name{
    font-size:28px;
    letter-spacing:1px;
  }
  
  .word-burger{
    font-size:20px;
    letter-spacing:4px;
  }
  
  .brand-tagline{
    font-size:11px;
    letter-spacing:1px;
  }
  
  .circular-spinner{
    width:50px;
    height:50px;
  }
  
  .spinner-track, .spinner-progress{
    border-width:2px;
  }
  
  .loading-percentage{
    font-size:12px;
  }
  
  .status-text{
    font-size:13px;
  }
}

@keyframes bgMove{
  0%, 100%{transform:translate(0, 0) scale(1)}
  33%{transform:translate(30px, -20px) scale(1.1)}
  66%{transform:translate(-20px, 30px) scale(0.9)}
}

@keyframes particleFloat{
  0%{transform:translateY(100vh) scale(0); opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-100vh) scale(1); opacity:0}
}

@keyframes logoEntrance{
  0%{transform:scale(0) rotate(180deg); opacity:0}
  50%{transform:scale(1.2) rotate(-10deg); opacity:0.7}
  100%{transform:scale(1) rotate(0deg); opacity:1}
}

@keyframes ringRotate{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

@keyframes glowPulse{
  0%, 100%{opacity:0.3; transform:scale(1)}
  50%{opacity:0.6; transform:scale(1.1)}
}

@keyframes titleShimmer{
  0%, 100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}

@keyframes taglineFade{
  0%, 100%{opacity:0.7}
  50%{opacity:1}
}

@keyframes spinnerRotate{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

@keyframes statusPulse{
  0%, 100%{transform:scale(1); opacity:0.8}
  50%{transform:scale(1.05); opacity:1}
}

@keyframes progressLoad{
  0%{width:0%; background-position:0% 50%}
  25%{width:30%; background-position:25% 50%}
  50%{width:60%; background-position:50% 50%}
  75%{width:85%; background-position:75% 50%}
  100%{width:100%; background-position:100% 50%}
}

@keyframes progressGlowMove{
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}

@keyframes featureEntrance{
  0%{opacity:0; transform:translateY(20px)}
  100%{opacity:1; transform:translateY(0)}
}

@keyframes subtitleFade{
  0%, 100%{opacity:0.9}
  50%{opacity:0.6}
}

@keyframes progressFlow{
  0%{width:0%; transform:translateX(-100%)}
  50%{width:70%; transform:translateX(0%)}
  100%{width:100%; transform:translateX(20%)}
}

@keyframes floatUp{
  0%{transform:translateY(0px) scale(1); opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-100vh) scale(0.5); opacity:0}
}

/* Kaiser Preloader Animations */
@keyframes patternMove{
  0%, 100%{transform:translate(0, 0) scale(1);}
  33%{transform:translate(20px, -30px) scale(1.1);}
  66%{transform:translate(-15px, 20px) scale(0.9);}
}

@keyframes logoEntrance{
  0%{opacity:0; transform:scale(0.8) translateY(30px);}
  100%{opacity:1; transform:scale(1) translateY(0);}
}

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

@keyframes gemSparkle{
  0%, 100%{box-shadow:0 0 20px rgba(255,215,0,0.6);}
  50%{box-shadow:0 0 30px rgba(255,215,0,1), 0 0 40px rgba(255,255,255,0.3);}
}

@keyframes textPulse{
  0%, 100%{transform:scale(1); opacity:1;}
  50%{transform:scale(1.02); opacity:0.9;}
}

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

@keyframes taglineFade{
  0%, 100%{opacity:0.6;}
  50%{opacity:0.9;}
}

@keyframes spinnerRotate{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

@keyframes percentageUpdate{
  0%{content:'0%';}
  25%{content:'25%';}
  50%{content:'50%';}
  75%{content:'75%';}
  100%{content:'100%';}
}

@keyframes statusBlink{
  0%, 100%{opacity:0.7;}
  50%{opacity:1;}
}

@keyframes autoHide{
  0%{opacity:1}
  85%{opacity:1}
  100%{opacity:0; visibility:hidden}
}

/* Back to Navigation Button - Test Mode */
.back-to-nav-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dc2626;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-nav-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-nav-btn:hover {
  background: #b91c1c;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
  transform: translateY(-5px) scale(1.05);
}

.back-to-nav-btn:active {
  transform: translateY(-2px) scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .back-to-nav-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Header - Glassmorphism */
.site-header{
  position:fixed;
  left:0;
  right:0;
  top:0;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(25px);
  border-bottom:1px solid rgba(255,255,255,0.2);
  z-index:1000;
  transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}

/* Enhanced Sticky Navbar - Dark Frosted Glass Effect */
.site-header.scrolled{
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(15px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,0.1);
  box-shadow:0 12px 45px rgba(0,0,0,0.3);
}

/* Logo and text color changes on scroll */
.site-header .logo {
  color: #ffffff;
  transition: color 0.4s ease;
}

.site-header.scrolled .logo {
  color: #ffffff !important;
}

.site-header.scrolled .logo span {
  color: #ffffff !important;
}

.site-header.scrolled .logo i {
  color: #ffffff !important;
}

.site-header.scrolled .logo .logo-white {
  opacity: 1 !important;
}

.site-header.scrolled .logo .logo-dark {
  opacity: 0 !important;
}

.site-header .icon-btn {
  color: #ffffff;
  transition: color 0.4s ease;
}

.site-header.scrolled .icon-btn {
  color: #ffffff !important;
}

.site-header.scrolled .icon-btn:hover {
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.15) !important;
}

.site-header.scrolled .icon-btn i {
  color: #ffffff !important;
}
.header-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 25px;
  max-width:1400px;
  margin:0 auto
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size:22px;
  font-weight:600;
  letter-spacing:1px;
  color:#ffffff;
  transition:all 0.4s ease;
  position:relative;
}

.logo-img {
  height:50px;
  width:auto;
  transition:opacity 0.4s ease;
}

.logo-white {
  opacity:1;
}

.logo-dark {
  opacity:0;
  position:absolute;
  top:0;
  left:0;
}
.logo:hover{transform:scale(1.02)}
.logo i{
  color:#dc2626;
  font-size:24px;
}
.header-actions{display:flex;align-items:center;gap:15px}

/* Language Button */
.lang-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  height: 44px;
  padding: 0 16px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 56px;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.lang-btn:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.lang-btn i {
  font-size: 16px;
}

#current-lang {
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
  width: 2.2ch;
  max-width: none;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  text-align: center;
}

/* Language Dropdown */
.lang-dropdown {
  position: fixed;
  top: 70px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(220, 38, 38, 0.1);
  z-index: 10001;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lang-dropdown-content {
  padding: 12px;
  min-width: 200px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lang-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  transition: left 0.6s;
}

.lang-option:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.04));
  transform: translateX(5px);
}

.lang-option:hover::before {
  left: 100%;
}

.lang-flag {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-name {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 20px;
}

[dir="rtl"] .search-icon {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .clear-search-btn {
  margin-left: 0;
  margin-right: 10px;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.icon-btn:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}

.icon-btn i {
  font-size: 16px;
}

.contact-link{
  color:#1e293b;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.5px;
  padding:10px 20px;
  background:#ffffff;
  border:2px solid #ffffff;
  border-radius:25px;
  transition:all 0.3s ease;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.contact-link:hover{
  background:#f8fafc;
  color:#0f172a;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* Contact link scrolled durumunda da beyaz kalmalı */
.site-header.scrolled .contact-link {
  background: #ffffff !important;
  color: #1e293b !important;
  border-color: #ffffff !important;
}

.site-header.scrolled .contact-link:hover {
  background: #f8fafc !important;
  color: #0f172a !important;
}

/* GÜÇLENDİRİLMİŞ KONTRAST DÜZELTMELERİ - Kaiser Burger Logo ve İkonlar */
.site-header.scrolled * {
  color: #ffffff !important;
}

/* Sadece contact-link beyaz arka plan kalmalı */
.site-header.scrolled .contact-link,
.site-header.scrolled .contact-link * {
  background: #ffffff !important;
  color: #1e293b !important;
}

/* Logo özellikle beyaz */
.site-header.scrolled .logo,
.site-header.scrolled .logo *,
.site-header.scrolled .logo span,
.site-header.scrolled .logo i {
  color: #ffffff !important;
}

/* İkonlar beyaz */
.site-header.scrolled .icon-btn,
.site-header.scrolled .icon-btn *,
.site-header.scrolled .icon-btn i {
  color: #ffffff !important;
}
.icon-btn{
  width:44px;
  height:44px;
  border:none;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s ease;
  color:#ffffff;
  backdrop-filter:blur(10px);
}
.icon-btn:hover{
  background:rgba(255,255,255,0.2);
  color:#ffffff;
  border-color:rgba(255,255,255,0.4);
  transform:translateY(-1px);
}



/* Search Overlay */
.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index:2000;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:80px;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease
}
.search-overlay.active{opacity:1;visibility:visible}
.search-content{width:100%;max-width:600px;margin:0 20px}
.search-header{
  display:flex;
  gap:10px;
  margin-bottom:20px
}
#search-input{
  flex:1;
  padding:15px 20px;
  border:none;
  border-radius:12px;
  background:#fff;
  font-size:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2)
}
.search-results{
  background:#fff;
  border-radius:12px;
  max-height:400px;
  overflow-y:auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.2)
}

/* Filter Panel */
.filter-panel{
  position:fixed;
  right:-350px;
  top:0;
  width:350px;
  height:100vh;
  background:#fff;
  box-shadow:-5px 0 15px rgba(0,0,0,0.1);
  z-index:1500;
  transition:right 0.3s ease;
  overflow-y:auto
}
.filter-panel.active{right:0}
.filter-content{padding:80px 20px 20px}
.filter-group{margin-bottom:30px}
.filter-group h4{margin-bottom:15px;color:#1e293b;font-weight:600}
.filter-option{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  cursor:pointer
}
.filter-option input{margin:0}
.price-range{margin-top:10px}
.price-range input{width:100%;margin-bottom:10px}
#price-display{font-weight:600;color:#dc2626}
.filter-actions{
  display:flex;
  gap:10px;
  margin-top:30px
}
/* Global Button Styles - Based on CTA Button */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  border: none;
  min-width: 120px;
}

.btn-primary {
  background: #dc2626;
  color: #ffffff;
  border: 2px solid #dc2626;
}

.btn-primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
}

.btn-secondary {
  background: #ffffff;
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #475569;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ================================ */
/* CHOICE CHIPS - Filter Sidebar */
/* ================================ */
.filter-section {
  margin-bottom: 24px;
}

.filter-section h4 {
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-chips input[type="radio"],
.choice-chips input[type="checkbox"] {
  display: none;
}

.choice-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  user-select: none;
}

.choice-chip:hover {
  background: #e2e8f0;
  color: #334155;
}

/* Active State */
.choice-chips input:checked + .choice-chip {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
}

.choice-chips input:checked + .choice-chip:hover {
  background: #0f172a;
  border-color: #0f172a;
}

/* Focus State for Accessibility */
.choice-chips input:focus + .choice-chip {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Hero Section - Clean & Modern */
.hero{
  position:relative;
  --header-h: 60px;
  min-height:calc(100vh - var(--header-h));
  min-height:calc(100dvh - var(--header-h));
  height:auto;
  margin-top:0;
  padding-top:0;
  display:flex;
  align-items:center;
  justify-content:center;
  /* Important: don't clip CTA/buttons when the viewport shrinks (zoom) */
  overflow:visible;
  background:linear-gradient(135deg, #dc2626 0%, #374151 100%);
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:1;
  /* Clip only the background image/overlays */
  overflow:hidden;
  top: calc(-1 * var(--header-h));
  height: calc(100% + var(--header-h));
  background: 
    radial-gradient(circle at 15% 25%, rgba(220, 38, 38, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(252, 165, 165, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 75% 20%, rgba(254, 202, 202, 0.1) 0%, transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #fef2f2 35%, #fee2e2 65%, #fecaca 100%);
  background-size: 100% 100%;
  animation: meshMove 20s ease-in-out infinite alternate;
}

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

.hero-img{
  display:none;
}
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:contrast(1.2) saturate(1.1) brightness(0.75) sepia(0.1) hue-rotate(5deg);
  animation:imageFloat 20s ease-in-out infinite;
  transition:filter 0.3s ease;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 40%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3) 100%);
  z-index:2;
}

/* Zoom / small-height safety: let hero grow so CTAs never disappear */
@media (max-height: 700px) {
  .hero{
    align-items:flex-start;
    padding-bottom:32px;
  }
}
.hero-particles{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 2px, transparent 2px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.08) 1.5px, transparent 1.5px),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size:400px 400px, 300px 300px, 500px 500px, 200px 200px;
  animation:particleFloat 25s linear infinite;
  z-index:3
}



.hero-content{
  position:relative;
  z-index:10;
  max-width:800px;
  text-align:center;
  color:#ffffff;
  padding:0 20px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(15px);
  padding:12px 24px;
  border-radius:30px;
  margin-bottom:30px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.8px;
  border:1px solid rgba(255,255,255,0.2);
  text-transform:uppercase;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.hero-badge i.fa-crown {
  color:#ffd700;
  font-size:16px;
  text-shadow:0 2px 8px rgba(255,215,0,0.3);
  animation:crownGlow 3s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  0% { text-shadow:0 2px 8px rgba(255,215,0,0.3); }
  100% { text-shadow:0 4px 15px rgba(255,215,0,0.6), 0 0 25px rgba(255,215,0,0.2); }
}

/* Hero Logo Styles */
.hero-logo {
  margin-bottom:30px;
  text-align:center;
}

.hero-logo-img {
  height:120px;
  width:auto;
  filter:drop-shadow(0 8px 25px rgba(0,0,0,0.3));
  animation:logoFloat 6s ease-in-out infinite;
}

/* Hero Buttons Layout */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.order-dropdown {
  position: relative;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes logoFloat {
  0%, 100% { transform:translateY(0px); }
  50% { transform:translateY(-10px); }
}

/* Image Placeholder Styles */
.image-placeholder {
  display: none;
  background: #f1f5f9;
  min-height: 200px;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border-radius: 15px;
  flex-direction: column;
  gap: 10px;
}

.image-placeholder i {
  font-size: 48px;
  opacity: 0.5;
}

.image-placeholder::after {
  content: 'Görsel yüklenemedi';
  font-size: 14px;
  opacity: 0.7;
}

/* Chef's Special Section */
.chef-special {
  padding: 30px 15px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.special-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0 auto;
}

.special-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  width: 100%;
}

.special-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.special-media:hover .special-img {
  transform: scale(1.05);
}

.special-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}

.special-badge i {
  color: #ffd700;
  font-size: 11px;
}

.special-info {
  text-align: center;
  width: 100%;
}

.special-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.special-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.special-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #dc2626;
  font-weight: 500;
  font-size: 12px;
}

.feature i {
  font-size: 12px;
}

.special-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.price-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.original-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
}

.special-price {
  font-size: 24px;
  font-weight: 700;
  color: #dc2626;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.calories-info {
  font-size: 12px;
  color: #64748b;
}

.special-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220,38,38,0.25);
}

.special-order-btn span {
  display: none;
}

.special-order-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(220,38,38,0.35);
}

/* Desktop: larger chef special */
@media (min-width: 768px) {
  .chef-special {
    padding: 60px 20px;
  }
  
  .special-content {
    flex-direction: row;
    max-width: 900px;
    gap: 40px;
  }
  
  .special-media {
    flex: 1;
    max-width: 400px;
  }
  
  .special-img {
    height: 350px;
  }
  
  .special-info {
    flex: 1;
    text-align: left;
  }
  
  .special-title {
    font-size: 32px;
  }
  
  .special-description {
    font-size: 16px;
  }
  
  .special-features {
    justify-content: flex-start;
    gap: 20px;
  }
  
  .feature {
    font-size: 14px;
  }
  
  .special-pricing {
    justify-content: flex-start;
    gap: 20px;
  }
  
  .special-order-btn {
    width: auto;
    height: auto;
    padding: 14px 28px;
    border-radius: 25px;
    gap: 10px;
  }
  
  .special-order-btn span {
    display: inline;
  }
}
.hero-title{
  font-family:'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size:clamp(36px,8vw,72px);
  font-weight:700;
  letter-spacing:4px;
  margin-bottom:20px;
  color:#ffffff;
  line-height:1.1;
  position:relative;
  text-shadow:
    2px 2px 0px #000,
    3px 3px 0px rgba(0,0,0,0.8),
    4px 4px 15px rgba(0,0,0,0.9);
  text-transform:uppercase;
  z-index:2;
}

.hero-title::before{
  content:'';
  position:absolute;
  top:-20px;
  left:-40px;
  right:-40px;
  bottom:-20px;
  background-image:url('https://images.unsplash.com/photo-1586190848861-99aa4a171e90?q=80&w=1200&auto=format&fit=crop');
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.25;
  z-index:-1;
  border-radius:20px;
  filter:blur(1px) brightness(0.6) contrast(1.2);
}





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

@keyframes bounce{
  0%, 100%{
    transform:translateY(-50%) rotate(-15deg) scale(1);
  }
  50%{
    transform:translateY(-60%) rotate(-10deg) scale(1.1);
  }
}
.hero-subtitle{
  font-family: 'Poppins', sans-serif;
  font-size:clamp(16px,3vw,20px);
  opacity:0.9;
  margin-bottom:40px;
  font-weight:400;
  line-height:1.5;
  color:#e2e8f0;
}
.hero-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.stat{
  text-align:center;
  background:rgba(255,255,255,0.15);
  padding:15px 20px;
  border-radius:15px;
  min-width:100px;
}
.stat-number{
  font-size:24px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:5px;
}
.stat-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1px;
  opacity:0.8;
  font-weight:500;
  color:#e2e8f0;
}


.hero-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* Hero CTA Button - White Background Style (Sipariş Hattı referansı) */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  background: #ffffff;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  background: #f8fafc;
  color: #0f172a;
}

.cta-button.secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-button i{
  animation:arrowBounce 2s ease-in-out infinite;
}

/* Dropdown Buttons - Glassmorphism Style Override */
.phone-dropdown-btn,
.whatsapp-dropdown-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  width: auto !important;
  min-width: 260px !important;
  justify-content: flex-start !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  font-family: inherit !important;
}

.phone-dropdown-btn:hover,
.whatsapp-dropdown-btn:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

/* Glass shimmer effect like main buttons */
.phone-dropdown-btn::before,
.whatsapp-dropdown-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.phone-dropdown-btn:hover::before,
.whatsapp-dropdown-btn:hover::before {
  left: 100%;
}

.phone-dropdown-btn .option-emoji,
.whatsapp-dropdown-btn .option-emoji {
  font-size: 16px;
  margin-right: 0;
}

.phone-dropdown-btn .option-text,
.whatsapp-dropdown-btn .option-text {
  flex: 1;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.phone-dropdown-btn i.fa-arrow-right,
.whatsapp-dropdown-btn i.fa-arrow-right {
  font-size: 14px;
  opacity: 0.8;
  animation: none;
  transition: all 0.3s ease;
  margin-left: auto;
}

.phone-dropdown-btn:hover i.fa-arrow-right,
.whatsapp-dropdown-btn:hover i.fa-arrow-right {
  opacity: 1;
  transform: translateX(4px);
}

/* Order Dropdown Styles */
.order-dropdown{
  position:relative;
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 99999;
  min-width: 250px;
  max-width: 300px;
  border: 2px solid #e2e8f0;
  display: none;
}

.dropdown-menu.active,
.dropdown-menu[style*="block"] {
  display: block !important;
}

.dropdown-item{
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding: 15px 20px !important;
  color: #374151 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-bottom: 1px solid #f1f5f9 !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.dropdown-item:last-child{
  border-bottom: none !important;
}

.dropdown-item:hover{
  background: #f8fafc !important;
  color: #dc2626 !important;
}

.dropdown-item i{
  width: 20px !important;
  font-size: 18px !important;
  color: #64748b !important;
  text-align: center !important;
}

.dropdown-item:hover i{
  color: #dc2626 !important;
}
.scroll-indicator{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  z-index:5;
  color:#fff;
  opacity:0.8;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  padding:15px 20px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.2);
  transition:all 0.3s ease;
  text-decoration:none;
  cursor:pointer;
}

.scroll-indicator:hover{
  opacity:1;
  background:rgba(255,255,255,0.15);
  color:#fff;
  transform:translateX(-50%) translateY(-2px);
}
.scroll-text{
  font-size:12px;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:600;
}
.scroll-arrow{
  font-size:24px;
  animation:modernBounce 2.5s ease-in-out infinite;
}





/* Menu Section */
.menu-section{
  padding:80px 0 60px;
  background:#fff
}
.menu-header{margin-bottom:40px}
.category-nav{
  position:sticky;
  top:70px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:20px 0;
  z-index:100;
  margin-bottom:40px;
  border-radius:15px
}
.categories{
  display:flex;
  gap:15px;
  overflow-x:auto;
  padding:10px 20px;
  scrollbar-width:none;
  -ms-overflow-style:none
}
.categories::-webkit-scrollbar{display:none}
.category-btn{
  white-space:nowrap;
  padding:12px 20px;
  background:#f8fafc;
  border-radius:25px;
  border:2px solid transparent;
  cursor:pointer;
  font-weight:600;
  transition:all 0.3s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:120px
}
.category-btn span{font-size:14px}
.category-btn small{font-size:11px;color:#64748b;margin-top:2px}
.category-btn.active{
  background:linear-gradient(135deg, var(--primary-color), #c41e3a);
  color:#fff;
  border-color:var(--primary-color);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(220,38,127,0.3)
}
.category-btn.active small{color:rgba(255,255,255,0.8)}

.menu-content{display:flex;flex-direction:column;gap:60px}
.category-section{scroll-margin-top:150px}
.category-header{
  text-align:center;
  margin-bottom:40px
}
.category-title{
  font-family:'Poppins', sans-serif;
  font-size:32px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:10px;
  color:#0f172a;
  text-transform:uppercase;
}
.category-description{
  color:#64748b;
  font-size:16px
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));
  gap:25px
}

/* Menu Cards */
.menu-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  border:1px solid #f1f5f9;
  cursor:pointer
}
.menu-card:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  border-color:#dc2626
}
.menu-card-media{
  position:relative;
  height:200px;
  overflow:hidden
}
.menu-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.3s ease
}
.menu-card:hover .menu-card-media img{transform:scale(1.05)}
.card-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.3s ease
}
.menu-card:hover .card-overlay{opacity:1}
.view-details-btn{
  background:#fff;
  border:none;
  padding:12px;
  border-radius:50%;
  cursor:pointer;
  color:#dc2626;
  font-size:18px;
  transition:transform 0.2s ease
}
.view-details-btn:hover{transform:scale(1.1)}

.menu-card-content{padding:20px}
.card-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:10px
}
.card-title{
  font-family:'Poppins', sans-serif;
  font-size:18px;
  font-weight:600;
  letter-spacing:1px;
  color:#0f172a;
  flex:1;
}
.card-price{
  font-size:18px;
  font-weight:700;
  color:#dc2626;
  white-space:nowrap;
  margin-left:10px
}
.card-description{
  color:#64748b;
  margin-bottom:15px;
  line-height:1.5;
  font-size:14px
}
.card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px
}
.card-info{
  display:flex;
  gap:15px;
  font-size:12px;
  color:#94a3b8
}
.card-info span{
  display:flex;
  align-items:center;
  gap:4px
}
.card-tags{
  display:flex;
  gap:5px
}
.allergens{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #f1f5f9
}
.allergens small{
  color:#ef4444;
  font-size:11px;
  display:flex;
  align-items:center;
  gap:5px
}



/* Premium Footer - Full Black Theme */
.site-footer{
  background:#000000;
  color:#fafafa;
  padding:60px 20px 30px;
  position:relative;
  overflow:hidden;
}

.site-footer::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(220,38,38,0.5), transparent);
}

.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  position:relative;
  z-index:2;
}

.footer-section h4{
  color:#ffffff;
  margin-bottom:20px;
  font-weight:700;
  font-size:18px;
  font-family:'Poppins', sans-serif;
  letter-spacing:0.5px;
  position:relative;
}

.footer-section h4::after {
  content:'';
  position:absolute;
  bottom:-8px;
  left:0;
  width:40px;
  height:2px;
  background:linear-gradient(90deg, #dc2626, transparent);
}

.footer-section p{
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  line-height:1.6;
  transition:color 0.3s ease;
  color:#fafafa;
}

.footer-section p:hover {
  color:#ffffff;
}

.footer-section p i {
  color:#dc2626;
  font-size:16px;
  min-width:20px;
}

/* Footer address: keep left-aligned on mobile too */
.footer-address{
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.footer-address span{
  display: block;
}

.footer-address i{
  margin-top: 2px;
}

.social-links{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.social-links a{
  width:44px;
  height:44px;
  background:rgba(255,255,255,0.1);
  color:#fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  transition:all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border:1px solid rgba(255,255,255,0.2);
  position:relative;
  overflow:hidden;
}

.social-links a::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition:left 0.6s;
}

.social-links a:hover::before {
  left:100%;
}

.social-links a:hover{
  background:#ffffff;
  color:#000000;
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(255,255,255,0.2);
  border-color:#ffffff;
}

/* Footer Map */
.footer-map {
  margin-bottom: 50px;
  text-align: center;
}

.footer-map h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255,255,255,0.1);
}

/* Footer Hours */
.footer-hours {
  margin-top: 20px;
}

.footer-hours h5 {
  color: #fafafa;
  font-family: var(--font-display) !important;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

/* Footer Actions */
.footer-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  color: #fafafa;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.footer-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter {
  margin-top: 25px;
}

.footer-newsletter h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.newsletter-form:focus-within {
  border-color: rgba(220, 38, 38, 0.6);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.25);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none !important;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.newsletter-form button {
  padding: 14px 20px;
  border: none;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  font-size: 16px;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: scale(1.05);
}

.newsletter-form button:active {
  transform: scale(0.98);
}

/* Mobile Newsletter Optimization */
@media (max-width: 768px) {
  .footer-newsletter {
    margin-top: 24px;
  }

  .footer-newsletter h5 {
    font-size: 16px;
    margin-bottom: 14px;
    text-align: center;
  }

  .newsletter-form {
    display: block;
    position: relative;
    padding: 4px;
    border-radius: 16px;
    border-width: 0;
    max-width: 100%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset,
                0 10px 28px rgba(0, 0, 0, 0.24);
  }

  .newsletter-form input {
    width: 100%;
    padding: 12px 54px 12px 14px;
    font-size: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
  }

  .newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    margin-top: 20px;
  }

  .footer-newsletter h5 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .newsletter-form {
    display: block;
    position: relative;
    padding: 4px;
    border-radius: 14px;
    border-width: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset,
                0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .newsletter-form input {
    width: 100%;
    padding: 11px 52px 11px 12px;
    font-size: 13px;
    border-radius: 11px;
    background: rgba(255,255,255,0.06);
  }

  .newsletter-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    font-size: 14px;
  }
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Additional Modern Styles */
.search-result-item{
  display:flex;
  gap:15px;
  padding:20px;
  border-bottom:1px solid rgba(255,255,255,0.2);
  cursor:pointer;
  transition:all 0.3s ease;
  backdrop-filter:blur(10px);
}
.search-result-item:hover{
  background:rgba(255,122,89,0.1);
  transform:translateX(5px);
}
.search-result-item:last-child{
  border-bottom:none;
}
.search-result-item img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:15px;
}
.search-item-content{
  flex:1;
}
.search-item-content h4{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:8px;
}
.search-item-content p{
  color:#64748b;
  font-size:14px;
  margin-bottom:10px;
  line-height:1.5;
}
.search-item-meta{
  display:flex;
  align-items:center;
  gap:15px;
}
.search-item-meta .category{
  background:rgba(255,122,89,0.1);
  color:#ff7a59;
  padding:4px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}
.search-item-meta .price{
  font-weight:800;
  color:#ff7a59;
  font-size:16px;
}
.no-results{
  text-align:center;
  padding:40px 20px;
  color:#64748b;
  font-size:18px;
  font-weight:600;
}

/* Responsive Design - Enhanced */
@media(max-width:768px){
  .hero { --header-h: 55px; }

  .hero-content{margin:20px 10px;padding:40px 25px}
  .hero-stats{flex-direction:row;gap:20px;flex-wrap:wrap}
  .stat{min-width:80px;padding:15px}
  .stat-number{font-size:24px}
  .menu-grid{grid-template-columns:1fr}
  .category-btn{min-width:100px;padding:10px 15px}
  .footer-content{grid-template-columns:1fr;text-align:center}
  .filter-panel{width:100%;right:-100%}

  .search-content{margin:0 15px}
  .header-content{padding:12px 15px}
  .logo{font-size:20px}
  .logo-img{height:40px}
  .hero-logo-img{height:80px}
  .section-title{font-size:28px}
}

@media(max-width:480px){
  .hero { --header-h: 50px; }

  .hero-logo-img {
    height: auto !important;
    max-width: 140px !important;
  }

  .hero-title{font-size:36px}
  .hero-title::before{
    top:-15px;
    left:-20px;
    right:-20px;
    bottom:-15px;
  }
  .hero-subtitle{
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hero-stats {
    gap: 10px;
    margin: 15px 0;
  }

  .stat {
    padding: 10px 8px;
    min-width: 60px;
  }

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

  .stat-label {
    font-size: 0.65rem;
  }

  .hero-buttons{
    flex-direction:column;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .cta-button{
    padding: 12px 20px;
    font-size: 0.875rem;
  }
  
  .contact-link{
    font-size:12px;
    padding:6px 12px;
  }
  
  .dropdown-menu{
    min-width:200px;
  }
  
  .dropdown-item{
    padding:12px 15px;
  }
  .menu-card-content{padding:15px}
  .card-title{font-size:18px}
  .card-price{font-size:18px}
}

/* Chef's Special Section */
.chef-special-section{
  background:#f8fafc;
  padding:80px 20px;
  margin:40px 0;
}

.special-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  max-width:1200px;
  margin:0 auto;
  align-items:center;
}

.special-media{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  transform:rotate(-3deg);
  transition:transform 0.3s ease;
}

.special-media:hover{
  transform:rotate(0deg) scale(1.02);
}

.special-media img{
  width:100%;
  height:400px;
  object-fit:cover;
  display:block;
}

.special-badge{
  position:absolute;
  top:20px;
  left:20px;
  background:var(--primary-color);
  color:white;
  padding:12px 20px;
  border-radius:25px;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 8px 20px rgba(220,38,127,0.3);
  animation:pulse 2s ease-in-out infinite;
}

.special-details{
  padding:20px 0;
}

.special-header{
  margin-bottom:20px;
}

.special-subtitle{
  color:var(--primary-color);
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:8px;
  display:block;
}

.special-title{
  font-family:'Poppins', sans-serif;
  font-size:42px;
  font-weight:700;
  letter-spacing:3px;
  color:#1e293b;
  line-height:1.2;
  margin-bottom:20px;
  text-transform:uppercase;
}

.special-description{
  font-size:18px;
  color:#64748b;
  line-height:1.6;
  margin-bottom:30px;
}

.special-meta{
  margin-bottom:30px;
}

.special-info{
  display:flex;
  align-items:center;
  gap:30px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.special-price{
  font-size:32px;
  font-weight:800;
  color:var(--primary-color);
}

.special-calories,
.special-time{
  display:flex;
  align-items:center;
  gap:6px;
  color:#64748b;
  font-weight:500;
}

.special-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.special-tags .tag{
  font-size:18px;
  padding:4px 8px;
  border-radius:8px;
  background:rgba(220,38,127,0.1);
}

.special-details-btn{
  margin-top:20px;
}

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

@keyframes autoHide{
  0%, 90%{
    opacity:1;
    visibility:visible;
  }
  100%{
    opacity:0;
    visibility:hidden;
  }
}

/* Responsive Design for Hero & Chef's Special */
@media(max-width: 992px){
  .hero-title::before{
    top:-15px;
    left:-30px;
    right:-30px;
    bottom:-15px;
  }
  
  .special-content{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }
  
  .special-media{
    transform:rotate(0deg);
    max-width:400px;
    margin:0 auto;
  }
  
  .special-title{
    font-size:36px;
  }
  
  .special-info{
    justify-content:center;
  }
}

@media(max-width: 480px){
  .chef-special-section{
    padding:60px 20px;
  }
  
  .special-title{
    font-size:28px;
  }
  
  .special-description{
    font-size:16px;
  }
  
  .special-price{
    font-size:28px;
  }
  
  .special-info{
    gap:20px;
  }
}

/* Contact Section */
.contact-section{
  background:#f8fafc;
  padding:80px 20px;
  margin:0;
}

.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  min-height:500px;
}

.map-column{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  border:1px solid #e2e8f0;
  min-height:500px;
}

.map-column iframe{
  width:100%;
  height:100%;
  min-height:500px;
}

.info-column{
  background:#ffffff;
  border-radius:20px;
  padding:40px 30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  border:1px solid #e2e8f0;
}

.info-column h3{
  font-family:'Poppins', sans-serif;
  font-size:28px;
  font-weight:600;
  letter-spacing:1px;
  color:#1e293b;
  margin-bottom:30px;
  text-transform:uppercase;
  text-align:center;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom:30px;
  padding:20px;
  border-radius:15px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  transition:all 0.3s ease;
}

.info-item:hover{
  transform:translateY(-2px);
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.info-icon{
  width:50px;
  height:50px;
  background:linear-gradient(135deg, var(--primary-color), #ef4444);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 5px 15px rgba(220,38,38,0.3);
}

.info-icon i{
  font-size:20px;
  color:#ffffff;
}

.info-content h4{
  font-family:'Poppins', sans-serif;
  font-size:18px;
  font-weight:600;
  letter-spacing:0.5px;
  color:#1e293b;
  margin-bottom:8px;
  text-transform:uppercase;
}

.info-content p{
  color:#64748b;
  font-size:16px;
  line-height:1.6;
  margin-bottom:10px;
}

.info-content a{
  color:var(--primary-color);
  text-decoration:none;
  font-weight:500;
}

.info-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary-color);
  text-decoration:none;
  font-weight:600;
  padding:8px 16px;
  border:2px solid var(--primary-color);
  border-radius:20px;
  transition:all 0.3s ease;
  font-size:14px;
  margin-top:5px;
}

.info-link:hover{
  background:var(--primary-color);
  color:#ffffff;
  transform:translateY(-1px);
}

.social-links.large{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:20px;
}

.social-links.large a{
  width:50px;
  height:50px;
  background:linear-gradient(135deg, var(--primary-color), #ef4444);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:20px;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 4px 15px rgba(220,38,38,0.3);
}

.social-links.large a:hover{
  transform:translateY(-3px) scale(1.1);
  box-shadow:0 8px 25px rgba(220,38,38,0.4);
}

/* Updated Footer Styles */
.site-footer{
  background:var(--secondary-color);
  color:#b0b0b0;
  padding:40px 20px;
}

.footer-content-simple{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  max-width:600px;
  margin:0 auto;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:'Poppins', sans-serif;
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
  color:#ffffff;
  margin-bottom:15px;
}

.footer-logo i{
  color:var(--primary-color);
  font-size:32px;
}

.footer-tagline{
  color:#d1d5db;
  font-size:16px;
  line-height:1.6;
  margin-bottom:20px;
  font-style:italic;
}

.footer-copyright{
  color:#9ca3af;
  font-size:14px;
  margin:0;
  padding-top:20px;
  border-top:1px solid #4b5563;
}

/* Responsive Design for Contact Section */
@media(max-width: 768px){
  .contact-section{
    padding:60px 20px;
  }
  
  .contact-layout{
    grid-template-columns:1fr;
    gap:30px;
  }
  
  .map-column{
    min-height:300px;
  }
  
  .map-column iframe{
    min-height:300px;
  }
  
  .info-column{
    padding:30px 20px;
  }
  
  .info-column h3{
    font-size:24px;
    margin-bottom:20px;
  }
}

/* ===== MODERN MENÜ SİSTEMİ - KAISER BURGER ===== */

/* 1. Modernize Edilmiş Kategori Navigasyonu */
.modern-category-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 16px 24px;
  margin: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}

.modern-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s;
}

.modern-category-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #dc2626;
}

.modern-category-btn:hover::before {
  left: 100%;
}

.modern-category-btn.active {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border-color: #dc2626;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.modern-category-btn .category-name {
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.modern-category-btn .category-count {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}

/* 2. Modern İncele Butonu */
.modern-details-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
  z-index: 10;
}

.modern-details-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.modern-details-btn i {
  font-size: 16px;
}

/* Menu card düzenlemesi */
.menu-card {
  position: relative;
}

.menu-card-content {
  position: relative;
}





/* ===== ULTRA-MODERN DEMO.PHP MENU SYSTEM ===== */

/* Menu Section Enhancements */
.menu-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Menu header title (QR Kaiser Menü) */
.menu-header {
  text-align: center;
}

.menu-header .section-title {
  width: 100%;
  justify-content: center !important;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  text-align: center;
}

.menu-header .section-title i {
  font-size: 2rem !important;
  margin: 0 !important;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .menu-header .section-title {
    gap: 8px;
  }
  .menu-header .section-title i {
    font-size: 1.4rem !important;
  }
}

/* Menu Search Container */
.menu-search-container {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.menu-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 60px;
  padding: 18px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-search-wrapper:focus-within {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1), 0 15px 40px rgba(220, 38, 38, 0.15);
  background: #ffffff;
}

.menu-search-wrapper .search-icon {
  color: #dc2626;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.menu-search-wrapper:focus-within .search-icon {
  transform: scale(1.1);
}

.menu-search-input {
  flex: 1;
  border: 0 !important;
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  -webkit-appearance: none;
  appearance: none;
  min-width: 0 !important;
  min-height: 0 !important;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

/* Extra specificity: prevent any framework/base styles from re-applying */
.menu-search-wrapper #menu-search-input.menu-search-input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.menu-search-input::placeholder {
  color: rgba(100, 116, 139, 0.6);
  font-weight: 400;
}

.clear-search-btn {
  width: 32px;
  height: 32px;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  border: none;
  color: #dc2626;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.clear-search-btn:hover {
  background: #dc2626;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Inline Search Results */
.inline-search-results {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-height: 500px;
  overflow-y: auto;
  padding: 15px;
  z-index: 100;
  border: 2px solid #e2e8f0;
}

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

.inline-search-results::-webkit-scrollbar-track {
  background: rgba(220, 38, 38, 0.05);
  border-radius: 10px;
}

.inline-search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #dc2626, #b91c1c);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.search-result-category {
  margin-bottom: 20px;
}

.search-category-title {
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
  border-radius: 10px;
  display: inline-block;
}

.search-result-item {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.search-result-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-result-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.search-result-item:hover::before {
  opacity: 1;
}

.search-item-content {
  position: relative;
  z-index: 1;
}

.search-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
}

.search-item-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.search-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.category-badge {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
  color: #dc2626;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.price-badge {
  font-weight: 700;
  color: #dc2626;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.no-search-results {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
}

.no-search-results i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.3;
  color: #dc2626;
}

.no-search-results h4 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #1f2937;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.no-search-results p {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive Design - Mobil İyileştirme */
@media (max-width: 768px) {
  .menu-search-container {
    margin-bottom: 25px;
    padding: 0 15px;
  }
  
  .menu-search-wrapper {
    padding: 9px 14px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.95), 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .menu-search-wrapper:focus-within {
    border-color: transparent;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.35), 0 14px 30px rgba(220, 38, 38, 0.12);
  }
  
  .menu-search-wrapper .search-icon {
    font-size: 15px;
    margin-right: 10px;
  }
  
  .menu-search-input {
    font-size: 14px;
    padding: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
  }
  
  .clear-search-btn {
    width: 28px;
    height: 28px;
    min-width: 0 !important;
    min-height: 0 !important;
    font-size: 12px;
    margin-left: 8px;
  }
  
  .inline-search-results {
    max-height: 350px;
    padding: 10px;
    border-radius: 16px;
  }
  
  .search-item-title {
    font-size: 14px;
  }
  
  .search-item-desc {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .menu-search-container {
    padding: 0 12px;
    margin-bottom: 20px;
  }
  
  .menu-search-wrapper {
    padding: 7px 12px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.9), 0 8px 18px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }

  .menu-search-wrapper:focus-within {
    border-color: transparent;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.35), 0 12px 24px rgba(220, 38, 38, 0.12);
  }
  
  .menu-search-wrapper .search-icon {
    font-size: 13px;
    margin-right: 8px;
  }
  
  .menu-search-input {
    font-size: 13px;
    padding: 0;
    min-height: 0 !important;
    min-width: 0 !important;
  }
  
  .clear-search-btn {
    width: 24px;
    height: 24px;
    min-width: 0 !important;
    min-height: 0 !important;
    font-size: 11px;
    margin-left: 6px;
  }
  
  .inline-search-results {
    padding: 8px;
    max-height: 280px;
    border-radius: 14px;
    top: calc(100% + 10px);
  }
  
  .search-category-title {
    font-size: 12px;
    padding: 5px 8px;
  }
  
  .search-result-item {
    padding: 10px;
  }
}

/* Modern Category Navigation */
.modern-category-nav {
  margin-bottom: 60px;
}

.modern-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.modern-category-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  min-width: 180px;
  text-align: center;
}

.modern-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s;
}

.modern-category-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #dc2626;
}

.modern-category-btn:hover::before {
  left: 100%;
}

.modern-category-btn.active {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border-color: #dc2626;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  transform: translateY(-3px);
}

.modern-category-btn .category-name {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.modern-category-btn .category-count {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

/* Mobile: compact category grid (3 per row) */
@media (max-width: 768px) {
  .modern-category-nav {
    margin-bottom: 28px;
  }

  .modern-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    justify-content: initial;
  }

  .modern-category-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 10px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .modern-category-btn:hover {
    transform: translateY(-2px);
  }

  .modern-category-btn .category-name {
    font-size: 12px;
    line-height: 1.15;
    margin-bottom: 4px;
  }

  .modern-category-btn .category-count {
    font-size: 10px;
  }
}

/* Very small phones: 2 per row for readability */
@media (max-width: 360px) {
  .modern-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Modern Menu Grid */
.modern-menu-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.category-section {
  margin-bottom: 80px;
  scroll-margin-top: 120px;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.modern-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 20px 0;
  justify-items: stretch;
}

/* Modern Menu Cards */
.modern-menu-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 2px solid transparent;
  width: 100%;
}

.modern-menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #dc2626;
}

.menu-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-menu-card:hover .menu-card-media img {
  transform: scale(1.1);
}

.popular-badge, .chef-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.chef-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  top: 15px;
  right: 15px;
  left: auto;
}

.menu-card-content {
  padding: 25px;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  flex: 1;
  margin-right: 15px;
  font-family: 'Poppins', sans-serif;
}

.card-price {
  font-size: 24px;
  font-weight: 700;
  color: #dc2626;
  white-space: nowrap;
}

.card-description {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prep-time, .calories {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.prep-time i, .calories i {
  color: #dc2626;
  width: 16px;
}

/* Ultra-Modern Details Button */
.modern-details-btn {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-details-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.modern-details-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.4);
}

.modern-details-btn:hover::before {
  left: 100%;
}

.modern-details-btn i {
  font-size: 16px;
}

.allergens-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.allergens-info small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f59e0b;
  font-weight: 500;
}





/* ScrollSpy Visual Feedback */
.scrollspy-indicator {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%) translateX(-100%);
  background: rgba(220, 38, 38, 0.95);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

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

.scrollspy-indicator.hide {
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}

.scrollspy-indicator i {
  font-size: 16px;
  animation: pulseEye 2s ease-in-out infinite;
}

@keyframes pulseEye {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@media (max-width: 768px) {
  .scrollspy-indicator {
    left: 20px;
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* KAISER BURGER DROPDOWN SYSTEM - Dark Theme */
.order-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-chevron {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: none !important;
}

#orderBtn.active .dropdown-chevron {
  transform: rotate(180deg);
}

.order-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-10px) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  display: none !important;
}

.order-dropdown-menu::before {
  display: none;
}

.order-dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  display: block !important;
}

/* Ensure dropdown buttons appear as floating individual elements */
.order-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* CRITICAL FIX - Dropdown Animation */
#orderDropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-10px) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 9999 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  display: none !important;
}

#orderDropdown.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  display: block !important;
}

#orderDropdown .dropdown-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: center !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.dropdown-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: center !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Eski order-option stilleri - artık kullanılmıyor, cta-button secondary kullanıyoruz */
.order-option {
  display: none !important;
}

.order-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.order-option:hover::before {
  left: 100%;
}

.phone-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.phone-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.option-emoji {
  font-size: 20px;
  margin-right: 12px;
}

.option-text {
  flex: 1;
  text-align: left;
  font-weight: 600;
}

.order-option i {
  font-size: 14px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.order-option:hover i {
  opacity: 1;
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .order-dropdown-menu {
    min-width: 260px;
    left: 0;
    transform: translateX(0) translateY(-20px);
  }
  
  .order-dropdown-menu.show {
    transform: translateX(0) translateY(0);
  }
  
  .order-dropdown-menu::before {
    left: 30px;
    transform: none;
  }
  
  .order-option {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .option-emoji {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .order-dropdown-menu {
    min-width: 240px;
    padding: 16px;
  }
  
  .order-option {
    padding: 12px 14px;
    font-size: 14px;
  }
}





/* ==========================================
   🔔 MODERN APPLE-STYLE NOTIFICATION SYSTEM
   Site Colors: Black, Red (#dc2626), White
   Glassmorphism + Smooth Animations
   ========================================== */

.qr-notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.qr-notification {
  pointer-events: all;
  min-width: 320px;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  opacity: 0;
  transform: translateX(400px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.qr-notification-hide {
  opacity: 0;
  transform: translateX(400px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* Icon Styles */
.qr-notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.qr-notification:hover .qr-notification-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Success - Red accent */
.qr-notification-success .qr-notification-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

/* Error - Bright Red */
.qr-notification-error .qr-notification-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Warning - Red-Orange */
.qr-notification-warning .qr-notification-icon {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Info - White/Gray */
.qr-notification-info .qr-notification-icon {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #1f2937;
  box-shadow: 0 8px 20px rgba(156, 163, 175, 0.3);
}

/* Message */
.qr-notification-message {
  flex: 1;
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Close Button */
.qr-notification-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  font-size: 14px;
}

.qr-notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

.qr-notification-close:active {
  transform: scale(0.95);
}

/* Hover effect */
.qr-notification:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .qr-notification-container {
    top: 16px;
    right: 16px;
    left: 16px;
    gap: 10px;
  }
  
  .qr-notification {
    min-width: auto;
    max-width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    gap: 12px;
  }

  .qr-notification-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 17px;
  }
  
  .qr-notification-message {
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .qr-notification-close {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .qr-notification-container {
    top: 12px;
    right: 12px;
    left: 12px;
    gap: 8px;
  }

  .qr-notification {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .qr-notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 16px;
  }

  .qr-notification-message {
    font-size: 13px;
  }

  .qr-notification-close {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 12px;
  }
}

/* Animation for multiple notifications */
.qr-notification:nth-child(n+4) {
  animation: fadeOutDown 0.4s ease-out forwards;
}

@keyframes fadeOutDown {
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .category-header {
    margin-bottom: 30px;
  }
  
  .category-title {
    font-size: 28px;
  }
  
  .category-description {
    font-size: 16px;
    padding: 0 20px;
  }

  .modern-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 0;
    justify-items: center;
  }
  
  .modern-menu-card {
    margin: 0;
    width: 100%;
    max-width: 520px;
  }
  
  .menu-card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .card-price {
    font-size: 20px;
  }
  

}



/* Ürün Başlık ve Fiyat */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
}

/* =========================================================
   DISPLAY FONT (ONLY SELECTED HEADINGS)
   ========================================================= */
:root{
  --font-display:'Cinzel', serif;
}

/* Only the headings shown in the screenshots */
.menu-header .section-title,
.category-title,
.special-title,
.footer-map h3{
  font-family: var(--font-display) !important;
  font-optical-sizing: auto;
}

/* Footer: only specific headings in Cinzel (requested words) */
.site-footer .footer-cinzel{
  font-family: 'Cinzel', serif !important;
  font-optical-sizing: auto;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  flex: 1;
  margin-right: 20px;
}

.price-container {
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  padding: 12px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  min-width: 80px;
}

.currency {
  font-size: 16px;
  opacity: 0.9;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  margin-left: 2px;
}

/* Bölüm Başlıkları */
.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--primary-color);
  font-size: 16px;
}

/* Ürün Açıklaması */
.product-description-section {
  margin-bottom: 25px;
}

.product-description {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  background: #f8fafc;
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin: 0;
}

/* Beslenme Bilgileri Grid */
.nutrition-info-section {
  margin-bottom: 25px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.info-item {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
}

.info-content {
  flex: 1;
}

.info-label {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
  font-weight: 500;
}

.info-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Alerjen Bilgileri */
.allergen-info-section {
  margin-bottom: 25px;
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.allergen-item {
  background: #fef2f2;
  color: #dc2626;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #fecaca;
}

.no-allergen {
  background: #f0fdf4;
  color: #16a34a;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-style: italic;
  border: 1px solid #bbf7d0;
}

/* Ürün Etiketleri */
.product-tags-section {
  margin-bottom: 20px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag-item {
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.2);
}



.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 140px;
  justify-content: center;
}

.btn-order {
  background: linear-gradient(135deg, var(--primary-color), #b91c1c);
  color: white;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-favorite {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.btn-favorite:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.footer-info {
  text-align: center;
  color: #64748b;
  font-size: 13px;
}

.footer-info i {
  color: var(--primary-color);
  margin-right: 5px;
}




/* ===== SİPARİŞ HATTI DROPDOWN STİLLERİ ===== */
.order-dropdown {
  position: relative;
  display: inline-block;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.order-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.order-btn i {
  font-size: 16px;
}

.order-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 8px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e5e7eb;
}

.order-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: left;
}

.order-option:hover {
  background: #f3f4f6;
  color: var(--primary-color);
}

.order-option i {
  font-size: 18px;
  width: 20px;
}

.order-option:first-child i {
  color: var(--phone-color);
}

.order-option:last-child i {
  color: var(--whatsapp-color);
}

.message-item {
  margin-bottom: 8px;
}

.message-text {
  background: var(--whatsapp-color);
  color: white;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 15px;
  display: inline-block;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.cta-button.whatsapp-btn {
  background: var(--whatsapp-color);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp-btn:hover {
  background: #16a34a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== MOBİL UYUMLULUK ===== */
@media (max-width: 768px) {
  .order-btn span {
    display: none;
  }
  
  .order-btn {
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  
  .order-menu {
    right: -8px;
    min-width: 200px;
  }
  

}

/* ===================================== */
/* FORCE GLASSMORPHISM DROPDOWN OVERRIDE */
/* ===================================== */
/* Dropdown Container Show/Hide Override */
.order-dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  display: block !important;
}

.order-dropdown-menu.show .dropdown-content {
  display: flex !important;
}

/* Dropdown Buttons Glassmorphism */
button.cta-button.secondary.phone-dropdown-btn,
button.cta-button.secondary.whatsapp-dropdown-btn,
.phone-dropdown-btn,
.whatsapp-dropdown-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  width: 260px !important;
  justify-content: flex-start !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  margin: 4px 0 !important;
  font-family: inherit !important;
}

button.cta-button.secondary.phone-dropdown-btn:hover,
button.cta-button.secondary.whatsapp-dropdown-btn:hover,
.phone-dropdown-btn:hover,
.whatsapp-dropdown-btn:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}



.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-body {
    flex: 1;
    padding: 20px 25px;
    overflow-y: auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.cart-item-info .price {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn, .remove-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.qty-btn {
    background: #e5e7eb;
    color: #374151;
}

.qty-btn:hover {
    background: #d1d5db;
}

.remove-btn {
    background: #fee2e2;
    color: #dc2626;
}

.remove-btn:hover {
    background: #fecaca;
}

.qty {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.cart-footer {
    border-top: 1px solid #e5e7eb;
    padding: 20px 25px;
    background: #f9fafb;
}

.table-selection {
    margin-bottom: 15px;
}

.table-selection label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
}

.table-selection select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary, .btn-primary {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Sepet Float Button */
.cart-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.cart-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fbbf24;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}


















/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-First Approach
   ======================================== */

/* ==================
   SMALL MOBILE (320px+)
   ================== */
@media (max-width: 479px) {
    /* Typography */
    h1 { font-size: 1.75rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.5rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.25rem !important; line-height: 1.4 !important; }
    
    /* Container & Spacing */
    .container { padding: 0 16px !important; }
    
    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem !important;
        min-height: 60px !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 1rem !important;
        min-height: 60vh !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Product Cards */
    .menu-item,
    .product-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .product-image {
        height: 180px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .product-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .product-price {
        font-size: 1.25rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
        min-height: 48px !important;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 52px !important;
    }
    
    /* Category Tabs */
    .category-tabs {
        padding: 0 1rem !important;
        margin-bottom: 1.5rem !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    
    .tab-button {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
        min-width: auto !important;
        white-space: nowrap !important;
    }
    
    /* Cart */
    .cart-button {
        bottom: 20px !important;
        right: 20px !important;
        width: 56px !important;
        height: 56px !important;
    }
    
    /* Preloader */
    .brand-name {
        font-size: 2rem !important;
    }
    
    .word-burger {
        font-size: 1.25rem !important;
    }
    
    /* Contact Form */
    .contact-form input,
    .contact-form textarea {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    

}

/* ==================
   LARGE MOBILE (480px+)
   ================== */
@media (min-width: 480px) and (max-width: 767px) {
    /* Container */
    .container { padding: 0 20px !important; }
    
    /* Hero */
    .hero {
        padding: 4rem 1.5rem !important;
    }
    
    .hero h1 {
        font-size: 2.5rem !important;
    }
    
    /* Menu Grid - 2 columns for larger mobile */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .product-card {
        padding: 1.25rem !important;
    }
    
    .product-image {
        height: 200px !important;
    }
    
    /* Category Tabs */
    .category-tabs {
        justify-content: center !important;
        gap: 0.75rem !important;
    }
}

/* ==================
   TABLET (768px+)
   ================== */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Container */
    .container { 
        padding: 0 32px !important;
        max-width: 100% !important;
    }
    
    /* Navigation */
    .navbar {
        padding: 1rem 2rem !important;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 2rem !important;
    }
    
    .hero h1 {
        font-size: 3rem !important;
    }
    
    /* Menu Grid - 3 columns for tablet */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .product-card {
        padding: 1.5rem !important;
    }
    
    .product-image {
        height: 220px !important;
    }
    
    /* Category Tabs */
    .category-tabs {
        padding: 0 2rem !important;
        gap: 1rem !important;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem !important;
    }
    

}

/* ==================
   SMALL DESKTOP (1024px+)
   ================== */
@media (min-width: 1024px) and (max-width: 1199px) {
    /* Container */
    .container {
        max-width: 100% !important;
        padding: 0 40px !important;
    }
    
    /* Menu Grid - 4 columns for small desktop */
    .menu-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
    }
    
    .product-image {
        height: 240px !important;
    }
}

/* ==================
   LARGE DESKTOP (1200px+)
   ================== */
@media (min-width: 1200px) {
    /* Container */
    .container {
        max-width: 1200px !important;
        padding: 0 2rem !important;
    }
    
    /* Menu Grid - 4 columns for large desktop */
    .menu-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 2rem !important;
    }
    
    .hero h1 {
        font-size: 3.5rem !important;
    }
}

/* ==================
   ULTRA WIDE (1400px+)
   ================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
    
    /* Menu Grid - 5 columns for ultra wide */
    .menu-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* ==================
   LANDSCAPE MOBILE ORIENTATION
   ================== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1rem !important;
        min-height: 80vh !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .navbar {
        min-height: 50px !important;
        padding: 0.5rem 1rem !important;
    }
}

/* ==================
   HIGH DENSITY DISPLAYS
   ================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    .product-image,
    .hero-bg,
    .category-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ==================
   DARK MODE SUPPORT
   ================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
    }
    
    /* Enable dark mode for system preference */
    body.auto-dark-mode {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .auto-dark-mode .product-card {
        background-color: var(--card-bg);
        color: var(--text-color);
    }
}

/* ==================
   ACCESSIBILITY IMPROVEMENTS
   ================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn, .tab-button {
        border: 2px solid currentColor !important;
    }
    
    .product-card {
        border: 1px solid currentColor !important;
    }
}

/* Focus indicators for keyboard navigation */
@media (any-hover: none) {
    .btn:focus,
    .tab-button:focus,
    .product-card:focus {
        outline: 3px solid var(--primary-color, #dc2626) !important;
        outline-offset: 2px !important;
    }
}

/* ==================
   PRINT STYLES
   ================== */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .navbar,
    .cart-button,
    .preloader {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .product-card {
        break-inside: avoid !important;
        margin-bottom: 1rem !important;
    }
    
    .product-image {
        height: 150px !important;
    }
}

/* ==================
   PERFORMANCE OPTIMIZATIONS
   ================== */

/* GPU acceleration for smooth animations */
.product-card,
.btn,
.tab-button {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize scroll performance */
.menu-grid,
.category-tabs {
    transform: translateZ(0);
}

/* Reduce layout thrashing */
.product-image {
    contain: layout style paint;
}

/* ==================
   MODERN CSS FEATURES
   ================== */

/* Container queries support (when available) */
@supports (container-type: inline-size) {
    .menu-section {
        container-type: inline-size;
    }
    
    @container (min-width: 768px) {
        .product-card {
            display: grid;
            grid-template-rows: auto 1fr auto;
        }
    }
}

/* Scroll snap for smooth category navigation */
@supports (scroll-snap-type: x mandatory) {
    .category-tabs {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* CSS Grid fallback for older browsers */
@supports not (display: grid) {
    .menu-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .menu-grid > * {
        flex: 1 1 300px;
        max-width: 400px;
    }
}

/* ==========================================
   ADVANCED TOUCH-FRIENDLY INTERACTIONS
   Modern Mobile UX Patterns
   ========================================== */

/* Enhanced Touch Targets - WCAG AA Compliance */
a, button, input, textarea, select, .clickable {
    min-height: 48px !important;
    min-width: 48px !important;
    position: relative;
}

/* Large touch targets for primary actions */
.btn-primary, .btn-lg, .order-btn {
    min-height: 56px !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

/* Product card touch optimization */
.product-card {
    cursor: pointer;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Active states for touch */
.product-card:active {
    transform: scale(0.98) translateZ(0) !important;
    transition-duration: 0.1s !important;
}

.btn:active {
    transform: scale(0.95) translateZ(0) !important;
    transition-duration: 0.1s !important;
}

.tab-button:active {
    transform: scale(0.96) translateZ(0) !important;
    transition-duration: 0.1s !important;
}

/* ==================
   MOBILE TOUCH OPTIMIZATIONS
   ================== */
@media (max-width: 768px) {
    /* Enhanced button sizing for mobile */
    .btn {
        min-height: 52px !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
    }
    
    .btn-lg {
        min-height: 60px !important;
        padding: 1.25rem 2rem !important;
        font-size: 1.2rem !important;
        border-radius: 16px !important;
    }
    
    .btn-sm {
        min-height: 44px !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    
    /* Category tabs touch enhancement */
    .tab-button {
        min-height: 48px !important;
        padding: 0.875rem 1.5rem !important;
        border-radius: 24px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        border: 2px solid var(--primary-color, #dc2626) !important;
        background: white !important;
        color: var(--primary-color, #dc2626) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .tab-button.active,
    .tab-button:hover {
        background: var(--primary-color, #dc2626) !important;
        color: white !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3) !important;
    }
    
    /* Input fields mobile optimization */
    input, textarea, select {
        min-height: 52px !important;
        padding: 1rem !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        border-radius: 12px !important;
        border: 2px solid #e9ecef !important;
        transition: all 0.3s ease !important;
    }
    
    input:focus, textarea:focus, select:focus {
        border-color: var(--primary-color, #dc2626) !important;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
        outline: none !important;
    }
    
    /* Cart button mobile positioning */
    .cart-button, .floating-cart {
        position: fixed !important;
        bottom: 24px !important;
        right: 24px !important;
        width: 64px !important;
        height: 64px !important;
        border-radius: 50% !important;
        background: var(--primary-color, #dc2626) !important;
        color: white !important;
        border: none !important;
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4) !important;
        z-index: 1000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        touch-action: manipulation !important;
    }
    
    .cart-button:hover, .floating-cart:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5) !important;
    }
    
    .cart-button:active, .floating-cart:active {
        transform: scale(0.95) !important;
    }
}

/* ==================
   TOUCH GESTURE ENHANCEMENTS
   ================== */

/* Smooth momentum scrolling */
.category-tabs,
.menu-grid {
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
}

/* Prevent text selection on interactive elements */
.product-card,
.btn,
.tab-button,
.cart-button {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Enable text selection for content */
.product-description,
.product-title,
p, h1, h2, h3, h4, h5, h6 {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* ==================
   ACCESSIBILITY TOUCH SUPPORT
   ================== */

/* Focus indicators for keyboard/screen readers */
@media (any-hover: none) {
    .btn:focus,
    .tab-button:focus,
    .product-card:focus {
        outline: 3px solid var(--primary-color, #dc2626) !important;
        outline-offset: 2px !important;
        z-index: 1 !important;
    }
}

/* ==================
   PERFORMANCE OPTIMIZATIONS
   ================== */

/* GPU acceleration for smooth touches */
.product-card,
.btn,
.tab-button,
.cart-button {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
}

/* Progressive enhancement for touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none !important;
    }
    
    /* Enhance active states instead */
    .product-card:active {
        transform: scale(0.97) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Larger touch targets for precision */
    .btn, .tab-button {
        padding: 1rem 1.5rem !important;
    }
}

/* ============================================
   MODERN CART DRAWER SYSTEM
   ============================================ */

/* Cart Drawer Overlay */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.cart-drawer-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Backdrop */
.cart-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Main Drawer Container */
.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 90vw;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    border-radius: 20px 0 0 20px;
}

.cart-drawer-overlay:not(.hidden) .cart-drawer {
    transform: translateX(0);
    animation: slideInFromRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Drawer Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: none;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.cart-drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-title i {
    font-size: 1.5rem;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.05);
}

/* Cart Summary */
.cart-summary {
    padding: 16px 24px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid #fecaca;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

/* Items Container */
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* Empty State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    height: 100%;
    min-height: 300px;
}

/* Cart Items List */
.cart-items-list {
    padding: 16px 24px;
}

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

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

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

.quantity-display {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    min-width: 20px;
    text-align: center;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-total {
    font-size: 0.95rem;
    font-weight: 700;
    color: #dc2626;
}

.remove-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.remove-btn:hover {
    background: #fecaca;
    transform: scale(1.05);
}

/* Drawer Footer */
.cart-drawer-footer {
    border-top: none;
    background: linear-gradient(to bottom, #fafafa, white);
    padding: 24px;
    position: sticky;
    bottom: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.order-summary {
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.summary-row.summary-total {
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
}

.summary-label {
    font-size: 0.95rem;
    color: #6b7280;
}

.summary-total .summary-label {
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.summary-total-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
}

/* Action Buttons */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-full {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-full:hover::before {
    left: 100%;
}

.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

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

.btn-secondary-full {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #6b7280;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-full:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

.btn-secondary-small {
    padding: 10px 16px;
    background: transparent;
    color: #6b7280;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-small:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

/* Floating Cart Button */
.cart-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    transition: all 0.3s ease;
}

.cart-float-button.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.cart-float-button:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-cart-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.float-cart-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fbbf24;
    color: #92400e;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    font-family: inherit;
}

/* ============================================
   MODERN ORDER CONFIRMATION MODAL
   ============================================ */

/* Modal Overlay */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.order-modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.order-modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Modal Backdrop */
.order-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: backdropFadeIn 0.3s ease;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Container */
.order-modal {
    position: relative;
    width: 90%;
    max-width: 580px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

.order-modal-overlay:not(.hidden) .order-modal {
    transform: scale(1) translateY(0);
    animation: modalFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalFadeIn {
    0% {
        transform: scale(0.85) translateY(40px);
        opacity: 0;
    }
    60% {
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.order-modal-header {
    padding: 28px 32px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.order-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.order-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.order-modal-title i {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: iconPulse 2s ease-in-out infinite;
}

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

.order-modal-close {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.order-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.order-modal-close:active {
    transform: scale(1.05) rotate(90deg);
}

/* Modal Body */
.order-modal-body {
    padding: 32px 36px;
    overflow-y: auto;
    flex: 1;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.order-modal-body::-webkit-scrollbar {
    width: 8px;
}

.order-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.order-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 10px;
}

.order-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

/* Form Groups */
.order-form-group {
    margin-bottom: 24px;
}

.order-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.order-label i {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.order-input,
.order-textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 0.96rem;
    font-family: inherit;
    color: #111827;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    font-weight: 500;
}

  /* In-modal table picker (prevents native select dropdown overflow on mobile) */
  .order-select-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
  }

  .order-select-btn i{
    opacity: 0.7;
    font-size: 0.9em;
  }

  .order-select-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14px;
  }

  .order-select-sheet{
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }

  .order-select-sheet-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    border-bottom: 1px solid #e5e7eb;
  }

  .order-select-close{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .order-select-list{
    max-height: min(55vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .order-select-option{
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
    color: #111827;
    cursor: pointer;
  }

  .order-select-option:hover{
    background: #f9fafb;
  }

  .order-select-option:active{
    background: #f3f4f6;
  }

.order-input:hover,
.order-textarea:hover {
    border-color: #d1d5db;
    background: #ffffff;
}

.order-input:focus,
.order-textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.12), 0 4px 12px rgba(220, 38, 38, 0.08);
    transform: translateY(-1px);
}

.order-textarea {
    resize: vertical;
    min-height: 100px;
}

.order-help-text {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Order Summary Box */
.order-summary-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
    border: 2px solid #fca5a5;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 28px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.12);
    transition: all 0.3s ease;
}

.order-summary-box:hover {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.18);
    transform: translateY(-2px);
}

.order-summary-header {
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(185, 28, 28, 0.08));
    font-weight: 700;
    font-size: 0.98rem;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.15);
}

.order-summary-header i {
    font-size: 1.2rem;
    animation: receiptBounce 2s ease-in-out infinite;
}

@keyframes receiptBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.order-summary-content {
    padding: 18px 20px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.order-summary-row.total-row {
    padding-top: 16px;
    margin-top: 12px;
    border-top: 2px dashed #fca5a5;
    font-size: 1.1rem;
}

.order-summary-row.total-row span:first-child {
    font-weight: 700;
    color: #111827;
}

.order-summary-row.total-row span:last-child {
    font-weight: 800;
    font-size: 1.3rem;
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.15);
}

/* Modal Footer */
.order-modal-footer {
    padding: 24px 32px;
    background: linear-gradient(to top, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 14px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary-modal,
.btn-primary-modal {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-secondary-modal {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-secondary-modal:hover {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-color: #9ca3af;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.btn-primary-modal {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.btn-primary-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary-modal:hover::before {
    left: 150%;
}

.btn-primary-modal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-modal:active {
    transform: translateY(-1px) scale(1);
}

.btn-primary-modal i,
.btn-secondary-modal i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary-modal:hover i {
    transform: scale(1.15);
}

.btn-secondary-modal:hover i {
    transform: translateX(-3px);
}

/* Mobile Responsiveness for Order Modal */
@media (max-width: 640px) {
    .order-modal {
        width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }
    
    .order-modal-header {
        padding: 20px 20px;
    }
    
    .order-modal-title {
        font-size: 1.2rem;
    }
    
    .order-modal-body {
        padding: 20px;
    }
    
    .order-modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }
    
    .btn-secondary-modal,
    .btn-primary-modal {
        width: 100%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }
    
    .cart-drawer-header {
        padding: 20px;
    }
    
    .cart-items-container {
        padding-bottom: 16px;
    }
    
    .cart-items-list {
        padding: 12px 20px;
    }
    
    .cart-drawer-footer {
        padding: 20px;
    }
    
    .cart-empty-state {
        padding: 40px 20px;
    }
    
    .cart-float-button {
        bottom: 20px;
        right: 20px;
    }
    
    .float-cart-btn {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
    
    .cart-badge {
        top: -6px;
        right: -6px;
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .cart-drawer-header {
        padding: 16px;
    }
    
    .cart-drawer-footer {
        padding: 16px;
    }
    
    .cart-items-list {
        padding: 8px 16px;
    }
    
    .cart-empty-state {
        padding: 30px 16px;
        min-height: 250px;
    }
}

/* Animations */
.cart-item {
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Scrollbar Styling */
.cart-items-container::-webkit-scrollbar {
    width: 6px;
}

.cart-items-container::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.cart-items-container::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ========================================
   POPULAR PRODUCTS SECTION - PREMIUM
   ======================================== */

.popular-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f7fa 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.popular-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.popular-header {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 80px);
    position: relative;
}

.popular-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    margin: 0 auto 24px;
    border-radius: 2px;
    position: relative;
}

.section-subtitle-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
}

.popular-header .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.popular-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 25px);
    margin-bottom: clamp(40px, 5vw, 60px);
}

.popular-slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: clamp(20px, 4vw, 40px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.popular-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.popular-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: none;
    width: clamp(48px, 6vw, 64px);
    height: clamp(48px, 6vw, 64px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    font-size: clamp(14px, 2vw, 18px);
    z-index: 3;
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.popular-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 6px 15px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(220, 38, 38, 0.1);
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.popular-nav:active {
    transform: translateY(-1px) scale(1.02);
}

.popular-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(0.95);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
}

.popular-card {
    flex: 0 0 clamp(260px, 18vw, 320px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        0 3px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.popular-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    z-index: 10;
    border-color: rgba(220, 38, 38, 0.15);
}

.popular-card:hover .popular-card-image img {
    transform: scale(1.1);
}

.popular-card:hover .btn-details {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.popular-card:hover .btn-menu {
    background: #374151;
    color: white;
    border-color: #374151;
    transform: translateY(-1px);
}

.popular-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.popular-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-card:hover .popular-card-image img {
    transform: scale(1.08);
}

.popular-badge,
.chef-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 
        0 6px 15px rgba(220, 38, 38, 0.25),
        0 2px 6px rgba(220, 38, 38, 0.2);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.chef-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 
        0 6px 15px rgba(245, 158, 11, 0.25),
        0 2px 6px rgba(245, 158, 11, 0.2);
    top: 16px;
    right: 16px;
    left: auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.popular-card-content {
    padding: clamp(18px, 3vw, 28px);
}

.popular-card-header {
    margin-bottom: 16px;
}

.popular-card-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #1a202c;
    line-height: 1.4;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.popular-card-category {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.12) 100%);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(220, 38, 38, 0.1);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.popular-card-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
  line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.popular-card-price {
    margin-bottom: 18px;
}

.price-amount {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popular-card-info {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #fafafa 0%, #f8fafc 100%);
    margin: 0 -20px 22px;
    padding-left: 20px;
    padding-right: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.8125rem;
    width: 16px;
    text-align: center;
}

.popular-card-actions {
    display: flex;
    gap: 10px;
}

.btn-details,
.btn-menu {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-details {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-menu {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #374151;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-menu:hover {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    border-color: #374151;
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.25);
}

.popular-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 
        0 0 0 4px rgba(220, 38, 38, 0.1),
        0 4px 12px rgba(220, 38, 38, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: #94a3b8;
    transform: scale(1.15);
}

/* Responsive Design - Premium Mobile Experience */
@media (max-width: 1200px) {
    .popular-card {
        flex: 0 0 clamp(240px, 20vw, 280px);
    }
}

@media (max-width: 1024px) {
    .popular-container {
        gap: 18px;
    }
    
    .popular-card {
        flex: 0 0 clamp(260px, 25vw, 300px);
    }
    
    .popular-slider-wrapper {
        padding: clamp(20px, 3vw, 30px);
    }
}

@media (max-width: 768px) {
    .popular-section {
        padding: clamp(50px, 8vw, 80px) 0;
    }
    
    .popular-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .popular-nav {
        display: none;
    }
    
    .popular-slider-wrapper {
        padding: clamp(16px, 4vw, 24px);
        border-radius: 20px;
    }
    
    .popular-card {
        flex: 0 0 clamp(280px, 80vw, 350px);
        margin: 0 auto;
    }
    
    .popular-slider {
        justify-content: center;
    }
    
    /* Language button mobile */
    .lang-btn {
        padding: 0 12px;
        height: 40px;
    }
    
    .lang-btn i {
        font-size: 14px;
    }
    
    #current-lang {
        font-size: 12px;
    }
    
    .lang-dropdown {
        right: 10px;
        top: 60px;
    }
}

@media (max-width: 480px) {
    .popular-card {
        flex: 0 0 clamp(260px, 85vw, 320px);
    }
    
    .popular-card-content {
        padding: clamp(14px, 4vw, 20px);
    }
    
    /* Language button extra small screens */
    .lang-btn span {
        display: none;
    }
    
    .lang-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
    }
    
    .lang-dropdown {
        right: 5px;
    }

    .popular-card-info {
        margin: 0 -14px 18px;
        padding: 12px 14px;
    }
    
    .btn-details,
    .btn-menu {
        padding: 12px 14px;
        font-size: 0.8125rem;
        min-height: 44px;
    }
    
    .popular-indicators {
        margin-top: 25px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .popular-card {
        border: 2px solid #000;
    }
    
    .popular-badge,
    .chef-badge {
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .popular-slider {
        transition: none;
    }
    
    .popular-card {
        transition: none;
    }
    
    .popular-card:hover {
        transform: none;
    }
}

/* ==============================
   Mobile Header - Çok Daha İnce ve Zarif
   ============================== */
@media (max-width: 768px) {
  .header-content {
    padding: 8px 14px;
  }

  .logo-img {
    height: 30px !important;
  }

  .lang-btn {
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
    gap: 4px;
    border-radius: 15px;
  }

  .lang-btn i {
    font-size: 11px;
  }

  .lang-btn span {
    display: inline;
  }

  .contact-link {
    display: flex !important;
    padding: 6px 11px;
    font-size: 10px;
    white-space: nowrap;
    border-radius: 15px;
    font-weight: 500;
  }

  .header-actions {
    gap: 8px;
  }

  /* Gizli hamburger menü varsa gizle */
  .site-header .fa-bars,
  .site-header [class*="hamburger"],
  .site-header [class*="menu-toggle"] {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 7px 12px;
  }

  .logo-img {
    height: 26px !important;
  }

  .lang-btn {
    height: 28px;
    width: auto;
    min-width: 50px;
    padding: 0 9px;
    font-size: 10px;
    gap: 3px;
    border-radius: 14px;
  }

  .lang-btn i {
    font-size: 10px;
  }

  .contact-link {
    display: none !important;
    /* Küçük ekranlarda gizle - daha temiz görünüm */
  }

  .header-actions {
    gap: 0;
  }

  .search-overlay {
    padding-top: 65px;
  }

  .search-content {
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 360px) {
  .header-content {
    padding: 6px 10px;
  }

  .logo-img {
    height: 24px !important;
  }

  .lang-btn {
    height: 26px;
    padding: 0 8px;
    font-size: 9px;
    gap: 3px;
  }

  .lang-btn i {
    font-size: 9px;
  }

  .contact-link {
    display: none !important;
  }

  .header-actions {
    gap: 0;
  }
}

/* Jump-to-item highlight (search result click) */
.menu-jump-highlight {
  outline: 3px solid rgba(220, 38, 38, 0.35);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.25) !important;
  transform: translateY(-2px);
  transition: box-shadow 0.25s ease, transform 0.25s ease, outline-color 0.25s ease;
}

/* ========================================
   ⚠️ CART REMOVE CONFIRMATION MODAL
   ======================================== */

.cart-remove-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

.cart-remove-modal.hidden {
    display: none;
}

.cart-remove-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.cart-remove-dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 32px;
    max-width: 440px;
    width: 92%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(220, 38, 38, 0.1);
    animation: modalSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
}

.cart-remove-dialog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.cart-remove-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
    position: relative;
}

.cart-remove-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(185, 28, 28, 0.15) 100%);
    z-index: -1;
}

.cart-remove-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.cart-remove-text {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.6;
}

.cart-remove-product {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 0 28px;
    font-weight: 600;
    color: #991b1b;
    font-size: 16px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.cart-remove-actions {
    display: flex;
    gap: 12px;
}

.cart-remove-cancel,
.cart-remove-confirm {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cart-remove-cancel {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.cart-remove-cancel:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-remove-confirm {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}

.cart-remove-confirm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cart-remove-confirm:hover::before {
    left: 100%;
}

.cart-remove-confirm:hover {
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.45);
    transform: translateY(-2px);
}

.cart-remove-confirm:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .cart-remove-dialog {
        padding: 32px 24px 24px;
        max-width: 360px;
        border-radius: 16px;
    }
    
    .cart-remove-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cart-remove-title {
        font-size: 22px;
    }
    
    .cart-remove-actions {
        flex-direction: column;
    }
    
    .cart-remove-cancel,
    .cart-remove-confirm {
        padding: 14px 20px;
    }
}
