.hero-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #232946;
  margin-bottom: 18px;
  line-height: 1.08;
  text-align: center;
  letter-spacing: -1px;
}
.hero-title .highlightz {
  color: #ff554d;
}
.hero-desc {
  max-width:1200px;
  margin: 0 auto 36px;
  font-size: 1.25rem;
  color: #5a6c7d;
  text-align: center;
  font-weight: 500;
}
.category-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 36px 0 48px;
  flex-wrap: wrap;
}
.category-badge {
  background: linear-gradient(135deg, #fff 60%, #f8f9fa 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  padding: 18px 38px;
  font-weight: 700;
  color: #232946;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #eaeaea;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-badge:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #f8f9fa 60%, #fff 100%);
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  color: #5a6c7d;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.catalogue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}
.catalogue-card {
  background: linear-gradient(135deg, #fff 60%, #f8f9fa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  width: 180px;
  text-align: center;
  padding: 20px 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #eaeaea;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.catalogue-card:hover {
  box-shadow: 0 12px 36px rgba(44,62,80,0.18);
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #f8f9fa 60%, #fff 100%);
}
.catalogue-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.catalogue-card-title {
  font-weight: 700;
  color: #232946;
  font-size: 1rem;
  margin-top: 6px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0 60px;
}
.cta-btn {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.cta-primary {
  background: #e74c3c;
  color: white;
}
.cta-primary:hover {
  background: #c0392b;
}
.cta-secondary {
  background: transparent;
  color: #e74c3c;
  border-color: #e74c3c;
}
.cta-secondary:hover {
  background: #e74c3c;
  color: white;
}
.wi-section-newui { margin-bottom: 60px; }
.why-choose {
  background: linear-gradient(135deg, #f8f9fa 60%, #fff 100%);
  padding: 70px 0 60px;
  cursor:default;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}
.feature-card {
  background: linear-gradient(135deg, #fff 60%, #f4f6fb 100%);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  border-radius: 22px;
  padding: 48px 32px;
  width: 290px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #eaeaea;
  overflow: hidden;
  position: relative;
}
.feature-card:hover {
  box-shadow: 0 16px 48px rgba(44,62,80,0.22);
  transform: translateY(-6px) scale(1.04);
  background: linear-gradient(135deg, #f8f9fa 60%, #fff 100%);
}
.feature-icon {
  font-size: 3.2rem;
  color: #e74c3c;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 60%, #ffe5e2 100%);
  box-shadow: 0 2px 12px rgba(231,76,60,0.08);
}
.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #232946;
  margin-bottom: 8px;
}
.feature-description {
  color: #5a6c7d;
  font-size: 1.01rem;
  font-weight: 500;
}
.faq {
  padding: 60px 0;
  background: #fff;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  background: #f8f9fa;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1.13rem;
}
.faq-question.active {
  background: #e74c3c;
  color: white;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.faq-answer.active {
  padding: 20px;
  max-height: 200px;
}
.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #e74c3c;
  display: flex;
  align-items: center;
}
.faq-toggle.active {
  transform: rotate(45deg);
  color: #fff;
}
.hero {
  margin-top: 110px;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  .hero {
    margin-top: 70px;
  }
}
.wi-cardgrid-newui {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.wi-card-newui {
  background: linear-gradient(135deg, #fff 60%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.10);
  width: 220px;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 18px 10px 16px 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.2px solid #eaeaea;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wi-card-newui:hover {
  box-shadow: 0 12px 36px rgba(44,62,80,0.18);
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #f8f9fa 60%, #fff 100%);
}
.wi-cardcontent-newui {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wi-cardheader-newui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.wi-cardtitle-newui {
  font-size: 1.08rem;
  font-weight: 700;
  color: #232946;
  margin: 0;
  line-height: 1.2;
}
.wi-storescount-newui {
  font-size: 0.93rem;
  color: #5a6c7d;
  font-weight: 500;
}
.offer-count {
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.92em;
}
/* Snackbar styles */
#snackbar-wi {
  visibility: hidden;
  min-width: 280px;
  background-color: #232946;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 18px 24px;
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  box-shadow: 0 4px 24px rgba(44,62,80,0.18);
}
#snackbar-wi.show {
  visibility: visible;
  opacity: 1;
}
.wi-cardarrow-newui {
  display: none;
}