/* Root Variables */
:root {
  --primary-gold: #fccd0b;
  --orange-flame: #e68708;
  --red-fire: #b72109;
  --dark-chocolate: #3d170c;
  --deep-burgundy: #97100a;
  --warm-cream: #fdf5e6;
  --black: #000000;
  --gray: #f5f5f5;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  line-height: 1.6;
  color: var(--warm-cream);
  background-color: transparent;
  overflow-x: hidden;
  position: relative;
}

/* Global Animated Background */
.global-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-chocolate) 0%, var(--deep-burgundy) 50%, var(--red-fire) 100%);
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", cursive;
  letter-spacing: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(61, 23, 12, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--orange-flame);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--warm-cream);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

/* Language Selector */
.language-selector {
  margin-left: 20px;
}

.language-selector select {
  background: rgba(61, 23, 12, 0.8);
  color: var(--warm-cream);
  border: 2px solid var(--orange-flame);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.language-selector select:hover {
  background: rgba(230, 135, 8, 0.2);
  border-color: var(--primary-gold);
}

.language-selector select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(252, 205, 11, 0.3);
}

.language-selector option {
  background: var(--dark-chocolate);
  color: var(--warm-cream);
  padding: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 27.5vh;
  background: linear-gradient(135deg, rgba(61, 23, 12, 0.95) 0%, rgba(151, 16, 10, 0.95) 50%, rgba(183, 33, 9, 0.95) 100%);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fccd0b" opacity="0.3"/><circle cx="80" cy="40" r="3" fill="%23e68708" opacity="0.2"/><circle cx="40" cy="80" r="2" fill="%23b72109" opacity="0.3"/></svg>');
  animation: float 20s infinite linear;
}

/* Animated Background Elements */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.global-background .floating-element {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  animation: floatUp linear infinite alternate;
  pointer-events: none;
  z-index: 1;
  bottom: -50px;
}

.global-background .floating-element:nth-child(1) {
  left: 10%;
  animation-duration: 25s;
  animation-delay: 0s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(2) {
  left: 20%;
  animation-duration: 30s;
  animation-delay: 5s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(3) {
  left: 30%;
  animation-duration: 28s;
  animation-delay: 10s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(4) {
  left: 40%;
  animation-duration: 32s;
  animation-delay: 15s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(5) {
  left: 50%;
  animation-duration: 26s;
  animation-delay: 20s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(6) {
  left: 60%;
  animation-duration: 29s;
  animation-delay: 8s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(7) {
  left: 70%;
  animation-duration: 31s;
  animation-delay: 12s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(8) {
  left: 80%;
  animation-duration: 27s;
  animation-delay: 18s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(9) {
  left: 90%;
  animation-duration: 33s;
  animation-delay: 3s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .floating-element:nth-child(10) {
  left: 15%;
  animation-duration: 24s;
  animation-delay: 22s;
  animation: floatUpBubble linear infinite alternate;
}

/* Floating Bubbles */
.global-background .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(252, 205, 11, 0.3), rgba(231, 135, 8, 0.1));
  animation: floatUpBubble linear infinite alternate;
  pointer-events: none;
  z-index: 1;
  bottom: -20px;
  opacity: 0;
}

.global-background .bubble:nth-child(11) {
  width: 8px;
  height: 8px;
  left: 5%;
  animation-duration: 35s;
  animation-delay: 2s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(12) {
  width: 12px;
  height: 12px;
  left: 25%;
  animation-duration: 40s;
  animation-delay: 7s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(13) {
  width: 6px;
  height: 6px;
  left: 45%;
  animation-duration: 38s;
  animation-delay: 14s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(14) {
  width: 10px;
  height: 10px;
  left: 65%;
  animation-duration: 42s;
  animation-delay: 9s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(15) {
  width: 7px;
  height: 7px;
  left: 85%;
  animation-duration: 36s;
  animation-delay: 16s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(16) {
  width: 9px;
  height: 9px;
  left: 35%;
  animation-duration: 39s;
  animation-delay: 4s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(17) {
  width: 11px;
  height: 11px;
  left: 75%;
  animation-duration: 37s;
  animation-delay: 11s;
  animation: floatUpBubble linear infinite alternate;
}

.global-background .bubble:nth-child(18) {
  width: 5px;
  height: 5px;
  left: 55%;
  animation-duration: 41s;
  animation-delay: 19s;
  animation: floatUpBubble linear infinite alternate;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--primary-gold);
  margin-bottom: 20px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 67%;
  height: auto;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.7));
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--warm-cream);
  opacity: 0.9;
}

.cta-button {
  background: linear-gradient(45deg, var(--orange-flame), var(--red-fire));
  color: var(--warm-cream);
  border: none;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(231, 135, 8, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(231, 135, 8, 0.6);
}

/* Pepper Animation */
.pepper-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pepper {
  position: absolute;
  font-size: 3rem;
  animation: floatPepper 15s infinite ease-in-out alternate;
  opacity: 0.3;
}

.pepper:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation: floatPepper 15s infinite ease-in-out alternate;
}

.pepper:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  animation: floatPepper 15s infinite ease-in-out alternate;
}

.pepper:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 10s;
  animation: floatPepper 15s infinite ease-in-out alternate;
}

/* Products Section */
.products {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(61, 23, 12, 0.95) 0%, rgba(151, 16, 10, 0.95) 100%);
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.product-card {
  background: rgba(253, 245, 230, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid var(--orange-flame);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--orange-flame), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 0.1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(231, 135, 8, 0.3);
}

.product-image {
  margin-bottom: 20px;
}

.sauce-bottle {
  font-size: 4rem;
  margin: 20px 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.sauce-bottle.mild {
  color: var(--primary-gold);
  animation: pulse 8s ease-in-out infinite alternate;
}

.sauce-bottle.mild-medium {
  color: #f39c12;
  animation: pulse 6s ease-in-out infinite alternate;
}

.sauce-bottle.medium {
  color: var(--orange-flame);
  animation: pulse 4.5s ease-in-out infinite alternate;
}

.sauce-bottle.hot {
  color: #e74c3c;
  animation: pulse 3s ease-in-out infinite alternate;
}

.sauce-bottle.extreme {
  color: var(--red-fire);
  animation: pulse 2s ease-in-out infinite alternate;
}

.sauce-bottle.cardiac {
  color: #8b0000;
  animation: intensePulse 6s ease-in-out infinite alternate;
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-gold);
}

.heat-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}

.heat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.3);
  transition: all 0.3s ease;
}

.heat-dot.active {
  background: var(--red-fire);
  box-shadow: 0 0 10px var(--red-fire);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  position: relative;
  z-index: 5;
}

.price {
  background: linear-gradient(45deg, var(--red-fire), var(--orange-flame));
  color: var(--warm-cream);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.price:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.product-button {
  background: linear-gradient(45deg, var(--orange-flame), var(--red-fire));
  color: var(--warm-cream);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.product-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(231, 135, 8, 0.5);
}

/* About Section */
.about {
  padding: 100px 0;
  background: rgba(61, 23, 12, 0.95);
  position: relative;
  z-index: 10;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Bebas Neue", cursive;
}

.stat-label {
  font-size: 1rem;
  color: var(--warm-cream);
  opacity: 0.8;
}

/* Restaurants Section */
.restaurants {
  padding: 100px 0;
  background: rgba(151, 16, 10, 0.95);
  position: relative;
  z-index: 10;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--warm-cream);
  opacity: 0.9;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.restaurant-card {
  background: rgba(253, 245, 230, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(252, 205, 11, 0.2);
  transition: all 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.restaurant-image {
  margin-bottom: 0;
}

.restaurant-icon {
  font-size: 5rem;
  margin: 0 0 0 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  position: relative;
}

.restaurant-logo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 0 0;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.restaurant-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(252, 205, 11, 0.4);
}

.restaurant-card h3 {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-family: "Bebas Neue", cursive;
}

.restaurant-description {
  font-size: 1.1rem;
  color: var(--warm-cream);
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.6;
}

.restaurant-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red-fire), var(--orange-flame));
  color: var(--warm-cream);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.restaurant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.restaurant-btn .btn-icon {
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(151, 16, 10, 0.95) 0%, rgba(183, 33, 9, 0.95) 100%);
  position: relative;
  z-index: 10;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--warm-cream);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.email-btn {
  background: linear-gradient(135deg, var(--orange-flame), var(--primary-gold));
}

.email-btn:hover {
  box-shadow: 0 15px 40px rgba(231, 135, 8, 0.5);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc, #005580);
}

.telegram-btn:hover {
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.btn-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn-text {
  text-transform: uppercase;
}

/* Footer */
.footer {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.95);
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-image {
  height: 80px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes intensePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3)) brightness(1);
  }
  50% {
    transform: scale(1.075);
    filter: drop-shadow(0 5px 10px rgba(139, 0, 0, 0.6)) brightness(1.1);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3)) brightness(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  from {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(252, 205, 11, 0.3);
  }
  to {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(252, 205, 11, 0.6);
  }
}

@keyframes floatPepper {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(calc(50vh + 25px)) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(calc(-50vh - 75px)) translateX(10px);
    opacity: 0;
  }
}

@keyframes floatUpBubble {
  0% {
    transform: translateY(calc(50vh + 25px)) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(calc(-50vh - 75px)) translateX(10px);
    opacity: 0;
  }
}

/* BBQ Page Specific Styles */
.bbq-hero {
  height: 100vh !important;
  min-height: 100vh !important;
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-content .hero-title {
  font-size: 4rem;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 1rem 0;
  display: block;
}

.product-details {
  display: flex !important;
  justify-content: center;
  margin: 2rem auto;
  padding: 0 1rem;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  visibility: visible !important;
  position: relative;
  z-index: 20;
}

.bbq-special {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure BBQ product section has proper spacing */
#product.products {
  padding: 80px 0;
  min-height: auto;
  background: linear-gradient(180deg, rgba(61, 23, 12, 0.95) 0%, rgba(151, 16, 10, 0.95) 100%) !important;
  position: relative;
  z-index: 15;
  display: block !important;
  visibility: visible !important;
}

.product-info {
  margin-top: 2rem;
  text-align: left;
}

.info-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--primary-gold);
}

.info-section h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-section p {
  margin: 0.3rem 0;
  color: var(--warm-cream);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.ingredient-category {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid var(--orange-flame);
  transition: transform 0.3s ease;
}

.ingredient-category:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.ingredient-category h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.ingredient-category ul {
  list-style: none;
  padding: 0;
}

.ingredient-category li {
  padding: 0.3rem 0;
  color: var(--warm-cream);
  border-bottom: 1px solid rgba(252, 205, 11, 0.2);
}

.ingredient-category li:last-child {
  border-bottom: none;
}

.safety-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.safety-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--red-fire);
  transition: all 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(252, 205, 11, 0.3);
}

.safety-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.safety-card h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.safety-card p {
  color: var(--warm-cream);
  line-height: 1.6;
}

/* BBQ Page Mobile Responsive */
@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 2.5rem;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .safety-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-details {
    padding: 0 0.5rem;
  }

  .info-section {
    padding: 0.8rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(61, 23, 12, 0.98);
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 2px solid var(--orange-flame);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .language-selector {
    margin-left: 0;
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
  }
}