@charset "UTF-8";
/* Variables CSS pour la palette de couleurs */
:root {
  --faala-green: #00BC29;
  --faala-blue: #0363A7;
  --faala-white: #FFFFFF;
  --faala-light-gray: #F8F9FA;
  --faala-gray: #E9ECEF;
  --faala-dark-gray: #6C757D;
  --faala-black: #212529;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-900: #581c87;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-900: #78350f;
  --amber-200: #fde68a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --border-color: #d5d5d5;
}
#qr-code {
  border: 2px dashed #00BC29;
}
#menu-primary a {
  font-size: 12px !important;
}
#menu-primary {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#menu-primary {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, #5d2557 75%, transparent 100%);
}
#menu-primary::-webkit-scrollbar {
  display: none;
}
.form-control, .form-select, .btn, .badge, .btn-dashed-sm {
  border-radius: 2rem !important;
}
.bg-gradient-primary {
  background: linear-gradient(135deg, #5d2557, #f5b518);
}
.bg-gradient-primary .nav-item {
  color: #FAFAFA;
}
.stats-card {
  display: flex;
  width: 100%;
  border-radius: 15px;
  padding: 1.5rem;
  align-items: center;
  color: #5d2557;
  text-decoration: none;
  border: 0.5px solid #5d2557;
  transition: all 0.3s ease;
  cursor: pointer;
}
.stats-card:hover {
  border: 0.5px solid #f5b518;
}
.stats-card .stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #FAFAFA;
}
.stats-card .stat-icon i {
  font-size: 1.5rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes progressBar {
  from {
    width: 0%;
  }
  to {
    width: var(--progress-width, 100%);
  }
}
/* ===== STYLES GÉNÉRAUX ===== */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}
/* ===== HEADER & NAVIGATION ===== */
.header-logo {
  transition: transform 0.3s ease;
}
.header-logo:hover {
  transform: scale(1.05);
}
.navHeader {
  background: rgba(93, 37, 87, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1030;
}
.btn-menu-toggle {
  color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.btn-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-action-icon, .nav-link-action {
  color: #fff !important;
  font-size: 1.3rem;
  padding: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-action-icon:hover, .nav-link-action:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #E67E22 !important;
}
.btn-action-icon i, .nav-link-action i {
  line-height: 1;
}
.nav-link-action .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #5d2557;
}
/* ===== BOUTONS FUTURISTES ===== */
.btn-faala-primary {
  background: linear-gradient(135deg, #5d2557, #f5b518);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-faala-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}
.btn-faala-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: white;
}
.btn-faala-primary:hover::before {
  left: 100%;
}
.btn-faala-secondary {
  background: linear-gradient(135deg, #f5b518, #f5b518);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}
.btn-faala-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: white;
}
.btn-outline-faala {
  border: 2px solid #5d2557;
  color: #5d2557;
  background: transparent;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.btn-outline-faala:hover {
  background: #5d2557;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
/* ===== CARTES PRODUITS ===== */
.product-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5d2557, #f5b518, #f5b518);
  transform: scaleX(0);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-image {
  border-radius: var(--border-radius);
  transition: var(--transition);
  overflow: hidden;
}
.product-image img {
  transition: var(--transition);
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5d2557;
}
/* ===== BARRES DE PROGRESSION ANIMÉES ===== */
.progress-animated {
  height: 8px;
  border-radius: 10px;
  background-color: var(--faala-gray);
  overflow: hidden;
  position: relative;
}
.progress-bar-animated {
  height: 100%;
  background: linear-gradient(90deg, #f5b518, #f5b518);
  border-radius: 10px;
  animation: progressBar 2s ease-out forwards;
  position: relative;
}
.progress-bar-animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: pulse 2s infinite;
}
/* ===== SLIDER/CAROUSEL ===== */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}
.carousel-control-prev, .carousel-control-next {
  width: 5%;
  color: #5d2557;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #5d2557;
  border-radius: 50%;
  padding: 20px;
}
.carousel-indicators [data-bs-target] {
  background-color: #f5b518;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
/* ===== FORMULAIRES FUTURISTES ===== */
.log .form-control, #budget-form .form-control {
  border: none !important;
}
.log .form-control:focus, #budget-form .form-control:focus {
  border: none #5d2557 !important;
}
.form-control, .form-select {
  border: 0.3px solid #5d2557;
}
.min-vh-50 {
  min-height: 70vh !important;
}
.form-label {
  font-weight: 600;
  color: var(--faala-black);
  margin-bottom: 8px;
}
/* ===== TABLEAUX MODERNES ===== */
.table-modern {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.table-modern thead {
  background: linear-gradient(135deg, #f5b518, #5d2557);
  color: white;
}
.table-modern tbody tr {
  transition: var(--transition);
}
.table-modern tbody tr:hover {
  background-color: var(--faala-light-gray);
  transform: scale(1.01);
}
/* ===== BADGES ET ÉTIQUETTES ===== */
.badge-faala {
  background: linear-gradient(135deg, #f5b518, #f5b518);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.badge-outline-faala {
  border: 2px solid #5d2557;
  color: #5d2557;
  background: transparent;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.footer a:hover {
  color: #5d2557;
  transform: translateX(5px);
}
/* ===== ANIMATIONS AU SCROLL ===== */
.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .product-card {
    margin-bottom: 1.5rem;
  }
  .feature-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
/* ===== UTILITAIRES ===== */
.text-faala-red {
  color: #5d2557 !important;
}
.text-faala-green {
  color: #f5b518 !important;
}
.text-faala-blue {
  color: #f5b518 !important;
}
.bg-faala-red {
  background-color: #5d2557 !important;
}
.bg-faala-green {
  background-color: #f5b518 !important;
}
.bg-faala-blue {
  background-color: #f5b518 !important;
}
.border-faala {
  border: 2px solid #5d2557 !important;
}
.rounded-faala {
  border-radius: var(--border-radius) !important;
}
.rounded-faala-lg {
  border-radius: var(--border-radius-lg) !important;
}
.shadow-faala {
  box-shadow: var(--shadow-medium) !important;
}
/* ===== LOADING SPINNER ===== */
.spinner-faala {
  width: 40px;
  height: 40px;
  border: 4px solid var(--faala-gray);
  border-top: 4px solid #5d2557;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ===== NOUVELLES SECTIONS STYLES ===== */
/* Produits Section */
.product-card {
  background: #5d2557;
  border: 1px solid #f5b518;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: #5d2557;
  box-shadow: 0 10px 30px var(--shadow-color);
}
.product-card:hover .product-image {
  position: relative;
  overflow: hidden;
  background: #175676;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card:hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f5b518;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.product-info {
  padding: 1.5rem;
}
.product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-category {
  color: #f5b518;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FAFAFA;
}
.original-price {
  font-size: 0.9rem;
  color: #f5b518;
  text-decoration: line-through;
}
.product-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f5b518;
  font-size: 0.9rem;
}
.progress-bar-container {
  background: #175676;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar {
  background: #5d2557;
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}
.category-card {
  background: white;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #f5b518;
}
.category-card .categorie-icon {
  width: 60px;
  height: 60px;
  background: #5d2557;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}
.category-stats {
  background: var(--faala-light-gray);
  padding: 0.5rem;
  border-radius: 8px;
}
/* Blog Section */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.blog-image {
  position: relative;
  overflow: hidden;
}
.blog-image img {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.blog-content {
  padding: 1.5rem;
}
.notification-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}
.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #f5b518;
}
/* Animations supplémentaires */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.scroll-animation {
  animation: fadeInUp 0.6s ease-out;
}
.counter {
  animation: pulse 2s infinite;
}
.footer-links li {
  list-style: none !important;
}
.footer-links a {
  color: #fff;
}
.footer-links a:hover {
  color: #f5b518;
}
/* Quick Actions */
.quick-actions {
  margin-bottom: 2rem;
}
.quick-action-btn {
  width: 100%;
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #5d2557;
  text-decoration: none;
  border: 0.5px solid #5d2557;
  transition: all 0.3s ease;
  cursor: pointer;
}
.quick-action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
  color: #f5b518;
}
.quick-action-btn i {
  font-size: 1.5rem;
  color: #5d2557;
}
.quick-action-btn span {
  font-weight: 600;
  font-size: 0.9rem;
}
/* Dashboard Cards */
.dashboard-cards {
  margin-bottom: 2rem;
}
.metric-card {
  background: #5d2557;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}
.metric-card:hover {
  transform: translateY(-5px);
  border-color: #5d2557;
  box-shadow: 0 10px 30px var(--shadow-color);
}
.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFAFA;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.metric-icon.savings {
  background: #569A4E;
}
.metric-icon.orders {
  background: #f5b518;
}
.metric-icon.groups {
  background: #f5b518;
}
.metric-icon.wallet {
  background: #175676;
}
.metric-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FAFAFA;
  margin: 0;
}
.metric-content p {
  color: #f5b518;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
.metric-change {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}
.metric-change.positive {
  background: rgba(39, 174, 96, 0.1);
  color: #569A4E;
}
.group-card {
  background: #dedeec;
  border: 1px solid #f5b518;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}
.group-card:hover {
  transform: translateY(-5px);
  border-color: #f5b518;
  box-shadow: 0 10px 30px var(--shadow-color);
}
.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.group-category {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.group-category.electronics {
  background: #175676;
}
.group-category.fashion {
  background: #f5b518;
}
.group-category.home {
  background: #569A4E;
}
.group-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}
.group-status.active {
  background: rgba(39, 174, 96, 0.1);
  color: #569A4E;
}
.group-status.closing {
  background: rgba(231, 76, 60, 0.1);
  color: #5d2557;
}
.group-description {
  color: #5d2557;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.group-progress {
  margin-bottom: 1rem;
}
.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.progress-info span:first-child {
  color: #5d2557;
}
.price {
  color: #f5b518;
  font-weight: 600;
}
.group-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.time-left {
  color: #5d2557;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.time-left.urgent {
  color: #5d2557;
}
.holographic-nav {
  border: 0.5px solid #5d2557;
  border-radius: 25px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}
.holo-tab {
  position: relative;
  background: rgba(245, 181, 24, 0.05);
  border: 1px solid rgba(245, 181, 24, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.holo-tab:hover {
  background: rgba(245, 181, 24, 0.1);
  border-color: #5d2557;
  transform: translateY(-2px);
}
.holo-tab.active {
  background: #f5b518;
  border-color: #5d2557;
  box-shadow: 0 0 20px rgba(245, 181, 24, 0.3);
}
.tab-core {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 6px;
  height: 6px;
  background: rgba(245, 181, 24, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
}
.tab-core.active {
  background: #5d2557;
  box-shadow: 0 0 10px rgba(245, 181, 24, 0.5);
}
.holo-tab.active span {
  color: #5d2557;
}
/* Panel de recherche quantique */
.quantum-search-panel {
  background: rgba(26, 31, 46, 0.95);
  border: 2px solid rgba(26, 31, 46, 0.5);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.search-matrix {
  position: relative;
}
.quantum-scan-btn {
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #5d2557;
  border-radius: 15px;
  color: #5d2557;
  font-family: "Courier New", monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.quantum-scan-btn:hover {
  background: rgba(245, 181, 24, 0.1);
  box-shadow: 0 0 20px rgba(245, 181, 24, 0.3);
  transform: translateY(-2px);
}
/* Matrice de produits */
.product-matrix {
  margin-top: 2rem;
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}
.pack {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.pack:hover {
  border-color: #5d2557 !important;
  box-shadow: 0 0 20px rgba(245, 181, 24, 0.3);
  transform: translateY(-5px);
}
.product-projection {
  position: relative;
}
.product-3d {
  margin: 0 auto;
  position: relative;
}
.product-3d img {
  border-radius: 15px;
  filter: brightness(1.2) contrast(1.1);
}
.hologram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(245, 181, 24, 0.1) 50%, transparent 70%);
  border-radius: 15px;
  pointer-events: none;
}
.quantum-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.5rem 1rem;
  background: rgba(245, 181, 24, 0.2);
  border: 1px solid #5d2557;
  border-radius: 20px;
  color: #5d2557;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.quantum-badge.warning {
  background: rgba(255, 165, 0, 0.2);
  border-color: var(--quantum-warning);
  color: var(--quantum-warning);
}
.quantum-badge.premium {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--quantum-premium);
  color: var(--quantum-premium);
}
.product-data {
  position: relative;
}
.data-stream {
  margin-bottom: 1rem;
}
.product-name {
  color: #5d2557;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.molecular-code {
  color: #5d2557;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
.price-matrix {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.current-price span {
  font-size: 0.8rem;
  opacity: 0.8;
}
.old-price {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.discount-beam {
  position: absolute;
  right: 0;
  background: linear-gradient(45deg, #5d2557, #f5b518);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
.neural-add-btn {
  width: 100%;
  padding: 0.75rem;
  background: rgba(245, 181, 24, 0.1);
  border: 2px solid #5d2557;
  border-radius: 15px;
  color: #5d2557;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.neural-add-btn:hover {
  background: rgba(245, 181, 24, 0.2);
  box-shadow: 0 0 20px rgba(245, 181, 24, 0.3);
  transform: translateY(-2px);
}
.w-50-icon {
  width: 50px;
  height: 50px;
}
.w-25-icon {
  width: 30px;
  height: 30px;
}
.stripe-loading-indicator .stripe, .stripe-loading-indicator .stripe-loaded {
  height: 3px !important;
  background: #f5b518 !important;
}
.order-timeline {
  background: var(--bg-secondary);
  border: 1px solid #f5b518;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 100%;
  width: 2px;
  height: 20px;
  background: #f5b518;
}
.timeline-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.timeline-icon.completed {
  background: #28a745;
  color: white;
}
.timeline-icon.current {
  background: #f5b518;
  color: white;
}
.timeline-icon.pending {
  background: #175676;
  color: #FAFAFA;
  border: 2px solid #f5b518;
}
.timeline-content {
  flex: 1;
}
.timeline-step {
  font-weight: 600;
  margin: 0;
}
.timeline-date {
  font-size: 0.8rem;
  color: #5d2557;
  margin: 0;
}
.payment-option {
  cursor: pointer;
  border: 2px solid transparent !important;
  transition: border-color 0.3s;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 1rem;
}
.payment-option img {
  width: 4.5rem;
}
.payment-option.selected {
  border-color: #f5b518 !important;
}
.app {
  width: 150px;
  height: 45px;
}
.bg-cart {
  font-size: 0.625rem;
  font-family: "Barlow", sans-serif !important;
  border-radius: 0 1rem 1rem 0;
  padding: 0.3rem;
  color: var(--color-cyan-600);
  background: #5d2557;
  background: -webkit-gradient(linear, left top, right top, from(#f5b518), color-stop(50%, #e7f8fd));
  background: linear-gradient(90deg, #f5b518 0%, #ececec 50%, #f5e7c7 100%);
  margin-top: auto;
}
.overlay-card {
  position: relative;
  overflow: hidden;
}
.overlay-card .card-body {
  position: relative;
  z-index: 1000;
}
.overlay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5d2557de;
  border-radius: 15px;
}
.tontine-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tontine-summary .card {
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.tontine-list .list-group-item {
  border-radius: 8px;
  margin-bottom: 8px;
}
.nav-sticker {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  background-color: #f5b518;
  width: 88%;
  margin-inline: auto;
  box-shadow: 0 2px 16px rgba(1, 4, 20, 0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 4rem;
  z-index: 10100;
}
.nav-sticker .navlink {
  color: #5d2557;
  font-size: 1.3rem;
  transition: color 0.4s;
}
.nav-sticker .navlink.active {
  color: #fff !important;
  border-bottom: solid 2px #5d2557;
}
.navExpand {
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  background-color: #5d2557;
  border-radius: 50%;
  cursor: pointer;
}
.navExpand-icon {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.4s;
}
.expandList {
  position: absolute;
  top: -4.5rem;
  left: 0;
  right: 0;
  background-color: #5d2557;
  box-shadow: 0 2px 16px rgba(1, 4, 20, 0.1);
  width: max-content;
  margin-inline: auto;
  padding: 0.5rem 1.5rem;
  border-radius: 4rem;
  display: flex;
  column-gap: 2rem;
  z-index: -1;
  overflow: hidden;
  transform: translateY(5rem) scale(0.1);
  transition: transform 0.5s cubic-bezier(0.5, 1.8, 0.4, 0.8);
}
.expandList li {
  transform: translateY(-3rem);
  transition: transform 0.4s;
}
.expandList li:nth-child(1) {
  transition-delay: 0.2s;
}
.expandList li:nth-child(2) {
  transition-delay: 0.3s;
}
.expandList li:nth-child(3) {
  transition-delay: 0.4s;
}
.expandList .navlink {
  color: #fff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.4s;
}
.expandList .navlink i {
  font-size: 1.5rem;
}
.expandList .navlink span {
  font-size: 0.625rem;
  font-weight: 2.5rem;
}
.expandList .navlink:hover {
  color: #f5b518 !important;
}
.show-list, .show-list li {
  transform: translateY(0);
}
.notification {
  width: 360px;
  padding: 15px;
  background-color: white;
  border-radius: 16px;
  position: fixed;
  bottom: 80px;
  left: 10px;
  right: 25px;
  transform: translateY(200%);
  animation: noti 2s forwards alternate ease-in;
  z-index: 20000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.notification-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.notification-close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F2F5;
  font-size: 14px;
}
.notification-container {
  display: flex;
  align-items: flex-start;
}
.notification-media {
  position: relative;
}
.notification-user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  object-fit: cover;
  border: 1px solid #5d2557 !important;
}
.notification-reaction {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: white;
  background-image: linear-gradient(45deg, #f5b518, #fac43c);
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.notification-content {
  width: calc(100% - 60px);
  padding-left: 20px;
  line-height: 1.2;
}
.notification-text {
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 50px;
}
.notification-timer {
  color: #f5b518;
  font-weight: 600;
  font-size: 14px;
}
.notification-status {
  position: absolute;
  right: 15px;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 15px;
  height: 15px;
  background-color: #5d2557;
  border-radius: 50%;
}
.notification-show {
  transform: translateY(0);
}
.notification-hide {
  transform: translateY(200%);
}
@keyframes noti {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
}
.header-content h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-content p {
  color: var(--text-secondary);
  margin: 0;
}
.header-actions {
  display: flex;
  gap: 1rem;
}
/* Overview Cards */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.overview-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}
.total-expenses .card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}
.monthly-budget .card-icon {
  background: linear-gradient(135deg, #4834d4, #686de0);
}
.avg-daily .card-icon {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
}
.top-category .card-icon {
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
}
.card-content {
  flex: 1;
}
.card-content h3 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}
.amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.change {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.change.positive {
  color: #27ae60;
}
.change.negative {
  color: #e74c3c;
}
.progress-bar {
  width: 100%;
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transition: width 0.3s ease;
}
.progress-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.category-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.percentage {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
/* Charts Section */
.charts-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.chart-container {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.chart-filters {
  display: flex;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
/* Categories Section */
.categories-section, .budgets-section, .expenses-section {
  margin-bottom: 2rem;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.category-expense {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
.category-expense:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.category-name {
  font-weight: 600;
  color: var(--text-primary);
}
.category-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.category-progress {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.category-progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.category-percentage {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
/* Budgets Section */
.budgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.budget-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  position: relative;
}
.budget-card.warning {
  border-color: #f39c12;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), transparent);
}
.budget-card.danger {
  border-color: #e74c3c;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), transparent);
}
.budget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.budget-category {
  font-weight: 600;
  color: var(--text-primary);
}
.budget-menu {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
}
.budget-menu:hover {
  background: var(--border-color);
}
.budget-amounts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.budget-spent, .budget-limit {
  text-align: center;
}
.budget-spent h4, .budget-limit h4 {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 0 0.25rem 0;
}
.budget-spent .amount, .budget-limit .amount {
  font-size: 1.1rem;
  font-weight: 600;
}
.budget-progress {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.budget-progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.budget-progress-fill.normal {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}
.budget-progress-fill.warning {
  background: linear-gradient(90deg, #f39c12, #f1c40f);
}
.budget-progress-fill.danger {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}
.budget-status {
  font-size: 0.85rem;
  text-align: center;
}
/* Expenses List */
.filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.search-box {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}
.search-box input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
}
.expenses-list {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-top: 1rem;
}
.expense-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}
.expense-item:last-child {
  border-bottom: none;
}
.expense-item:hover {
  background: var(--hover-bg);
}
.expense-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  flex-shrink: 0;
}
.expense-details {
  flex: 1;
}
.expense-description {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.expense-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  gap: 1rem;
}
.expense-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}
.expense-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.load-more {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}
.modal-body {
  padding: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}
.input-group {
  position: relative;
}
.input-suffix {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .header-actions {
    justify-content: center;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .charts-section {
    grid-template-columns: 1fr;
  }
  .categories-grid, .budgets-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  .expense-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .expense-amount {
    text-align: left;
  }
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
}
.category-stats {
  background: var(--faala-light-gray);
  padding: 0.5rem;
  border-radius: 8px;
}
.service-block {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  height: 100%;
}
.service-block:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-block.purple::before {
  background: linear-gradient(to bottom right, var(--purple-50), transparent);
}
.service-block.amber::before {
  background: linear-gradient(to bottom right, var(--amber-50), transparent);
}
.service-block:hover::before {
  opacity: 1;
}
.service-content {
  position: relative;
  z-index: 10;
}
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-box.purple {
  background: var(--purple-100);
  color: #f5b518;
}
.icon-box.amber {
  background: #5d2557;
  color: #FAFAFA;
}
.icon-box i {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .service-title {
    font-size: 2.25rem;
  }
}
.service-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.category-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--gray-50);
  transition: background-color 0.2s ease;
}
.category-card:hover {
  background: var(--purple-50);
}
.category-card i {
  color: #f5b518;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.category-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  text-align: start !important;
}
.category-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: start !important;
}
/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #5d2557;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i {
  color: #FAFAFA;
  font-size: 1.25rem;
}
.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}
.bg-primary {
  background-color: #5d2557 !important;
}
.text-afriova-orange {
  color: #f5b518 !important;
}
.btn-orange {
  background-color: #f5b518 !important;
  color: #fff !important;
  border: none;
}
.btn-orange:hover {
  background-color: #bf6516 !important;
}
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 37, 87, 0.9) 0%, rgba(93, 37, 87, 0.9) 100%);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  animation: fadeInUp 1s ease-out;
}
.hero-section .hero-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-section .hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.search-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 8px;
  border-radius: 50px;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.search-container input {
  border: none;
  padding-left: 25px;
  font-size: 1.1rem;
  color: #333;
  width: 100%;
}
.search-container input:focus {
  box-shadow: none;
  outline: none;
}
.search-container .btn-search {
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 700;
  background-color: #f5b518;
  color: #fff;
  border: none;
}
.search-container .btn-search:hover {
  background-color: #d67118;
}
.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f5b518;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
.category-card-v2 {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}
.category-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: #f5b518;
}
.category-card-v2 .cat-icon {
  width: 60px;
  height: 60px;
  background: #f4f7fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f5b518;
}
.category-card-v2 .cat-name {
  font-weight: 700;
  margin-bottom: 5px;
  color: #5d2557;
  font-size: 1.1rem;
}
.category-card-v2 .cat-count {
  font-size: 0.8rem;
  color: #888;
}
.product-card-v2 {
  background: #5d2557;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f5b518;
}
.product-card-v2 .card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-v2 .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-v2:hover .card-img-wrapper img {
  transform: scale(1.08);
}
.product-card-v2 .card-badge-v2 {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f5b518;
  color: #fff;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}
.product-card-v2 .card-content-v2 {
  padding: 14px 14px 6px;
}
.product-card-v2 .card-content-v2 .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dedeec;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card-v2 .card-content-v2 .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-card-v2 .card-content-v2 .product-title a:hover {
  color: #f5b518;
}
.product-card-v2 .card-content-v2 .vendor-info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: #dedeec;
}
.product-card-v2 .card-content-v2 .vendor-info i {
  color: #f5b518;
  flex-shrink: 0;
}
.product-card-v2 .card-content-v2 .vendor-info a {
  color: inherit;
  text-decoration: none;
}
.product-card-v2 .card-content-v2 .vendor-info a:hover {
  text-decoration: underline;
}
.sub-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #5d2557 0%, #4b1e46 100%);
  color: #fff;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}
.sub-banner i {
  color: #f5b518;
  font-size: 1rem;
}
.sub-banner .sub-banner-info {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.7;
}
.sub-banner .sub-banner-info:hover {
  opacity: 1;
}
.sub-banner .sub-banner-info i {
  color: #fff;
  font-size: 0.9rem;
}
.price-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}
.price-columns-grid.price-grid-single {
  grid-template-columns: 1fr;
}
@media (max-width: 400px) {
  .price-columns-grid {
    grid-template-columns: 1fr;
  }
}
.price-col {
  padding: 12px 10px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.price-col:last-child {
  border-right: none;
}
.price-col .sub-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-col .sub-badge.sub-badge--orange {
  background: #f5b518;
  color: #fff;
}
.price-col .sub-badge.sub-badge--purple {
  background: #B87BE1;
  color: #fff;
}
.price-col .price-col-label {
  font-size: 0.75rem;
  color: #dedeec;
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.price-col .price-col-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #dedeec;
  line-height: 1.2;
  margin-bottom: 4px;
}
.price-col .price-col-sub {
  font-size: 0.7rem;
  color: #dedeec;
}
.price-col.price-col--subscriber {
  background: rgba(222, 222, 236, 0.08);
  border: 1px solid rgba(222, 222, 236, 0.25);
  border-radius: 10px;
  margin: 6px 0px;
}
.price-col.price-col--subscriber .price-col-amount {
  color: #dedeec;
}
.price-col.price-col--group {
  background: rgba(184, 123, 225, 0.09);
  border: 1px solid rgba(184, 123, 225, 0.25);
  border-radius: 10px;
  margin: 6px 4px 6px 0;
}
.price-col.price-col--group .price-col-amount {
  color: #dedeec;
}
.price-col.price-col--normal {
  background: rgba(222, 222, 236, 0.09);
  border: 1px solid rgba(222, 222, 236, 0.25);
  border-radius: 10px;
  margin: 6px 0px;
}
.price-col.price-col--normal .price-col-amount {
  color: #dedeec;
}
.price-col.price-col--locked .price-col-amount {
  opacity: 0.5;
  filter: blur(2px);
}
.price-col.price-col--locked .savings-text {
  opacity: 0.5;
}
.savings-text {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.savings-text i {
  font-size: 0.65rem;
}
.savings-text.savings-text--orange {
  color: #f5b518;
}
.savings-text.savings-text--purple {
  color: #B87BE1;
}
.btn-price-action {
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 8px !important;
  font-weight: 700;
  width: 100%;
}
.btn-group-buy {
  background: #B87BE1 !important;
  color: #fff !important;
  border: none;
}
.btn-group-buy:hover {
  background: #a65ad9 !important;
}
.btn-sub-lock {
  background: rgba(124, 58, 237, 0.1);
  color: #B87BE1;
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 8px !important;
  font-weight: 700;
  width: 100%;
  display: block;
  border-radius: 2rem !important;
  text-decoration: none;
  text-align: center;
}
.btn-sub-lock:hover {
  background: #B87BE1;
  color: #fff;
}
.card-footer-badges {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  margin-top: auto;
}
.card-footer-badges .footer-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  color: #dedeec;
  font-weight: 500;
  text-align: center;
}
.card-footer-badges .footer-badge-item i {
  font-size: 1.1rem;
  color: #dedeec;
}
.card-footer-badges .footer-badge-item i.fa-shield-check {
  color: #f5b518;
}
.card-footer-actions {
  padding: 0 14px 14px;
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.card-footer-actions .btn {
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 0.8rem;
  flex: 1;
}
.sub-page-hero {
  background: linear-gradient(135deg, #5d2557 0%, #391635 100%);
  border-radius: 20px;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sub-page-hero .sub-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: #E67E22;
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 900;
  margin: 1rem 0;
}
.sub-page-hero .sub-price-badge .sub-price-unit {
  font-size: 1rem;
  font-weight: 600;
}
.sub-advantage-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem;
  gap: 12px;
  transition: all 0.3s ease;
  height: 100%;
}
.sub-advantage-card:hover {
  border-color: #f5b518;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.08);
  transform: translateY(-4px);
}
.sub-advantage-card .adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(230, 126, 34, 0.1);
  color: #f5b518;
}
.sub-advantage-card .adv-text strong {
  display: block;
  color: #5d2557;
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.sub-advantage-card .adv-text p {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
}
.sub-active-card {
  background: linear-gradient(135deg, #5d2557 0%, #40193c 100%);
  border-radius: 20px;
  color: #fff;
  padding: 2rem;
}
.sub-active-card .sub-active-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.sub-active-card .sub-active-date {
  opacity: 0.75;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.sub-active-card .sub-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sub-active-card .sub-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.sub-active-card .sub-check-list li i {
  color: #f5b518;
}
.section-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.section-header-v2 h2 {
  margin-bottom: 0;
  font-weight: 800;
  color: #5d2557;
}
.section-header-v2 h2 span {
  color: #5d2557;
}
.section-header-v2 .view-all {
  color: #5d2557;
  font-weight: 700;
  text-decoration: none;
}
.section-header-v2 .view-all:hover {
  text-decoration: underline;
}
.footer-v2 {
  background: #5d2557;
  color: #fff;
  padding-top: 60px;
}
.footer-v2 h5 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer-v2 h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #f5b518;
}
.footer-v2 .footer-links-v2 {
  list-style: none;
  padding: 0;
}
.footer-v2 .footer-links-v2 li {
  margin-bottom: 12px;
}
.footer-v2 .footer-links-v2 li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-v2 .footer-links-v2 li a:hover {
  color: #f5b518;
}
.footer-v2 .social-icons-v2 {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-v2 .social-icons-v2 a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.footer-v2 .social-icons-v2 a:hover {
  background: #f5b518;
  color: #fff;
}
.footer-v2 .footer-bottom-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
/* ----- Shared Section Header ----- */
.hiw-badge {
  display: inline-block;
  background: rgba(230, 126, 34, 0.12);
  color: #f5b518;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hiw-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #5d2557;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .hiw-title {
    font-size: 1.9rem;
  }
}
.hiw-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
/* ----- How It Works ----- */
.hiw-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}
.hiw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 36, 100, 0.08);
  border-color: #f5b518;
}
.hiw-card--active {
  background: #5d2557;
  border-color: #5d2557;
  color: #fff;
}
.hiw-card--active h4 {
  color: #fff;
}
.hiw-card--active p {
  color: rgba(255, 255, 255, 0.75);
}
.hiw-card--active .hiw-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: #f5b518;
}
.hiw-card--active .hiw-step {
  color: #f5b518;
}
.hiw-card .hiw-step {
  font-size: 3.5rem;
  font-weight: 900;
  color: #dedeec;
  line-height: 1;
  margin-bottom: 1rem;
}
.hiw-card .hiw-icon-wrap {
  width: 70px;
  height: 70px;
  background: #f4f7fe;
  color: #dedeec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: #5d2557;
}
.hiw-card h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.hiw-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
/* ----- Group Buying Section ----- */
.group-buying-section {
  background: #f8faff;
}
.group-benefit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  height: 100%;
}
.group-benefit-card:hover {
  border-color: #f5b518;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.08);
}
.group-benefit-card strong {
  display: block;
  color: #5d2557;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.group-visual-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(8, 36, 100, 0.1);
  border: 1px solid #eee;
}
.group-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid #fff;
  flex-shrink: 0;
}
/* ----- Why Faala ----- */
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: #f5b518;
}
.why-card .why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.why-card h5 {
  font-weight: 700;
  color: #5d2557;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.why-card p {
  margin: 0;
  line-height: 1.65;
}
/* ----- Testimonials ----- */
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(230, 126, 34, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  transform: translateY(-5px);
}
.testimonial-card--featured {
  background: #5d2557;
  border-color: #5d2557;
}
.testimonial-card--featured .testimonial-text {
  color: rgba(255, 255, 255, 0.85);
}
.testimonial-card--featured::before {
  color: rgba(255, 255, 255, 0.06);
}
.testimonial-card .testimonial-text {
  color: #374151;
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
/* ----- Newsletter ----- */
.newsletter-section {
  background: #f4f7fe;
}
.newsletter-box {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(8, 36, 100, 0.07);
  border: 1px solid rgba(8, 36, 100, 0.06);
}
@media (max-width: 576px) {
  .newsletter-box {
    padding: 2rem 1.25rem;
  }
}
.newsletter-form .form-control {
  background: #f4f7fe;
  border-color: transparent !important;
}
.newsletter-form .form-control:focus {
  border-color: #f5b518 !important;
}
@media (max-width: 768px) {
  .section-hero .hero-title, .hero-title {
    font-size: 2.2rem;
  }
  .section-hero .hero-subtitle, .hero-subtitle {
    font-size: 1.15rem;
  }
  .stat-item .stat-number {
    font-size: 1.8rem;
  }
  .stat-item .stat-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .section-hero .hero-title, .hero-title {
    font-size: 1.7rem;
  }
  .section-hero .hero-subtitle, .hero-subtitle {
    font-size: 1rem;
  }
  .stat-item .stat-number {
    font-size: 1.5rem;
  }
}
