/* BASIC RESET + UTILS */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 10;*/
  font-style: normal;
  
}
body {
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("../images/background.png") no-repeat center center;
  background-size: cover;
}

/* NAVIGATION */
.navbar {
  top: 0; z-index: 100;
  
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #d4af37;
  font-weight: 400;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #3a2e2a;
  margin: 4px 0;
  border-radius: 2px;
}
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    cursor: pointer;
    z-index: 200;
  }

  .navbar nav {
    position: absolute;
    top: 60px;              /* just below navbar */
    right: 1rem;            /* beside hamburger */
    background-color: #3a2e2a;
    width: 200px;           /* NOT full width */
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding: 0.75rem 0;
    border-radius: 8px;
    border: 1px solid #e2d6cc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    
  }

  .navbar nav a {
    margin: 0;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    width: 100%;
  }

  .navbar nav.active {
    display: flex;
  }
}



.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 54px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}

.logo span{
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  color: #d4af37;
}

/* HERO */
.hero {
  /*background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('hero-bg.jpg') center/cover no-repeat;*/
  color: #d4af37;
  padding: 3rem 0;
  text-align: center;
  font-weight: 400;
}
.hero h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.hero .btn {
  background: #960213;
  color: #fff; padding: 0.75rem 1.5rem;
  border: none; cursor: pointer;
  border-radius: 5%;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.hero .btn:hover{
  transform: translateY(-3px);
  transition: 0.2s ease;
  border: 1px solid #ccc;
}
/* SECTIONS */
.section {
  padding: 3rem 0;
}
.section h2 {
  font-weight: 600;
  letter-spacing: 0.8px;
}

.container {
  width: 90%; max-width: 1200px; margin: auto;
}
.cards {
  display: flex; gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.card {
  flex: 1; 
  background-color: #470008;
  border: 1px solid #e2d6cc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: #d4af37;
  gap: 1.8rem; 
}

.card:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 1.5rem);
  }
}



/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%; /* Fill the grid cell */
  height: 300px; /* Fixed height for uniformity */
  object-fit: cover; /* Keeps image aspect ratio clean */
  border-radius: 12px;
  border: 2px solid #d4af37;
  transition: 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* FORM */
form input, form textarea {
  width: 100%; padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc; border-radius: 4px;
}
.btn {
  background: #960213; color: #fff;
  padding: 0.75rem 1.5rem;
  border: none; cursor: pointer;
}

/* FOOTER */
.footer {
  text-align: center; padding: 1rem;
  background: #222; color: #fff;
  border-radius: 5%;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}
.whatsapp-float img { width: 25px; }
.whatsapp-float:hover { transform: scale(1.05); transition: 0.3s; }


/* Testimonial */
/* TESTIMONIALS STYLING */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(71, 0, 8, 0.6); /* Matching your #470008 card color with transparency */
  border: 1px solid #d4af37;
  padding: 2rem;
  border-radius: 15px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(71, 0, 8, 0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #f4f4f4;
}

.client-name {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 2px;
}

.service-tag {
  font-size: 0.8rem;
  color: #e2d6cc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* PRICE TAG ON CARDS */
.price-tag {
  background-color: #d4af37;
  color: #470008;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* PRICING TABLE */
.pricing-table-container {
  margin-top: 50px;
  overflow-x: auto; /* For mobile view */
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: rgba(71, 0, 8, 0.5);
  border: 1px solid #d4af37;
  border-radius: 10px;
  overflow: hidden; /* For border radius to show */
  min-width: 500px;
}

.pricing-table th, .pricing-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-table th {
  background-color: #d4af37;
  color: #470008;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-table tr:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.pricing-table td:last-child {
  font-weight: bold;
  color: #d4af37;
}

@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* FAQ SECTION STYLING */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(71, 0, 8, 0.7); /* Dark Maroon */
  border: 1px solid #d4af37; /* Gold Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #d4af37;
  user-select: none;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
  color: #f4f4f4;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  line-height: 1.6;
}

/* Active State Styles */
.faq-item.active {
  border-color: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on answer length */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* Turns + into x, or use 180deg if using an arrow */
  color: #fff;
}

/* VIDEO GRID STYLING */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d4af37;
  /* This ensures vertical videos look like Reels/Phones */
  aspect-ratio: 9 / 16; 
  cursor: pointer;
}

.video-card.video-rect {
  aspect-ratio: 16 / 9; /* Horizontal ratio */
  grid-column: span 2;   /* Makes it wider to fit the shape */
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This fills the box without stretching */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(71, 0, 8, 0.7);
  backdrop-filter: blur(5px); 
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px;
  text-align: center;
}

.video-overlay span {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Interaction: Hover to Play effect */
.video-card:hover video {
  opacity: 1;
}

.video-card:hover .video-overlay {
  background: linear-gradient(transparent, rgba(150, 2, 19, 0.9));
}

@media (max-width: 768px) {
  .video-card.video-rect {
    grid-column: span 1;
    aspect-ratio: 16 / 9; /* Keep it rectangular but fit in one column */
  }
}

/* FOUNDER SECTION STYLING */
.founder-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(71, 0, 8, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px dashed rgba(214, 175, 55, 0.5);
}

.founder-image {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.founder-image img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid #d4af37;
  box-shadow: 20px 20px 0px -5px rgba(212, 175, 55, 0.2);
}

.founder-experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #960213;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid #d4af37;
}

.founder-content {
  flex: 1.5;
}

.sub-heading {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
}

.founder-content h2 {
  margin: 10px 0 20px;
  font-size: 2.5rem;
}

.founder-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #f4f4f4;
}

.founder-signature {
  margin-top: 30px;
}

.founder-signature h3 {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #d4af37;
  letter-spacing: 1px;
  border-bottom: 1px solid #d4af37;
  display: inline-block;
}

/* Responsive Fix */
@media (max-width: 900px) {
  .founder-flex {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .founder-image {
    width: 80%;
    margin-bottom: 30px;
  }
  
  .founder-experience-badge {
    right: 50%;
    transform: translateX(50%);
  }
}

/* PROCESS SECTION STYLING */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #d4af37;
  color: #470008;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
  border: 2px solid #fff;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}


.step h3 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step p {
  font-size: 0.9rem;
  color: #f4f4f4;
  line-height: 1.5;
}

/* Connecting lines between steps on Desktop */
.step-line {
  flex: 0.5;
  height: 2px;
  background: dashed #d4af37;
  border-top: 2px dashed rgba(212, 175, 55, 0.4);
  margin-top: 20px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-line {
    display: none; /* Hide lines on mobile */
  }

  .step {
    width: 100%;
  }
}


/* SAREE CARE TIPS STYLING */
.tips-header {
  text-align: center;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tip-card h4 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tip-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2d6cc;
}

/* Bottom Highlight Banner */
.pro-tip-banner {
  background: linear-gradient(90deg, #470008, #960213);
  border: 2px solid #d4af37;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pro-tip-banner p {
  color: #fff;
  margin: 0;
  font-size: 1rem;
}

.pro-tip-banner strong {
  color: #d4af37;
}

@media (max-width: 600px) {
  .tip-card {
    padding: 20px;
  }
}

/* PRELOADER STYLING */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #470008; /* Your theme maroon */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Stays on top of everything */
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 200px; /* Adjust based on your logo size */
  margin-bottom: 20px;
  animation: pulse 4s infinite ease-in-out;
}

.loader-bar {
  width: 150px;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0 auto 15px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37; /* Gold */
  animation: loading 1.5s infinite linear;
}

.loader-content p {
  color: #d4af37;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Class to hide the loader */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
} 

/* DRAPING TIPS SHINE CARDS */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.shine-card {
  background: #470008; /* Theme Maroon */
  border: 1px solid #d4af37; /* Theme Gold */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Important for the shine effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shine-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.shine-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f4f4f4;
}

.shine-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

/* THE SHINE EFFECT */
.shine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%; /* Start outside the card */
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 175, 55, 0.4), /* Gold Shine */
    transparent
  );
  transition: all 0.6s;
}

.shine-card:hover::before {
  left: 150%; /* Move across to the other side */
}

.shine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); /* Gold glow */
}

/* Make strong tags gold */
.shine-card p strong {
  color: #d4af37;
}

/* BOOKING TICKET STYLING */
.booking-ticket {
  display: flex;
  background: #f4f4f4;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  color: #3a2e2a;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.booking-ticket:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
/* Left side - Date */
.ticket-date {
  background: #470008;
  color: #d4af37;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  text-align: center;
  position: relative;
}

.date-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Keeps it hidden but clickable */
  cursor: pointer;
  z-index: 10; /* Ensures it is ABOVE the display text */
}

/* Add this to ensure the display text doesn't block clicks */
.date-display {
  position: relative;
  z-index: 1; 
  pointer-events: none; /* This allows clicks to pass through the text to the input below */
}

.date-display #display-day {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

/* Middle side - Body */
.ticket-body {
  flex: 2;
  padding: 30px;
  background: #fff;
  position: relative;
  border-right: 2px dashed #ccc;
}

/* Creating the "Cut-out" circles for the ticket look */
.ticket-body::before, .ticket-body::after {
  content: '';
  position: absolute;
  right: -11px;
  width: 22px;
  height: 22px;
  background: #333; /* Matches section background color */
  border-radius: 50%;
}
.ticket-body::before { top: -11px; }
.ticket-body::after { bottom: -11px; }

.ticket-info h3 {
  margin-bottom: 20px;
  color: #470008;
}

.info-row {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.barcode {
  margin-top: 30px;
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: -2px;
  opacity: 0.8;
}

/* Right side - Pricing */
.ticket-price {
  flex: 1.2;
  background: #e2d6cc;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #470008;
  margin: 10px 0;
}

.book-btn {
  background: #470008;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  margin-top: 15px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #960213; /* Lighter maroon on hover */
  color: #fff;
  box-shadow: 0 5px 15px rgba(150, 2, 19, 0.4);
}

/* Style from your 2nd image */
.add-cal-btn {
  background: transparent;
  border: 1px solid #470008;
  color: #470008;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.add-cal-btn:hover {
  background: white;
  border-color: #470008;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-ticket {
    flex-direction: column;
  }
  .ticket-body {
    border-right: none;
    border-bottom: 2px dashed #ccc;
  }
  .ticket-body::before, .ticket-body::after {
    left: -11px;
    top: auto;
    bottom: -11px;
  }
}

/* SCHEDULE SLIDER STYLING */
.schedule-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.schedule-slider {
  display: flex;
  gap: 20px;
  overflow-x: hidden; /* We will move this with JS */
  scroll-behavior: smooth;
  padding: 20px 0;
}

.schedule-card {
  min-width: 160px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.card-date {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.card-month {
  font-size: 0.8rem;
  color: #d4af37;
  letter-spacing: 1px;
  margin-top: 5px;
  text-transform: uppercase;
}

.status-label {
  display: block;
  margin-top: 15px;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Status Colors */
.booked { opacity: 0.6; }
.booked .status-label { background: #960213; color: #fff; }

.available .status-label { background: #25d366; color: #fff; }

.event .status-label { background: #d4af37; color: #470008; }

/* Navigation Buttons */
.nav-btn {
  background: #d4af37;
  color: #470008;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.prev-btn { margin-right: 15px; width: 10%;}
.next-btn { margin-left: 15px; width: 10%;}

@media (max-width: 768px) {
  .schedule-card { min-width: 140px; }
}

/* SNACKBAR STYLING */
#snackbar {
  visibility: hidden;
  min-width: 300px;
  background-color: #470008;
  color: #d4af37;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #d4af37;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  
  /* --- CHANGE THIS VALUE --- */
  top: 30px; 
  /* ------------------------- */
  
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* The Shine Effect Animation */
.snackbar-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  animation: snack-shine 3s infinite;
}

@keyframes snack-shine {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

#snackbar.show {
  visibility: visible;
  /* Updated animations to use Top */
  animation: fadeinTop 0.5s, fadeoutTop 0.5s 2.5s;
}

.snackbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}