:root {
  --primary: #ff6a00;
  --primary-dark: #cc5500;
  --secondary: #ffb703;
  --bg: #fafafa;
  --text: #1a1a1a;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.8);
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter', sans-serif}
img { max-width: 100%; height: auto; display: block; }
body{background:var(--bg);color:var(--text);overflow-x:hidden; line-height: 1.6;}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: 0.3s;
}
nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 15px 8%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .hamburger .bar { background: var(--text); }
.logo { 
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img { 
  height: 60px; 
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: 0.3s;
}
nav.scrolled .logo img {
  height: 50px;
}
.nav-links a { text-decoration: none; color: var(--white); margin-left: 30px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.hamburger .bar {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Hamburger Animation when active */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text) !important;
  }
  
  .nav-links a:hover {
    color: var(--primary) !important;
  }
  
  /* Overlay when menu is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.slide::before {
  display: none;
}

/* Active slide handled by GSAP, but fallback here */
.slide.active { opacity: 1; visibility: visible; z-index: 1; }

/* ---------- PARALLAX FLOATING ELEMENTS ---------- */
.parallax-elements {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.float-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float-bounce 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Position each element differently */
.float-element:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.float-element:nth-child(2) { top: 60%; left: 8%; animation-delay: 1s; font-size: 1.8rem; }
.float-element:nth-child(3) { top: 25%; right: 10%; animation-delay: 2s; font-size: 2.2rem; }
.float-element:nth-child(4) { top: 70%; right: 5%; animation-delay: 0.5s; font-size: 1.5rem; }
.float-element:nth-child(5) { top: 40%; left: 3%; animation-delay: 1.5s; font-size: 1.6rem; }
.float-element:nth-child(6) { top: 80%; left: 12%; animation-delay: 2.5s; font-size: 1.4rem; }
.float-element:nth-child(7) { top: 50%; right: 3%; animation-delay: 3s; font-size: 2rem; }
.float-element:nth-child(8) { top: 10%; right: 15%; animation-delay: 0.8s; font-size: 1.7rem; }

@keyframes float-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  width: 50%;
}
.hero-img {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.hero-img img {
  max-width: 100%;
  max-height: 80vh;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
  transform: scale(0.8);
  opacity: 0;
}
.hero-content h1 {
  font-size: 84px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.hero-content .btn {
  display:inline-block;
  padding:18px 40px;
  background:var(--primary);
  color:var(--white);
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border: 2px solid transparent;
}
.hero-content .btn:hover {
  background: transparent;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 30px;
  padding: 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: 0.3s;
}
.slider-nav button:hover { background: var(--primary); border-color: var(--primary); }
.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ---------- SECTION COMMON ---------- */
.section{
  padding:120px 8%;
  position:relative;
}
.section h2 { font-size: 48px; margin-bottom: 60px; position: relative; display: inline-block;}
.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 0; width: 60px; height: 4px; background: var(--primary);
}

/* ---------- BEST SELLERS ---------- */
.best-sellers{ background:var(--bg); }
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
}
.card{
  background:var(--white);
  border-radius:32px;
  padding:30px 25px;
  text-align:center;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-15px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.card img{width:160px; margin: 10px auto 15px; transition: 0.5s;}
.card:hover img { transform: scale(1.1) rotate(5deg); }
.card h3 { font-size: 20px; margin-top: 10px; margin-bottom: 8px; color: var(--text);}

/* Card Badges */
.card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge.bestseller {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #5c4800;
}
.badge.popular {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
}
.badge.new {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #fff;
}

/* Card Description */
.card-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 40px;
}

/* Card Rating */
.card-rating {
  font-size: 13px;
  margin-bottom: 12px;
  color: #ffb700;
}
.card-rating span {
  color: #888;
  font-weight: 500;
}

/* Card Price */
.card-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.card-price .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.card-price .weight {
  font-size: 13px;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 15px;
  color: #666;
  font-weight: 600;
}

/* ---------- FEATURE ---------- */
.feature{
  background:#fffdfa;
  display:flex;
  align-items:center;
  gap:100px;
}
.feature .img-container {
  position: relative;
  flex: 1;
}
.feature img{width:100%;border-radius:40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1);}
.feature-content { flex: 1; }
.feature h2{font-size:56px; line-height: 1.1; margin-bottom: 30px;}
.feature p { font-size: 20px; color: #555; margin-bottom: 40px;}

/* ---------- COMBO ---------- */
.combo{
  background:#fff5f0;
  text-align:center;
}
.combo-packs{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap:20px;
  margin-top:60px;
}
.combo-packs img{width:180px; transition: 0.4s;}
.combo-packs img:hover { transform: scale(1.1); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));}

/* ---------- CTA ---------- */
.cta{
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1505935428862-770b6f24f629?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  color:var(--white);
  text-align:center;
  padding:150px 20px;
}
.cta h2 { font-size: 48px; margin-bottom: 20px; }
.cta h2::after { display: none; }
.cta-form { display: flex; justify-content: center; margin-top: 40px; }
.cta input{
  padding:20px 30px;
  border-radius:50px;
  border:none;
  width:350px;
  font-size: 16px;
  outline: none;
}
.cta button{
  padding:20px 40px;
  border:none;
  border-radius:50px;
  margin-left: -60px;
  background:var(--primary);
  color: #fff;
  font-weight:700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cta button:hover { background: var(--primary-dark); transform: scale(1.05); }
.cta .btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}
.cta .btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* ---------- ABOUT PAGE ---------- */
.about-hero {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #8b3a3a 0%, #5c2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero h1 em {
  color: var(--secondary);
}

.about-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Story Section */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Values Section */
.values-section {
  background: #fff5f0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  background: linear-gradient(135deg, #8b3a3a, #5c2a2a);
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Bikaner Section */
.bikaner-section {
  background: linear-gradient(rgba(92, 42, 42, 0.9), rgba(92, 42, 42, 0.85)), 
              url('https://images.unsplash.com/photo-1518623489648-a173ef7824f3?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

.bikaner-content {
  max-width: 800px;
  margin: 0 auto;
}

.bikaner-section h2 {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.bikaner-section h2::after {
  background: var(--secondary);
  left: 50%;
  transform: translateX(-50%);
}

.bikaner-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Nav active state */
.nav-links a.active {
  color: var(--primary);
}

/* Team Section */
.team-section {
  background: var(--white);
  text-align: center;
}

.team-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: -40px;
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: #fff5f0;
  padding: 40px 25px 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #8b3a3a, #5c2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-placeholder {
  font-size: 3rem;
  opacity: 0.5;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text);
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #8b3a3a 0%, #5c2a2a 100%);
  padding: 60px 8%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
  background: #fff5f0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid #fff5f0;
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
  background: var(--white);
  text-align: center;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.cert-card {
  padding: 30px 20px;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  transition: 0.3s;
}

.cert-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 0.85rem;
  color: #666;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #8b3a3a 0%, #5c2a2a 100%);
  text-align: center;
}

.testimonials-section h2 {
  color: #fff;
}

.testimonials-section h2::after {
  background: var(--secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
  background: #fff5f0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}

.faq-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive - About Page */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .certs-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-dot {
    left: -30px;
    width: 16px;
    height: 16px;
  }
}

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
  height: 50vh;
  min-height: 350px;
  background: linear-gradient(135deg, #8b3a3a 0%, #5c2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
}

.contact-hero-content {
  max-width: 700px;
}

.contact-hero .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-hero h1 em {
  color: var(--secondary);
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Section */
.contact-section {
  background: #fff5f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-intro {
  color: #666;
  margin-bottom: 30px;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 5px;
}

.info-note {
  font-size: 0.8rem;
  color: #999;
}

/* Social Links */
.social-links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.social-links h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
  background: #5c2a2a;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px;
  }
}

/* ---------- PRODUCTS PAGE ---------- */
.products-hero {
  height: 50vh;
  min-height: 350px;
  background: linear-gradient(135deg, #8b3a3a 0%, #5c2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
}

.products-hero-content {
  max-width: 800px;
}

.products-hero .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.products-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.products-hero h1 em {
  color: var(--secondary);
}

.products-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Category Tabs */
.products-categories {
  padding-bottom: 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: -20px;
}

.category-tab {
  padding: 12px 30px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.category-tab:hover,
.category-tab.active {
  background: var(--primary);
  color: #fff;
}

/* Products Grid */
.products-grid-section {
  padding-top: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-image {
  background: linear-gradient(135deg, #fff5f0, #ffeee6);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 200px;
  height: auto;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(3deg);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-rating {
  font-size: 0.85rem;
  margin-bottom: 15px;
  color: #ffb700;
}

.product-rating span {
  color: #888;
}

.product-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.size-tag {
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price .price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.product-price .original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

/* Bulk Order Section */
.bulk-order-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 8%;
  text-align: center;
  margin-top: 60px;
}

.bulk-order-content {
  max-width: 700px;
  margin: 0 auto;
}

.bulk-order-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.bulk-order-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.bulk-order-section .btn {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
}

.bulk-order-section .btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* Products Page Responsive */
@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2rem;
  }
  
  .category-tabs {
    gap: 10px;
  }
  
  .category-tab {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bulk-order-section h2 {
    font-size: 1.8rem;
  }
}

/* ---------- DISTRIBUTOR SECTION ---------- */
.distributor-section {
  position: relative;
  background: url('../images/footer-decoration.png') center/cover no-repeat;
}

.distributor-bg {
  display: none;
}

.distributor-overlay {
  background: linear-gradient(135deg, rgba(92, 42, 42, 0.75), rgba(139, 58, 58, 0.7));
  padding: 80px 8%;
}

.distributor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.distributor-info {
  color: #fff;
}

.distributor-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.distributor-info h2 em {
  color: var(--secondary);
}

.distributor-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.distributor-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.distributor-benefits li {
  font-size: 0.95rem;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.distributor-form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.distributor-form-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 25px;
  text-align: center;
}

.distributor-form .form-group {
  margin-bottom: 15px;
}

.distributor-form input,
.distributor-form select,
.distributor-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
  background: #fff;
}

.distributor-form input:focus,
.distributor-form select:focus,
.distributor-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.distributor-form textarea {
  resize: vertical;
  min-height: 80px;
}

.distributor-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.distributor-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

/* Distributor Section Responsive */
@media (max-width: 900px) {
  .distributor-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .distributor-info h2 {
    font-size: 2rem;
  }
  
  .distributor-benefits {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .distributor-overlay {
    padding: 60px 5%;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  background: #5c2a2a;
  color: #fff;
}

.footer-decoration {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.footer-palace-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  padding: 60px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
  text-align: justify;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
}

.footer-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list .icon {
  font-size: 1.1rem;
}

.marketplace-icons,
.social-icons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketplace-icons span,
.social-icons span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.marketplace-icons a,
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
}

.marketplace-icons a:hover,
.social-icons a:hover {
  transform: scale(1.1);
  background: var(--secondary);
  color: var(--primary);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.footer-credits {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-credits strong {
  color: var(--secondary);
  opacity: 1;
}

/* ---------- MOBILE ---------- */
@media(max-width:992px){
  .hero h1{font-size:60px}
  .hero-pack img{width:350px}
  .feature { flex-direction: column; text-align: center; gap: 50px;}
  .feature h2::after { left: 50%; transform: translateX(-50%); }
}
@media(max-width:768px){
  .hero h1{font-size:42px}
  .hero-pack { position: relative; top: auto; right: auto; transform: none; margin-top: 50px; text-align: center;}
  .hero { height: auto; padding: 150px 8% 100px; flex-direction: column; text-align: center;}
  
  /* Mobile Slider */
  .slide { flex-direction: column-reverse; justify-content: center; text-align: center; padding-top: 80px;}
  .hero-content { width: 100%; margin-top: 30px; }
  .hero-img { width: 80%; height: 40%; }
  .hero-content h1 { font-size: 42px; }

  .cta-form { flex-direction: column; align-items: center; gap: 20px; }
  .cta input { width: 100%; }
  .cta button { margin-left: 0; width: 100%; }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col p {
    text-align: center;
  }
  
  .contact-list li {
    justify-content: center;
  }
  
  .marketplace-icons,
  .social-icons {
    justify-content: center;
  }
}

@media(max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-decoration {
    height: 80px;
  }
}

/* ---------- INGREDIENTS RADIAL SECTION ---------- */
.ingredients-radial {
  position: relative;
  background: linear-gradient(135deg, #8b3a3a 0%, #6d2d2d 50%, #5c2a2a 100%);
  padding: 80px 5%;
  color: #fff;
  overflow: hidden;
  text-align: center;
  min-height: 700px;
}

/* Decorative background pattern */
.ingredients-radial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.ingredients-label {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 15px;
}

.ingredients-radial h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.ingredients-radial h2::after {
  display: none;
}

.ingredients-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.ingredients-left,
.ingredients-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  max-width: 280px;
}

.ingredients-left {
  align-items: flex-end;
  text-align: right;
}

.ingredients-right {
  align-items: flex-start;
  text-align: left;
}

.ingredients-radial .ingredient-item {
  position: relative;
  padding: 0;
  background: transparent;
}

.ingredients-radial .ingredient-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.ingredients-radial .ingredient-item p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0;
}

/* Red connecting dots */
.ingredients-radial .ingredient-item .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #e74c3c;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.3);
}

.ingredients-radial .ingredient-item.left .dot {
  right: -40px;
}

.ingredients-radial .ingredient-item.right .dot {
  left: -40px;
}

/* Center Image */
.ingredients-radial .center-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 
    0 0 60px rgba(0, 0, 0, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.ingredients-radial .center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .ingredients-container {
    gap: 30px;
  }
  
  .ingredients-radial .center-image {
    width: 280px;
    height: 280px;
  }
  
  .ingredients-left,
  .ingredients-right {
    max-width: 220px;
  }
  
  .ingredients-radial .ingredient-item .dot {
    display: none;
  }
}

@media (max-width: 768px) {
  .ingredients-radial {
    padding: 60px 5%;
    min-height: auto;
  }
  
  .ingredients-radial h2 {
    font-size: 2.2rem;
  }
  
  .ingredients-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .ingredients-left,
  .ingredients-right {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .ingredients-radial .center-image {
    width: 250px;
    height: 250px;
    order: -1;
  }
  
  .ingredients-radial .ingredient-item .dot {
    display: none;
  }
}

/* --- OLD INGREDIENTS SECTION (Radial Layout) --- */
.ingredients-section {
  position: relative;
  background: #8b3a3a; /* Deep Red/Brown matching reference */
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
  text-align: center;
  min-height: 800px; /* Ensure space for radial layout */
}

.ingredients-section .section-header h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif; /* Or similar premium font */
}

.ingredients-section .section-header p {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 40px;
}

.ingredients-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px; /* Fixed height for positioning context */
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-item {
  position: absolute;
  width: 250px;
  z-index: 3;
}

.ingredient-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fff;
}

.ingredient-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Connectors */
.ingredient-item .dot {
  width: 12px;
  height: 12px;
  background: #ff4757; /* Bright red dot */
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ingredient-item .line {
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Left Items Specifics */
.ingredient-item.left {
  text-align: right;
  padding-right: 20px; /* Space for line */
}

.ingredient-item.left .dot {
  right: -6px; /* Position dot at the end connected to image side */
}

.ingredient-item.left .line {
  right: 0;
  width: 80px; /* Length of line towards image */
  transform-origin: right center;
  transform: rotate(15deg); /* Slight angle for aesthetic */
}

/* Right Items Specifics */
.ingredient-item.right {
  text-align: left;
  padding-left: 20px;
}

.ingredient-item.right .dot {
  left: -6px;
}

.ingredient-item.right .line {
  left: 0;
  width: 80px;
  transform-origin: left center;
}

.ingredient-item .line { display: none; } /* Hiding complex lines */
.ingredient-item .dot { 
  display: block; 
  box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .ingredients-container {
    flex-direction: column;
    height: auto;
  }
  
  .center-image {
    width: 250px;
    height: 250px;
    margin-bottom: 40px;
  }
  
  .ingredient-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    text-align: left !important;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
  }
  
  .ingredient-item .dot, .ingredient-item .line {
    display: none;
  }
}

/* ---------- FLOATING ACTION BUTTONS ---------- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark), #aa4400);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20bd5a, #0e6b5e);
}

/* Pulse animation for WhatsApp */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn::before {
    width: 50px;
    height: 50px;
  }
}
