/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Reset */
body {
  font-family: "Arial", sans-serif;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 240px; /* Adjusted for location-bar (30px) + header (100px + 50px) + category-scroll (~60px) */
}

body.modal-open {
  overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* === Location Bar === */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;               /* Standard mobile header height */
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}

.location-btn {
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-btn small {
  font-size: 11px;
  color: #ff5722;            /* Your brand orange */
  font-weight: normal;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e63946;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}

/* === Header === */
/* ================= HERO BANNER ================= */
#hero-banner {
  height: 190px;           /* Balanced for mobile + tablets */
  position: relative;
  overflow: hidden;
  background: #eb8a51;
  border-bottom: 1px solid #eee;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  text-align: center;
  color: white;
  text-shadow: 0 3px 10px rgba(0,0,0,0.65);
  padding: 0 20px;
  z-index: 3;
  width: 100%;
  max-width: 90%;
}

.slide-content h1,
.slide-content h2 {
  margin: 0;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  /* text-transform: uppercase; */
  letter-spacing: -0.5px;
}

#slide2 h2 {
  font-size: clamp(26px, 7vw, 40px);   /* Make "How about now?" stand out */
}

/* Backgrounds */
#slide1 { background: #fd0f03; }
#slide2 { 
  background: url('../images/fisherman-soup.jpg') center/cover no-repeat; 
}
#slide3 { 
  background: url('../images/jollof.jpg') center/cover no-repeat; 
}
#slide4 { 
  background: url('../images/egusi-soup.jpg') center/cover no-repeat; 
}

#orderNow {
  margin-top: 16px;
  background: #ffc600;
  color: #000;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  font-size: clamp(15px, 4vw, 17px);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#orderNow:hover {
  background: #ffaa00;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .hero-banner {
    height: 160px; /* Slightly shorter for small screens */
  } 

  .panel {
    max-width: 100%;
  }
  #panel3 #orderNow {
    top: 60px;
    right: 8px;
    padding: 5px 8px;
  }
}


/* Text animations inside panels */
/* #panel1 h1,
#panel2 h2,
#panel3 #info {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

#panel1 h1 { animation-delay: 0.5s; }
#panel2 h2 { animation-delay: 3.8s; }
#panel3 #info { animation-delay: 6.5s; }

#orderNow {
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.6s 7.5s forwards cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes showPanel {
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: scale(0.8); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  to { opacity: 1; transform: scale(1); }
}  */

/* Navigation Icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 20px; /* Minimal placeholder for spacing */
}



/* === Category Scroll Section === */
.category-scroll {
  position: relative;
  top: 10px; /* Below location-bar (30px) + header (100px + 50px) */
  left: 0;
  width: 100%;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 12px 10px;
  background-color: #fff;
  /* margin-bottom: 0;
  padding-bottom: 0; */
  gap: 12px;
  z-index: 998; /* Below header */
}

.category-scroll::-webkit-scrollbar {
  display: none; /* for Chrome, Safari */
}

/* Brand Logo */
.category-scroll .brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.category-scroll .brand-logo img {
  height: auto;
  width: 80px; /* Matches navbar height */
  border-radius: 50%;
  object-fit: contain;
  margin-right: 8px;
}

/* Category Items */
.category-item {
  flex: 0 0 auto;
  width: 97px;
  text-align: center;
  scroll-snap-align: start;
  font-size: 11px;
  /* color: #333; */
}

.category-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.category-item.active .category-icon {
  border-bottom: 2px solid #ff5722;
  font-weight: 1500;
}

.category-item img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}


/* Explore Section */
.explore-more {
  padding: 1rem;
  background: #fff;
  padding-top: 10px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.explore-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.explore-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.explore-card {
  flex: 0 0 auto;
  width: 140px;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: #f5f5f5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.explore-card:hover {
  transform: scale(1.05);
}

.explore-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.explore-card span {
  display: block;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .explore-card {
    width: 120px;
  }
}

/* Large screens: distribute 7 cards evenly */ 
@media (min-width: 1024px) { 
  .explore-scroll { 
    justify-content: space-between; /* spread cards evenly */ 
  } 
  
  .explore-card { 
    flex: 1; /* allow cards to grow */ 
    width: calc(100% / 7); /* each card takes 1/7 of screen */ 
    max-width: none; /* remove fixed limit */ 
  } 

  .explore-card img { 
    height: 150px; /* adjust image height for larger cards */ 
  } 

  .explore-card span { 
    font-size: 1rem; /* slightly larger text */ 
  } 
}

/* Category Chips */
.category-filter-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  padding: 12px 16px;
  overflow-x: auto;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  scrollbar-width: none;
}

.category-filter-bar::-webkit-scrollbar { 
  display: none; 
}

.category-chip {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 12px;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
}

.category-chip.active {
  background: #ff5722;
  color: white;
  font-weight: 600;
}

.menu-grid {
  padding: 16px;
}

/* Menu Tabs – Modern App-Like Style */
.menu-tabs {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  padding: 12px 16px;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x mandatory;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.menu-tab-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px; /* Minimum width per tab group */
  scroll-snap-align: start;
}

.menu-tab {
  flex: 1; /* Equal width for each tab */
  padding: 12px 0;
  background: white;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.menu-tab:hover {
  background: rgba(255, 87, 34, 0.08);
  color: #ff5722;
}

.menu-tab.active {
  border-bottom: 2px solid #ff5722;
  color: #ff5722;
  font-weight: 600;
}

/* Subtext under "Ready in Hours" and "Pre-Order" */
.menu-tab-wrapper small.small-text {
  font-size: 0.68rem;
  color: #888;
  margin-top: 1px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Active tab indicator pill (modern app style) */
.menu-tab.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 4px;
  background: #ff5722;
  border-radius: 4px;
}

/* Tab content */
/* .tab-content {
  display: none!important;
  padding: 16px;
  background: #fff;
}

.tab-content.active {
  display: block !important;
} */

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 480px) {
  .menu-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;     /* Prevent text wrapping */
    flex-shrink: 0;          /* Prevent shrinking */
  }

  .menu-tab-wrapper {
    min-width: 90px;
    display: flex;           /* Keep tabs in one row */
    overflow-x: auto;        /* Allow horizontal scroll */
  }

  .menu-tab-wrapper small.small-text {
    font-size: 0.62rem;
    white-space: nowrap;     /* Prevent wrapping for small text too */
  }
}


@media (min-width: 768px) {
  .menu-tabs {
    justify-content: center;
    padding: 16px 24px;
    gap: 20px;
  }

  .menu-tab {
    padding: 12px 24px;
    font-size: 1rem;
  }
}


/* Menu Grid Card Section */
/* General Grid Styling */
/* .menu-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  padding-bottom: 70px;
} */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  padding-bottom: 70px;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Menu Card Styling */
.menu-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: 160px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.top-left-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e74c3c;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.top-right-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 0.5rem;
}

.top-right-icons i {
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.3rem;
  border-radius: 50%;
  font-size: 0.8rem;
}

.menu-info {
  padding: 0.75rem;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.75rem;
  color: #666;
}

.size-label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #888;
}

.description {
  font-size: 0.85rem;
  color: #555;
  margin: 0.5rem 0;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: bold;
  color: #222;
}

.discount {
  text-decoration: line-through;
  color: #999;
}

/* .strike {
  text-decoration: line-through;
  color: #999;
} */

.promo-badge {
  background: #e63946;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

.add-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.add-btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}

.add-btn:hover {
  background-color: #18974d;
}

.add-btn:focus,
.close-btn:focus,
.option-item:focus-within {
  outline: 2px solid #f44336;
  outline-offset: 2px;
}

.customizable-text {
  font-size: 0.7rem;
  color: #555;
  margin-top: 0.2rem;
}

/* Grayscale & Unavailable Styling (like food delivery apps) */
.menu-card.unavailable {
  opacity: 0.75;
  pointer-events: auto;
}

.menu-card.unavailable .img-wrapper img.grayscale-img {
  filter: grayscale(100%) brightness(0.9);
}

.menu-card.unavailable .img-wrapper {
  position: relative;
}

.menu-card.unavailable .unavailable-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  pointer-events: none;
  text-align: center;
  padding: 0 12px;
}

.menu-card.unavailable .add-btn {
  background: #cccccc !important;
  color: #777 !important;
  cursor: not-allowed !important;
  border: none !important;
}

.menu-card.unavailable .add-btn:hover {
  background: #cccccc !important;
  transform: none !important;
}

/* Popup Modal for Menu Card */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: scroll; /* or auto */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.modal::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.modal.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal.hidden {
  display: none;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 1rem;
  border-radius: 12px;
  z-index: 1000;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.close-btn {
  position: absolute;
  top: 0.1rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
}

.modal-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

#modal-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.modal-description h2 {
  margin: 0;
  font-size: 1.1rem;
}

.modal-description p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #555;
}

/* .modal-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
} */

.option-group {
  margin-bottom: 1rem;
  border-radius: 8px;
  background-color: white; /* Mini card feel */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.option-group label {
  display: block;
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  margin: 2px 0;
  border-radius: 8px;
  cursor: pointer;
  flex-wrap: nowrap;
}

.option-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.option-label {
  width: 50%;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}

.option-amount {
  font-size: 0.85rem;
  color: #444;
  white-space: nowrap;
  min-width: 60px; /* Consistent width for amounts */
  text-align: right; /* Align amounts to the right within their space */
}

.custom-check,
.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-radio {
  border-radius: 50%;
}

/* Hide the default input */
.option-item input[type="checkbox"],
.option-item input[type="radio"] {
  display: none;
}

/* Checked styles */
.option-item input[type="checkbox"]:checked + .custom-check {
  border-color: #f44336;
  background-color: #f44336;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M20.285 2.725a1 1 0 00-1.41 0L9 12.6 5.125 8.725a1 1 0 10-1.41 1.41l4.95 4.95a1 1 0 001.41 0l10.21-10.21a1 1 0 000-1.41z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.option-item input[type="radio"]:checked + .custom-radio {
  border-color: #f44336;
  background-color: #f44336;
  box-shadow: inset 0 0 0 4px #fff;
}

.option-item:has(input[type="checkbox"]:checked) {
  background-color: #fff8f6;
  border: 1px solid #f44336;
}

.option-item:has(input[type="radio"]:checked) {
  background-color: #fff8f6;
  border: 1px solid #f44336;
}

.option-price {
  font-size: 0.85rem;
  color: #666;
}

.tag {
  background-color: #e0e0e0;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 0.3rem;
  color: #444;
}

.cooking-instructions textarea {
  width: 100%;
  padding: 8px;
  font-size: 0.9rem;
  border-radius: 6px;
  border: 1px solid #f44336;
  resize: vertical;
}

.word-count {
  font-size: 0.8rem;
  color: #777;
  margin-top: 4px;
  text-align: right;
}

/* Add to Cart Button in Modal */
.action-row {
  display: flex;
  /* justify-content: space-between; */
  padding: 1rem 0;
  gap: 1rem;
  /* align-items: center; */
  flex-wrap: wrap;
}

.quantity-selector {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  background: #f7af83;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  background-color: #ff5722;
  color: white;
  border: none;
  cursor: pointer;
}

.qty-count {
  padding: 0 0.75rem;
  font-size: 1rem;
  min-width: 30px;
  text-align: center;
}

.cta-btn {
  flex: 2 1 200px;
  width: 100%;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-btn:hover,
.qty-btn:hover {
  background-color: #d63909;
}

.cta-btn .actual-price {
  font-weight: bold;
  margin-left: 4px;
}

.cta-btn .discount-price {
  text-decoration: line-through;
  color: white;
  margin-left: 6px;
  font-size: 0.9rem;
}



/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-align: center;
  color: #eb8a51;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.nav-item.active,
.nav-item:hover {
  color: #c74d06; /* active or primary color */
}

/* Bottom Navigation Bar Cart Icon Badge */
.icon-wrapper {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -9px;
  right: -11px;
  background-color: red;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
}

/* Snackbar styling */
.snackbar {
  visibility: hidden;
  min-width: 180px;
  background-color: #f44336;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 10px 16px;
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  font-size: 14px;
}

.snackbar.show {
  visibility: visible;
  opacity: 1;
  bottom: 100px;
}

/* Bump animation */
/* Bump animation for cart badge */
.bump {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Tab content */
.tab-content {
  display: none!important;
  padding: 16px;
  background: #fff;
}

.tab-content.active {
  display: block !important;
}