@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;
}

.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;
}

/* ===== ANIMATIONS GLOBALES ===== */
@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 ===== */
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: #5d2557 !important;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: #f5b518 !important;
}

.navHeader {
  background-color: #5d2557;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-medium);
}

.nav-link {
  font-weight: 500;
  color: var(--faala-black) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #5d2557 !important;
  transform: translateY(-2px);
}

.nav-link::after, .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(90deg, #5d2557, #f5b518);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link::after {
  width: 0;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== 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;
}
.form-control:focus, .form-select:focus {
  border: 0.4px solid #5d2557 !important;
}

.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: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .product-card {
    margin-bottom: 1.5rem;
  }
  .feature-card {
    margin-bottom: 2rem;
  }
}
/* ===== 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;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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;
}

.product-pack {
  height: 350px;
}

.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 {
  height: 180px;
  margin-bottom: 1rem;
  position: relative;
}

.product-3d {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
}

.product-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: rgb(93, 37, 87);
  background: -webkit-gradient(linear, left top, right top, from(rgb(245, 181, 24)), color-stop(50%, rgb(231, 248, 253)));
  background: linear-gradient(90deg, rgb(245, 181, 24) 0%, rgb(236, 236, 236) 50%, rgb(245, 231, 199) 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: rgba(93, 37, 87, 0.8705882353);
  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 hsla(228, 95%, 4%, 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 hsla(228, 95%, 4%, 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%;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  margin: 0.5rem 0;
  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-card {
  background: white;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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;
}

.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;
}