@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #339966;
  /* Forest Green */
  --secondary-color: #16a34a;
  /* Slate/Forest Green for Light Text */
  --accent-color: #19fc8b;
  /* Mint/Neon Green Accent */
  --primary-gradient: linear-gradient(135deg, #339966 0%, #19fc8b 100%);
  --dark-slate: #f4f7f5;
  /* Light Sage Tint Background */
  --medium-slate: #ffffff;
  /* Pure White Card Background */
  --light-slate: #e2e8f0;
  /* Soft Gray Border */
  --text-white: #ffffff;
  /* Always White */
  --text-dark: #1b2a22;
  /* Deep Charcoal Green Text */
  --text-gray: #64748b;
  /* Slate 500 Gray Text */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(10, 38, 28, 0.55);
  /* Dark Glass Overlay over Hero */
  --glass-border: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}


body {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-slate);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(51, 153, 102, 0.08);
}

.header-nav.scrolled .nav-links a,
.header-nav.scrolled .action-btn,
.header-nav.scrolled .brand-logo span {
  color: var(--text-dark);
}

.header-nav.scrolled .mobile-toggle span {
  background-color: var(--text-dark);
}

.header-nav.scrolled .search-input {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
  border: 1px solid rgba(51, 153, 102, 0.22);
}

/* Light Header State for standalone light pages */
.header-nav.light-header {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(51, 153, 102, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-nav.light-header .nav-links a,
.header-nav.light-header .action-btn,
.header-nav.light-header .brand-logo span {
  color: var(--text-dark);
}

.header-nav.light-header .mobile-toggle span {
  background-color: var(--text-dark);
}

.header-nav.light-header .search-input {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
  border: 1px solid rgba(51, 153, 102, 0.22);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

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

/* Action Icons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-bar-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  color: var(--text-white);
  font-size: 0.85rem;
  outline: none;
  width: 180px;
  transition: var(--transition-smooth);
}

.search-input:focus {
  width: 240px;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(25, 252, 139, 0.15);
}

.search-icon-btn {
  position: absolute;
  left: 0.85rem;
  color: var(--text-gray);
  pointer-events: none;
  font-size: 0.85rem;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.action-btn:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-slate);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 18px;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition-smooth);
}

.mobile-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-toggle span:nth-child(2) {
  top: 8px;
}

.mobile-toggle span:nth-child(3) {
  top: 16px;
}

.mobile-toggle.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.mobile-toggle.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}


/* ==========================================================================
   MOBILE SIDENAV DRAWER
   ========================================================================== */
.side-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 42, 34, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.side-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(51, 153, 102, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-nav-drawer.active {
  right: 0;
}

.side-nav-drawer .search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
  border: 1px solid rgba(51, 153, 102, 0.22);
}

.side-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.side-nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.side-nav-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.side-nav-actions {
  margin-top: auto;
  border-top: 1px solid rgba(51, 153, 102, 0.1);
  padding-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.side-nav-actions .action-btn {
  font-size: 1.3rem;
  color: var(--text-dark);
}


/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider Container */
.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transform: scale(1.05);
  animation: imageFadeZoom 30s linear infinite;
}

/* Sync 6 images with 5s display duration each, total 30s */
.slider-img:nth-child(1) {
  background-image: url('../img/umoja_market_1.jpg');
  animation-delay: 0s;
}

.slider-img:nth-child(2) {
  background-image: url('../img/umoja_market_2.jpg');
  animation-delay: 5s;
}

.slider-img:nth-child(3) {
  background-image: url('../img/umoja_market_3.jpg');
  animation-delay: 10s;
}

.slider-img:nth-child(4) {
  background-image: url('../img/umoja_market_4.jpg');
  animation-delay: 15s;
}

.slider-img:nth-child(5) {
  background-image: url('../img/umoja_market_5.jpg');
  animation-delay: 20s;
}

.slider-img:nth-child(6) {
  background-image: url('../img/umoja_market_6.jpg');
  animation-delay: 25s;
}

/* Fading & zooming animation for professional look */
@keyframes imageFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  1.5% {
    opacity: 1;
  }

  16.66% {
    opacity: 1;
  }

  18.16% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

/* Rich Overlay Gradients */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 38, 28, 0.8) 0%,
      rgba(10, 38, 28, 0.45) 50%,
      rgba(10, 38, 28, 0.95) 100%),
    radial-gradient(circle at center,
      transparent 0%,
      rgba(10, 38, 28, 0.6) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-wrapper {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-color);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.welcome-badge i {
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-white);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
  /* Highly legible silver-white contrast */
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.btn-primary {
  text-decoration: none;
  background: var(--primary-gradient);
  color: var(--text-white);
  padding: 0.95rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 25px -5px rgba(51, 153, 102, 0.4);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(51, 153, 102, 0.6);
}

.btn-secondary {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  padding: 0.95rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Indicators Sync */
.slider-indicators {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 3;
  list-style: none;
}

.indicator-dot {
  width: 24px;
  height: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
  animation: dotHighlightSync 30s linear infinite;
}

/* Synchronize indicators active timing */
.indicator-dot:nth-child(1) {
  animation-delay: 0s;
}

.indicator-dot:nth-child(2) {
  animation-delay: 5s;
}

.indicator-dot:nth-child(3) {
  animation-delay: 10s;
}

.indicator-dot:nth-child(4) {
  animation-delay: 15s;
}

.indicator-dot:nth-child(5) {
  animation-delay: 20s;
}

.indicator-dot:nth-child(6) {
  animation-delay: 25s;
}

@keyframes dotHighlightSync {
  0% {
    background: var(--secondary-color);
    width: 32px;
  }

  1.5% {
    background: var(--secondary-color);
    width: 32px;
  }

  16.66% {
    background: var(--secondary-color);
    width: 32px;
  }

  18.16% {
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
  }

  100% {
    background: rgba(255, 255, 255, 0.25);
    width: 24px;
  }
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-nav {
    padding: 1rem;
  }

  .header-nav.scrolled {
    padding: 0.75rem 1rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
    padding: 0.85rem 2rem;
  }

  .slider-indicators {
    bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .brand-logo span {
    font-size: 1.25rem;
  }

  .brand-logo img {
    height: 32px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
}

/* ==========================================================================
   FEATURED MARKETS SECTION & CARDS
   ========================================================================== */
.markets-section {
  padding: 6rem 2rem;
  background: var(--dark-slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}

.markets-header {
  text-align: center;
  max-width: 600px;
}

.markets-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.markets-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

/* Card Glow Border Wrapper */
.market-card-wrapper {
  background: rgba(25, 252, 139, 0.12);
  padding: 1px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
  transition: var(--transition-smooth);
}

.market-card-wrapper:hover {
  background: var(--primary-gradient);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(25, 252, 139, 0.15);
}

/* Card Body */
.market-card {
  background: var(--medium-slate);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.market-card-image {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.market-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 38, 28, 0.15) 0%, rgba(10, 38, 28, 0.75) 100%);
}

.market-products-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.market-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.market-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.market-card-address {
  font-size: 0.88rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.market-card-address i {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.market-card-action {
  margin-top: auto;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.market-card-action:hover {
  color: var(--text-white);
}

.market-card-action i {
  transition: transform 0.3s ease;
}

.market-card-action:hover i {
  transform: translateX(4px);
}

.markets-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}


/* ==========================================================================
   MARKETS SEARCH PAGE SPECIFIC
   ========================================================================== */
.markets-page {
  padding-top: 8rem;
  min-height: 100vh;
  background: var(--dark-slate);
}

.search-section {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.search-page-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
}

.search-box-wrapper input {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  font-size: 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.25);
  border-radius: 50px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.search-box-wrapper input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(51, 153, 102, 0.12);
}

.search-box-wrapper i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--primary-color);
  pointer-events: none;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-gray);
}

.no-results i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.no-results h3 {
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .markets-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .markets-section {
    padding: 4rem 1.5rem;
  }

  .search-page-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
  padding: 6rem 2rem;
  background: #ffffff;
  /* Alternate light background for divider design */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  border-top: 1px solid #edf2f0;
}

.categories-header {
  text-align: center;
  max-width: 600px;
}

.categories-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.categories-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
}

.category-card {
  background: var(--dark-slate);
  border: 1px solid rgba(51, 153, 102, 0.06);
  border-radius: 16px;
  padding: 2.25rem 1.25rem;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.category-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(51, 153, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.category-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  margin-top: 0.25rem;
}

.category-description {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
  flex-grow: 1;
}

.category-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(51, 153, 102, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

/* Category Hover Effects */
.category-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: rgba(51, 153, 102, 0.25);
  box-shadow: 0 15px 30px rgba(51, 153, 102, 0.1);
}

.category-card:hover .category-icon-wrapper {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(51, 153, 102, 0.25);
}

.category-card:hover .category-name {
  color: var(--primary-color);
}

.category-card:hover .category-count {
  background: var(--primary-gradient);
  color: #ffffff;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .categories-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  padding: 6rem 2rem;
  background: var(--dark-slate); /* #f4f7f5 background */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  border-top: 1px solid #edf2f0;
}

.how-header {
  text-align: center;
  max-width: 600px;
}

.how-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.how-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  width: 100%;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.step-badge {
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(51, 153, 102, 0.3);
}

.step-icon {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
}

.step-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Step Hover Effects */
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(51, 153, 102, 0.08);
  border-color: rgba(51, 153, 102, 0.2);
}

.step-card:hover .step-icon {
  transform: scale(1.15);
}


/* ==========================================================================
   ABOUT PREVIEW SECTION
   ========================================================================== */
.about-preview-section {
  padding: 6rem 2rem;
  background: #ffffff;
  border-top: 1px solid #edf2f0;
  display: flex;
  justify-content: center;
}

.about-preview-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-preview-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
}

.about-preview-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-preview-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.about-preview-card {
  background: var(--dark-slate);
  border: 1px solid rgba(51, 153, 102, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(25, 252, 139, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-stat-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(51, 153, 102, 0.2);
}

.about-stat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about-stat-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}


/* ==========================================================================
   WHY CHOOSE US SECTION (WAVY DESIGN)
   ========================================================================== */
.why-choose-section {
  padding: 8rem 2rem;
  background: #0a261c;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* Wave Dividers */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider.wave-top {
  top: -1px;
}

.wave-divider.wave-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.why-header {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.why-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.why-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Center last two features on desktop */
.why-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.why-grid-bottom .feature-card {
  width: calc(33.33% - 1rem);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(25, 252, 139, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(25, 252, 139, 0.08);
  border: 1px solid rgba(25, 252, 139, 0.2);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-description {
  font-size: 0.88rem;
  color: #a3b8ad;
  line-height: 1.6;
}

/* Feature Hover Effects */
.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(25, 252, 139, 0.1);
}

.feature-card:hover .feature-icon {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(25, 252, 139, 0.3);
}


/* ==========================================================================
   GROWING MARKETPLACE (STATS) SECTION
   ========================================================================== */
.stats-section {
  padding: 6rem 2rem;
  background: var(--dark-slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}

.stats-header {
  text-align: center;
  max-width: 600px;
}

.stats-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.stats-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.08);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 153, 102, 0.18);
  box-shadow: 0 12px 25px rgba(51, 153, 102, 0.06);
}


/* ==========================================================================
   READY TO GET STARTED (CTA) SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 6rem 2rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.cta-banner {
  background: #0a261c;
  background-image: radial-gradient(circle at 80% 20%, rgba(25, 252, 139, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(51, 153, 102, 0.1) 0%, transparent 50%);
  border: 1px solid rgba(25, 252, 139, 0.15);
  border-radius: 24px;
  padding: 5rem 4rem;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(10, 38, 28, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
}

.cta-banner-text {
  font-size: 1.1rem;
  color: #a3b8ad;
  max-width: 650px;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-white {
  text-decoration: none;
  background: #ffffff;
  color: #0a261c;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  border: 1px solid #ffffff;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.25);
  background: #f4f7f5;
}

.btn-outline-white {
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-3px);
}


/* ==========================================================================
   RESPONSIVENESS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 400px;
  }
  .about-preview-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid-bottom {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  .why-grid-bottom .feature-card {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner {
    padding: 4rem 2.5rem;
  }
  .cta-banner-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .why-grid-bottom .feature-card {
    max-width: 450px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 1rem;
  }
  .btn-white, .btn-outline-white {
    text-align: center;
    padding: 0.9rem 2rem;
  }
}

/* ==========================================================================
   PRODUCTS CARD SECTION
   ========================================================================== */
.products-section {
  padding: 6rem 2rem;
  background: var(--medium-slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  border-top: 1px solid #edf2f0;
}

.products-header {
  text-align: center;
  max-width: 600px;
}

.products-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.products-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
}

/* Asymmetric Eye Catching Premium Product Card */
.product-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.08);
  border-top-left-radius: 32px;
  border-bottom-right-radius: 32px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  position: relative;
}

.product-card-wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 153, 102, 0.25);
  box-shadow: 0 15px 30px rgba(51, 153, 102, 0.08);
}

.product-image-container {
  height: 190px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 32px;
  border-top-right-radius: 8px;
}

.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  z-index: 1;
}

.product-card-wrapper:hover .product-image-container::after {
  background: rgba(0, 0, 0, 0.08);
}

/* Zoom Image on Hover */
.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-wrapper:hover .product-image-container img {
  transform: scale(1.08);
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e11d48;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
  z-index: 2;
}

/* Category Badge */
.category-badge-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

/* Product Info */
.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.product-market {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-gray);
  font-weight: 700;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-market i {
  color: var(--primary-color);
}

.product-name-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0.15rem 0;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 0.25rem;
}

.product-discount-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e11d48;
}

.product-original-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-gray);
}

.product-card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  border-top: 1px solid #edf2f0;
  padding-top: 0.75rem;
}

.buy-btn-card {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.buy-btn-card:hover {
  color: var(--text-dark);
}

.buy-btn-card i {
  font-size: 0.75rem;
}


/* ==========================================================================
   PRODUCTS SEARCH PAGE FILTER ELEMENTS
   ========================================================================== */
.products-filter-section {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.filter-select {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.25);
  border-radius: 50px;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23339966' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.25rem;
  padding-right: 3.5rem;
}

.filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(51, 153, 102, 0.12);
}


/* Responsiveness for 5-column product grid */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .products-section {
    padding: 4rem 1.5rem;
  }
  .filter-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ==========================================================================
   ADDITIONAL FILTER SEARCH & EMPTY STATE STYLING
   ========================================================================== */
.filter-search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.25rem;
  font-size: 1rem;
  background: #ffffff;
  border: 1px solid rgba(51, 153, 102, 0.25);
  border-radius: 50px;
  color: var(--text-dark);
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.filter-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(51, 153, 102, 0.12);
}

.filter-search-icon {
  position: absolute;
  left: 1.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  pointer-events: none;
}

/* No products empty state */
.no-products-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(51, 153, 102, 0.05);
  max-width: 600px;
  width: 100%;
  margin: 2rem auto;
}

.no-products-icon {
  font-size: 3rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  background: rgba(100, 116, 139, 0.08);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-products-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.no-products-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  max-width: 400px;
}

.add-to-cart-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}
.add-to-cart-btn:hover {
  background: var(--primary-color);
  color: white;
}

.account-prompt-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.account-prompt-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(51, 153, 102, 0.1);
}