/* =========================
   RESET / GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

.hidden {
  display: none !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  padding: 19px 30px;
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #e63946;
}

/* =========================
   BUTTONS
========================= */
.btn,
.order-btn {
  background: #e63946;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn {
  padding: 15px 34px;
  margin: 5px;
  font-size: 1rem;
  font-weight: bold;
}

.order-btn {
  padding: 8px 15px;
}


.btn:hover,
.order-btn:hover {
  background: #c92f3a;
  transform: translateY(-3px);
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.78)),
    url("img/portada_final_kds.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.overlay h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-shadow: 0 6px 22px rgba(0,0,0,0.55);
}

.overlay p {
  max-width: 720px;
  margin: 0 auto 35px;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  background: white;
  color: #111;
}

/* =========================
   MENU
========================= */
.menu {
  padding: 60px 20px;
  background: #111;
  color: white;
  scroll-margin-top: 90px;
}

#menu-main {
  min-height: auto;
  padding-top: 90px;
  padding-bottom: 50px;
}

.menu h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.menu-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================
   CATEGORY CARDS
========================= */
.categories-grid {
  max-width: 1280px;
  margin: 35px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  justify-content: center;
  align-items: center;
}

.category-card {
  position: relative;
  height: 240px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: #1b1b1b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: 0.35s ease;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.08)
  );
}

.category-content,
.category-card span,
.category-card small,
.category-card strong {
  position: relative;
  z-index: 2;
}

.category-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-content small {
  background: #ffcc00;
  color: #111;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.category-card span {
  color: white;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.category-content strong {
  margin-top: 10px;
  color: #ff5a5f;
  font-size: 0.95rem;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.82) saturate(1.15);
}

.category-card:hover strong {
  color: white;
}

/* =========================
   SUBCATEGORIES
========================= */
.subcategory {
  margin-top: 60px;
}

.subcategory-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.subcategory-desc,
.signature-subtitle {
  text-align: center;
  color: #bbb;
  margin-bottom: 25px;
}

.extra-info {
  text-align: center;
  margin-top: 18px;
  color: #aaa;
  font-size: 0.9rem;
}

.extra-section {
  margin-top: 50px;
  text-align: center;
}

.extra-section h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.extra-section p {
  color: #e63946;
  font-size: 1.1rem;
  font-weight: bold;
}

/* =========================
   PRODUCT CARDS
========================= */
.card {
  position: relative;
  background: #181818;
  width: 255px;
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 35px rgba(0,0,0,0.32);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.48);
  border-color: rgba(255,255,255,0.16);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.1);
}

.card h4 {
  color: white;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 16px 16px 8px;
}

.card p {
  color: #ff4d5a;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 16px 10px;
}

.card p::before {
  content: "Price ";
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 4px;
}

.card-desc {
  display: block;
  padding: 0 16px;
  margin-top: 8px;
  color: #bdbdbd;
  font-size: 0.88rem;
  line-height: 1.45;
  min-height: 72px;
}

/* =========================
   SIZE SELECT / SALADS
========================= */
.salad-card {
  min-height: 465px;
}

.size-select {
  width: calc(100% - 32px);
  margin: 14px 16px 0;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #222;
  color: white;
  font-size: 0.92rem;
  outline: none;
  cursor: pointer;
}

.size-select option {
  background: #222;
  color: white;
}

/* =========================
   QUANTITY / ADD CART
========================= */
.quantity-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 16px;
  padding: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.quantity-box button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #2b2b2b;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.25s ease;
}

.quantity-box button:hover {
  background: #ff4d5a;
  transform: scale(1.08);
}

.qty {
  min-width: 20px;
  text-align: center;
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
}

.add-cart-btn {
  display: block;
  background: linear-gradient(135deg, #ff3040, #ff5a5f);
  color: white;
  border: none;
  padding: 13px 16px;
  margin: 0 16px 18px;
  width: calc(100% - 32px);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255,48,64,0.28);
}

.add-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255,48,64,0.4);
}

/* =========================
   CART DRAWER
========================= */
.cart-nav-btn {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
  font-size: 1.2rem;
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
}

.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 9999;
}

.cart-modal.hidden {
  display: none;
}

.cart-content {
  background: #151515;
  color: white;
  width: 100%;
  max-width: 430px;
  height: 100vh;
  padding: 26px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  animation: cartSlideIn 0.28s ease;
}

@keyframes cartSlideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-header h2 {
  font-size: 1.6rem;
}

.close-cart {
  width: 40px;
  height: 40px;
  background: #252525;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #222;
  color: white;
  margin-bottom: 22px;
  outline: none;
}

.cart-input::placeholder {
  color: #999;
}

.cart-item {
  background: #222;
  padding: 16px;
  border-radius: 18px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item h4 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.cart-item p {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.remove-item {
  background: #333;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  height: fit-content;
  font-size: 0.8rem;
}

.remove-item:hover {
  background: #ff3040;
}

#cart-total {
  margin-top: 22px;
  font-size: 1.4rem;
  color: white;
}

.send-order-btn {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(37,211,102,0.25);
}

.send-order-btn:hover {
  transform: translateY(-3px);
}

/* =========================
   ABOUT / HOURS / CONTACT
========================= */
.about-section {
  background: #181818;
  color: white;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-slider {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 4s ease;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   VISIT / CONTACT PREMIUM
========================= */
.visit-section {
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.88)),
    url("img/portada_final_kds.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 20px;
  color: white;
  text-align: center;
}

.visit-container {
  max-width: 1150px;
  margin: auto;
}

.visit-header span {
  color: #ff5a5f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.visit-header h2 {
  font-size: 2.5rem;
  margin: 12px 0;
}

.visit-header p {
  color: #ccc;
  max-width: 620px;
  margin: 0 auto 45px;
  line-height: 1.6;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.visit-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 32px 24px;
  transition: 0.35s ease;
}

.visit-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
}

.visit-card i {
  color: #ff5a5f;
  font-size: 2rem;
  margin-bottom: 18px;
}

.visit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.visit-card p {
  color: #ddd;
  line-height: 1.6;
}

.visit-card strong {
  display: block;
  color: #ff5a5f;
  margin-top: 10px;
}

.visit-btn {
  display: inline-block;
}

/* =========================
   SOCIAL FLOAT
========================= */
.social-float {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.social-float a {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-size: 1.4rem;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.facebook {
  background: #1877f2;
}

.whatsapp {
  background: #25d366;
}

.social-float a:hover {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .social-float {
    right: 14px;
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .social-float a {
    width: 52px;
    height: 52px;
  }
}
/* =========================
   FOOTER PREMIUM
========================= */
.footer {
  background: #0b0b0b;
  color: white;
  padding: 70px 20px 25px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: #ff5a5f;
}

.footer-column p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #ff5a5f;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #ff3040;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  margin: 8px 0;
}

.footer-bottom a {
  color: #ff5a5f;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* =========================
   TOAST
========================= */
#toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 100000;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================
   IMAGE PREVIEW
========================= */
.image-preview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 24px;
}

.image-preview-modal.hidden {
  display: none;
}

.preview-box {
  position: relative;
  max-width: 850px;
  width: 92%;
  background: #151515;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: previewPop 0.25s ease;
}

.preview-box img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: 0.25s ease;
}

.preview-close:hover {
  background: #ff3040;
  transform: scale(1.08);
}

@keyframes previewPop {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   ANIMATIONS SAFE
========================= */
.fade-up,
.fade-up.show,
.fade-up.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .hero {
    min-height: 82vh;
    padding: 110px 18px 45px;
    background:
      linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.82)),
      url("img/LOGOFINAL.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 8px 13px;
    margin-bottom: 16px;
  }

  .overlay {
    padding: 0 8px;
  }

  .overlay h1 {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 16px;
  }

  .overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 4px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    padding: 13px 18px;
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-header h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .categories-grid .category-card {
    grid-column: auto !important;
    translate: 0 0 !important;
    height: 190px;
  }

  .category-content {
    padding: 18px;
  }

  .category-content small {
    font-size: 0.65rem;
    padding: 5px 9px;
  }

  .category-card span {
    font-size: 1.25rem;
  }

  .category-content strong {
    font-size: 0.8rem;
  }

  .card {
    width: 92%;
    max-width: 360px;
  }

  .card img {
    height: 220px;
  }

  .cart-content {
    max-width: 100%;
  }

  .about-container {
    flex-direction: column;
  }

  .about-slider {
    width: 100%;
    min-height: 280px;
  }

  .contact-card {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   MOBILE MENU
========================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #e63946;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-content {
  width: 85%;
  max-width: 330px;
  height: 100vh;
  background: #151515;
  padding: 30px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.55);
  animation: mobileMenuSlide 0.25s ease;
}

@keyframes mobileMenuSlide {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-close {
  background: #252525;
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  float: right;
}

.mobile-menu-content h2 {
  margin-top: 60px;
  margin-bottom: 35px;
  font-size: 1.8rem;
}

.mobile-menu-content a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-order-btn {
  margin-top: 30px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3040, #ff5a5f);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: none;
  }
}

/* =========================
   CATERING SECTION
========================= */
.catering-section {
  background: #151515;
  color: white;
  padding: 90px 20px;
  text-align: center;
  scroll-margin-top: 90px;
}

.catering-container {
  max-width: 1150px;
  margin: auto;
}

.catering-header span {
  color: #ff5a5f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.catering-header h2 {
  font-size: 2.5rem;
  margin: 14px 0;
}

.catering-header p {
  max-width: 700px;
  margin: 0 auto 45px;
  color: #ccc;
  line-height: 1.7;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.catering-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 22px;
  transition: 0.3s ease;
  text-align: left;
}

.catering-item:hover {
  transform: translateY(-8px);
  background: rgba(255,90,95,0.12);
}

.catering-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 15px;
}

.catering-item h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 1.15rem;
}

.catering-item p {
  color: #ccc;
  line-height: 1.5;
}

.catering-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .catering-grid {
    grid-template-columns: 1fr;
  }

  .catering-header h2 {
    font-size: 2rem;
  }

  .catering-item {
    text-align: center;
  }

  .catering-item img {
    height: 210px;
  }
}


.catering-desc{
  color:#bbb;
  font-size:.9rem;
  line-height:1.6;
  margin-bottom:15px;
}

.catering-prices{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
  padding:10px 14px;
  background:rgba(255,255,255,.06);
  border-radius:12px;
}

.catering-prices span{
  color:#ddd;
  font-weight:600;
}

.catering-prices strong{
  color:#ff5a5f;
  font-size:1rem;
}


.back-menu-float {
  position: fixed;
  left: 24px;
  bottom: 26px;
  z-index: 9998;

  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(230, 57, 70, 0.95);
  color: white;
  border: none;
  border-radius: 999px;

  padding: 14px 20px;
  font-weight: 900;
  font-size: 0.92rem;

  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.back-menu-float:hover {
  transform: translateY(-4px);
  background: #ff3040;
}

.back-menu-float i {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .back-menu-float {
    left: 16px;
    bottom: 18px;
    padding: 13px 16px;
    font-size: 0.82rem;
  }
}