/* ===== QUANTUM PRODUCT SHOWCASE - OPTIMIZED ===== */

.product-showcase-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Performance Optimized Background Effects */
.section-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 1200px);
  height: min(80vh, 800px);
  background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
  z-index: 0;
  animation: glowPulse 10s ease-in-out infinite;
  will-change: opacity, transform;
  opacity: 0.3;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(52, 152, 219, 0.08));
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 5%;
  animation: floatShape 25s linear infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 65%;
  right: 10%;
  animation: floatShape 30s linear infinite reverse;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 15%;
  animation: floatShape 20s linear infinite;
}

@keyframes floatShape {
  0% { transform: translateY(0) rotate(0deg) translateZ(0); }
  50% { transform: translateY(-40px) rotate(180deg) translateZ(0); }
  100% { transform: translateY(0) rotate(360deg) translateZ(0); }
}

/* Optimized Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.badge-container {
  display: inline-block;
  margin-bottom: 20px;
  transform: translateZ(0);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-title .gradient-text {
  background: linear-gradient(135deg, #e67e22, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-title .subtitle {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #7f8c8d;
  font-weight: 400;
  margin-top: 10px;
}

.section-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67e22, transparent);
  opacity: 0.3;
}

.divider-diamond {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e67e22, #2c3e50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: rotate(45deg);
  animation: diamondSpin 4s linear infinite;
  flex-shrink: 0;
}

.divider-diamond i {
  transform: rotate(-45deg);
  font-size: 1.2rem;
}

@keyframes diamondSpin {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(225deg) scale(1.1); }
  100% { transform: rotate(405deg) scale(1); }
}

/* High-Performance Quantum Carousel */
.quantum-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 3vw, 40px);
  z-index: 2;
}

.carousel-progress {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 16.66%;
  height: 100%;
  background: linear-gradient(90deg, #e67e22, #d35400);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  left: 0;
  top: 0;
  will-change: width;
}

.progress-stats {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  color: #2c3e50;
  min-width: 80px;
  text-align: right;
}

.current-slide {
  color: #e67e22;
}

.quantum-carousel {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(230, 126, 34, 0.05);
  border: 1px solid rgba(230, 126, 34, 0.08);
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
  transform: translateZ(0);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  gap: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Performance Optimized Product Card */
.product-card {
  flex: 0 0 33.333%;
  padding: 15px;
  opacity: 0;
  animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.product-card.active {
  opacity: 1;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-inner {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform-origin: center bottom;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.card-inner:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(230, 126, 34, 0.12),
    0 0 0 1px rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.15);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.25);
  transform: translateZ(0);
}

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card-image img {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
  will-change: transform;
}

.card-inner:hover .card-image img {
  transform: scale(1.08) translateZ(0);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-inner:hover .image-overlay {
  opacity: 1;
}

.card-content {
  padding: 25px;
}

.card-category {
  display: inline-block;
  font-size: 0.85rem;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.card-inner:hover .card-title {
  color: #e67e22;
}

.card-description {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  flex: 1 1 calc(50% - 12px);
  min-width: 120px;
}

.spec-item i {
  color: #e67e22;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.card-btn.primary {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
}

.card-btn.primary:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.card-btn.secondary {
  background: transparent;
  border: 2px solid #e67e22;
  color: #e67e22;
}

.card-btn.secondary:hover {
  background: rgba(230, 126, 34, 0.08);
  border-color: #d35400;
  color: #d35400;
}

/* Performance Optimized Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.control-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(230, 126, 34, 0.15);
  color: #e67e22;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  will-change: transform, background, border-color;
}

.control-btn:hover {
  background: #e67e22;
  color: white;
  border-color: #e67e22;
  transform: scale(1.1) translateZ(0);
}

.control-btn:hover .btn-glow {
  opacity: 1;
  transform: scale(1.2) translateZ(0);
}

.btn-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.25), rgba(44, 62, 80, 0.25));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.auto-play-btn {
  width: auto;
  padding: 0 25px;
  border-radius: 25px;
  font-weight: 600;
  gap: 8px;
}

.auto-play-btn.active {
  background: #e67e22;
  color: white;
  border-color: #e67e22;
}

.btn-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

.control-btn:hover .btn-tooltip {
  opacity: 1;
}

/* Thumbnail Navigation */
.thumbnail-navigation {
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

.thumbnails-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.thumbnail-item {
  flex: 0 0 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
  transform: translateZ(0);
}

.thumbnail-item:hover,
.thumbnail-item.active {
  opacity: 1;
  border-color: #e67e22;
  transform: translateY(-5px) translateZ(0);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

/* Enhanced Category Filter */
.category-filter {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 25px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform: translateZ(0);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-header h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.clear-filter {
  background: transparent;
  border: none;
  color: #e67e22;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.clear-filter:hover {
  background: rgba(230, 126, 34, 0.08);
  transform: translateY(-2px);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 25px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  transform: translateZ(0);
}

.filter-tag:hover {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
  border-color: rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
}

.filter-tag.active {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  border-color: #e67e22;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
}

/* Optimized Showcase CTA */
.showcase-cta {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px);
  color: white;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.showcase-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(230, 126, 34, 0.15), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  flex-wrap: wrap;
}

.cta-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transform: translateZ(0);
}

.icon-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(230, 126, 34, 0.3);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.cta-text {
  flex: 1;
  min-width: 300px;
}

.cta-text h3 {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-text p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: white;
}

.trust-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 30px);
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.badge i {
  color: #e67e22;
  font-size: 1.2rem;
}

/* Performance Optimized Quick View Modal */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-view-modal.active {
  display: block;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  animation: overlayFade 0.3s ease;
}

@keyframes overlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalAppear {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #2c3e50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.quick-view-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
}

.quick-view-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 62, 80, 0.95);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  will-change: transform;
}

.quick-view-trigger:hover {
  background: #2c3e50;
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.25);
}

/* Responsive Design with Performance Optimizations */
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 50%;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .carousel-track {
    gap: 0;
  }
}

@media (max-width: 992px) {
  .product-showcase-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .card-specs {
    flex-direction: column;
    gap: 10px;
  }
  
  .spec-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-title .subtitle {
    font-size: 1.1rem;
  }
  
  .quantum-carousel {
    padding: 15px;
  }
  
  .carousel-controls {
    margin-top: 20px;
    gap: 15px;
  }
  
  .thumbnail-navigation {
    display: none;
  }
  
  .filter-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .filter-tags::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tag {
    flex-shrink: 0;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .card-inner:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 576px) {
  .product-showcase-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .quick-view-overlay {
    top: 20px;
    right: 20px;
  }
  
  .quick-view-trigger span {
    display: none;
  }
  
  .quick-view-trigger {
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 20px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .carousel-track,
  .card-inner,
  .control-btn,
  .btn,
  .filter-tag,
  .quick-view-trigger {
    transition: none !important;
  }
  
  .section-glow-effect,
  .floating-shapes .shape,
  .divider-diamond,
  .icon-pulse {
    animation: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .card-inner {
    border: 2px solid #000;
  }
  
  .filter-tag.active {
    border: 2px solid #000;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .product-showcase-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }
  
  .quantum-carousel {
    background: rgba(40, 40, 40, 0.98);
    border-color: rgba(255, 140, 0, 0.1);
  }
  
  .card-inner {
    background: #2d2d2d;
    border-color: rgba(255, 255, 255, 0.05);
  }
  
  .card-title {
    color: #fff;
  }
  
  .card-description {
    color: #ccc;
  }
}