/* ===================================
   MULTI-SERVICE SHOWCASE SECTION
   =================================== */


   

/* ===================================
   1. SECTION BASE & VARIABLES
   =================================== */
.multi-service-showcase {
  --pharmacy-color: #16a085;
  --rental-color: #f39c12;
  --services-color: #3498db;
  --jobs-color: #9b59b6;
  --transport-color: #1a8917;
  --lost-color: #e74c3c;
  
  /* transitions */
  --elegant-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --smooth-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #1b717c 0%, #f8fafb 100%);
  position: relative;
  margin-top: var(--spacing-lg);
  contain: layout paint;
}

/* Subtle gradient overlay */
.multi-service-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(ellipse at top right, rgba(26, 137, 23, 0.02) 0%, transparent 40%),
    radial-gradient(ellipse at bottom left, rgba(102, 126, 234, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.showcase-clipping-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* This now handles the clipping */
}

/* ===================================
   2. SHOWCASE HEADER 
   =================================== */
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,251,0.9) 100%);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover effect for header */
.showcase-header:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* Animated background pattern */
.showcase-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 123, 10, .2) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Enhanced title with gradient */
.showcase-title {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1a8917 0%, #27ae60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  /* Fallback for browsers that don't support background-clip */
  color: #1a8917;
}

/* Category count badge */
.showcase-title::after {
  content: '6 Services';
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #16a085 0%, #1a8917 100%);
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Enhanced subtitle with live indicator */
.showcase-subtitle {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Live rotation indicator */
.rotation-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 12px;
  background: rgba(26, 137, 23, 0.1);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: #16a085;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: slideInFade 0.4s ease;
}

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

.rotation-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16a085;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.rotation-status.paused {
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
  animation: slideInFade 0.4s ease;
}

.rotation-status.paused::before {
  background: #94a3b8;
  animation: none;
}

/* Header Controls Container */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Progress dots indicator */
.progress-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 16px;
  background: rgba(241, 245, 249, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}

/* Current category counter */
.progress-dots::before {
  content: attr(data-current) ' / 6';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-dots:hover::before {
  opacity: 1;
}

.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.progress-dot:hover {
  transform: scale(1.3);
  background: #94a3b8;
}

.progress-dot:active {
  transform: scale(0.9);
}

.progress-dot.active {
  width: 24px;
  border-radius: 3px;
  background: #1a8917;
}

/* Tooltip for dots */
.progress-dot::after {
  content: attr(data-category);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #1e293b;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
  transition: transform 0.2s ease;
  z-index: 10;
}

.progress-dot:hover::after {
  transform: translateX(-50%) scale(1);
}

/* Auto-rotation control button */
.rotation-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rotation-control:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rotation-control:active {
  transform: scale(0.95);
}

.rotation-control.playing {
  background: #1a8917;
  color: white;
  border-color: #1a8917;
}

.rotation-control.playing:hover {
  background: #16a085;
  border-color: #16a085;
}

/* Enhanced View Controls */
.view-controls {
  display: flex;
  gap: 2px;
  background: rgba(241, 245, 249, 0.8);
  backdrop-filter: blur(10px);
  padding: 2px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.view-toggle {
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: #64748b;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--smooth-transition);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-toggle i {
  font-size: 0.875rem;
}

.view-toggle.active {
  background: white;
  color: #0f172a;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

.view-toggle:hover:not(.active) {
  color: #334155;
  background: rgba(255, 255, 255, 0.5);
}

/* ===================================
   3. SERVICE SELECTOR GRID - 
   =================================== */
.service-selector-wrapper {
  position: relative;
  margin-bottom: -15px;
  margin-top: 10px;
  padding: 24px 0;
}

.service-selector-container {
  position: relative;
  overflow: hidden;
  margin: 0 -16px;
  padding: 0 16px;
}

.service-selector-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 4px 0;
  will-change: transform;
}

.selector-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: white;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Category Navigation Buttons */
.category-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-nav-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.category-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.category-nav-btn.prev {
  left: 0;
}

.category-nav-btn.next {
  right: 0;
}

.category-nav-btn i {
  font-size: 0.875rem;
  color: #64748b;
}

.category-nav-btn:hover i {
  color: #334155;
}

.category-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-nav-btn:disabled:hover {
  background: white;
  border-color: #e2e8f0;
}

/* Gradient border effect */
.selector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.selector-card:hover::before {
  opacity: 0.5;
}

.selector-card.active::before {
  opacity: 1;
}

/* Active state */
.selector-card.active {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px -6px rgba(var(--accent-rgb), 0.15),
    0 4px 8px -2px rgba(var(--accent-rgb), 0.08);
}

/* Icon styling */
.selector-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.selector-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.selector-card:hover .selector-icon::after {
  transform: translateX(100%);
}

.selector-icon i {
  font-size: 1.5rem;
  color: white;
  z-index: 1;
  transition: transform 0.3s ease;
}

.selector-card:hover .selector-icon i {
  transform: scale(1.1) rotate(5deg);
}

.selector-card.active .selector-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 16px -4px rgba(var(--accent-rgb), 0.3);
}

/* Label styling */
.selector-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.selector-card:hover .selector-label {
  color: #0f172a;
}

.selector-card.active .selector-label {
  color: var(--accent-color);
}

/* Active indicator */
.selector-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.selector-card.active .selector-indicator {
  transform: translateX(-50%) scaleX(1);
}

/* Auto-rotate progress indicator */
.selector-card.active.auto-rotating::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  animation: autoRotateProgress linear forwards;
  animation-duration: var(--rotation-duration, 6s);
}

@keyframes autoRotateProgress {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* Force animation restart */
.selector-card.auto-rotating::after {
  animation-name: none;
}

.selector-card.active.auto-rotating::after {
  animation-name: autoRotateProgress;
}

/* ===================================
   4. CATEGORY DISPLAY SECTION - 
   =================================== */
.category-display-section {
  position: relative;
  margin-top: 24px;
  min-height: 500px;
}

.category-display {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-display.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Display Banner  */
.display-banner {
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Background pattern overlay */
.display-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.banner-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
  position: relative;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: var(--font-secondary);
}

.banner-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  font-weight: 400;
  line-height: 1.6;
}

.banner-cta {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #0f172a;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.banner-cta:hover::before {
  width: 300px;
  height: 300px;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.15);
}

.banner-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.banner-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.display-banner:hover .banner-image img {
  transform: perspective(1000px) rotateY(-2deg) scale(1.02);
}

/* Category Products Section */
.category-products {
  overflow: hidden;
  margin: 0 -16px;
  padding: 0 16px;
  position: relative;
}

.products-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  animation: slideInFromBottom 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s backwards;
}

/* Product Card  */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4747;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.02em;
}

.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.price-original {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #64748b;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-weight: 600;
}

.sold {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ===================================
   5. LOADING STATES
   =================================== */
.products-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #64748b;
  font-weight: 500;
}

.products-loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================
   6. ANIMATIONS
   =================================== */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Smooth entrance for cards */
.selector-card {
  animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

.selector-card:nth-child(1) { animation-delay: 0s; }
.selector-card:nth-child(2) { animation-delay: 0.05s; }
.selector-card:nth-child(3) { animation-delay: 0.1s; }
.selector-card:nth-child(4) { animation-delay: 0.15s; }
.selector-card:nth-child(5) { animation-delay: 0.2s; }
.selector-card:nth-child(6) { animation-delay: 0.25s; }

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

/* ================================================
   MULTI-SERVICE SECTION - MOBILE PRO STYLES
   Professional & Elegant Mobile Design
   ================================================ */

/* ===================================
   1. MOBILE BREAKPOINT VARIABLES
   =================================== */
:root {
  --mobile-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --mobile-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --mobile-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --mobile-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --mobile-radius: 16px;
  --mobile-padding: 16px;
}

/* ===================================
   2. TABLET STYLES (769px - 1024px)
   =================================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .multi-service-showcase {
    padding: 3rem 0;
  }
  
  .showcase-header {
    padding: 1.25rem;
    gap: 1.5rem;
  }
  
  .showcase-title {
    font-size: 1.875rem;
  }
  
  .service-selector-grid {
    gap: 14px;
  }
  
  .selector-card {
    flex: 0 0 140px;
  }
  
  .display-banner {
    padding: 40px;
    min-height: 280px;
  }
  
  .banner-title {
    font-size: 2.25rem;
  }
  
  .banner-image img {
    width: 350px;
    height: 280px;
  }
  
  .products-track {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
}

/* ===================================
   3. MOBILE STYLES (max-width: 768px)
   =================================== */
@media (max-width: 768px) {

   .showcase-clipping-container {
    overflow: hidden !important; 
  }

  /* Section Base - Elegant Background */
  .multi-service-showcase {
    padding: auto 1rem;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    margin-top: 1rem;
    
  }

  
  .multi-service-showcase::before {
    background: 
      radial-gradient(ellipse at top right, rgba(26, 137, 23, 0.015) 0%, transparent 50%),
      radial-gradient(ellipse at bottom left, rgba(102, 126, 234, 0.015) 0%, transparent 50%);
  }
  
  /* ===================================
     MOBILE HEADER - Premium Design
     =================================== */
  .showcase-header {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: visible;
  }
  
  .showcase-header::before {
    display: none; /* Remove rotating gradient on mobile */
  }
  
  /* Header Content */
  .header-content {
    text-align: center;
  }
  
  .showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #1a8917 0%, #16a085 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .showcase-title::after {
    display: none; /* Hide service count on mobile */
  }
  
  .showcase-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Rotation Status - Elegant Pill */
  .rotation-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(26, 137, 23, 0.08) 0%, rgba(22, 160, 133, 0.08) 100%);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #16a085;
    font-weight: 500;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(26, 137, 23, 0.1);
  }
  
  .rotation-status::before {
    width: 5px;
    height: 5px;
    animation: pulse 2s infinite;
  }
  
  /* Header Controls - Mobile Optimized */
  .header-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  /* Progress Dots - Elegant Mobile Design */
  .progress-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 8px 16px;
    background: rgba(241, 245, 249, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .progress-dots::before {
    display: none; /* Hide counter on mobile */
  }
  
  .progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: var(--mobile-transition);
    cursor: pointer;
  }
  
  .progress-dot.active {
    width: 20px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #1a8917 0%, #16a085 100%);
    box-shadow: 0 2px 4px rgba(26, 137, 23, 0.2);
  }
  
  .progress-dot::after {
    display: none; /* Hide tooltips on mobile */
  }
  
  /* Rotation Control - Floating Button Style */
  .rotation-control {
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #64748b;
    font-size: 0.875rem;
    transition: var(--mobile-transition);
  }
  
  .rotation-control:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  
  .rotation-control.playing {
    background: linear-gradient(135deg, #1a8917 0%, #16a085 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 137, 23, 0.25);
  }
  
  /* Hide View Controls on Mobile */
  .view-controls {
    display: none;
  }
  
  /* ===================================
     SERVICE SELECTOR - HORIZONTAL SCROLL
     =================================== */
  .service-selector-wrapper {
    position: relative;
    margin: 1.5rem -16px 1.5rem;
    padding: 0;
  }
  
  /* Hide Navigation Buttons on Mobile */
  .category-nav-btn {
    display: none;
  }
  
  /* Scroll Container - Native Scrolling */
  .service-selector-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 16px 12px;
  }
  
  .service-selector-container::-webkit-scrollbar {
    display: none;
  }
  
  /* Service Grid - Horizontal Layout */
  .service-selector-grid {
    display: flex;
    gap: 12px;
    padding: 0;
    transition: none; /* Disable transform animation on mobile */
  }
  
  /* Selector Cards - Touch Optimized */
  .selector-card {
    flex: 0 0 110px;
    min-width: 110px;
    padding: 16px 8px;
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    scroll-snap-align: start;
    transition: var(--mobile-transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    -webkit-tap-highlight-color: transparent;
  }
  
  .selector-card::before {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .selector-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
  
  .selector-card.active {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 
      0 8px 16px -4px rgba(var(--accent-rgb), 0.2),
      0 2px 6px -2px rgba(var(--accent-rgb), 0.1);
  }
  
  /* Selector Icon - Refined Mobile Size */
  .selector-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 8px -2px rgba(var(--accent-rgb), 0.25);
    transition: var(--mobile-transition);
  }
  
  .selector-icon i {
    font-size: 1.25rem;
    color: white;
  }
  
  .selector-card:active .selector-icon {
    transform: scale(0.95);
  }
  
  .selector-card.active .selector-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 12px -2px rgba(var(--accent-rgb), 0.35);
  }
  
  /* Selector Label - Clean Typography */
  .selector-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.2;
    text-align: center;
    transition: color 0.2s ease;
    letter-spacing: -0.02em;
  }
  
  .selector-card.active .selector-label {
    color: var(--accent-color);
  }
  
  /* Active Indicator - Bottom Line */
  .selector-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s ease;
  }
  
  .selector-card.active .selector-indicator {
    transform: translateX(-50%) scaleX(1);
  }
  
  /* Scroll Hint Gradients */
  .service-selector-wrapper::before,
  .service-selector-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .service-selector-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
  }
  
  .service-selector-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
  }
  
  /* ===================================
     CATEGORY DISPLAY - MOBILE OPTIMIZED
     =================================== */
  .category-display-section {
    min-height: auto;
    margin-top: 1rem;
  }
  
  .category-display {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* Display Banner - Mobile Card Design */
  .display-banner {
    border-radius: 20px;
    padding: 24px 20px;
    margin: 0 16px 20px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }
  
  .display-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
  }
  
  .banner-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .banner-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
    line-height: 1.4;
  }
  
  /* Banner CTA - Elegant Mobile Button */
  .banner-cta {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: #0f172a;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--mobile-transition);
    -webkit-tap-highlight-color: transparent;
  }
  
  .banner-cta:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Banner Image - Mobile Hidden */
  .banner-image {
    display: none;
  }
  
  /* ===================================
     PRODUCTS SECTION - MOBILE GRID
     =================================== */
  .category-products {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px 20px;
  }
  
  .products-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    animation: none; /* Disable animation for performance */
  }
  
  /* Product Card - Mobile Optimized */
  .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--mobile-transition);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-tap-highlight-color: transparent;
  }
  
  .product-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
  
  .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff4747 0%, #ff6b6b 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(255, 71, 71, 0.3);
  }
  
  .product-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
  }
  
  .product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  
  .price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
  }
  
  .price-original {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
  }
  
  .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #64748b;
    gap: 4px;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbf24;
    font-weight: 600;
  }
  
  .sold {
    font-size: 0.65rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Loading State - Elegant Spinner */
  .products-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
  }
  
  .products-loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 12px;
  }
}

/* ===================================
   4. SMALL PHONE ADJUSTMENTS (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
  .multi-service-showcase {
    padding: 1.5rem 0 2.5rem;
  }
  
  .showcase-header {
    padding: 0.875rem;
    border-radius: 16px;
  }
  
  .showcase-title {
    font-size: 1.25rem;
  }
  
  .showcase-subtitle {
    font-size: 0.8125rem;
  }
  
  .rotation-status {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  .progress-dots {
    gap: 5px;
    padding: 6px 12px;
  }
  
  .progress-dot {
    width: 5px;
    height: 5px;
  }
  
  .progress-dot.active {
    width: 16px;
  }
  
  .rotation-control {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  
  .service-selector-grid {
    gap: 10px;
  }
  
  .selector-card {
    flex: 0 0 95px;
    padding: 14px 6px;
  }
  
  .selector-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  
  .selector-icon i {
    font-size: 1.125rem;
  }
  
  .selector-label {
    font-size: 0.7rem;
  }
  
  .display-banner {
    padding: 20px 16px;
    margin: 0 12px 16px;
    border-radius: 16px;
  }
  
  .banner-title {
    font-size: 1.5rem;
  }
  
  .banner-subtitle {
    font-size: 0.8125rem;
  }
  
  .banner-cta {
    padding: 10px 24px;
    font-size: 0.8125rem;
  }
  
  .category-products {
    padding: 0 12px 16px;
  }
  
  .products-track {
    gap: 10px;
  }
  
  .product-image {
    height: 140px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 0.75rem;
  }
  
  .price-current {
    font-size: 0.9375rem;
  }
  
  .price-original {
    font-size: 0.7rem;
  }
}

/* ===================================
   5. VERY SMALL PHONES (max-width: 375px)
   =================================== */
@media (max-width: 375px) {
  .showcase-header {
    padding: 0.75rem;
  }
  
  .showcase-title {
    font-size: 1.125rem;
  }
  
  .selector-card {
    flex: 0 0 85px;
    padding: 12px 4px;
  }
  
  .selector-icon {
    width: 40px;
    height: 40px;
  }
  
  .selector-icon i {
    font-size: 1rem;
  }
  
  .selector-label {
    font-size: 0.65rem;
  }
  
  .display-banner {
    padding: 18px 14px;
  }
  
  .banner-title {
    font-size: 1.375rem;
  }
  
  .products-track {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
  }
  
  .product-image {
    height: 100%;
    min-height: 100px;
  }
  
  .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ===================================
   6. LANDSCAPE MODE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) and (orientation: landscape) {
  .multi-service-showcase {
    padding: 1.5rem 0;
  }
  
  .showcase-header {
    flex-direction: row;
    padding: 0.75rem 1rem;
  }
  
  .header-content {
    text-align: left;
    flex: 1;
  }
  
  .showcase-title {
    font-size: 1.375rem;
  }
  
  .display-banner {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    min-height: 200px;
  }
  
  .banner-content {
    flex: 1;
    margin-bottom: 0;
    margin-right: 20px;
  }
  
  .banner-image {
    display: block;
    flex: 0 0 200px;
  }
  
  .banner-image img {
    width: 200px;
    height: 150px;
    border-radius: 12px;
  }
  
  .products-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================
   7. PERFORMANCE OPTIMIZATIONS
   =================================== */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  .multi-service-showcase * {
    animation-duration: 0.3s !important;
    transition-duration: 0.2s !important;
  }
  
  /* Disable complex animations */
  @keyframes none {
    from, to { transform: none; }
  }
  
  .showcase-header::before,
  .selector-card::after,
  .banner-content::before {
    animation: none !important;
  }
  
  /* Optimize touch performance */
  .selector-card,
  .product-card,
  .banner-cta {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Reduce paint areas */
  .product-image img {
    will-change: auto;
  }
}

/* ===================================
   8. ACCESSIBILITY ENHANCEMENTS
   =================================== */
@media (max-width: 768px) {
  /* Increase touch targets */
  .selector-card,
  .rotation-control,
  .progress-dot {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Focus states for mobile */
  .selector-card:focus-visible,
  .banner-cta:focus-visible,
  .product-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .selector-card,
    .product-card {
      border: 2px solid currentColor;
    }
  }
}



/* ================================================
   MULTI-SERVICE MOBILE - QUICK VIEW & EXTRAS
   Additional Mobile Components
   ================================================ */

/* ===================================
   MOBILE QUICK VIEW MODAL
   =================================== */
.mobile-quick-view {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-quick-view.active {
  pointer-events: auto;
  opacity: 1;
}

.quick-view-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quick-view-content {
  position: relative;
  background: white;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-quick-view.active .quick-view-content {
  transform: translateY(0);
}

/* Quick View Header */
.quick-view-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.quick-view-close:active {
  transform: scale(0.9);
  background: rgba(0, 0, 0, 0.1);
}

/* Quick View Image */
.quick-view-image {
  width: 100%;
  height: 300px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick View Info */
.quick-view-info {
  padding: 24px 20px 32px;
}

.quick-view-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.quick-view-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a8917;
  margin: 0 0 24px 0;
}

/* Quick View Actions */
.quick-view-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.quick-view-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.quick-view-btn.add-to-cart {
  background: linear-gradient(135deg, #1a8917 0%, #16a085 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 137, 23, 0.25);
}

.quick-view-btn.add-to-cart:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(26, 137, 23, 0.3);
}

.quick-view-btn.view-details {
  background: rgba(26, 137, 23, 0.08);
  color: #1a8917;
}

.quick-view-btn.view-details:active {
  background: rgba(26, 137, 23, 0.15);
}

/* ===================================
   MOBILE TOAST NOTIFICATIONS
   =================================== */
.mobile-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-width: calc(100% - 32px);
  text-align: center;
}

.mobile-toast.show {
  transform: translateX(-50%) translateY(0);
}

.mobile-toast.info {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.mobile-toast.success {
  background: linear-gradient(135deg, #1a8917 0%, #16a085 100%);
}

.mobile-toast.error {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* ===================================
   PRODUCT SKELETON LOADER
   =================================== */
.product-skeleton {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-image {
  width: 100%;
  height: 160px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

.skeleton-info {
  padding: 12px;
}

.skeleton-title {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-price {
  height: 20px;
  width: 60%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes skeletonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===================================
   MOBILE TOUCH FEEDBACK STATES
   =================================== */
.selector-card[data-touched="true"] {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

.product-card.touch-active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Scroll performance optimization */
.service-selector-container.is-scrolling .selector-card {
  will-change: transform;
  transition: none;
}

/* ===================================
   PULL TO REFRESH INDICATOR
   =================================== */

.pull-to-refresh-indicator {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.multi-service-showcase.pulling .pull-to-refresh-indicator {
  opacity: 1;
}

.pull-to-refresh-indicator::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-top-color: #1a8917;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ===================================
   MOBILE SCROLL INDICATORS
   =================================== */
@media (max-width: 768px) {
  /* Left scroll indicator */
  .service-selector-wrapper.has-scroll-left::before {
    opacity: 1;
    background: linear-gradient(to right, white 0%, transparent 100%);
  }
  
  /* Right scroll indicator */
  .service-selector-wrapper.has-scroll-right::after {
    opacity: 1;
    background: linear-gradient(to left, white 0%, transparent 100%);
  }
}

/* ===================================
   REDUCED MOTION PREFERENCES
   =================================== */
@media (prefers-reduced-motion: reduce) {
  .mobile-quick-view,
  .quick-view-content,
  .mobile-toast,
  .selector-card,
  .product-card {
    transition-duration: 0.01ms !important;
  }
  
  .skeleton-image,
  .skeleton-title,
  .skeleton-price {
    animation: none !important;
    background: #f0f0f0 !important;
  }
}

/* ===================================
   HIGH CONTRAST MODE
   =================================== */
@media (prefers-contrast: high) {
  .mobile-quick-view .quick-view-content {
    border: 2px solid currentColor;
  }
  
  .quick-view-btn {
    border: 2px solid currentColor;
  }
  
  .mobile-toast {
    border: 2px solid currentColor;
  }
}

