/* CSS Variables */
:root {
    --dark-cornflower-blue: #253C80;
    --cg-red: #DC4226;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --gradient-primary: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cg-red) 0%, #ef4444 100%);
    --gradient-electric: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --gradient-metallic: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 25%, #9ca3af 50%, #6b7280 75%, #4b5563 100%);
    --gradient-mesh: conic-gradient(from 0deg at 50% 50%, #667eea 0deg, #764ba2 120deg, #f093fb 240deg, #667eea 360deg);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-3d: 0 35px 60px -12px rgba(0, 0, 0, 0.25);

    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
    cursor: auto !important;
}

/* Ensure cursor visibility across all elements on products page */
html, body {
    cursor: auto !important;
}

/* Ensure all pseudo-elements don't interfere with cursor */
*::before, *::after {
    pointer-events: none !important;
}

/* Fix specific cursor issues on product page elements */
.preloader,
.products-background,
.floating-shapes,
.gradient-mesh,
.speed-particles,
.scanning-line,
.grid-pattern,
.showcase-slide,
.slide-overlay,
.circuit-board,
.circuit-lines,
.electric-current {
    pointer-events: none !important;
}

/* Ensure interactive elements maintain proper cursor */
.product-card,
.filter-btn,
.quick-view,
.compare,
.wishlist,
button,
a,
input,
select,
textarea {
    cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    cursor: text !important;
}

/* Ensure modal and notification elements have proper cursor */
.modal-backdrop,
.modal-overlay,
.quick-view-modal,
.wishlist-notification,
.notification {
    cursor: auto !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: var(--white);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.motorcycle-silhouette {
    width: 200px;
    height: 100px;
    margin: 0 auto 40px;
    color: var(--cg-red);
}

.bike-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawBike 3s ease-in-out infinite;
}

.loading-progress {
    width: 300px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    width: 0;
    border-radius: 2px;
    animation: progressLoad 3s ease-out;
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: textPulse 2s ease-in-out infinite;
}

.speed-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.speed-particles .particle {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--cg-red), transparent);
    animation: speedParticle 2s linear infinite;
}

.speed-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.speed-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -0.5s;
}

.speed-particles .particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: -1s;
}

.speed-particles .particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: -1.5s;
}

.speed-particles .particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: -0.8s;
}

/* Animated Background */
.products-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.03;
    animation: meshRotate 20s linear infinite;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    animation: shapeFloat 15s ease-in-out infinite;
}

.hexagon {
    width: 60px;
    height: 60px;
    background: var(--gradient-metallic);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid var(--gray-200);
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.circle {
    width: 40px;
    height: 40px;
    background: var(--gradient-electric);
    border-radius: 50%;
    top: 40%;
    left: 80%;
    animation-delay: -10s;
}

.diamond {
    width: 30px;
    height: 30px;
    background: var(--gradient-secondary);
    transform: rotate(45deg);
    top: 80%;
    left: 20%;
    animation-delay: -7s;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(37, 60, 128, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 60, 128, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.scanning-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cg-red), transparent);
    animation: scanLine 4s ease-in-out infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gray-300);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-svg {
    width: 160px;
    height: 45px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo-svg:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--transition-normal);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark-cornflower-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cg-red);
    transition: width var(--transition-normal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-now-btn {
    background: var(--dark-cornflower-blue);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.book-now-btn::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 var(--transition-slow);
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: var(--cg-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.location-selector:hover {
    border-color: var(--dark-cornflower-blue);
    color: var(--dark-cornflower-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--cg-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--cg-red);
}

/* Hero Section */
.products-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.hero-showcase {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.showcase-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(37, 60, 128, 0.8) 0%,
        rgba(220, 66, 38, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.slide-overlay.electric {
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.8) 0%,
        rgba(5, 150, 105, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 3;
    color: var(--white);
    max-width: 600px;
}

.vehicle-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

.vehicle-badge.electric {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.vehicle-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleReveal 1s ease-out 0.5s both;
}

.vehicle-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: descReveal 1s ease-out 0.8s both;
}

.vehicle-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    animation: statCount 1s ease-out 1.2s both;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 4;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--cg-red);
    border-color: var(--cg-red);
    transform: scale(1.1);
}

.showcase-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.dot.active::after {
    opacity: 0.5;
    transform: scale(1);
}

/* Hero Typography */
.hero-typography {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.typography-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    perspective: 1000px;
}

.letter {
    display: inline-block;
    animation: letterReveal 0.1s ease-out both;
    transform-origin: center bottom;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.15s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.25s; }
.letter:nth-child(5) { animation-delay: 0.3s; }
.letter:nth-child(6) { animation-delay: 0.35s; }
.letter:nth-child(7) { animation-delay: 0.4s; }
.letter:nth-child(8) { animation-delay: 0.45s; }
.letter:nth-child(9) { animation-delay: 0.5s; }
.letter:nth-child(10) { animation-delay: 0.55s; }
.letter:nth-child(11) { animation-delay: 0.6s; }
.letter:nth-child(12) { animation-delay: 0.65s; }
.letter:nth-child(13) { animation-delay: 0.7s; }
.letter:nth-child(14) { animation-delay: 0.75s; }
.letter:nth-child(15) { animation-delay: 0.8s; }
.letter:nth-child(16) { animation-delay: 0.85s; }
.letter:nth-child(17) { animation-delay: 0.9s; }
.letter:nth-child(18) { animation-delay: 0.95s; }
.letter:nth-child(19) { animation-delay: 1s; }

.space {
    width: 0.5em;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: subtitleSlide 1s ease-out 1.2s both;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.filter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
}

.results-counter {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--border-radius-lg);
}

.filter-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-spring);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    overflow: hidden;
}

.filter-btn.active {
    background: var(--white);
    color: var(--cg-red);
    box-shadow: var(--shadow-md);
}

.btn-morphing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.filter-btn:hover .btn-morphing-bg {
    opacity: 0.1;
}

.btn-icon {
    font-size: 16px;
    transition: transform var(--transition-spring);
}

.filter-btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.view-btn.active {
    background: var(--cg-red);
    color: var(--white);
    border-color: var(--cg-red);
}

.view-btn:hover {
    border-color: var(--cg-red);
    color: var(--cg-red);
    transform: scale(1.05);
}

/* Products Grid */
.products-main {
    padding: 80px 0;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg);
    box-shadow: var(--shadow-3d);
    z-index: 10;
}

.card-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: transparent;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.image-overlay {
    display: none;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge.new {
    background: var(--gradient-secondary);
    color: var(--white);
    animation: newBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(220, 66, 38, 0.5);
}

.badge.ev {
    background: var(--gradient-electric);
    color: var(--white);
}

.badge.popular {
    background: rgba(255, 193, 7, 0.9);
    color: var(--gray-900);
}

.card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-normal);
}

.product-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    background: var(--white);
    color: var(--cg-red);
    transform: scale(1.1) rotate(5deg);
}

.action-btn.wishlist.active {
    background: var(--cg-red);
    color: var(--white);
    animation: heartBeat 0.6s ease;
}

.card-content {
    padding: 25px;
    position: relative;
}

.vehicle-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
    transition: color var(--transition-normal);
}

.product-card:hover .vehicle-name {
    color: var(--cg-red);
}

.price-range {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cg-red);
    margin-bottom: 15px;
}

.key-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-size: 11px;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.product-card:hover .feature-tag {
    background: var(--gray-200);
    color: var(--gray-700);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view-details-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.available {
    background: #10b981;
}

.status-indicator.limited {
    background: #f59e0b;
}

.status-indicator.coming-soon {
    background: var(--gray-400);
}

/* Specifications Preview */
.specs-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    z-index: 4;
}

.product-card:hover .specs-preview {
    transform: translateY(0);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

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

.spec-value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.spec-label {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* EV Spotlight Section */
.ev-spotlight {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.spotlight-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.spotlight-header {
    margin-bottom: 60px;
}

.electric-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-electric);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: electricGlow 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.spotlight-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotlight-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: circuitFlow 4s ease-in-out infinite;
}

.line.horizontal {
    height: 2px;
    width: 200px;
}

.line.vertical {
    width: 2px;
    height: 200px;
}

.line-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.line-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.line-3 {
    top: 10%;
    right: 20%;
    animation-delay: -1s;
}

.line-4 {
    bottom: 10%;
    left: 20%;
    animation-delay: -3s;
}

.circuit-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 15%;
}

.node-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: -0.5s;
}

.node-3 {
    top: 15%;
    right: 25%;
    animation-delay: -1s;
}

.node-4 {
    bottom: 15%;
    left: 25%;
    animation-delay: -1.5s;
}

.electric-current {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: currentFlow 6s ease-in-out infinite;
}

.ev-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    max-width: 200px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: featureIconFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: -1s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: -2s;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    opacity: 0.8;
    font-size: 14px;
}

/* Comparison Section */
.comparison-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.comparison-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.comparison-tool {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.comparison-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-slot {
    height: 200px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.comparison-slot.empty {
    cursor: pointer;
}

.comparison-slot.empty:hover {
    border-color: var(--cg-red);
    background: rgba(220, 66, 38, 0.05);
}

.slot-placeholder {
    text-align: center;
    color: var(--gray-500);
}

.slot-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.compare-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.compare-btn.disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
}

.compare-btn:not(.disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Coming Soon Overlay Styles */
.coming-soon-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.coming-soon-wrapper {
    position: relative;
    overflow: hidden;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeInOverlay 0.6s ease-out;
}

.coming-soon-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.coming-soon-icon {
    position: relative;
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cg-red), #ff6b35);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.coming-soon-icon .icon-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--cg-red), #ff6b35);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.coming-soon-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--cg-red), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.coming-soon-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-700);
    animation: slideInLeft 0.6s ease-out;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.1s;
}

.highlight-item:nth-child(3) {
    animation-delay: 0.2s;
}

.highlight-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.notify-btn {
    position: relative;
    background: linear-gradient(135deg, var(--cg-red), #ff6b35);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    margin: 0 auto;
    min-width: 220px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(220, 66, 38, 0.3);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Blurred Background Elements */
.comparison-slots.blurred,
.compare-btn.blurred {
    filter: blur(3px);
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(220, 66, 38, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(220, 66, 38, 0.6);
    }
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--cg-red);
    color: var(--cg-red);
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: var(--cg-red);
    color: var(--white);
    transform: scale(1.05);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-normal);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.load-more-btn.loading .btn-content {
    opacity: 0;
}

.load-more-btn.loading .loading-spinner {
    opacity: 1;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 1000px;
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    transition: transform var(--transition-spring);
}

.quick-view-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--cg-red);
    transform: scale(1.1);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.modal-image {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.modal-image:hover img {
    transform: scale(1.1);
}

.image-zoom-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-image:hover .image-zoom-indicator {
    opacity: 1;
}

.modal-details {
    padding: 40px;
    overflow-y: auto;
}

.vehicle-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
}

.vehicle-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.price-range {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cg-red);
}

.specifications-accordion {
    margin-bottom: 30px;
}

.spec-section {
    border-bottom: 1px solid var(--gray-200);
}

.spec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.spec-header:hover {
    color: var(--cg-red);
}

.spec-header h4 {
    font-weight: 600;
    font-size: 1.1rem;
}

.spec-header i {
    transition: transform var(--transition-normal);
}

.spec-section.active .spec-header i {
    transform: rotate(180deg);
}

.spec-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 0;
}

.spec-section.active .spec-content {
    max-height: 300px;
    padding: 0 0 20px 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-actions .action-btn {
    flex: 1;
    min-width: 120px;
    height: 50px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-actions .action-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.modal-actions .action-btn.secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.modal-actions .action-btn.tertiary {
    background: transparent;
    color: var(--cg-red);
    border: 1px solid var(--cg-red);
}

.modal-actions .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Wishlist Notification */
.wishlist-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10001;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all var(--transition-spring);
}

.wishlist-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.heart-burst {
    position: relative;
    width: 30px;
    height: 30px;
}

.heart-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--cg-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.heart-particle:nth-child(1) {
    animation: heartBurst1 0.6s ease-out;
}

.heart-particle:nth-child(2) {
    animation: heartBurst2 0.6s ease-out;
}

.heart-particle:nth-child(3) {
    animation: heartBurst3 0.6s ease-out;
}

.heart-particle:nth-child(4) {
    animation: heartBurst4 0.6s ease-out;
}

.notification-text {
    font-weight: 600;
    color: var(--gray-800);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 60, 128, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 35px 35px, 35px 35px;
    background-position: 0 0, 20px 20px, 0 0, 0 0;
    animation: patternMove 80s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-70px, -70px);
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cg-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cg-red);
    border-radius: 1px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    color: var(--white);
    background: var(--cg-red);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 66, 38, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cg-red);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 16px 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--cg-red);
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification.success .notification-icon {
    color: #10b981;
}

.notification.error .notification-icon {
    color: var(--cg-red);
}

.notification-text {
    font-weight: 500;
    color: var(--gray-800);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-image {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.skeleton-text {
    height: 20px;
    margin: 10px 0;
    border-radius: var(--border-radius);
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

/* Animations */
@keyframes drawBike {
    0% {
        stroke-dashoffset: 300;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -300;
    }
}

@keyframes progressLoad {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

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

@keyframes speedParticle {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 50px));
        opacity: 0;
    }
}

@keyframes meshRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
    }
}

@keyframes scanLine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 66, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 66, 38, 0.6);
    }
}

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

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

@keyframes statCount {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes letterReveal {
    from {
        opacity: 0;
        transform: rotateX(90deg) translateY(20px);
    }
    to {
        opacity: 1;
        transform: rotateX(0) translateY(0);
    }
}

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

@keyframes newBadgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 66, 38, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 66, 38, 0.8);
        transform: scale(1.05);
    }
}

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

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

@keyframes electricGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(16, 185, 129, 0.6);
    }
}

@keyframes circuitFlow {
    0%, 100% {
        opacity: 0.3;
        background: linear-gradient(90deg, transparent, #10b981, transparent);
    }
    50% {
        opacity: 1;
        background: linear-gradient(90deg, transparent, #34d399, transparent);
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(16, 185, 129, 1);
    }
}

@keyframes currentFlow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

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

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

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

@keyframes heartBurst1 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -80%) scale(1);
        opacity: 0;
    }
}

@keyframes heartBurst2 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-20%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes heartBurst3 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -20%) scale(1);
        opacity: 0;
    }
}

@keyframes heartBurst4 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-80%, -50%) scale(1);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

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

    .vehicle-title {
        font-size: 3rem;
    }

    .comparison-slots {
        grid-template-columns: 1fr;
    }

    .ev-features {
        flex-direction: column;
        gap: 40px;
    }
}

/* Enhanced Mobile Responsive Design - Tablet */
@media (max-width: 1024px) {
    .products-hero {
        height: 85vh;
    }

    .showcase-slider {
        border-radius: 16px;
    }

    .slide-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .vehicle-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .vehicle-desc {
        font-size: 1rem;
        margin: 15px 0 20px;
    }

    .vehicle-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }

    .product-card {
        min-height: 350px;
    }
}

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet and larger mobile styles */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        display: block !important;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-700);
        text-decoration: none;
        transition: all var(--transition-normal);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--cg-red);
        background: rgba(220, 66, 38, 0.05);
        padding-left: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .header-actions .location-selector,
    .header-actions .sound-toggle {
        display: none;
    }
}

/* Enhanced Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Enhanced Typography for Tablets */
    .section-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 18px !important;
    }

    .section-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 35px !important;
    }

    .card-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .card-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Enhanced Button Responsiveness */
    .btn {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Enhanced Card Responsiveness */
    .product-card {
        min-height: 400px !important;
        padding: 25px !important;
    }

    .product-card:hover {
        transform: translateY(-8px) !important;
    }
}

/* Enhanced Mobile Responsive Design - Mobile */
@media (max-width: 768px) {
    body {
        cursor: auto !important;
    }

    /* Enhanced Typography Responsiveness */
    .section-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
    }

    /* Enhanced Card Text Responsiveness */
    .card-title {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .card-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Enhanced Button Text Responsiveness */
    .btn {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        min-width: 44px !important;
    }

    .header {
        padding: 12px 0;
        backdrop-filter: blur(20px);
    }

    .header-content {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .book-now-btn {
        display: none;
    }

    .location-selector {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    /* Enhanced Hero Section for Mobile */
    .products-hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }

    .hero-showcase {
        border-radius: 12px;
        margin: 8px;
    }

    .showcase-slider {
        border-radius: 12px;
    }

    .slide-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 12px;
        backdrop-filter: blur(15px);
        max-width: none;
    }

    .vehicle-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .vehicle-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .vehicle-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
        opacity: 0.9;
        line-height: 1.4;
    }

    .vehicle-stats {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat {
        min-width: 70px;
        text-align: center;
    }

    .stat-value {
        font-size: 1.2rem;
        font-weight: 800;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Enhanced Navigation Controls */
    .showcase-navigation {
        bottom: 10px;
        padding: 0 15px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .showcase-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Enhanced Hero Typography */
    .hero-typography {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
        font-weight: 800;
        letter-spacing: -0.02em;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.3em;
    }

    .hero-title .word {
        display: inline-block;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Enhanced Filter Section */
    .filter-section {
        padding: 25px 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 0 20px;
    }

    .filter-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .filter-header h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0;
        color: var(--gray-800);
    }

    .results-counter {
        font-size: 0.9rem;
        font-weight: 500;
        padding: 8px 16px;
        background: var(--gray-100);
        border-radius: 20px;
        color: var(--gray-600);
    }

    .filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0;
        background: transparent;
    }

    .filter-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        min-width: auto;
        flex: none;
        max-width: none;
        border-radius: 12px;
        background: var(--gray-100);
        color: var(--gray-700);
        border: 2px solid transparent;
        transition: all var(--transition-normal);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .filter-btn.active {
        background: var(--cg-red);
        color: var(--white);
        border-color: var(--cg-red);
        box-shadow: 0 4px 12px rgba(220, 66, 38, 0.3);
    }

    .filter-btn:hover {
        background: var(--gray-200);
        transform: translateY(-2px);
    }

    .filter-btn.active:hover {
        background: var(--cg-red);
        transform: translateY(-2px);
    }

    .view-options {
        justify-content: center;
        margin-top: 15px;
        gap: 12px;
    }

    .view-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid var(--gray-300);
        background: var(--white);
        color: var(--gray-500);
        transition: all var(--transition-normal);
    }

    .view-btn.active {
        background: var(--cg-red);
        color: var(--white);
        border-color: var(--cg-red);
    }

    .view-btn:hover {
        border-color: var(--cg-red);
        color: var(--cg-red);
        transform: scale(1.05);
    }

    /* Enhanced Product Grid */
    .products-main {
        padding: 40px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .product-card {
        min-height: 360px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .card-image-container {
        height: 220px;
    }

    .card-content {
        padding: 15px;
    }

    .vehicle-name {
        font-size: 1.2rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .price-range {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .key-features {
        gap: 6px;
        margin-bottom: 12px;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .view-details-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
    }

    .availability-status {
        justify-content: center;
        font-size: 0.8rem;
    }

    /* Enhanced Modal for Mobile */
    .quick-view-modal .modal-container {
        width: 95%;
        max-width: none;
        margin: 10px;
        border-radius: 12px;
    }

    .modal-content {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-image {
        height: 280px;
        border-radius: 12px 12px 0 0;
    }

    .modal-details {
        padding: 20px 15px;
    }

    .vehicle-header h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .price-range {
        font-size: 1.1rem;
    }

    .specifications-accordion {
        margin-bottom: 20px;
    }

    .spec-header {
        padding: 15px 0;
    }

    .spec-header h4 {
        font-size: 1rem;
    }

    .spec-content {
        font-size: 0.9rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-actions .action-btn {
        height: 45px;
        font-size: 0.9rem;
    }

    /* Enhanced EV Spotlight Section */
    .ev-spotlight {
        padding: 50px 0;
    }

    .spotlight-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .electric-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .spotlight-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .spotlight-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .ev-features {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .feature-item {
        max-width: none;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    /* Enhanced Comparison Section */
    .comparison-section {
        padding: 40px 0;
    }

    .comparison-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .comparison-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .comparison-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .comparison-tool {
        margin: 0 15px;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .comparison-slots {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .comparison-slot {
        height: 150px;
        border-radius: 12px;
    }

    .compare-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Enhanced Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 20px 15px;
        margin-bottom: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-section {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 0.85rem;
        padding: 3px 0;
        display: block;
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding: 15px;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Enhanced Mobile Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Enhanced Typography for Small Mobile */
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
    }

    .card-title {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .card-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Enhanced Button Responsiveness */
    .btn {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
    }

    /* Enhanced Card Responsiveness */
    .product-card {
        min-height: 360px !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .product-card:hover {
        transform: translateY(-5px) !important;
    }

    /* Enhanced Header for Small Mobile */
    .header {
        padding: 10px 0;
    }

    .header-content {
        padding: 0 15px;
    }

    .logo-svg {
        width: 120px;
        height: 35px;
    }

    .location-selector {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .location-selector span {
        display: none;
    }

    /* Enhanced Hero Section for Small Mobile */
    .products-hero {
        height: 65vh;
        min-height: 450px;
        margin-top: 65px;
    }

    .hero-showcase {
        margin: 6px;
        border-radius: 8px;
    }

    .showcase-slider {
        border-radius: 8px;
    }

    .slide-content {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px;
        border-radius: 8px;
    }

    .vehicle-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .vehicle-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 5px;
    }

    .vehicle-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .vehicle-stats {
        gap: 10px;
        justify-content: space-around;
    }

    .stat {
        min-width: 65px;
    }

    .stat-value {
        font-size: 1.1rem;
        font-weight: 800;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Enhanced Navigation for Small Mobile */
    .showcase-navigation {
        bottom: 8px;
        padding: 0 12px;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .showcase-dots {
        gap: 5px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    /* Enhanced Typography for Small Mobile */
    .hero-typography {
        padding: 35px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 14px;
        font-weight: 800;
        letter-spacing: -0.01em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.25em;
    }

    .hero-title .word {
        display: inline-block;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Enhanced Filter Section for Small Mobile */
    .filter-section {
        padding: 20px 0;
    }

    .filter-controls {
        padding: 0 15px;
        margin-bottom: 25px;
        gap: 18px;
    }

    .filter-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .results-counter {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 6px 12px;
    }

    .filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }

    .filter-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 10px;
        max-width: none;
        flex: none;
    }

    .view-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    /* Enhanced Product Grid for Small Mobile */
    .products-main {
        padding: 30px 0;
    }

    .products-grid {
        padding: 0 12px;
        gap: 12px;
    }

    .product-card {
        min-height: 340px;
        padding: 12px;
        border-radius: 10px;
    }

    .card-image-container {
        height: 200px;
    }

    .card-content {
        padding: 12px;
    }

    .vehicle-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .price-range {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .key-features {
        gap: 5px;
        margin-bottom: 10px;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .card-footer {
        gap: 8px;
    }

    .view-details-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .availability-status {
        font-size: 0.75rem;
    }

    /* Enhanced Modal for Small Mobile */
    .quick-view-modal .modal-container {
        width: 98%;
        margin: 5px;
        border-radius: 10px;
    }

    .modal-content {
        max-height: 95vh;
        border-radius: 10px;
    }

    .modal-image {
        height: 260px;
        border-radius: 10px 10px 0 0;
    }

    .modal-details {
        padding: 15px 12px;
    }

    .vehicle-header h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .price-range {
        font-size: 1rem;
    }

    .specifications-accordion {
        margin-bottom: 15px;
    }

    .spec-header {
        padding: 12px 0;
    }

    .spec-header h4 {
        font-size: 0.95rem;
    }

    .spec-content {
        font-size: 0.85rem;
    }

    .modal-actions {
        gap: 8px;
    }

    .modal-actions .action-btn {
        height: 40px;
        font-size: 0.85rem;
    }

    /* Enhanced EV Spotlight Section for Small Mobile */
    .ev-spotlight {
        padding: 40px 0;
    }

    .spotlight-header {
        margin-bottom: 25px;
        padding: 0 12px;
    }

    .electric-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .spotlight-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .spotlight-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .ev-features {
        gap: 20px;
        padding: 0 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    /* Enhanced Comparison Section for Small Mobile */
    .comparison-section {
        padding: 30px 0;
    }

    .comparison-header {
        margin-bottom: 25px;
        padding: 0 12px;
    }

    .comparison-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .comparison-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .comparison-tool {
        margin: 0 12px;
        padding: 15px 12px;
        border-radius: 10px;
    }

    .comparison-slots {
        gap: 12px;
        margin-bottom: 15px;
    }

    .comparison-slot {
        height: 130px;
        border-radius: 10px;
    }

    .compare-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    /* Coming Soon Responsive Adjustments */
    .coming-soon-content {
        padding: 20px 12px;
    }

    .coming-soon-content h3 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .coming-soon-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .coming-soon-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .feature-highlights {
        gap: 6px;
        margin-bottom: 15px;
    }

    .highlight-item {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .notify-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 160px;
        width: 100%;
    }

    /* Enhanced Footer for Small Mobile */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        padding: 15px 12px;
        margin-bottom: 15px;
        gap: 15px;
    }

    .footer-section {
        padding: 12px 0;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 0.8rem;
        padding: 2px 0;
        margin-bottom: 4px;
    }

    .footer-bottom {
        padding: 12px;
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Touch-friendly improvements */
    .btn, .filter-btn, .nav-btn, .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    .mobile-menu-toggle {
        z-index: 10000;
        position: relative;
    }

    /* Text selection improvements */
    .vehicle-title, .vehicle-name, .modal-title {
        user-select: none;
        -webkit-user-select: none;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* iOS Safari fixes */
    .products-hero {
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }

    /* Enhanced Load More Button */
    .load-more-section {
        margin-top: 40px;
        padding: 0 12px;
    }

    .load-more-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
    }
}

/* Ultra-small screens optimization */
@media (max-width: 360px) {
    /* Enhanced Typography for Ultra-Small Screens */
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .card-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }

    .card-description {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    /* Enhanced Button Responsiveness */
    .btn {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 10px 14px !important;
    }

    /* Enhanced Card Responsiveness */
    .product-card {
        min-height: 320px !important;
        padding: 10px !important;
        border-radius: 8px !important;
    }

    .product-card:hover {
        transform: translateY(-2px) !important;
    }

    /* Ultra-small hero adjustments */
    .products-hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 60px;
    }

    .hero-showcase {
        margin: 4px;
        border-radius: 6px;
    }

    .slide-content {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
        border-radius: 6px;
    }

    .vehicle-title {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .vehicle-desc {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .hero-typography {
        padding: 30px 12px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
        font-weight: 800;
        letter-spacing: -0.01em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.2em;
    }

    .hero-title .word {
        display: inline-block;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Ultra-small filter adjustments */
    .filter-section {
        padding: 18px 0;
    }

    .filter-controls {
        padding: 0 12px;
        gap: 15px;
    }

    .filter-header h3 {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .results-counter {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 8px;
        max-width: none;
    }

    .view-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    /* Ultra-small product grid */
    .products-grid {
        padding: 0 10px;
        gap: 10px;
    }

    .product-card {
        min-height: 320px;
        padding: 10px;
        border-radius: 8px;
    }

    .card-image-container {
        height: 180px;
    }

    .card-content {
        padding: 10px;
    }

    .vehicle-name {
        font-size: 1rem;
        line-height: 1.1;
    }

    .price-range {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 0.65rem;
        padding: 2px 5px;
    }

    .view-details-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 5px;
    }

    /* Ultra-small modal */
    .quick-view-modal .modal-container {
        width: 99%;
        margin: 2px;
        border-radius: 8px;
    }

    .modal-image {
        height: 240px;
        border-radius: 8px 8px 0 0;
    }

    .modal-details {
        padding: 12px 10px;
    }

    .vehicle-header h3 {
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .modal-actions .action-btn {
        height: 38px;
        font-size: 0.8rem;
    }

    /* Ultra-small sections */
    .ev-spotlight {
        padding: 30px 0;
    }

    .spotlight-header h2 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .spotlight-header p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .feature-item h4 {
        font-size: 0.95rem;
    }

    .feature-item p {
        font-size: 0.75rem;
    }

    /* Ultra-small comparison */
    .comparison-section {
        padding: 25px 0;
    }

    .comparison-header h2 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .comparison-header p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .comparison-slot {
        height: 110px;
        border-radius: 8px;
    }

    .compare-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    /* Ultra-small coming soon */
    .coming-soon-content h3 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .coming-soon-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .coming-soon-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .highlight-item {
        font-size: 0.7rem;
        padding: 4px 6px;
    }

    .notify-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        min-width: 140px;
    }

    /* Ultra-small footer */
    .footer {
        padding: 25px 0 12px;
    }

    .footer-content {
        padding: 12px 10px;
        gap: 12px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 0.75rem;
        padding: 2px 0;
        margin-bottom: 3px;
    }

    .footer-bottom {
        padding: 10px;
        gap: 6px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Ultra-small navigation */
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    /* Ultra-small load more */
    .load-more-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
}

/* Enhanced Mobile Touch Interactions */
@media (max-width: 768px) {
    /* Better text wrapping and spacing */
    .product-description,
    .modal-description,
    .card-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Enhanced line height for better readability */
    p, .description, .subtitle {
        line-height: 1.6 !important;
    }

    /* Better spacing for mobile */
    .section-header {
        margin-bottom: 30px !important;
    }

    .section-header h2 {
        margin-bottom: 10px !important;
    }

    .section-header p {
        margin-bottom: 0 !important;
    }

    /* Enhanced touch interactions */
    .product-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .filter-btn:active,
    .view-btn:active,
    .nav-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    /* Improved filter button touch targets */
    .filter-btn {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .view-btn {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Better spacing for touch devices */
    .filter-controls {
        padding: 0 20px;
    }

    .filter-buttons {
        margin: 0 -5px;
    }

    .filter-btn {
        margin: 0 5px;
    }

    /* Improved button feedback */
    .btn:active,
    .view-details-btn:active,
    .action-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    /* Better scroll behavior */
    .products-grid {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .modal-content {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Enhanced focus states for accessibility */
    .filter-btn:focus,
    .view-btn:focus,
    .nav-btn:focus,
    .btn:focus {
        outline: 2px solid var(--cg-red);
        outline-offset: 2px;
    }

    /* Improved card hover states for touch devices */
    .product-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Better image loading and clarity */
    .card-image {
        transition: opacity 0.3s ease;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .card-image[loading="lazy"] {
        opacity: 0.8;
    }

    .card-image[loading="lazy"].loaded {
        opacity: 1;
    }

    /* Mobile-specific image optimizations for crystal clear quality */
    .slide-background img,
    .card-image,
    .modal-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Force hardware acceleration for better image rendering */
    .card-image-container,
    .modal-image,
    .slide-background {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Enhanced modal interactions */
    .modal-backdrop {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .modal-close:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }

    /* Better form interactions */
    input, select, textarea {
        -webkit-appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Enhanced loading states */
    .load-more-btn.loading {
        pointer-events: none;
        opacity: 0.7;
    }

    /* Better notification positioning */
    .notification {
        right: 15px;
        left: 15px;
        transform: translateY(-100px);
        max-width: none;
    }

    .notification.show {
        transform: translateY(0);
    }

    /* Improved wishlist notification */
    .wishlist-notification {
        left: 15px;
        right: 15px;
        transform: translateY(-100px) scale(0.9);
        max-width: none;
    }

    .wishlist-notification.show {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    /* Even better text wrapping for small screens */
    .product-description,
    .modal-description,
    .card-description {
        line-height: 1.5 !important;
        word-spacing: 0.1em !important;
    }

    /* Better spacing for small mobile */
    .section-header {
        margin-bottom: 25px !important;
    }

    .section-header h2 {
        margin-bottom: 8px !important;
    }
}

@media (max-width: 360px) {
    /* Optimized text for ultra-small screens */
    .product-description,
    .modal-description,
    .card-description {
        line-height: 1.4 !important;
        word-spacing: 0.05em !important;
    }

    /* Minimal spacing for ultra-small screens */
    .section-header {
        margin-bottom: 20px !important;
    }

    .section-header h2 {
        margin-bottom: 6px !important;
    }
}

/* Performance Optimizations */
.product-card,
.feature-card,
.floating-shapes,
.shape {
    will-change: transform;
    transform: translateZ(0);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gray-100: #ffffff;
        --gray-200: #e0e0e0;
        --gray-300: #c0c0c0;
        --gray-600: #404040;
        --gray-700: #202020;
        --gray-800: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}
