/* ===============================================
   🚀 PRODUCTS LIST - CLEAN STYLES
   =============================================== */

/* 🏠 Products Page Container */
.products-page {
  min-height: 100vh;
  background: var(--primary-black);
}

/* 🎯 HERO SECTION */
.products-hero-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%);
}

.products-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* 📊 PRODUCTS STATS */
.products-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* 📋 PRODUCTS SECTION */
.products-grid-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%);
  overflow-x: hidden;
}

/* 🏗️ PRODUCTS LAYOUT */
.products-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.products-main {
  width: 100%;
}

/* 📋 PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 100%;
}

/* 🃏 PRODUCT CARD */
.product-card {
  background: var(--glass-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: var(--blur-medium);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--accent-green);
}

/* 🖼️ PRODUCT IMAGE */
.product-image,
.product-icon {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--glass-bg-weak);
}

.product-image img,
.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img,
.product-card:hover .product-icon img {
  transform: scale(1.05);
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-packages-badge,
.product-featured-badge,
.product-priority-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.product-packages-badge {
  background: rgba(102, 255, 0, 0.1);
  border: 1px solid rgba(102, 255, 0, 0.3);
  color: var(--accent-green);
}

.product-featured-badge {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
}

.product-priority-badge {
  background: rgba(255, 0, 107, 0.15);
  border: 1px solid rgba(255, 0, 107, 0.4);
  color: var(--accent-pink);
}

.product-packages-badge i,
.product-featured-badge i,
.product-priority-badge i {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* 🎯 PRODUCT CTA */
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.cta-primary-btn {
  font-weight: 600;
  color: var(--accent-green);
  font-size: 1rem;
}

.arrow-icon {
  font-size: 1.5rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
  font-style: normal;
}

.product-card:hover .arrow-icon {
  transform: translateX(5px);
}

/* 📱 RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-sidebar {
    position: static;
    width: 100%;
    max-height: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .products-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .products-main {
    width: 100%;
    order: 1;
  }
  
  .products-sidebar {
    width: 100%;
    order: 2;
    position: static;
    margin-top: var(--spacing-lg);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-hero-section {
    padding: 60px 0;
  }

  .products-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .product-content {
    text-align: center;
    padding: 20px;
  }

  .product-content h3 {
    text-align: center;
  }

  .product-description {
    text-align: center;
  }

  .product-badges-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .product-packages-badge,
  .product-featured-badge,
  .product-priority-badge {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 6px 8px;
    box-sizing: border-box;
  }

  .product-packages-badge i,
  .product-featured-badge i,
  .product-priority-badge i {
    width: 12px;
    height: 12px;
    margin-right: 3px;
  }

  .product-cta {
    justify-content: center;
  }
}

/* 🎪 SMOOTH ANIMATIONS */
@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: productFadeIn 0.6s ease-out;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }

/* 📭 EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  margin: 40px 0;
}

.empty-state p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .product-image,
  .product-icon {
    height: 140px;
  }
}

