/* ============================
   Category Store Page Styles
   ============================ */

/* ============================
   Modern Hero Section Styles
   ============================ */

.category-hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.category-hero-section .swiper {
  width: 100%;
  height: 100%;
}

.category-hero-section .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: heroCardEntry 1s ease-out forwards;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Compact card variant */
.hero-card.compact {
  padding: 2rem 1.5rem;
  max-width: 450px;
  border-radius: 15px;
}

/* Left-aligned card */
.hero-card.left-aligned {
  margin: 0;
  text-align: left;
}

/* Right-aligned card */
.hero-card.right-aligned {
  margin: 0 0 0 auto;
  text-align: right;
}



/* Premium style for all cards */
.hero-card.premium-style {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(102, 126, 234, 0.08));
  border: 1px solid rgba(102, 126, 234, 0.25);
  backdrop-filter: blur(25px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero-card.premium-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 15px 15px 0 0;
}

/* Enhanced logo for premium style */
.hero-card.premium-style .logo-img {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(102, 126, 234, 0.1));
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Enhanced title gradient for premium style */
.hero-card.premium-style .hero-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.1);
}

/* Enhanced stats for premium style */
.hero-card.premium-style .stat-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.hero-card.premium-style .stat-item i {
  color: #667eea;
  filter: brightness(1.2);
}

/* Enhanced CTA for premium style */
.hero-card.premium-style .hero-cta {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  box-shadow:
    0 8px 25px rgba(102, 126, 234, 0.4),
    0 0 0 1px rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-card.premium-style .hero-cta::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: left 0.5s ease;
}

.hero-card.premium-style .hero-cta:hover::before {
  left: 100%;
}

.hero-card.premium-style .hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(102, 126, 234, 0.5),
    0 0 0 1px rgba(102, 126, 234, 0.15);
}

/* Enhanced feature badges for premium style */
.hero-card.premium-style .feature-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Premium style text enhancements */
.hero-card.premium-style .hero-description {
  color: #555;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-card.premium-style .stat-item span {
  color: #444;
  font-weight: 600;
}

@keyframes heroCardEntry {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-card .breadcrumb {
  margin-bottom: 2rem;
  justify-content: center;
}

/* Align breadcrumb for left/right cards */
.hero-card.left-aligned .breadcrumb {
  justify-content: flex-start;
}

.hero-card.right-aligned .breadcrumb {
  justify-content: flex-end;
}

.hero-card .category-logo {
  margin-bottom: 2rem;
}

/* Compact margins for smaller cards */
.hero-card.compact .category-logo {
  margin-bottom: 1.5rem;
}

.hero-card.compact .breadcrumb {
  margin-bottom: 1.5rem;
}

.hero-card .category-logo .logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Compact logo for smaller cards */
.hero-card.compact .category-logo .logo-img {
  width: 50px;
  height: 50px;
  padding: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smaller title for compact cards */
.hero-card.compact .hero-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Align description for left/right cards */
.hero-card.left-aligned .hero-description {
  margin-left: 0;
  margin-right: auto;
}

.hero-card.right-aligned .hero-description {
  margin-left: auto;
  margin-right: 0;
}

/* Smaller description for compact cards */
.hero-card.compact .hero-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Align stats for left/right cards */
.hero-card.left-aligned .hero-stats {
  justify-content: flex-start;
}

.hero-card.right-aligned .hero-stats {
  justify-content: flex-end;
}

/* Compact stats */
.hero-card.compact .hero-stats {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  min-width: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-item i {
  font-size: 1.5rem;
  color: #667eea;
}

.hero-stats .stat-item span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Align features for left/right cards */
.hero-card.left-aligned .hero-features {
  justify-content: flex-start;
}

.hero-card.right-aligned .hero-features {
  justify-content: flex-end;
}

/* Compact features */
.hero-card.compact .hero-features {
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.hero-pricing {
  margin-bottom: 2rem;
}

.price-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem 2rem;
  border-radius: 15px;
  display: inline-block;
}

.hero-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Smaller CTA for compact cards */
.hero-card.compact .hero-cta {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Align CTA for left/right cards */
.hero-card.left-aligned .hero-cta {
  margin: 0;
}

.hero-card.right-aligned .hero-cta {
  margin: 0 0 0 auto;
}

.premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Adjust premium badge position for different alignments */
.hero-card.left-aligned .premium-badge {
  left: 0;
  transform: translateX(0);
}

.hero-card.right-aligned .premium-badge {
  left: 100%;
  transform: translateX(-100%);
}

/* Swiper Navigation Styles */
.category-hero-section .swiper-button-next,
.category-hero-section .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}

.category-hero-section .swiper-button-next::after,
.category-hero-section .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.category-hero-section .swiper-pagination {
  bottom: 30px;
}

.category-hero-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.category-hero-section .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 4;
  animation: scrollIndicator 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid white;
  border-radius: 12px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes scrollIndicator {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .category-hero-section {
    height: 90vh;
  }

  .hero-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

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

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

  .hero-stats {
    gap: 1rem;
  }

  .hero-stats .stat-item {
    min-width: 80px;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    justify-content: center;
  }

  .category-hero-section .swiper-button-next,
  .category-hero-section .swiper-button-prev {
    display: none;
  }
}

/* Category Hero Section */
.category-hero {
  position: relative;
  padding: calc(var(--spacing-4xl) + 60px) 0 var(--spacing-4xl);
  background: var(--bg-primary);
  overflow: hidden;
}

.category-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.breadcrumb-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-light);
}

.breadcrumb-current {
  color: var(--text-tertiary);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}

.category-logo {
  width: 120px;
  height: 120px;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  box-shadow: var(--shadow-lg);
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-info {
  flex: 1;
}

.category-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.category-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.category-stats .stat {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--bg-quaternary);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.category-stats .stat i {
  color: var(--primary-color);
  font-size: var(--font-size-base);
}

/* Game Information Section */
.game-info {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-secondary);
}

.info-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-quaternary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.info-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid var(--primary-color);
}

.info-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.info-title i {
  color: var(--primary-color);
  font-size: var(--font-size-xl);
}

.info-text {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.game-modes {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.mode-item {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--bg-quaternary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.mode-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.mode-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  flex-shrink: 0;
  overflow: hidden;
}

.mode-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Dark mode - visible background */
[data-theme="dark"] .mode-icon {
  background: var(--bg-tertiary);
  border: 2px solid rgba(192, 192, 192, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Light mode - with gradient background */
[data-theme="light"] .mode-icon {
  background: black;
  color: var(--dark-text-primary);
}

.mode-content {
  flex: 1;
}

.mode-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.mode-description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Products Section */
.products-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-quaternary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

/* 3D Product Cards - Simple overflow effect */
.product-card-3d {
  overflow: visible;
  margin-top: 40px;
  position: relative;
}



.product-card-3d .product-image {
  position: relative;
  height: 220px;
  overflow: visible;
  margin-top: -40px;
  margin-left: -15px;
  margin-right: -15px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card-3d .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.3s ease;
}

.product-card-3d:hover .product-img {
  transform: scale(1.05);
}

.product-card-3d .product-content {
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: var(--spacing-xl);
}

.product-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--dark-text-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.badge-best-seller {
  background: var(--secondary-color);
}

.badge-new {
  background: var(--success-color);
}

.badge-premium {
  background: var(--accent-color);
}

.badge-free {
  background: var(--info-color);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--bg-primary-rgb), 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: var(--spacing-xl);
}

.product-category {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--spacing-sm);
}

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

.product-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.product-description {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-sm);
}

.product-features {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.product-features .feature-tag {
  background: var(--bg-quaternary);
  color: var(--text-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.product-rating {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: var(--secondary-color);
  font-size: var(--font-size-sm);
}

.rating-text {
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xs);
}

.price-current {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.price-old {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.product-actions {
  margin-top: var(--spacing-lg);
}

.product-actions .btn {
  width: 100%;
  justify-content: center;
  gap: var(--spacing-sm);
}

.section-actions {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .category-hero {
    padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-3xl);
  }
  
  .category-header {
    gap: var(--spacing-xl);
  }
  
  .category-logo {
    width: 100px;
    height: 100px;
  }
  
  .category-title {
    font-size: var(--font-size-2xl);
  }
  
  .category-stats {
    gap: var(--spacing-lg);
  }
  
  .category-stats .stat {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .info-card {
    padding: var(--spacing-xl);
  }
  
  .mode-item {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
  }
  
  .mode-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
  
  .product-price {
    align-items: flex-start;
  }

  /* 3D Cards Mobile Adjustments */
  .product-card-3d {
    margin-top: 35px;
  }

  .product-card-3d .product-image {
    margin-top: -35px;
    margin-left: -12px;
    margin-right: -12px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: var(--font-size-xl);
  }
  
  .category-description {
    font-size: var(--font-size-base);
  }
  
  .category-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .category-stats .stat {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .info-title {
    font-size: var(--font-size-xl);
  }
  
  .info-text {
    font-size: var(--font-size-base);
  }
  
  .mode-item {
    padding: var(--spacing-md);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }

  /* 3D Cards Small Mobile Adjustments */
  .product-card-3d {
    margin-top: 25px;
  }

  .product-card-3d .product-image {
    margin-top: -25px;
    margin-left: -10px;
    margin-right: -10px;
    height: 180px;
  }
}

/* Dark/Light Theme Transitions */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Simple Card Entry Animation */
.product-card-3d {
  animation: cardEntry 0.6s ease-out forwards;
}

.product-card-3d:nth-child(odd) {
  animation-delay: 0.1s;
}

.product-card-3d:nth-child(even) {
  animation-delay: 0.2s;
}

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No overlay effect on hover */
.product-card-3d:hover .product-overlay {
  opacity: 0;
}

.product-card-3d .product-overlay {
  transition: opacity 0.3s ease;
}

/* Simple badge animation */
.product-badge {
  animation: badgeFloat 2s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}

/* Hover Effects */
.mode-item:hover,
.product-card:hover {
  border-color: var(--primary-color);
}

/* Focus States for Accessibility */
.mode-item:focus-within,
.product-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
