/* ==================== CSS VARIABLES - ENHANCED ==================== */
:root {
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff6659;
    --secondary: #212121;
    --dark: #000000;
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-600: #6b6b6b;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-300: #e0e0e0;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 15px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 64px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1400px;
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 101;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    position: relative;
}

.promo-text {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.promo-close {
    position: absolute;
    right: 0;
    color: var(--white);
    padding: 4px 8px;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.promo-close:hover {
    opacity: 1;
}

/* ==================== HEADER - ENHANCED ==================== */
header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition);
}

header.header-scrolled {
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    min-height: 90px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-circle {
    width: 64px;
    height: 64px;
    border: 2px solid var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    flex-shrink: 0;
    transition: all var(--transition);
}

.logo:hover .logo-circle {
    background: var(--dark);
}

.logo-icon {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    transition: color var(--transition);
}

.logo:hover .logo-icon {
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-700);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.phone-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-label {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    transition: all var(--transition);
    letter-spacing: -0.5px;
}

.phone-number:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.header-icons {
    display: flex;
    gap: var(--space-lg);
}

.header-icon {
    color: var(--dark);
    transition: all var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
}

.header-icon:hover {
    background: var(--gray-100);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--dark);
    padding: 8px;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    padding: var(--space-3xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 32px;
    color: var(--dark);
    padding: 8px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.mobile-nav a {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-700);
    padding: var(--space-md) 0;
    display: block;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
    padding-left: var(--space-md);
}

.mobile-contact {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid var(--gray-200);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: 900;
    color: var(--primary);
}

/* ==================== HERO SECTION - ENHANCED ==================== */
.hero-section {
    position: relative;
    margin-bottom: 200px;
}

.slider-container {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.15);
}

.slider-arrow.prev {
    left: var(--space-2xl);
}

.slider-arrow.next {
    right: var(--space-2xl);
}

.slider-dots {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-lg);
    z-index: 2;
}

.dot {
    width: 16px;
    height: 16px;
    background: rgba(255,255,255,0.3);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 48px;
    border-radius: 8px;
}

/* ==================== CATEGORY STEPS - FULLY RESPONSIVE ==================== */
.category-steps-wrapper {
    position: absolute;
    bottom: -180px;
    left: 0;
    right: 0;
    z-index: 10;
}

.category-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-xl);
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-200);
    transition: color var(--transition);
    line-height: 1;
}

.step-card:hover .step-number {
    color: var(--primary);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gray-100);
    transition: all var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
    background: var(--primary);
    transform: scale(1.15) rotate(5deg);
}

.step-icon-wrapper i {
    color: var(--dark);
    transition: all var(--transition);
}

.step-card:hover .step-icon-wrapper i {
    color: var(--white);
}

.step-name {
    font-size: 14px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    transition: color var(--transition);
}

.step-card:hover .step-name {
    color: var(--primary);
}

/* ==================== PRODUCT SECTIONS - 4x2 GRID (NO CLS) ==================== */
.recommendations-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.recommendations-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.recommendations-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.recommendations-subtitle {
    font-size: var(--font-size-base);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* 4x2 GRID - DESKTOP */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    min-height: 480px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: var(--font-size-xs);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

/* PREVENT CLS */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: var(--gray-100);
    overflow: hidden;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-grow: 1;
}

.product-brand {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.product-name {
    font-size: var(--font-size-base);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.4;
    font-weight: 500;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.2;
    height: 20px;
}

.stars {
    color: #FFC107;
    display: flex;
    gap: 2px;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.product-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
    height: 32px;
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
    transition: all var(--transition);
    width: 100%;
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== BLOG SECTION - ENHANCED ==================== */
.blog-section {
    padding: var(--space-4xl) 0;
    background: var(--dark);
    color: var(--white);
    border-radius: 32px;
    margin: var(--space-4xl) var(--space-2xl);
    overflow: hidden;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
    opacity: 0.15;
    pointer-events: none;
}

.blog-content {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.blog-text {
    padding-left: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.blog-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}

.blog-subtitle {
    font-size: var(--font-size-lg);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: var(--font-size-base);
    letter-spacing: 1px;
    transition: all var(--transition);
    align-self: flex-start;
}

.btn-blog:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
}

.blog-slide-content {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition);
}

.blog-slide-content:hover {
    transform: scale(1.05);
}

.blog-slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-slide-text {
    padding: var(--space-xl);
    text-align: center;
}

.blog-slide-title {
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.blog-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    transform: translateY(-50%);
    pointer-events: none;
}

.blog-arrow {
    width: 56px;
    height: 56px;
    background: var(--white);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.blog-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ==================== BRANDS SECTION ==================== */
.brands-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    min-height: 180px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.brand-card img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
    filter: grayscale(30%);
}

.brand-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--white);}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-4xl);
align-items: start;
}
.about-left {
display: flex;
flex-direction: column;
gap: var(--space-xl);
}
.expert-card {
background: var(--gray-100);
border-radius: 16px;
padding: var(--space-3xl);
box-shadow: var(--shadow-sm);
position: relative;
}
.expert-quote-icon {
position: absolute;
top: var(--space-xl);
left: var(--space-xl);
font-size: 120px;
color: var(--gray-300);
font-family: Georgia, serif;
line-height: 0.5;
font-weight: 900;
}
.expert-image {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: var(--space-lg);
border: 3px solid var(--primary);
}
.expert-info {
margin-bottom: var(--space-lg);
}
.expert-title {
font-size: var(--font-size-xs);
color: var(--gray-600);
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 800;
}
.expert-name {
font-size: 32px;
font-weight: 900;
color: var(--dark);
letter-spacing: -1px;
}
.expert-quote {
font-size: var(--font-size-base);
color: var(--gray-700);
line-height: 1.7;
font-weight: 500;
}
.car-image-wrapper {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-md);
}
.car-image {
width: 100%;
height: auto;
display: block;
transition: transform var(--transition-smooth);
}
.car-image-wrapper:hover .car-image {
transform: scale(1.05);
}
.about-right {
display: flex;
flex-direction: column;
gap: var(--space-xl);
}
.about-title {
font-size: var(--font-size-3xl);
font-weight: 900;
color: var(--dark);
text-transform: uppercase;
letter-spacing: -1px;
line-height: 1.1;
}
.about-subtitle {
font-size: var(--font-size-base);
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 3px;
margin-top: calc(var(--space-sm) * -1);
}
.about-text {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}
.about-text p {
font-size: var(--font-size-base);
color: var(--gray-700);
line-height: 1.8;
font-weight: 500;
}
.about-text h3 {
font-size: 28px;
font-weight: 900;
color: var(--dark);
margin-top: var(--space-lg);
letter-spacing: -0.5px;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: var(--space-md);
background: var(--primary);
color: var(--white);
padding: var(--space-lg) var(--space-3xl);
border-radius: 8px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 1px;
transition: all var(--transition);
align-self: flex-start;
font-size: var(--font-size-base);
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
/* ==================== FOOTER - COMPACT ==================== */
.footer {
background: var(--dark);
color: var(--white);
padding: var(--space-3xl) 0 var(--space-lg);
}
.footer-content {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
gap: var(--space-2xl);
padding-bottom: var(--space-2xl);
border-bottom: 1px solid var(--gray-800);
}
.footer-column {
display: flex;
flex-direction: column;
gap: var(--space-md);
}
.footer-logo {
display: flex;
align-items: center;
gap: var(--space-md);
margin-bottom: var(--space-md);
}
.footer-logo .logo-circle {
width: 48px;
height: 48px;
background: var(--dark);
border-color: var(--white);
}
.footer-logo .logo-icon {
color: var(--white);
font-size: 20px;
}
.footer-logo-text {
font-size: 20px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: -0.5px;
}
.footer-contact {
font-size: var(--font-size-sm);
color: var(--gray-400);
line-height: 1.9;
font-weight: 500;
display: flex;
align-items: center;
gap: var(--space-sm);
}
.footer-contact i {
color: var(--primary);
}
.footer-contact a {
color: var(--white);
transition: color var(--transition);
font-weight: 600;
}
.footer-contact a:hover {
color: var(--primary);
}
.footer-column-title {
font-size: 14px;
font-weight: 900;
color: var(--white);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: var(--space-sm);
}
.footer-links {
display: flex;
flex-direction: column;
gap: var(--space-sm);
}
.footer-links li a {
font-size: var(--font-size-sm);
color: var(--gray-400);
transition: all var(--transition);
display: inline-block;
font-weight: 500;
}
.footer-links li a:hover {
color: var(--primary);
transform: translateX(4px);
}
.newsletter-form {
display: flex;
gap: var(--space-sm);
}
.newsletter-input {
flex: 1;
padding: var(--space-md);
border: 1px solid var(--gray-800);
border-radius: 8px;
background: transparent;
color: var(--white);
font-size: var(--font-size-sm);
transition: border-color var(--transition);
font-weight: 600;
}
.newsletter-input:focus {
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.05);
}
.newsletter-input::placeholder {
color: var(--gray-600);
font-weight: 500;
}
.newsletter-btn {
background: var(--primary);
color: var(--white);
padding: var(--space-md) var(--space-lg);
border-radius: 8px;
font-weight: 900;
transition: all var(--transition);
font-size: 18px;
}
.newsletter-btn:hover {
background: var(--primary-dark);
transform: scale(1.05);
}
.social-links {
display: flex;
gap: var(--space-md);
margin-top: var(--space-md);
}
.social-link {
width: 40px;
height: 40px;
border: 1px solid var(--gray-800);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
transition: all var(--transition);
font-size: 16px;
}
.social-link:hover {
background: var(--primary);
border-color: var(--primary);
transform: translateY(-4px);
}
.footer-bottom {
padding-top: var(--space-lg);
text-align: center;
}
.footer-bottom p {
font-size: var(--font-size-sm);
color: var(--gray-600);
font-weight: 500;
}
/* ==================== PRODUCT GRID - OFFSET EFFECT ==================== */
.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-lg);
}
/* OFFSET FIRST AND LAST PRODUCT IN EACH ROW */
.product-card:nth-child(1),
.product-card:nth-child(4),
.product-card:nth-child(5),
.product-card:nth-child(8) {
margin-top: var(--space-2xl);
}
/* ==================== BEST SELLERS SECTION ==================== */
.bestsellers-section {
padding: var(--space-4xl) 0;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('assets/background.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: var(--white);
border-radius: 32px;
margin: var(--space-4xl) var(--space-2xl);
overflow: hidden;
position: relative;
}
.bestsellers-section::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: linear-gradient(225deg, var(--primary) 0%, transparent 100%);
opacity: 0.15;
pointer-events: none;
}
.bestsellers-content {
display: grid;
grid-template-columns: 1fr 35%;
gap: var(--space-3xl);
align-items: center;
position: relative;
z-index: 1;
}
.bestsellers-slider-wrapper {
position: relative;
overflow: hidden;
}
.bestsellers-slider {
display: flex;
transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bestsellers-slide {
min-width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-2xl);
}
.bestsellers-slide-content {
background: var(--white);
border-radius: 16px;
overflow: hidden;
max-width: 600px;
box-shadow: var(--shadow-xl);
transition: transform var(--transition);
}
.bestsellers-slide-content:hover {
transform: scale(1.05);
}
.bestsellers-slide-image {
width: 100%;
height: auto;
display: block;
}
.bestsellers-slide-text {
padding: var(--space-xl);
text-align: center;
}
.bestsellers-slide-title {
font-size: var(--font-size-xl);
font-weight: 900;
color: var(--dark);
text-transform: uppercase;
letter-spacing: -0.5px;
}
.bestsellers-slider-controls {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 var(--space-lg);
transform: translateY(-50%);
pointer-events: none;
}
.bestsellers-arrow {
width: 56px;
height: 56px;
background: var(--white);
color: var(--dark);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all var(--transition);
pointer-events: all;
box-shadow: var(--shadow-md);
}
.bestsellers-arrow:hover {
background: var(--primary);
color: var(--white);
transform: scale(1.1);
}
.bestsellers-text {
padding-right: var(--space-3xl);
display: flex;
flex-direction: column;
gap: var(--space-xl);
}
.bestsellers-title {
font-size: var(--font-size-4xl);
font-weight: 900;
color: var(--white);
text-transform: uppercase;
letter-spacing: -2px;
line-height: 1;
}
.bestsellers-subtitle {
font-size: var(--font-size-lg);
color: var(--primary);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 3px;
}
.btn-bestsellers {
display: inline-flex;
align-items: center;
gap: var(--space-md);
background: var(--primary);
color: var(--white);
padding: var(--space-lg) var(--space-2xl);
border-radius: 8px;
font-weight: 900;
text-transform: uppercase;
font-size: var(--font-size-base);
letter-spacing: 1px;
transition: all var(--transition);
align-self: flex-start;
}
.btn-bestsellers:hover {
background: var(--primary-dark);
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}
/* ==================== RESPONSIVE ==================== */
/* TABLET - 1200px */
@media (max-width: 1200px) {
.category-steps {
grid-template-columns: repeat(4, 1fr);
}
.hero-section {
    margin-bottom: 400px;
}

.category-steps-wrapper {
    bottom: -380px;
}

.blog-content {
    grid-template-columns: 1fr;
}

.blog-text {
    padding-left: var(--space-xl);
    text-align: center;
    align-items: center;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
}

.bestsellers-content {
    grid-template-columns: 1fr;
}

.bestsellers-text {
    padding-right: var(--space-xl);
    text-align: center;
    align-items: center;
    order: 2;
}

.bestsellers-slider-wrapper {
    order: 1;
}
}
/* TABLET - 1024px */
@media (max-width: 1024px) {
:root {
--font-size-4xl: 48px;
--font-size-3xl: 36px;
--font-size-2xl: 28px;
}
.main-nav {
    display: none;
}

.mobile-toggle {
    display: block;
}

.slider-container {
    height: 600px;
}

.about-content {
    grid-template-columns: 1fr;
}

.products-grid {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    min-height: 460px;
}

/* Remove offset on tablet */
.product-card:nth-child(1),
.product-card:nth-child(4),
.product-card:nth-child(5),
.product-card:nth-child(8) {
    margin-top: 0;
}

/* Add offset for 2-column layout */
.product-card:nth-child(2n+1) {
    margin-top: var(--space-xl);
}
}
/* MOBILE - 768px */
/* MOBILE - 768px */
@media (max-width: 768px) {
    .hero-section .container {
        padding: 0 !important;
    }
    .header-content {
        flex-wrap: wrap;
    }
    
    .phone-box {
        display: none;
    }

    .slider-container {
        height: 500px;
    }

    /* HORIZONTAL SCROLL FOR CATEGORY STEPS - EDGE TO EDGE */
    .category-steps-wrapper {
    position: relative;
    bottom: auto;
    margin-top: calc(var(--space-3xl) * -1);
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    overflow: hidden;
}

    .category-steps {
        display: flex;
        gap: var(--space-md);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: var(--space-md);
    }

    .category-steps::-webkit-scrollbar {
        display: none;
    }

    .step-card {
    min-width: 110px;
    max-width: 110px;
    flex-shrink: 0;
    min-height: 130px;
    padding: var(--space-sm) var(--space-xs);
    scroll-snap-align: center;
    gap: var(--space-xs);
}

.step-card:first-child {
    margin-left: 0;
}

.step-card:last-child {
    margin-right: 10px;
}
    /* REMOVE ALL HOVER EFFECTS ON MOBILE */
    .step-card:hover,
    .step-card:active {
        transform: none !important;
        box-shadow: var(--shadow-md) !important;
    }

    .step-card:hover::before {
        transform: scaleX(0) !important;
    }

    .step-card:hover .step-number {
        color: var(--gray-200) !important;
    }

    .step-card:hover .step-icon-wrapper {
        background: var(--gray-100) !important;
        transform: none !important;
    }

    .step-card:hover .step-icon-wrapper i {
        color: var(--dark) !important;
    }

    .step-card:hover .step-name {
        color: var(--dark) !important;
    }

.step-number {
    font-size: 16px;
    top: var(--space-sm);
    left: var(--space-sm);
    font-weight: 900;
}

.step-icon-wrapper {
    width: 50px;
    height: 50px;
}

.step-icon-wrapper i {
    font-size: 22px;
}

.step-name {
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.5px;
}

    .hero-section {
        margin-bottom: var(--space-3xl);
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        min-height: 500px;
    }
    
    .product-image-wrapper {
        height: 300px;
    }

    /* Remove all offsets on mobile */
    .product-card:nth-child(1),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(8),
    .product-card:nth-child(2n+1) {
        margin-top: 0;
    }

    /* REMOVE PRODUCT HOVER EFFECTS ON MOBILE */
    .product-card:hover,
    .product-card:active {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important;
    }

    .product-card:hover::before {
        opacity: 0 !important;
    }

    .product-card:hover .product-image {
        transform: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: var(--font-size-2xl);
    }

    .bestsellers-title {
        font-size: var(--font-size-2xl);
    }

    /* Center all text content on mobile */
    .recommendations-header,
    .section-header,
    .blog-text,
    .bestsellers-text {
        text-align: center;
    }

    .btn-blog,
    .btn-bestsellers,
    .btn-primary {
        align-self: center;
    }
}
/* MOBILE - 480px */
@media (max-width: 480px) {
.container {
padding: 0 var(--space-lg);
}
.blog-section {
    margin: var(--space-2xl) var(--space-md);
    border-radius: 16px;
}

.blog-title {
    font-size: var(--font-size-xl);
}

.slider-arrow {
    width: 48px;
    height: 48px;
}

.slider-arrow.prev {
    left: var(--space-md);
}

.slider-arrow.next {
    right: var(--space-md);
}

.product-card {
    min-height: 480px;
}

.logo-circle {
    width: 48px;
    height: 48px;
}

.logo-icon {
    font-size: 20px;
}

.logo-main {
    font-size: 18px;
}

.bestsellers-section {
    margin: var(--space-2xl) var(--space-md);
    border-radius: 16px;
}

.bestsellers-title {
    font-size: var(--font-size-xl);
}

/* Smaller category steps on small phones */
.step-card {
    min-width: 140px;
    max-width: 140px;
    min-height: 160px;
}

.step-icon-wrapper {
    width: 50px;
    height: 50px;
}

.step-icon-wrapper i {
    font-size: 20px;
}

.step-name {
    font-size: 10px;
}
}