/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-color: #fa4515;
    --white-color: #ffffff;
    --dark-color: #1a1a1a;
    --gray-color: #666666;
    --light-gray: #f5f5f5;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glow-shadow: 0 0 20px rgba(250, 69, 21, 0.3);
}

/* Attractive Auto Parts Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(250, 69, 21, 0.1) 0%, transparent 70%);
}

.loader-content {
    text-align: center;
    color: var(--white-color);
    z-index: 2;
}

.loader-logo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white-color);
}

.parts-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

.rotating-part {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(250, 69, 21, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateGlow 2s linear infinite;
}

.rotating-part i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: counterRotate 2s linear infinite;
}

.part-gear {
    animation-delay: 0s;
}

.part-wrench {
    animation-delay: 0.3s;
}

.part-bolt {
    animation-delay: 0.6s;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px rgba(250, 69, 21, 0.3);
        border-color: rgba(250, 69, 21, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(250, 69, 21, 0.6);
        border-color: rgba(250, 69, 21, 0.8);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px rgba(250, 69, 21, 0.3);
        border-color: rgba(250, 69, 21, 0.3);
    }
}

@keyframes counterRotate {
    0% {
        transform: rotate(0deg);
        text-shadow: 0 0 10px rgba(250, 69, 21, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(250, 69, 21, 0.8);
    }
    100% {
        transform: rotate(-360deg);
        text-shadow: 0 0 10px rgba(250, 69, 21, 0.5);
    }
}

.loading-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Page Skeleton Loader (Remove) */
.page-skeleton {
    display: none;
}

.page-skeleton.hidden {
    opacity: 0;
    pointer-events: none;
}

.skeleton-header {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-bottom: 2rem;
}

.skeleton-hero {
    height: 400px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin: 0 2rem 2rem 2rem;
    border-radius: var(--border-radius);
}

.skeleton-section {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin: 0 2rem 2rem 2rem;
    border-radius: var(--border-radius);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--primary-color);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.navbar {
    /* padding: 1rem 0; */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1348px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
} */

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 60px;   /* adjust logo height */
  width: auto;        /* keeps aspect ratio */
  height: auto;
  max-width: 100%;    /* makes it responsive */
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-link-d {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
.nav-link-d:hover {
    color: var(--primary-color);
}

.nav-link-d::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link-d:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
/* Hero Section - Fixed Design */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.hero-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero content positioning fix */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0;
}/* Hero content layout */
.hero-content {
  display: flex;
  align-items: center;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

/* Right-aligned search container */
.hero-search-right {
  width: 424px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  /* padding: 1.5rem; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-right-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-right-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Compact search input */
.search-input-container.compact-search {
  margin-bottom: 0;
}

.compact-search .search-input {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.compact-suggestions {
  max-height: 160px;
  font-size: 0.9rem;
}

.search-right-btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
}



.search-animated-wrapper {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #9ca3af; /* matches placeholder gray */
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hide placeholder when typing or focusing */
.search-animated-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

#search-animated-word {
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
  white-space: nowrap;
}

/* Keep input full width — no left padding so cursor starts at left */
.search-input-container.compact-search .search-input {
  padding-left: 1rem;
}


.search-examples {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-color);
}

.example-tag {
  background: rgba(250, 69, 21, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin: 0 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.example-tag:hover {
  background: var(--primary-color);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    
  .hero-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-search-right {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
     .hero {
    min-height: 70vh;
  }
  .hero-search-right {
    padding: 1rem;
  }
  
  .search-right-title {
    font-size: 1.3rem;
  }
}

/* Button hover effects */
.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(250, 69, 21, 0.4);
}

/* Animation for gradient overlay */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background: linear-gradient(
    -45deg, 
    rgba(0, 0, 0, 0.6), 
    rgba(0, 0, 0, 0.4), 
    rgba(0, 0, 0, 0.6)
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.floating-parts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.part {
    position: absolute;
    color: rgba(250, 69, 21, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.part-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.part-2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.part-3 {
    top: 40%;
    left: 80%;
    animation-delay: -4s;
}

.part-4 {
    top: 80%;
    left: 30%;
    animation-delay: -1s;
}

.part-5 {
    top: 30%;
    left: 50%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

/* Offers Section */
.offers-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.offer-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.offer-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.offer-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.offers-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.offer-card {
    min-width: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
}

.offer-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.offer-image {
    font-size: 4rem;
    opacity: 0.7;
}

/* Search Section */
.search-section {
    padding: 5rem 0;
    background: var(--white-color);
}

/* Modern Search Section */
.quick-search-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.quick-search-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(250, 69, 21, 0.1);
}

.search-input-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: #fafafa;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.search-input-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
}

.search-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
}

.quick-search {
    display: none;
}



.search-input.modern-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--dark-color);
    outline: none;
    font-weight: 500;
}

.search-input.modern-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
}

.voice-search-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.voice-search-btn:hover {
    background: rgba(250, 69, 21, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.quick-search-btn.modern-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.quick-search-btn.modern-btn:hover {
    background: #e83e0f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 69, 21, 0.4);
}

.add-garage-btn.modern-btn.secondary {
    background: #2c5aa0;
    color: var(--white-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    justify-content: center;
}

.add-garage-btn.modern-btn.secondary:hover {
    background: #1e4080;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.4);
}

.search-btn {
    right: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 8px;
}

.voice-search-btn {
    right: 60px;
}

.voice-search-btn:hover,
.search-btn:hover {
    color: var(--primary-color);
}

.add-garage-btn {
    background: #2c5aa0;
    color: var(--white-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-garage-btn:hover {
    background: #1e4080;
    transform: translateY(-2px);
}

/* Vehicle Search Form */
.vehicle-search-form {
    background: var(--white-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    border: 1px solid rgba(250, 69, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.vehicle-search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b3d);
}

.search-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.search-form-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.search-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-kit-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-kit-btn.modern-btn {
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: var(--white-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
}

.service-kit-btn.modern-btn.active,
.service-kit-btn.modern-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 69, 21, 0.3);
}

.oem-catalog-btn.modern-btn.primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(250, 69, 21, 0.3);
}

.oem-catalog-btn.modern-btn.primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 69, 21, 0.4);
    background: linear-gradient(135deg, #e83e0f, #ff5722);
}

.search-form-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.custom-select {
    position: relative;
}

.form-select.modern-select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    font-weight: 500;
}

.form-select.modern-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23fa4515" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
}

.search-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-kit-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.service-kit-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: var(--white-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.service-kit-btn.active,
.service-kit-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Search Results */
.search-results {
    margin-top: 3rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.results-count {
    color: var(--gray-color);
}

.results-count .count {
    font-weight: 700;
    color: var(--primary-color);
}

/* Skeleton Loader */
.skeleton-loader {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.skeleton-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.skeleton-image {
    width: 100px;
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-content {
    flex: 1;
}

.skeleton-title {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text {
    height: 15px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-price {
    height: 18px;
    width: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Part Views */
.view-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.view-btn {
    padding: 1rem 2rem;
    border: 2px solid #e0e0e0;
    background: var(--white-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.part-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.part-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 69, 21, 0.1), transparent);
    transition: left 0.5s;
}

.part-card:hover::before {
    left: 100%;
}

/* Workflow Section */
.workflow-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.workflow-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-shadow);
}

.animated-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    transition: var(--transition);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-image {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-part {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.floating-part[data-float="1"] {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-part[data-float="2"] {
    top: 60%;
    right: 20%;
    animation-delay: -1.5s;
}

.floating-part[data-float="3"] {
    bottom: 20%;
    left: 50%;
    animation-delay: -3s;
}

.about-stats {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--gray-color);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(250, 69, 21, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 69, 21, 0.4);
}

.cookie-reject {
    background: transparent;
    color: var(--gray-color);
    border: 2px solid #e0e0e0;
}

.cookie-reject:hover {
    background: #f5f5f5;
    border-color: var(--gray-color);
    color: var(--dark-color);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* WhatsApp Support */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-support:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: var(--white-color);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.part-image {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.part-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.part-number {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.part-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.part-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: #e63e15;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

   .nav-menu {
        position: fixed;
        /* top: 80px; */
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        /* padding: 2rem 0; */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        /* padding: 1rem 0; */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        font-size: 1.2rem;
        /* padding: 1rem; */
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .offers-carousel {
        justify-content: center;
    }

    .offer-card {
        min-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .search-form-container {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-support {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .offer-card {
        min-width: 280px;
        flex-direction: column;
        text-align: center;
    }

    .quick-search {
        flex-direction: column;
    }

    .search-input-wrapper {
        max-width: 100%;
    }

    .view-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.rotate-on-scroll {
    transition: transform 0.3s ease;
}

.tilt-card {
    transform-style: preserve-3d;
}

/* CSS-only spinner */
.css-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #ff6b3d);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
    z-index: 9999;
}

/* Parallax elements */
.parallax-element {
    transform: translate3d(0, 0, 0);
}

/* Performance optimizations */
.gpu-accelerated {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Part Card Styles */
.part-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.part-image {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.part-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.part-number {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.part-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Modern Button Styles */
.modern-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 69, 21, 0.3);
}

.modern-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 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 69, 21, 0.4);
}

.modern-btn:active {
    transform: translateY(0);
}

/* Modern Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-offer {
    position: relative;
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(250, 69, 21, 0.1);
}

.modern-offer:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(250, 69, 21, 0.2);
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 69, 21, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-offer:hover .offer-overlay {
    opacity: 1;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(250, 69, 21, 0.3);
}

.modern-offer .offer-content {
    flex: 1;
}

.modern-offer .offer-badge {
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-offer .offer-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.modern-offer .offer-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modern-offer .offer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-offer .offer-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.offer-cta {
    margin-top: 2rem;
}

.offer-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 69, 21, 0.4);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-size: 1.2rem;
}

.review-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Search Modal */
/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.search-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh; /* Changed from 90% to 85vh */
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem; /* Slightly reduced padding */
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    flex-shrink: 0; /* Prevent header from shrinking */
}

.search-modal .modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.search-modal .modal-close {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    line-height: 1;
}

.search-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-modal .modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1; /* Allow body to grow and take available space */
}

/* For the specific part details modal */
#partModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    box-sizing: border-box;
}

#partModal .modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
     top: 0;
    max-height: 99vh;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#partModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: var(--white-color);
    flex-shrink: 0;
}

#partModal .modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

#partModal .modal-close {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#partModal .modal-body {
    padding: 1.2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Part Details Styles */
.part-detail-hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.part-detail-image {
    text-align: center;
    flex-shrink: 0;
}

.svg-highlight-container,
.part-detail-image svg {
    max-width: 100%;
    height: auto;
}

.part-detail-info {
    flex: 1;
}

.part-detail-info h4 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: #2d3748;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.detail-value {
    color: #2d3748;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.modern-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    color: white;
}

.primary-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .part-detail-hero {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .part-detail-image {
        width: 40%;
    }
    
    .part-detail-info {
        width: 60%;
        padding-left: 1.5rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .parts-header{
            width: 421px;
    }
}

@media (min-width: 768px) {
    #partModal .modal-header {
        padding: 1.2rem 1.5rem;
    }
    
    #partModal .modal-header h3 {
        font-size: 1.4rem;
    }
    
    #partModal .modal-body {
        padding: 1.5rem;
    }
    
    .part-detail-info h4 {
        font-size: 1.6rem;
    }
    .parts-header{
            width: auto;
    }
}

@media (max-width: 639px) {
    #partModal {
        padding: 10px;
    }
    
    #partModal .modal-container {
        max-height: 92vh;
    }
    
    .part-detail-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .parts-header{
            width: 421px;
    }
}
.loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.car-details-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.car-image-container {
    flex-shrink: 0;
}

.car-image {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 3rem;
}

.car-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.car-info p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.car-model-number {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.view-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.view-square-btn {
    background: var(--white-color);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.view-square-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 69, 21, 0.2);
}

.view-square-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.view-icon {
    font-size: 2rem;
    color: inherit;
}

.view-square-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Custom Select Styles */
.custom-select {
    position: relative;
}

.modern-select {
    appearance: none;
    background: var(--white-color);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 3rem 1rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgNkw4IDEwTDEyIDYiIHN0cm9rZT0iIzY2NjY2NiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHN2Zz4K');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.modern-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
}

.modern-input {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 69, 21, 0.1);
}

/* Search Suggestions */
/* Search suggestions styling */
.search-input-wrapper {
    position: relative;
    /* margin-bottom: 15px; */
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.search-validation {
    margin-top: 5px;
    font-size: 12px;
    min-height: 18px;
}

.validation-error {
    color: #e74c3c;
}

.validation-success {
    color: #27ae60;
}

.search-icon-btn {
    padding: 10px 12px !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Ripple Effect */
.modern-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    animation: bounce 0.3s ease;
}

/* Modal Part Cards */
.modal-part-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.modal-part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(250, 69, 21, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-parts {
    text-align: center;
    padding: 3rem;
    color: var(--gray-color);
    font-style: italic;
}

/* Selection Animation */
.selected-animation {
    animation: selectPulse 0.3s ease;
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Page Load Animations */
.page-loaded .fade-in {
    animation: fadeInStagger 0.8s ease forwards;
}

@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Parts Enhanced Animation */
.floating-parts .part {
    animation: floatEnhanced 6s ease-in-out infinite;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* Offer Section Background */
.offers-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(250,69,21,0.1)"/><circle cx="75" cy="75" r="3" fill="rgba(250,69,21,0.05)"/><circle cx="90" cy="10" r="1" fill="rgba(250,69,21,0.08)"/></svg>');
    opacity: 0.6;
}

/* Comprehensive Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .parts-animation {
        gap: 4rem;
    }
    
    .rotating-part {
        width: 100px;
        height: 100px;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .quick-search-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .search-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .search-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-kit-options {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .parts-animation {
        gap: 2rem;
    }
    
    .rotating-part {
        width: 60px;
        height: 60px;
    }
    
    .rotating-part i {
        font-size: 1.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Page Loader Mobile */
    .loader-logo h2 {
        font-size: 1.8rem;
    }
    
    .parts-animation {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .rotating-part {
        width: 50px;
        height: 50px;
    }
    
    .rotating-part i {
        font-size: 1.2rem;
    }
    
    /* Search Section Mobile */
    .quick-search-wrapper {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .search-input-container {
        width: 100%;
    }
    
    .add-garage-btn.modern-btn.secondary {
        width: 100%;
        min-width: auto;
    }
    
    .vehicle-search-form {
        padding: 1.5rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-form-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-kit-options {
        flex-direction: column;
    }
    
    .service-kit-btn.modern-btn {
        width: 100%;
        justify-content: center;
    }
    
    .oem-catalog-btn.modern-btn.primary-gradient {
        width: 100%;
        justify-content: center;
    }
    
    /* Offers Grid Mobile */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-offer {
        padding: 1.5rem;
    }
    
    /* Reviews Grid Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* Workflow Steps Mobile */
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .animated-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-width: none;
        max-height: 90%;
        margin: 2rem auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .view-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .car-details-section {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: top 0.3s ease;
        box-shadow: var(--shadow);
    }
    
   
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .parts-animation {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rotating-part {
        width: 45px;
        height: 45px;
    }
    
    .rotating-part i {
        font-size: 1rem;
    }
    
    .quick-search-wrapper {
        padding: 1rem;
    }
    
    .search-form-header h3 {
        font-size: 1.5rem;
    }
    
    .modern-offer {
        padding: 1.2rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Custom styles for search suggestions */
    .search-input-container {
        position: relative;
        width: 100%;
    }
    
    .search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        max-height: 300px;
        overflow-y: auto;
        display: none;
        margin-top: 4px;
    }
    
    .search-suggestions.show {
        display: block;
    }
    
    .suggestion-header {
        padding: 12px 16px;
        font-weight: 600;
        color: #2c3e50;
        border-bottom: 1px solid #eee;
        background-color: #f8f9fa;
    }
    
    .suggestion-item {
        padding: 12px 16px;
        cursor: pointer;
        transition: background-color 0.2s;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        align-items: center;
    }
    
    .suggestion-item:hover {
        background-color: #f0f7ff;
    }
    
    .suggestion-item:last-child {
        border-bottom: none;
    }
    
    .suggestion-icon {
        margin-right: 10px;
        color: #4299e1;
    }
    
    /* Select2 customization */
    .select2-container--default .select2-selection--single {
        height: 50px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        padding: 10px;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 28px;
        padding-left: 0;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 48px;
    }
    
    .select2-container--default.select2-container--open .select2-selection--single {
        border-color: #4299e1;
    }
    
    /* Modern input and button styles */
    .modern-input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .modern-input:focus {
        border-color: #4299e1;
        outline: none;
    }
    
    .modern-btn {
        padding: 14px 24px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .modern-btn i {
        margin-right: 8px;
    }
    
    .modern-btn.secondary {
        background-color: #e2e8f0;
        color: #4a5568;
    }
    
    .modern-btn.secondary:hover {
        background-color: #cbd5e0;
    }
    
    .modern-btn.primary-gradient {
        background: #aa2905;
        color: white;
    }
    
    .modern-btn.primary-gradient:hover {
        background: #ea4013;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
    }
    
    /* Layout styles */
    .search-form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        margin-bottom: 8px;
        font-weight: 600;
        color: #2d3748;
        display: flex;
        align-items: center;
    }
    
    .form-group label i {
        margin-right: 8px;
        color: #4299e1;
    }
    
    .quick-search-wrapper {
        display: flex;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .search-input-container {
        flex: 1;
    }
    
    /* .search-buttons {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    } */

    .search-buttons {
        display: flex;
        align-items: center;
        gap: 5px;
        
    }

    .search-icon-btn {
        padding: 11px 14px 7px 23px !important;
        border-radius: 50% !important;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-icon-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .voice-search-btn {
        background: none;
        border: none;
        color: #718096;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: background-color 0.3s;
    }
    
    .voice-search-btn:hover {
        background-color: #edf2f7;
        color: #4299e1;
    }
    
    .search-form-actions {
        display: flex;
        justify-content: center;
    }


    /* Support Button Styles */
.support-button {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(250, 69, 21, 0.9);
  padding: 15px 8px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(250, 69, 21, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.support-button:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.05);
}

.support-button span {
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
}

/* Hero Search Container */
.hero-search-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-search-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-input-container.hero-search-input {
  flex: 1;
  background: white;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  overflow: hidden;
}

.hero-search-button {
  white-space: nowrap;
  padding: 1rem 1.5rem;
}

.search-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.example-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.example-tag:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive adjustments for hero search */
@media (max-width: 768px) {
  .hero-search-wrapper {
    flex-direction: column;
  }
  
  .support-button {
    left: 10px;
    padding: 12px 6px;
  }
  
  .support-button span {
    font-size: 14px;
  }
  
  .hero-search-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .support-button {
    display: none; /* Hide on very small screens */
  }
}

/* Style for disabled selects */
.search-dropdown:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Style for loading states */
.search-dropdown option[value=""] {
    color: #999;
}

/* OEM button styles */
.oem-catalog-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.oem-catalog-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 69, 21, 0.3);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* adjust 0.6 = 60% opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* keeps text & search above overlay */
}
