/* RESET */
body{
  margin:0;
  font-family:'Open Sans';
  background:#0f0f0f;
  color:#fff;
  padding-top:80px;
}

html{
  scroll-behavior:smooth;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  gap:20px;
}

.logo{
  font-family:'Bebas Neue';
  font-size:32px;
  flex-shrink:0;
}

.logo span{
  color:orange;
}

.nav-links{
  display:flex;
  gap:30px;
  align-items:center;
  flex-wrap:wrap;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
}

/* CART ICON */
.cart{
  font-size:26px;
  color:orange;
  cursor:pointer;
  background:rgba(255,140,0,0.1);
  padding:10px;
  border-radius:50%;
  flex-shrink:0;
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* видео */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* затемнение */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:2;
}

/* контент поверх */
.hero-content{
  position:relative;
  z-index:3;
  text-align:center;
  width:100%;
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}

.hero-content h1{
  font-family:'Bebas Neue';
  font-size:90px;
  margin:0;
}

/* кнопка */
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:25px auto 0;
  padding:16px 40px;
  min-width:220px;
  max-width:100%;
  border:none;
  border-radius:40px;
  background:linear-gradient(135deg, #ff8a00, #ff3d00);
  color:#000;
  font-weight:bold;
  font-size:16px;
  letter-spacing:1px;
  text-decoration:none;
  text-align:center;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  box-shadow:
    0 10px 30px rgba(255,120,0,0.4),
    inset 0 0 10px rgba(255,255,255,0.2);
  transition:0.3s;
  animation:btnPulse 2s infinite;
}

/* glow слой */
.hero-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition:0.5s;
}

/* hover эффект */
.hero-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(255,120,0,0.6),
    inset 0 0 15px rgba(255,255,255,0.3);
}

/* пробегающий свет */
.hero-btn:hover::before{
  left:100%;
}

@keyframes btnPulse{
  0%{ box-shadow:0 0 0 rgba(255,120,0,0.4); }
  50%{ box-shadow:0 0 25px rgba(255,120,0,0.6); }
  100%{ box-shadow:0 0 0 rgba(255,120,0,0.4); }
}

/* ===== ABOUT ===== */

.about{
  padding:80px 20px;
  background:#0f0f0f;
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1100px;
  margin:0 auto;
  align-items:center;
}

/* картинка */
.about-image img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* текст */
.about-text h2{
  font-family:'Bebas Neue';
  font-size:50px;
  margin-bottom:20px;
}

.about-text p{
  color:#ccc;
  margin-bottom:15px;
  line-height:1.5;
}

/* цифры */
.about-stats{
  display:flex;
  gap:30px;
  margin-top:20px;
}

.about-stats span{
  font-size:28px;
  font-weight:bold;
  color:orange;
}

.about-stats p{
  font-size:12px;
  color:#aaa;
}

/* mobile */
@media(max-width:768px){
  .about-container{
    grid-template-columns:1fr;
  }
}

/* MENU */
.menu{
  padding:80px 20px;
  text-align:center;
}

.menu-title{
  font-family:'Bebas Neue';
  font-size:50px;
  margin-bottom:40px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1100px;
  margin:0 auto;
}

/* CARD */
.menu-card{
  background:#1a1a1a;
  border-radius:20px;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.menu-card:hover .drink-img{
  transform:scale(1.05);
}

.menu-card:hover{
  transform:translateY(-10px) scale(1.02);
}

.menu-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.menu-info{
  padding:20px;
}

.menu-info span{
  color:orange;
}

.menu-info button{
  width:100%;
  margin-top:10px;
  padding:12px;
  border:none;
  border-radius:12px;
  background:linear-gradient(45deg, orange, #ff7a00);
  cursor:pointer;
  box-shadow:0 8px 20px rgba(255,140,0,0.3);
}

/* CART MODAL */
.cart-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,0.7);
  z-index:9999;
}

.cart-box{
  position:relative;
  width:320px;
  background:#111;
  padding:25px;
  border-radius:20px;
}

.cart-box h3{
  font-family:'Bebas Neue';
}

/* CART ITEMS */
#cart-items li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#1a1a1a;
  padding:10px;
  margin:8px 0;
  border-radius:10px;
}

.remove{
  cursor:pointer;
  color:#ff4d4d;
}

/* BUTTON */
.btn-main{
  width:100%;
  margin-top:15px;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(45deg, orange, #ff7a00);
  cursor:pointer;
}

.btn-secondary{
  width:100%;
  margin-top:10px;
  padding:12px;
  border:none;
  border-radius:12px;
  background:#222;
  color:#fff;
}

/* MODALS */
.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,0.7);
  z-index:9999;
}

.modal.show{
  display:flex;
}

.modal-box{
  position:relative;
  width:320px;
  max-width:90%;
  background:#111;
  padding:20px;
  border-radius:20px;
  text-align:center;
  box-sizing:border-box;
}

/* CLOSE */
.close{
  position:absolute;
  top:10px;
  right:10px;
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#222;
  cursor:pointer;
}

/* INPUT */
.modal-box input{
  width:100%;
  padding:10px;
  margin:8px 0;
  border-radius:10px;
  border:none;
  box-sizing:border-box;
}

/* SAUCE */
.sauce-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:15px 0;
}

.sauce-item{
  background:#1a1a1a;
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}

.sauce-item img{
  width:50px;
  height:50px;
  object-fit:contain;
  background:#fff;
  border-radius:10px;
}

.sauce-item.active{
  border:2px solid orange;
}

/* MOBILE */
@media(max-width:768px){
  .menu-grid{
    grid-template-columns:1fr;
  }
}

/* ===== DRINKS FIX ===== */

.drink-img{
  width:100%;
  height:220px;
  transition:0.3s;
  object-fit:contain;
  background:#000;
  padding:10px;
  box-sizing:border-box;
}

/* ===== FIX DRINK IMAGES (100% WORKING) ===== */

.menu-card img.drink-img{
  height:220px !important;
  object-fit:contain !important;
  background:#000;
  padding:10px;
  box-sizing:border-box;
}

/* ===== КОНТРОЛЫ КОЛИЧЕСТВА ===== */

.qty-controls{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty-controls button{
  width:28px;
  height:28px;
  border:none;
  border-radius:8px;
  background:#222;
  color:#fff;
  cursor:pointer;
  transition:0.2s;
}

.qty-controls button:hover{
  background:orange;
  color:#000;
}

.qty{
  min-width:20px;
  text-align:center;
  font-weight:bold;
}

/* ===== CONTACT SECTION ===== */

.contact{
  padding:80px 20px;
  background:#121212;
  text-align:center;
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:1000px;
  margin:40px auto;
}

/* левая часть */
.contact-info{
  text-align:left;
}

.contact-info h3{
  font-family:'Bebas Neue';
  font-size:28px;
  margin-bottom:15px;
}

.contact-info p{
  margin:10px 0;
  color:#ccc;
}

/* часы */
.hours{
  margin-top:20px;
}

.hours h4{
  margin-bottom:5px;
}

/* WhatsApp */
.whatsapp-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 20px;
  background:#25D366;
  color:#000;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:scale(1.05);
}

/* соцсети */
.socials{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.socials img{
  width:28px;
  height:28px;
  transition:0.3s;
}

.socials img:hover{
  transform:scale(1.2);
}

/* карта */
.map iframe{
  width:100%;
  height:300px;
  border:none;
  border-radius:15px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }
}

/* ===== FLOATING HELP BUTTON ===== */

.floating-help{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  background:linear-gradient(45deg, #25D366, #1ebe5d);
  color:#000;
  border-radius:50px;
  font-weight:bold;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  z-index:99999;
  transition:0.3s;
  animation:pulse 2.5s infinite;
}

/* иконка */
.floating-help span{
  font-size:14px;
}

/* hover */
.floating-help:hover{
  transform:scale(1.05);
}

/* лёгкая пульсация */
@keyframes pulse{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
  100%{ transform:scale(1); }
}

/* ===== FLOATING LUX MENU ===== */

.floating-menu{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:99999;
}

/* основная кнопка */
.floating-main{
  width:60px;
  height:60px;
  background:linear-gradient(45deg, orange, #ff7a00);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  transition:0.3s;
}

.floating-main:hover{
  transform:scale(1.1);
}

/* меню */
.floating-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  position:absolute;
  bottom:70px;
  right:0;
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
  transition:0.3s;
}

/* когда открыто */
.floating-actions.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* кнопки */
.action{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  transition:0.3s;
}

.action:hover{
  background:linear-gradient(45deg, orange, #ff7a00);
  color:#000;
  transform:translateX(-5px);
}

/* ===== BELIEBT ===== */

.beliebt{
  padding:80px 20px;
  background:#121212;
  text-align:center;
}

.beliebt-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  max-width:1000px;
  margin:0 auto;
}

/* карточка */
.beliebt-card{
  background:#1a1a1a;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  transition:0.3s;
}

/* ===== REVIEWS LUX ===== */

.reviews{
  padding:80px 0;
  background:linear-gradient(180deg,#0f0f0f,#1a1a1a);
  text-align:center;
  overflow:hidden;
}

/* контейнер */
.reviews-wrapper{
  overflow:hidden;
  position:relative;
}

/* трек */
.reviews-track{
  display:flex;
  gap:25px;
  padding:30px;
  animation:scrollReviews 25s linear infinite;
}

/* стоп при наведении */
.reviews-wrapper:hover .reviews-track{
  animation-play-state:paused;
}

/* карточка */
.review-card{
  min-width:300px;
  max-width:300px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border-radius:20px;
  padding:20px;
  text-align:left;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

/* hover */
.review-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 50px rgba(255,140,0,0.25);
}

/* верх */
.review-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

/* аватар */
.review-top img{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
}

/* звезды */
.stars{
  font-size:14px;
  color:orange;
}

/* текст */
.review-card p{
  font-size:14px;
  color:#ddd;
  line-height:1.4;
}

/* авто-скролл */
@keyframes scrollReviews{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width:768px){

  body{
    padding-top:120px;
  }

  /* NAV */
  .nav{
    padding:12px 16px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:12px;
  }

  .logo{
    font-size:24px;
  }

  .nav-links{
    display:flex;
    order:3;
    width:100%;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:4px;
  }

  .nav-links a{
    font-size:14px;
    white-space:nowrap;
  }

  /* HERO */
  .hero{
    height:80vh;
    padding:20px;
    text-align:center;
  }

  .hero-content{
    padding:0 16px;
  }

  .hero-content h1{
    font-size:42px;
    line-height:1.1;
  }

  .hero-btn{
    display:flex;
    width:100%;
    max-width:280px;
    margin:20px auto 0;
    padding:16px 20px;
  }

  /* MENU GRID */
  .menu-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  /* CARD */
  .menu-card img{
    height:180px;
  }

  /* DRINK IMAGES */
  .drink-img{
    height:160px !important;
  }

  /* BUTTON */
  .btn-order{
    padding:14px;
    font-size:16px;
  }

  /* CART */
  .cart{
    font-size:22px;
    padding:8px;
  }

  /* CART BOX */
  .cart-box{
    width:90%;
  }

  /* MODALS */
  .modal-box{
    width:90%;
    max-width:340px;
    padding:20px;
  }

  /* SAUCE GRID */
  .sauce-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .sauce-item img{
    width:50px;
    height:50px;
  }

  /* REVIEWS */
  .review-card{
    min-width:260px;
  }
}

/* ===== MOBILE CART BAR ===== */

.mobile-cart-bar{
  position:fixed;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  max-width:400px;
  background:linear-gradient(45deg, orange, #ff7a00);
  padding:15px 20px;
  border-radius:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:bold;
  color:#000;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  z-index:9999;
  cursor:pointer;
  transition:0.3s;
}

.mobile-cart-bar:hover{
  transform:translateX(-50%) scale(1.03);
}

/* скрываем на десктопе */
@media(min-width:769px){
  .mobile-cart-bar{
    display:none;
  }
}