:root {
  --brown: #8b4513;
  --brown-light: #a0522d;
  --brown-dark: #654321;
  --white: #ffffff;
  --pale-orange: #ffe4b5;
  --pale-orange-light: #fff8dc;
  --accent: #d2691e;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--pale-orange);
  margin: 0;
  padding: 0;
  height: 100%;
  color: var(--text);
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* ---------- SHARP BACKGROUND SLIDER ---------- */

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

/* SITE PRELOADER */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pale-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.ingredients {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 40px;
}

.ingredient {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: scale(0);
  animation: ingredientFloat 8s infinite linear;
}

.ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.ingredient.chopped img {
  opacity: 0.3;
  transform: scale(0.8);
  filter: grayscale(80%);
}

.slice {
  position: absolute;
  width: 50px;
  height: 25px;
  overflow: hidden;
  animation: fall 1s forwards;
}

.slice img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ingredient:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.ingredient:nth-child(2) {
  top: 60%;
  left: 30%;
  animation-delay: 1s;
}

.ingredient:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}

.ingredient:nth-child(4) {
  top: 70%;
  left: 60%;
  animation-delay: 3s;
}

.ingredient:nth-child(5) {
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

.knife-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.knife {
  width: 60px;
  height: 260px;
  position: relative;
  animation: chop 2s infinite ease-in-out;
  transform-origin: top center;
}

.knife-blade {
  position: absolute;
  bottom: 80px;
  left: 5px;
  width: 50px;
  height: 170px;
  background: linear-gradient(
    135deg,
    #dcdcdc,
    #f5f5f5 25%,
    #c0c0c0 50%,
    #e0e0e0 75%,
    #b0b0b0
  );
  border-radius: 2px;
  filter: brightness(1.2) contrast(1.1);
}

.knife-blade::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6),
    transparent 60%
  );
}

.knife-handle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 80px;
  background: linear-gradient(to right, var(--accent), var(--brown));
  border-radius: 10px 10px 15px 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.knife-edge {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--white),
    #bdbdbd,
    var(--pale-orange)
  );
}

.chopping-board {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 25px;
  background: linear-gradient(to right, var(--brown), var(--brown));
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.loading-text {
  color: var(--brown);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.loading-subtext {
  color: var(--accent);
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
  opacity: 0.8;
}

.progress-container {
  width: 300px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--accent), var(--brown));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent);
}

.percentage {
  color: var(--brown);
  font-size: 16px;
  margin-top: 10px;
}

/* Particles */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.8;
  animation: particleFly 1s forwards;
}

@keyframes chop {
  0% {
    transform: rotate(5deg);
  }
  25% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

@keyframes ingredientFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }
  30% {
    opacity: 1;
    transform: translateY(-90px);
  }
  50% {
    opacity: 1;
    transform: translateY(-150px);
  }
  70% {
    opacity: 0.5;
    transform: translateY(-210px) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translateY(-300px) scale(0);
  }
}

@keyframes fall {
  to {
    transform: translateY(100px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes particleFly {
  to {
    transform: translate(var(--dx), var(--dy)) scale(0.3);
    opacity: 0;
  }
}

.content {
  display: none;
  text-align: center;
  color: var(--brown);
  padding: 2rem;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- FIXED NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: var(--pale-orange);
  z-index: 1000;
  border-bottom: 2px solid var(--brown);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: var(--brown);
}

.navbar.scrolled .nav-links a {
  color: var(--white);
}

.navbar.scrolled .social a {
  color: var(--white);
}

.navbar.scrolled .menu-toggle {
  color: var(--white);
}

.containerr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brown);
  transition: var(--transition);
}

.nav-links a.active {
  color: var(--brown);
}

.nav-links a.active::after {
  width: 100%;
  background-color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  color: var(--brown);
  font-size: 18px;
  transition: var(--transition);
}

.social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--brown);
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--accent);
}

/* Scroll reveal animation styles */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-on-scroll.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-on-scroll.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-on-scroll.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-on-scroll.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Ensure smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--brown);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    color: var(--pale-orange);
    font-size: 20px;
  }

  .navbar.scrolled .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a.active {
    color: var(--white);
  }

  .social {
    display: block;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .navbar.scrolled .logo img {
    height: 45px;
  }
}

.welcome-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brown);
  text-align: center;
  overflow: hidden;
}

.welcome-hero::before {
  display: none;
}

.welcome-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(123, 45, 222, 0.1) 0%,
    rgba(0, 194, 255, 0.05) 50%,
    rgba(255, 45, 117, 0.1) 100%
  );
  animation: gradientFlow 15s ease infinite;
  background-size: 200% 200%;
  z-index: 1;
  mix-blend-mode: overlay;
}

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 0;
}

.bg-slider.active {
  opacity: 1;
}

.slide-from-top {
  transform: translateY(-100%);
}
.slide-from-bottom {
  transform: translateY(100%);
}
.slide-from-left {
  transform: translateX(-100%);
}
.slide-from-diagonal {
  transform: translate(-100%, 100%);
}

.bg-slider.active {
  transform: translate(0, 0);
  transition: transform 1.5s ease-in-out, opacity 1s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  color: var(--pale-orange);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "Abril Fatface", cursive;
  text-shadow: 0 2px 4px var(--accent);
}

.hero-title {
  color: var(--pale-orange);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0.5rem 0;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-tagline {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cta-button-primary {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background: var(--brown);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240, 118, 128, 0.4);
  border: 2px solid transparent;
}

.cta-button-primary:hover {
  background: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.cta-button-secondary {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background: transparent;
  backdrop-filter: blur(5px);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.cta-button-secondary:hover {
  background: var(--text);
  transform: translateY(-3px);
  backdrop-filter: blur(5px);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px var(--accent), 0 0 20px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 0 0 15px var(--accent), 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 45px rgba(255, 215, 0, 0.3);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-tagline {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.welcome-about {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--pale-orange);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.animated-border {
  border: 2px solid transparent;
  padding: 1.2rem;
  border-radius: 12px;
  background-image: linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, var(--accent), var(--text), var(--accent));
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: pulse-border 8s linear infinite;
  box-shadow: var(--shadow);
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

@keyframes pulse-border {
  0%,
  100% {
    background-image: linear-gradient(var(--white), var(--white)),
      linear-gradient(135deg, var(--accent), var(--text), var(--accent));
  }
  25% {
    background-image: linear-gradient(var(--white), var(--white)),
      linear-gradient(135deg, var(--accent), var(--accent), var(--accent));
  }
  50% {
    background-image: linear-gradient(var(--white), var(--white)),
      linear-gradient(135deg, var(--brown), var(--text), var(--brown));
  }
  75% {
    background-image: linear-gradient(var(--white), var(--white)),
      linear-gradient(
        135deg,
        var(--pale-orange),
        var(--accent),
        var(--pale-orange)
      );
  }
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.about-text1 {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 500px;
}

.about-text2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: var(--brown);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  width: 100%;
  overflow: hidden;
}

.typing-animation {
  display: inline;
  border-right: 3px solid var(--accent);
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.about-text4,
.about1 {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: var(--brown);
  width: 100%;
}

.about-text4 span {
  color: var(--accent);
  font-weight: 600;
}

.Story-text5 {
  position: relative;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  background: var(--brown);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
}

.about-video {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 400px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}

.about-video video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 6px solid var(--white);
  display: block;
  object-fit: cover;
}

.cursor {
  animation: blink 0.7s infinite;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .about-content {
    gap: 1.5rem;
  }

  .animated-border {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .welcome-about {
    padding: 1.5rem 0.8rem;
  }

  .animated-border {
    width: 98%;
    padding: 0.8rem;
  }

  .about-content {
    flex-direction: column;
    gap: 1.2rem;
  }

  .about-text1,
  .about-video {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-text3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .typing-animation {
    white-space: normal;
    word-break: break-word;
    border-right: none;
    animation: none;
  }

  .about-text4,
  .about1 {
    text-align: center;
  }

  .Story-text5 {
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
  }

  .about-video {
    max-width: 100%;
    margin-top: 1rem;
  }

  .about-video video {
    border-width: 4px;
  }
}

@media (max-width: 480px) {
  .welcome-about {
    padding: 1rem 0.5rem;
  }

  .animated-border {
    padding: 0.6rem;
    border-radius: 10px;
  }

  .about-text2 {
    font-size: 0.9rem;
    text-align: center;
  }

  .about-text3 {
    font-size: 1.4rem;
  }

  .about-text4,
  .about1 {
    font-size: 0.95rem;
  }

  .Story-text5 {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .about-video video {
    border-width: 3px;
  }
}

@media (max-width: 320px) {
  .about-text3 {
    font-size: 1.2rem;
  }

  .Story-text5 {
    width: 100%;
    text-align: center;
  }
}

/* Intro Section Styles */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Montserrat:wght@900&display=swap");

.intro-text,
.intro-text2 {
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.intro-section {
  position: relative;
  height: 50vh;
  width: 100%;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.568),
      rgba(0, 0, 0, 0.404)
    ),
    url("/images/instagram image3.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-attachment: fixed;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.intro {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 1rem;
}

.intro-text {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 2px var(--white), 0 0 2px var(--white), 0 0 5px var(--brown),
    0 0 10px var(--brown), 0 0 20px var(--brown);
  animation: glow 1.5s ease-in-out infinite alternate;
}

.intro-text2 {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1.2;
  text-shadow: 0 0 5px var(--white), 0 0 10px var(--white),
    0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
  animation: pulse 2s infinite;
}

.intro-text2 span {
  color: var(--brown);
  text-shadow: 0 0 5px var(--white), 0 0 10px var(--brown),
    0 0 15px var(--brown), 0 0 20px var(--brown);
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px var(--brown), 0 0 10px var(--brown),
      0 0 15px var(--brown), 0 0 20px var(--brown);
  }
  to {
    text-shadow: 0 0 10px var(--white), 0 0 20px var(--accent),
      0 0 30px var(--accent), 0 0 40px var(--accent);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px var(--white), 0 0 10px var(--white),
      0 0 20px rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: scale(1.02);
    text-shadow: 0 0 15px var(--brown), 0 0 30px rgba(80, 7, 11, 0.8),
      0 0 45px var(--brown);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px var(--brown), 0 0 10px var(--brown),
      0 0 20px rgba(255, 255, 255, 0.8);
  }
}

/* INTRODUCTORY SECTION END ABOUT OUR FOOD */

.restaurant-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.food-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--white), var(--pale-orange));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 90%;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.food-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--pale-orange),
    var(--brown)
  );
  opacity: 0.8;
  z-index: 2;
}

.food-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(243, 3, 3, 0.7) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.food-card:hover .card-image:after {
  opacity: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.food-card:hover .card-image img {
  transform: scale(1.1);
}

.card-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--accent);
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.card-rating i {
  color: var(--accent);
}

.card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.card-title:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brown);
  transition: width 0.3s ease;
}

.card-title:hover:after {
  width: 100%;
}

.card-title:hover {
  color: var(--brown-dark);
}

.card-description {
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  font-size: 1.05rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--brown);
  font-size: 0.9rem;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  padding: 0.6rem 1.2rem;
  background: rgba(210, 105, 30, 0.1);
  border-radius: 12px;
  margin-top: 1rem;
}

.card-link:hover {
  color: var(--white);
  background: var(--brown);
  transform: translateX(5px);
}

.card-link .fa-arrow-right {
  margin-left: 0.7rem;
  transition: transform 0.3s ease;
}

.card-link:hover .fa-arrow-right {
  transform: translateX(6px);
}

a:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 2px;
}

@media (max-width: 992px) {
  .restaurant-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .restaurant-cards {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1.4rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.food-card {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.food-card:nth-child(1) {
  animation-delay: 0.1s;
}

.food-card:nth-child(2) {
  animation-delay: 0.2s;
}

.food-card:nth-child(3) {
  animation-delay: 0.3s;
}

.decoration {
  position: absolute;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
}

.decoration-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
}

.decoration-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
}

.menu1 {
  text-align: center;
  padding: 2rem 1rem;
}

.menu1 h2 {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu1 h1 {
  font-size: 2.8rem;
  margin-top: 0.5rem;
  color: var(--brown);
}

/* Flip gallery layout */
.flip-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Flip card container */
.flip-card {
  width: 260px;
  height: 360px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.flip-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  transition: transform 1s ease;
}

/* Flip front and back */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-inner[data-direction="left"] {
    transform: rotateY(-180deg);
  }

  .flip-card:hover .flip-inner[data-direction="right"] {
    transform: rotateY(180deg);
  }

  .flip-card:hover .flip-inner[data-direction="top"] {
    transform: rotateX(180deg);
  }

  .flip-card:hover .flip-inner[data-direction="bottom"] {
    transform: rotateX(-180deg);
  }
}

@media (hover: none), (pointer: coarse) {
  .flip-card.flipped .flip-inner[data-direction="left"] {
    transform: rotateY(-180deg);
  }

  .flip-card.flipped .flip-inner[data-direction="right"] {
    transform: rotateY(180deg);
  }

  .flip-card.flipped .flip-inner[data-direction="top"] {
    transform: rotateX(180deg);
  }

  .flip-card.flipped .flip-inner[data-direction="bottom"] {
    transform: rotateX(-180deg);
  }
}

/* Back side rotation direction */
.flip-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: var(--accent);
}

/* Ensure text isn't upside down */
.flip-inner[data-direction="top"] .flip-back,
.flip-inner[data-direction="bottom"] .flip-back {
  transform: rotateX(180deg);
}

.back-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 5px 5px 5px var(--text);
  line-height: 1.4;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInText 1s ease 0.3s forwards;
}

/* Glow button */
.flip-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent) inset;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 10;
  position: relative;
  display: inline-block;
  margin-top: auto;
}

.flip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent), 0 0 25px var(--accent) inset;
}

/* Animate button text */
.flip-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: 0.5s;
  z-index: -1;
}

.flip-btn:hover::after {
  left: 100%;
}

.tap-hint {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brown);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  animation: flashHint 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

@keyframes flashHint {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  10%,
  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media screen and (min-width: 768px) {
  .tap-hint {
    display: none !important;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .flip-gallery {
    flex-direction: column;
    align-items: center;
  }
}

/* EVENTS SECTIONS */
.events-section {
  padding: 4rem 1rem;
  background-color: var(--pale-orange);
  position: relative;
  overflow: hidden;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--brown);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--brown);
  font-weight: 400;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: var(--brown);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .event-card {
    flex-direction: row;
    height: 400px;
  }
}

.event-media {
  position: relative;
  flex: 1;
  min-height: 250px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image {
  transform: scale(1.03);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(80, 7, 0, 0.7);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.event-day {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.event-details {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.event-description {
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.countdown-container {
  margin-top: auto;
}

.countdown-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: var(--pale-orange);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  min-width: 50px;
  text-align: center;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 0.25rem;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: -10px;
}

.event-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.event-nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brown);
  border: 1px solid var(--pale-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.event-nav-button:hover {
  background: var(--brown);
  border-color: var(--accent);
  color: var(--white);
}

.event-nav-button svg {
  width: 24px;
  height: 24px;
}

.event-nav-button:hover svg {
  stroke: var(--white);
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .event-details {
    padding: 1.5rem;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .countdown-value {
    font-size: 1.2rem;
    min-width: 40px;
  }
}

/* FORM SECTION AND FORM IMAGE */
.reservation-container {
  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  background: transparent;
  min-height: 800px;
  position: relative;
  z-index: 1;
}

.form-card {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  background-color: var(--brown-light);
  z-index: 2;
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pale-orange), var(--pale-orange));
  z-index: 3;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.form-header::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pale-orange),
    transparent
  );
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.form-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}

.modern-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.input-wrapper {
  position: relative;
}

.floating label {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: var(--white);
  transition: var(--transition);
  pointer-events: none;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  background: var(--brown);
  padding: 0 0.5rem;
}

.floating input,
.floating select,
.floating textarea {
  width: 100%;
  padding: 1.5rem;
  border: 2px solid var(--brown);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: var(--brown);
  transition: var(--transition);
}

.floating textarea {
  min-height: 140px;
  resize: vertical;
}

.floating select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 16px;
  appearance: none;
  cursor: pointer;
}

.floating input:hover,
.floating textarea:hover,
.floating select:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.floating input:focus,
.floating textarea:focus,
.floating select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.2);
}

.floating input:focus ~ label,
.floating textarea:focus ~ label,
.floating select:focus ~ label,
.floating input:not(:placeholder-shown) ~ label,
.floating textarea:not(:placeholder-shown) ~ label,
.floating select:not([value=""]) ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.external-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: var(--brown);
  width: 100px;
  transition: var(--transition);
}

.icon-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown) 100%);
  box-shadow: var(--shadow);
}

.icon-item i {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.icon-item span {
  font-size: 0.8rem;
  color: var(--white);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--brown));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 5, 61, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.btn-text {
  transition: var(--transition);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  opacity: 0;
  transition: var(--transition);
  margin-left: 0;
}

.submit-btn:hover .btn-text {
  transform: translateX(-5px);
}

.submit-btn:hover .btn-icon {
  width: 24px;
  opacity: 1;
  margin-left: 12px;
}

.form-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.form-meta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--white);
}

.form-notification {
  margin-top: 2rem;
}

.notification {
  display: none;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease forwards;
  background: var(--brown);
  border-left: 4px solid;
}

.notification.success {
  border-left-color: green;
}

.notification.error {
  border-left-color: #ef4444;
}

.notification-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}

.notification-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.notification-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-image {
  flex: 1;
  position: relative;
  height: auto;
  overflow: hidden;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.7) 0%,
    rgba(108, 99, 255, 0.4) 100%
  );
  z-index: 1;
}

.image-content {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  color: var(--white);
  z-index: 2;
  max-width: 80%;
}

.image-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.image-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .form-grid {
    gap: 1.5rem;
  }

  .form-card {
    padding: 3rem;
  }
}

@media (max-width: 992px) {
  .reservation-container {
    flex-direction: column;
    max-width: 700px;
  }

  .form-image {
    height: 350px;
    order: -1;
  }

  .image-content {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .form-card {
    border-right: none;
  }

  .external-icons {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-card {
    padding: 2.5rem 2rem;
  }

  .form-title {
    font-size: 2.2rem;
  }

  .image-content h3 {
    font-size: 2rem;
  }

  .image-content p {
    font-size: 1rem;
  }

  .external-icons {
    flex-wrap: wrap;
  }

  .icon-item {
    width: 80px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 2rem;
  }

  .icon-item {
    width: 70px;
    padding: 0.8rem;
  }

  .icon-item i {
    font-size: 1.2rem;
  }
}

/* CUSTOMER REVIEW SLIDER */

.review-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  position: relative;
  background-attachment: fixed;
  height: 100vh;
  z-index: 1;
}

.review-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.review-slider {
  max-width: 850px;
  width: 90%;
  padding: 30px;
  margin: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-heading {
  display: none;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.review-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 320px;
}

.review-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.review-slide.active {
  display: flex;
}

.slide-image-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  border: 3px solid var(--brown);
  box-shadow: var(--shadow);
}

.review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-slide:hover .review-img {
  transform: scale(1.05);
}

.review-text {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
  font-style: italic;
  max-width: 600px;
  padding: 0 15px;
}

.review-stars {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-author {
  color: var(--white);
  font-weight: bold;
  margin-top: 5px;
  font-size: 1rem;
}

.slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slider-btn {
  background: var(--brown);
  border: 2px solid var(--white);
  color: var(--white);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--brown);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  display: inline-block;
  margin: 0 4px;
  transition: var(--transition);
  cursor: pointer;
}

.slider-dots .dot.active {
  background: var(--brown);
  transform: scale(1.2);
}

/* Add Review Button */
.add-review-btn {
  background: var(--brown);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 30px;
  cursor: pointer;
  margin: 0 auto 20px;
  display: block;
  transition: var(--transition);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.801);
}

.add-review-btn:hover {
  background: var(--pale-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent);
}

/* Review Form Styles - Overlay version */
.review-form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 243, 243, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.review-form-container {
  background: rgba(0, 0, 0, 0.95);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--accent);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-form {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-form:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.review-form {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.review-form h3 {
  margin-top: 0;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.star-rating {
  font-size: 1.8rem;
  margin-top: 5px;
}

.star-rating .star {
  cursor: pointer;
  transition: color 0.2s;
  color: var(--text);
}

.star-rating .star:hover,
.star-rating .star.active {
  color: var(--accent);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.submit-btn,
.cancel-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
}

.submit-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.submit-btn:hover {
  background: var(--brown);
}

.cancel-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--accent);
}

.cancel-btn:hover {
  background: var(--accent);
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

.slide-in-top {
  animation: slideInTop 1s ease-out forwards;
}

.slide-in-bottom {
  animation: slideInBottom 1s ease-out forwards;
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%) rotate(-10deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%) rotate(10deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
}

@keyframes slideInTop {
  from {
    transform: translateY(-100%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideInBottom {
  from {
    transform: translateY(100%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.action-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  z-index: 1000;
  box-shadow: var(--shadow);
  animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .review-slider {
    width: 95%;
    padding: 25px 15px;
  }

  .review-section {
    padding: 40px 15px;
  }

  .review-heading {
    font-size: 1.3rem;
  }

  .slide-image-container {
    width: 60px;
    height: 60px;
  }

  .review-container {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .review-slider {
    width: 100%;
    padding: 20px 10px;
    border-radius: 15px;
  }

  .review-section {
    padding: 30px 10px;
  }

  .review-form-container {
    padding: 20px 15px;
  }

  .form-buttons {
    flex-direction: column;
  }

  .submit-btn,
  .cancel-btn {
    width: 100%;
  }

  .admin-tabs {
    flex-direction: column;
  }

  .admin-tab {
    text-align: center;
  }

  .admin-tab.active::after {
    width: 50%;
    left: 25%;
  }

  #adminLoginBtn {
    top: 20px;
    right: 30px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* FOOTER SECTION */

.footer {
  background: var(--brown);
  padding: 60px 20px 20px;
  position: relative;
  z-index: 0;
  color: var(--brown);
}

.footer-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.footer-glass-inner {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--white);
  background-color: var(--pale-orange);
}

.footer-column p,
.footer-column a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a span {
  color: var(--white);
  font-size: 20px;
}
.footer-column a span:hover {
  color: var(--pale-orange);
  text-decoration: underline;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--white);
}

.social-links a {
  margin-right: 14px;
  font-size: 1.2rem;
  color: var(--white);
  display: inline-block;
  transition: transform 0.4s ease, color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-6px);
}

/* ===== AI Chatbot Styles (Dark Theme with Avatar & Bubbles) ===== */

#aiChat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 500px;
  background: rgba(61, 59, 59, 0.93);
  backdrop-filter: blur(1px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: "Arial", sans-serif;
  display: none;
  flex-direction: column;
  z-index: 9999;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#aiChat-header {
  background: var(--brown);
  padding: 8px;
  display: flex;
  align-items: center;
}

.aiChat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}

.aiChat-title {
  flex: 1;
  font-weight: bold;
}

#aiChat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.bot-bubble,
.user-bubble {
  max-width: 80%;
  margin: 6px 0;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.bot-bubble {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  align-self: flex-start;
}

.user-bubble {
  background: var(--brown);
  color: var(--white);
  align-self: flex-end;
}

#aiChat-input-area {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#aiChat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  padding: 8px;
  outline: none;
}

#aiChat-input-area button {
  background: var(--brown);
  border: none;
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
}

#aiChat-welcome-options {
  padding: 10px;
  text-align: center;
}

.welcome-text {
  margin-bottom: 6px;
}

#aiChat-welcome-options button {
  background: var(--brown);
  color: var(--white);
  border: none;
  margin: 5px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
}

#aiChat-open-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 6px 6px var(--accent);
  animation: pulseBounce 1.8s infinite;
}

#aiChat-open-btn img {
  height: 60px;
}

@keyframes pulseBounce {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 30, 30, 0.6);
  }
  25% {
    transform: scale(1.2) translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 50, 50, 0.9), 0 0 50px rgba(255, 0, 0, 0.6);
  }
  50% {
    transform: scale(0.95) translateY(2px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
  75% {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 70, 70, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

.quick-reply-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.quick-reply-btn {
  background: var(--brown);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
}

.quick-reply-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quick-reply-btn {
  background: var(--brown);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  margin: 5px;
}
#aiChat-close {
  cursor: pointer;
  font-size: 20px;
}

.typing-indicator::after {
  content: "...";
  animation: typing 1.5s infinite;
}

@keyframes typing {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
}

.typing-indicator {
  font-style: italic;
  opacity: 0.7;
}

.menu-container {
  max-width: 100%;
  padding: 15px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--brown);
  border-radius: 8px;
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 50%;
  background: #4caf50;
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
}

.quantity-btn:hover {
  background: #45a049;
}

.item-quantity {
  min-width: 20px;
  text-align: center;
}

/* Cart Styles */
.cart-summary {
  margin-top: 20px;
  padding: 15px;
  background: var(--brown);
  border-radius: 8px;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 2;
}

.item-price {
  flex: 1;
  text-align: right;
  padding: 0 10px;
}

.cart-item-controls {
  display: flex;
  gap: 5px;
}

.small-btn {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #4caf50;
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
}

.remove-btn {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
}

.cart-total {
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/* Action Buttons */
.menu-actions {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.whatsapp-btn {
  padding: 10px 15px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: #1da851;
}
/* Clear Button Styles */
.clear-btn {
  padding: 10px 15px;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 10px;
}

.clear-btn:hover {
  background: #d32f2f;
}

/* Disabled Button State */
.whatsapp-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

/* Button Colors */
.orange-btn {
  background: var(--brown);
  color: var(--white);
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.green-btn {
  background: #25d366;
  color: var(--white);
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Mic icon button */
#aiChat-voice-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: 5px;
  color: var(--brown);
}

#aiChat-voice-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: 5px;
  color: var(--accent);
}

/* Stellar Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--brown);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 998;
  display: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

#scrollTopBtn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-glass {
    padding: 30px 20px;
  }

  #scrollTopBtn {
    bottom: 150px;
    right: 20px;
  }
}

/* ---------- RESPONSIVE FOR ALL THE CODES ---------- */

@media (max-width: 768px) {
  .nav-button {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: var(--white);
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 1rem 0;
  }
  .nav-button.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }

  .social {
    display: flex !important;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem 0;
  }

  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text3 {
    font-size: 28px;
  }

  .Story-text5 {
    margin-bottom: 20px;
  }

  .intro-text {
    font-size: 1.5rem;
  }

  .intro-text2 {
    font-size: 2.5rem;
  }

  .event-content {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .event-info {
    width: 100%;
  }
  .event-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .container {
    flex-direction: column;
    padding: 20px;
  }

  .form-flex {
    flex-direction: column;
  }

  .form-group {
    flex: 1 1 100%;
  }

  .review-slider {
    padding: 30px 20px;
  }

  #typing-heading {
    font-size: 1.5rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .slider-btn {
    font-size: 16px;
    padding: 6px 12px;
  }
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              opacity 0.4s ease,
              visibility 0.4s ease;
  border-top: 3px solid var(--brown);
  opacity: 0;
  visibility: hidden;
  display: none; /* Hidden by default, will be set to block by JS */
}

.cookie-consent-banner.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  margin: 0 0 8px 0;
  color: var(--brown);
  font-size: 1.2rem;
}

.cookie-consent-text p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept-all {
  background: var(--brown);
  color: white;
}

.btn-accept-all:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.btn-reject-optional {
  background: #6c757d;
  color: white;
}

.btn-reject-optional:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-customize {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.btn-customize:hover {
  background: var(--brown);
  color: white;
  transform: translateY(-2px);
}

/* ====== COOKIE CUSTOMIZE MODAL ====== */
.cookie-customize-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-customize-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-customize-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--pale-orange);
}

.cookie-customize-header h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.3rem;
}

.close-cookie-modal {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-cookie-modal:hover {
  background: var(--pale-orange-light);
  color: var(--brown);
}

.cookie-customize-body {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--pale-orange-light);
  border-radius: 8px;
  border: 1px solid var(--pale-orange);
}

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--brown);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: var(--brown-light);
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-category-info h4 {
  margin: 0 0 5px 0;
  color: var(--brown);
  font-size: 1.1rem;
}

.cookie-category-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-customize-footer {
  padding: 20px;
  border-top: 2px solid var(--pale-orange);
  text-align: center;
}

.btn-save-preferences {
  background: var(--brown);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-save-preferences:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }

  .btn-cookie {
    flex: 1;
    min-width: 120px;
  }

  .cookie-customize-content {
    margin: 10px;
    max-height: 85vh;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-toggle {
    align-self: flex-start;
  }
}