:root {
  --primary: #c62828;
  --secondary: #f5e6d3;
  --accent: #3e2723;
  --highlight: #ff7043;
  --text-dark: #2d1d1a;
  --white: #fffdf9;
  --radius: 18px;
  --shadow-soft: 0 12px 28px rgba(45, 28, 18, 0.18);
  --shadow-deep: 0 22px 48px rgba(31, 13, 7, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(1200px 500px at 85% -5%, rgba(198, 40, 40, 0.14), transparent 55%),
    radial-gradient(900px 420px at -10% 35%, rgba(255, 112, 67, 0.13), transparent 50%),
    linear-gradient(180deg, #fff4e8 0%, #f9ead6 44%, #f5e6d3 100%);
  line-height: 1.45;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(245, 230, 211, 0.85);
  border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}

.nav-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 220px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  max-width: none;
  display: block;
  transform: translateY(-74px);
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e53935);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(198, 40, 40, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  animation: subtleZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(18, 8, 6, 0.84) 16%, rgba(34, 16, 12, 0.58) 48%, rgba(79, 35, 18, 0.28) 100%),
    radial-gradient(circle at 82% 30%, rgba(255, 112, 67, 0.12), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-width: 1120px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(19, 9, 7, 0.45), rgba(58, 20, 15, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  max-width: 630px;
}

.chip {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 112, 67, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.6px;
}

h1 {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.subtext {
  margin-top: 16px;
  max-width: 580px;
  font-size: clamp(1.04rem, 2.1vw, 1.24rem);
  color: rgba(255, 253, 249, 0.9);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-gallery {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.hero-gallery-card {
  margin: 0;
  height: auto;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.2);
}

.hero-gallery-card-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.hero-gallery-card img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hero-gallery-card:hover img {
  transform: scale(1.08);
}

.platform-btn {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.swiggy-btn {
  background: linear-gradient(135deg, #fc8019, #ff9d4a);
  color: #fff;
}

.zomato-btn {
  background: linear-gradient(135deg, #e23744, #ff5662);
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--accent);
}

.section-head p {
  margin-top: 11px;
  color: rgba(61, 40, 33, 0.8);
  font-weight: 500;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  perspective: 1200px;
}

.menu-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(154deg, rgba(255, 252, 247, 0.9), rgba(246, 229, 207, 0.72)),
    repeating-linear-gradient(45deg, rgba(198, 40, 40, 0.04) 0 10px, rgba(255, 112, 67, 0.03) 10px 20px);
  backdrop-filter: blur(9px);
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(53, 25, 17, 0.16);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: conic-gradient(from 0deg, #ffaf89, #ff7043, #c62828, #ffd6b8, #ffaf89);
  animation: spinBorder 7s linear infinite;
  z-index: -2;
  pointer-events: none;
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 20px;
  background:
    linear-gradient(154deg, rgba(255, 252, 247, 0.95), rgba(246, 229, 207, 0.76)),
    repeating-linear-gradient(45deg, rgba(198, 40, 40, 0.04) 0 10px, rgba(255, 112, 67, 0.03) 10px 20px);
  z-index: -1;
  pointer-events: none;
}

.menu-card:hover::before {
  animation-duration: 3.6s;
}

.menu-card:hover {
  transform: translate3d(0, -12px, 0) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 34px 64px rgba(41, 18, 12, 0.3);
}

.menu-img {
  height: 238px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.image-caption {
  font-size: 0.72rem;
  color: rgba(255, 248, 239, 0.9);
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(35, 15, 11, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  backdrop-filter: blur(3px);
}

.menu-card:hover .menu-img img {
  transform: scale(1.1);
}

.menu-info {
  position: relative;
  z-index: 3;
  padding: 18px 18px 18px;
}

.menu-info h3 {
  font-size: 2.1rem;
  color: var(--accent);
}

.menu-desc {
  margin-top: 4px;
  font-size: 0.92rem;
  color: rgba(62, 39, 35, 0.76);
  min-height: 0;
}

.menu-items-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.menu-item-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(208, 148, 120, 0.28);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-item-row:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.78);
}

.variant {
  font-weight: 800;
  color: var(--accent);
}

.price {
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
}

.add-btn {
  background: linear-gradient(130deg, var(--highlight), #ff8a65);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  --mx: 0px;
  --my: 0px;
  pointer-events: none;
  transform: translateY(8px) translate(var(--mx), var(--my)) scale(0.96);
  transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item-row:hover .add-btn,
.menu-item-row:focus-within .add-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translate(var(--mx), var(--my)) scale(1);
  box-shadow: 0 8px 18px rgba(255, 112, 67, 0.34);
}

.drinks {
  background: linear-gradient(180deg, rgba(245, 230, 211, 0.3), rgba(247, 228, 201, 0.8));
}

.signature-section {
  padding-top: 14px;
}

.signature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 112, 67, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(62, 39, 35, 0.97), rgba(108, 34, 20, 0.98));
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255, 214, 188, 0.25);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 201, 167, 0.1) 50%, transparent 65%);
  transform: translateX(-115%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.signature-card:hover::before {
  transform: translateX(115%);
}

.signature-image {
  min-height: 430px;
  margin: 0;
  position: relative;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease, opacity 0.25s ease;
}

.signature-card:hover .signature-image img {
  transform: scale(1.04);
}

.signature-content {
  padding: 36px 30px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.signature-badge {
  display: inline-block;
  background: rgba(255, 112, 67, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.signature-content h3 {
  margin-top: 6px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 0.95;
}

.signature-content p {
  margin-top: 0;
  color: rgba(255, 248, 238, 0.9);
}

.signature-list {
  margin-top: 4px;
  display: grid;
  gap: 12px;
}

.signature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 216, 193, 0.24);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.signature-row:hover,
.signature-row.active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 183, 156, 0.74);
  box-shadow: 0 10px 26px rgba(18, 8, 6, 0.26);
}

.signature-row span:first-child {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.signature-card .price {
  color: #ffd7bd;
  min-width: 64px;
  text-align: right;
}

.signature-card .add-btn {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 112px;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 112, 67, 0.28);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.drink-card {
  border-radius: var(--radius);
  padding: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.58), rgba(255, 242, 228, 0.48));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.drink-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(255, 255, 255, 0.92);
}

.drink-media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.drink-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: filter 0.28s ease;
}

.drink-card:hover .drink-media img {
  filter: saturate(1.06) contrast(1.04);
}

.drink-card h3 {
  font-size: 1.55rem;
  color: var(--accent);
  padding: 16px 16px 0;
}

.drink-card p {
  margin-top: 6px;
  padding: 0 16px 16px;
  color: rgba(61, 39, 33, 0.85);
}

.about-box {
  border-radius: calc(var(--radius) + 4px);
  padding: 36px;
  background: linear-gradient(145deg, rgba(198, 40, 40, 0.92), rgba(124, 40, 22, 0.96));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.about-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-box p {
  margin-top: 10px;
  font-size: 1.03rem;
  color: rgba(255, 249, 244, 0.9);
}

.contact-wrap,
.event-order-wrap {
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(150deg, rgba(255, 253, 249, 0.92), rgba(247, 231, 212, 0.86));
  border: 1px solid rgba(191, 95, 66, 0.2);
  box-shadow: var(--shadow-soft);
}

.event-order {
  padding-top: 12px;
}

.contact-form,
.event-form {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label,
.event-form label {
  display: grid;
  gap: 8px;
}

.contact-form span,
.event-form span {
  font-weight: 700;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea,
.event-form input,
.event-form textarea,
.event-form select {
  width: 100%;
  border: 1px solid rgba(120, 60, 42, 0.35);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea,
.event-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.event-form input:focus,
.event-form textarea:focus,
.event-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.event-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-email-btn {
  border-color: rgba(62, 39, 35, 0.26);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.68);
}

.is-hidden {
  display: none;
}

.site-footer {
  margin-top: 26px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 112, 67, 0.2), transparent 34%),
    radial-gradient(circle at 86% 85%, rgba(198, 40, 40, 0.18), transparent 36%),
    linear-gradient(160deg, #2d1712 0%, #1a0f0c 58%, #120a08 100%);
  color: #ffeedd;
  border-top: 1px solid rgba(255, 214, 188, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 24px;
  padding: 44px 0 30px;
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff5ea;
  font-size: 2.1rem;
}

.footer-brand-block p {
  margin-top: 8px;
  color: rgba(255, 233, 214, 0.84);
  max-width: 420px;
}

.footer-socials {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffe8d5;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 214, 188, 0.26);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 112, 67, 0.35);
}

.footer-links-block,
.footer-contact-block {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links-block h3,
.footer-contact-block h3 {
  font-size: 1.5rem;
  color: #fff3e6;
}

.footer-links-block a,
.footer-contact-block a {
  color: rgba(255, 232, 214, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-contact-block a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-block a:hover,
.footer-contact-block a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 214, 188, 0.16);
  text-align: center;
  padding: 14px 12px 18px;
}

.footer-bottom p {
  color: rgba(255, 225, 205, 0.76);
  font-size: 0.9rem;
}

.testimonials {
  padding-top: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  position: relative;
  border-radius: 18px;
  padding: 24px 20px;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.9), rgba(247, 232, 214, 0.82)),
    repeating-linear-gradient(45deg, rgba(198, 40, 40, 0.035) 0 10px, rgba(255, 112, 67, 0.03) 10px 20px);
  border: 1px solid rgba(191, 95, 66, 0.22);
  box-shadow: 0 16px 36px rgba(53, 25, 17, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(41, 18, 12, 0.2);
  border-color: rgba(198, 40, 40, 0.38);
}

.testimonial-card.featured {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 112, 67, 0.2), transparent 35%),
    linear-gradient(150deg, rgba(62, 39, 35, 0.96), rgba(120, 34, 21, 0.98));
  border-color: rgba(255, 201, 167, 0.35);
}

.testimonial-card.featured p,
.testimonial-card.featured .testimonial-meta strong,
.testimonial-card.featured .testimonial-meta span {
  color: #fff4ea;
}

.testimonial-stars {
  color: #ff7a45;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: rgba(56, 34, 29, 0.88);
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-meta {
  margin-top: 16px;
  display: grid;
  gap: 2px;
}

.testimonial-meta strong {
  color: var(--accent);
}

.testimonial-meta span {
  color: rgba(62, 39, 35, 0.72);
  font-size: 0.9rem;
}

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  border: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2f1915, #120c0a);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 18px 36px rgba(22, 9, 7, 0.45);
  z-index: 1001;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.floating-cart span {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  background: var(--highlight);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-cart:hover {
  transform: scale(1.08);
}

.floating-order-buttons {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1001;
  display: grid;
  gap: 10px;
}

.float-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 14px 28px rgba(20, 9, 7, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(20, 9, 7, 0.42);
}

.swiggy-float {
  background: linear-gradient(135deg, #fc8019, #ff9f43);
}

.zomato-float {
  background: linear-gradient(135deg, #e23744, #ff5b67);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 3, 0.66);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1200;
}

.cart-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(500px, 100%);
  height: 100%;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 112, 67, 0.25), transparent 34%),
    linear-gradient(175deg, #2a1712 0%, #1b0f0c 55%, #130b09 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateX(102%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.cart-head h3 {
  font-size: 2rem;
  color: #fff3e6;
}

.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe4cf;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 14px 14px 120px;
}

.cart-empty {
  color: rgba(255, 234, 218, 0.74);
  text-align: center;
  margin-top: 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-item h4 {
  color: #fff5eb;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item p {
  color: rgba(255, 224, 197, 0.76);
  font-size: 0.86rem;
}

.cart-item strong {
  color: #ffc5a1;
  justify-self: end;
  align-self: center;
}

.cart-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item-actions span {
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.cart-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(21, 11, 8, 0.8), #140b09);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffe7d6;
  margin-bottom: 12px;
}

.cart-total-row strong {
  color: #ffb690;
}

.cart-checkout {
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(130deg, #ff7043, #c62828);
  color: #fff;
  box-shadow: 0 12px 26px rgba(198, 40, 40, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .drinks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-card {
    grid-template-columns: 1fr;
  }

  .signature-image {
    min-height: 270px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 170px;
    transform: translateY(-56px);
  }

  .brand {
    width: 170px;
    height: 58px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .platform-actions {
    width: 100%;
  }

  .platform-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-gallery-card-main {
    grid-column: 1 / -1;
  }

  .hero-gallery-card {
    aspect-ratio: 4 / 3;
  }

    .menu-grid,
  .drinks-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .drink-card {
    min-height: 0;
  }

  .drink-media {
    height: 210px;
  }

  .floating-order-buttons {
    left: 12px;
    bottom: 96px;
    gap: 8px;
  }

  .float-order-btn {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .menu-card:hover {
    transform: translateY(-6px);
  }

  .signature-content {
    padding: 24px 16px;
  }

  .signature-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  .signature-row .price {
    text-align: left;
    min-width: 0;
  }

  .signature-row .add-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .menu-item-row {
    grid-template-columns: 1fr auto;
  }

  .menu-item-row .add-btn {
    grid-column: 1 / -1;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .about-box {
    padding: 28px 18px;
  }

  .contact-wrap,
  .event-order-wrap {
    padding: 20px 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-form-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 22px;
  }

  .footer-brand {
    font-size: 1.9rem;
  }
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  background: rgba(13, 6, 4, 0.64);
  backdrop-filter: blur(5px);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.offer-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.offer-popup-card {
  width: min(520px, 100%);
  position: relative;
  border-radius: 20px;
  padding: 28px 22px 22px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 112, 67, 0.25), transparent 34%),
    linear-gradient(140deg, rgba(62, 39, 35, 0.97), rgba(121, 35, 21, 0.98));
  border: 1px solid rgba(255, 212, 183, 0.34);
  box-shadow: 0 24px 56px rgba(17, 7, 5, 0.42);
  color: #fff7ef;
  text-align: center;
}

.offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.offer-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 112, 67, 0.25);
}

.offer-popup-card h3 {
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 0.95;
}

.offer-validity {
  margin-top: 10px;
  color: rgba(255, 237, 220, 0.92);
  font-weight: 700;
}

.offer-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-dismiss {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 760px) {
  .offer-popup-card {
    padding: 24px 16px 16px;
  }

  .offer-actions .btn {
    width: 100%;
  }
}
