.comparison-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  font-family: Arial, sans-serif;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}

.labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: bold;
}

.comparison-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  touch-action: none; /* Prevents default touch actions */
}

.comparison-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ff0000;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.slider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.button-wrapper {
  text-align: center;
}

.product-name {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-name:hover {
  background-color: #ff0000;
}
/* Base card styling */
.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.hover\:bg-white\/5:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/\[0\.025\] {
  background-color: rgba(255, 255, 255, 0.025);
}

/* Status indicator pulsating effect */
.pulsating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Image scaling classes */
.object-cover {
  object-fit: cover;
}

.object-scale-down {
  object-fit: scale-down;
}

/* Status badge styling */
.status {
  white-space: nowrap;
}

/* Price section styling - explicitly set to white */
.product-price {
  color: white !important;
}

.bg-accent-500\/25 {
  background-color: rgba(var(--color-accent-500), 0.25);
}

/* Card decoration */
.border-dashed {
  border-style: dashed;
}

.border-white\/\[0\.025\] {
  border-color: rgba(255, 255, 255, 0.025);
}

/* Product card specific overrides for black text theme */
.product-card {
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}

.product-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.product-card h3 {
  color: #f4f4f5 !important; /* Light text for product name */
}

.product-card .text-t-primary {
  color: #f4f4f5 !important; /* Override black text with light text */
}

.product-card .text-t-primary\/60 {
  color: rgba(244, 244, 245, 0.6) !important; /* Light text with opacity */
}

/* Responsive text sizing */
@media (min-width: 768px) {
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Truncate text overflow */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Badge styling */
.badges {
  z-index: 10;
}

/* Stock indicator */
.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.25rem;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

/* Utility classes */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.size-full {
  width: 100%;
  height: 100%;
}

.size-2 {
  width: 0.5rem;
  height: 0.5rem;
}

.opacity-15 {
  opacity: 0.15;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.overflow-hidden {
  overflow: hidden;
}

/* Grid layout */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

/* Flex layout */
.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

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

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

/* Spacing */
.p-1\.5 {
  padding: 0.375rem;
}

.p-0\.5 {
  padding: 0.125rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

/* Text styling */
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-semibold {
  font-weight: 600;
}

.font-light {
  font-weight: 300;
}

/* Transitions */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom decoration */
.-bottom-14 {
  bottom: -3.5rem;
}

.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.min-h-32 {
  min-height: 8rem;
}

.bg-cover {
  background-size: cover;
}







.glassmorphism-btn1 {
  display: inline-block;
  padding: 15px 30px; /* Increased padding for bigger button */
  font-size: 18px; /* Larger font size */
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.glassmorphism-btn1:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Make sure the border scales properly with the larger button */
.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gradient-bg {
  background: linear-gradient(135deg, #ff0000 0%, #ff0000 50%, #ff0000 100%);
  border-color: #ff0000;
}

.gradient-bg:hover {
  background: linear-gradient(135deg, #ff0000 0%, #ff0000 50%, #ff0000 100%);
  border-color: #ff0000;
}
        .footer-glow {
            position: relative;
            overflow: hidden;
        }
                        
        /* Button Hover Effects */
        .gradient-button:hover {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
        }
        
        /* Background Gradients */
        .gradient-bg {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 100%);
            transition: 0.5s ease-in-out;
            border-color: transparent;
            border-width: 0px;
        }
        
        .gradient-bg1 {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 50%, rgba(239, 68, 68, 1) 75%, rgba(153, 27, 27, 1) 100%);
            background-position: right;
            background-size: 200%;
            transition: 0.5s ease-in-out;
            border-color: transparent;
        }
        
        .gradient-bg1:hover {
            background-position: left;
        }
        
        /* Navigation Styles */
        .navbar {
            background: transparent;
            transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
        }
        
        .navbar.scrolled {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        /* Mobile Menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 40;
            pointer-events: auto;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 85vw;
            height: 100vh;
            background: linear-gradient(135deg, rgba(50, 20, 20, 0.95), rgba(90, 40, 40, 0.95));
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(248, 113, 113, 0.2);
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 50;
            overflow-y: auto;
        }
                
        /* Text Gradients */
        .gradient-text {
            color: #ef4444;
        }
        
        /* Social Icons */
        .social-icon {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: rgba(153, 27, 27, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        
        .social-icon:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(248, 113, 113, 0.4);
            background: rgba(239, 68, 68, 0.2);
            border-color: rgba(248, 113, 113, 0.6);
        }
        
        /* Footer Links */
        .footer-link {
            position: relative;
            transition: all 0.3s ease;
            color: rgba(240, 220, 220, 0.8);
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: #ef4444;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover {
            color: #ef4444;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
                
        /* Form Elements */
        .newsletter-input {
            background: rgba(153, 27, 27, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            color: rgba(240, 220, 220, 0.9);
        }
        
        .newsletter-input:focus {
            border-color: rgba(248, 113, 113, 0.7);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
            background: rgba(239, 68, 68, 0.15);
            outline: none;
        }
        
        .newsletter-input::placeholder {
            color: rgba(240, 220, 220, 0.6);
        }
        
        /* Statistics Counters */
        .stats-counter {
            background: rgba(153, 27, 27, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(239, 68, 68, 0.3);
            transition: all 0.3s ease;
        }
        
        .stats-counter:hover {
            background: rgba(239, 68, 68, 0.2);
            border-color: rgba(248, 113, 113, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(153, 27, 27, 0.3);
        }
        
        /* Button Styles */
        .btn-primary {
            background: #ef4444;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
            background: #dc2626;
        }
        
        /* Accent Elements */
        .accent-border {
            border-left: 3px solid rgba(239, 68, 68, 0.8);
        }
        
        .accent-bg {
            background: rgba(153, 27, 27, 0.05);
        }
        
        /* Status Indicators */
        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .status-online {
            background-color: #10b981;
            box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
        }
        
        .status-maintenance {
            background-color: #f59e0b;
            box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
        }
        
        .status-offline {
            background-color: #ef4444;
            box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
        }
        
        .status-item {
            background: rgba(153, 27, 27, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .status-item:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(248, 113, 113, 0.4);
            transform: translateX(2px);
        }
  
        .gradient-button {
            background: rgb(255, 255, 255);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.9; /* Increased from 0.5 to 0.9 for more white appearance */
            border: transparent;
            transition: opacity 0.15s ease-in-out;
        }
                
        .gradient-button:hover {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
        }

        /* New class for pure white text */
        .white-text {
            color: rgba(255, 255, 255, 0.95) !important;
            transition: color 0.15s ease-in-out;
        }

        .white-text:hover {
            color: rgba(255, 255, 255, 1) !important;
        }

        .gradient-bg {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 100%);
            transition: 0.5s ease-in-out;
            border-color: transparent;
            border-width: 0px;
        }
        .gradient-bg1 {
            background: linear-gradient(to left, rgba(153, 27, 27, 1) 0%, rgba(239, 68, 68, 1) 25%, rgba(248, 113, 113, 1) 50%, rgba(239, 68, 68, 1) 75%, rgba(153, 27, 27, 1) 100%);
            background-position: right;
            background-size: 200%;
            transition: 0.5s ease-in-out;
            border-color: transparent;
        }
        .gradient-bg1:hover {
            background-position: left;
        }
        .navbar {
            background: transparent;
            transition: background-color 0.3s ease;
        }
        .navbar.scrolled {
            background: #121212;
            background-blend-mode: overlay;
            box-shadow: inset 0 0 0 1000px rgba(153, 27, 27, 0.05);
        }
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 40;
            pointer-events: auto;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 85vw;
            height: 100vh;
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 50;
            overflow-y: auto;
        }
                
        .mobile-menu.open {
            transform: translateX(0);
        }
                
        .hamburger {
            width: 24px;
            height: 24px;
            position: relative;
            cursor: pointer;
        }
                
        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }
                
        .hamburger span:nth-child(1) {
            top: 0px;
        }
                
        .hamburger span:nth-child(2) {
            top: 8px;
        }
                
        .hamburger span:nth-child(3) {
            top: 16px;
        }
                
        .hamburger.open span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
                
        .hamburger.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
                
        .hamburger.open span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
                
        /* Hide scrollbar but keep functionality */
        .mobile-menu::-webkit-scrollbar {
            width: 0px;
            background: transparent;
        }
                
        @media (max-width: 1023px) {
            .lg\:hidden {
                display: block !important;
            }
            .lg\:flex {
                display: none !important;
            }
        }
  <style>