/* ===================================================================
   İmza BMW - Modern UI Design (Toyota Inspired)
   Clean, Minimal, Professional
   =================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #0a0a0a;
    background-color: #ffffff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== CSS VARIABLES - Açık Mavi + Beyaz Temiz Paleti ===== */
:root {
    /* Ana Mavi Tonları - BMW Mavi */
    --primary: #0066B1;
    --primary-dark: #004d8a;
    --primary-light: #E8F4FC;
    --primary-bright: #0088CC;

    /* Accent Sky Blue */
    --accent: #0066B1;
    --accent-dark: #004d8a;
    --accent-light: #E8F4FC;

    /* Nötr Renkler */
    --black: #0a0a0a;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #ffffff;

    /* Fonksiyonel Renkler */
    --green: #0066B1;
    --green-light: #E8F4FC;
    --red: #EF4444;
    --red-light: #FEE2E2;
    --orange: #0066B1;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Gölgeler - BMW Mavi tonlu */
    --shadow-sm: 0 1px 3px rgba(0, 102, 177, 0.08);
    --shadow: 0 2px 8px rgba(0, 102, 177, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 102, 177, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Geçişler */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* ===================================================================
   TOPBAR - Hidden by default (Otocars Style - Clean Header)
   =================================================================== */
.topbar {
    display: none; /* Topbar hidden for cleaner look */
}

/* ===================================================================
   HEADER - Transparent Fixed (Otocars Style)
   =================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s ease;
}

.header.scrolled .header-container {
    height: 70px;
}

@media (min-width: 768px) {
    .header-container { padding: 0 40px; }
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: none; /* Original logo colors */
}

.header.scrolled .header-logo img {
    filter: none; /* Original color when scrolled */
}

.header-logo-text {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: white;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.header.scrolled .header-logo-text {
    color: var(--black);
}

/* Navigation */
.header-nav {
    display: none;
    align-items: center;
    gap: 36px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .header-nav { display: flex; }
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.header.scrolled .header-nav-link {
    color: var(--gray-700);
}

.header-nav-link:hover {
    color: white;
}

.header.scrolled .header-nav-link:hover {
    color: var(--primary);
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.header.scrolled .header-nav-link::after {
    background: var(--primary);
}

.header-nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

/* Dropdown */
.header-nav-dropdown {
    position: relative;
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 50;
}

.header-nav-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
}

.header-dropdown-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-btn,
.header-mobile-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: white;
    transition: all 0.3s ease;
}

.header.scrolled .header-search-btn,
.header.scrolled .header-mobile-btn {
    color: var(--gray-700);
}

.header-search-btn:hover,
.header-mobile-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.header.scrolled .header-search-btn:hover,
.header.scrolled .header-mobile-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.header-search-btn svg,
.header-mobile-btn svg {
    width: 22px;
    height: 22px;
}

.header-mobile-btn {
    display: flex;
}

@media (min-width: 1024px) {
    .header-mobile-btn { display: none; }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
    z-index: 200;
    box-shadow: var(--shadow-lg);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.search-submit {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    color: var(--white);
}

.search-submit svg {
    width: 20px;
    height: 20px;
}

.search-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.search-close svg {
    width: 24px;
    height: 24px;
}

/* ===================================================================
   MOBILE MENU
   =================================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: var(--transition-slow);
    z-index: 300;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 250;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: var(--font-semibold);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-body {
    padding: 20px;
}

.mobile-search {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    outline: none;
}

.mobile-search button {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.mobile-search button svg {
    width: 20px;
    height: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    padding: 14px 0;
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-sub {
    padding-left: 16px;
    font-size: 14px;
    font-weight: var(--font-normal);
    color: var(--gray-600);
}

/* Main Content Padding for Sticky Header */
/* Header sticky olduğu için main elementi padding'e ihtiyaç duymaz */
main {
    margin-top: 0;
    padding-top: 0;
}

/* Hero-video veya hero-slider olan sayfalarda padding sıfır */
main:has(.hero-video:first-child),
main:has(.hero-slider-modern:first-child) {
    padding-top: 0;
}

/* NOT: Header artık sticky (position: sticky) olduğu için
   eski fixed header için gerekli olan 80px padding kaldırıldı.
   Sticky header normal akışta yer aldığından boşluk gerekmez. */

/* ===================================================================
   FULLSCREEN SLIDER
   =================================================================== */
.fullscreen-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
}

@media (max-width: 767px) {
    .fullscreen-slider {
        height: 70vh;
        min-height: 400px;
    }
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Slide Background Image */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg img {
    transform: scale(1.1);
}

/* Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 24px;
    max-width: 800px;
}

@media (min-width: 768px) {
    .slide-content {
        padding: 80px 60px;
    }
}

@media (min-width: 1200px) {
    .slide-content {
        padding: 100px 120px;
    }
}

.slide-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.swiper-slide-active .slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 36px;
    font-weight: var(--font-bold);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: 72px;
    }
}

.slide-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
}

.swiper-slide-active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .slide-desc {
        font-size: 18px;
    }
}

/* Slide Buttons */
.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.8s;
}

.swiper-slide-active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.slide-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 177, 0.4);
}

.slide-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 177, 0.5);
}

.slide-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.slide-btn-primary:hover svg {
    transform: translateX(5px);
}

.slide-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.slide-btn-outline:hover {
    background: white;
    color: var(--gray-900);
    border-color: white;
}

/* Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

@media (max-width: 767px) {
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 44px;
        height: 44px;
    }

    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 14px;
    }

    .hero-swiper .swiper-button-prev {
        left: 15px;
    }

    .hero-swiper .swiper-button-next {
        right: 15px;
    }
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 40px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: white;
}

@media (max-width: 767px) {
    .hero-swiper .swiper-pagination {
        bottom: 20px !important;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ===================================================================
   HERO SECTION - Video Background (Otocars Style)
   =================================================================== */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Background Image (when no video) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay Gradient */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Content */
.hero-video-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 24px;
}

.hero-video-inner {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* Badge */
.hero-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-video-badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary-bright);
}

/* Title */
.hero-video-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: var(--font-bold);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-video-title span {
    color: var(--primary-bright);
    display: block;
}

/* Description */
.hero-video-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.hero-video-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn svg {
    width: 20px;
    height: 20px;
}

.hero-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 177, 0.4);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 177, 0.5);
}

.hero-btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.hero-btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats */
.hero-video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-bold);
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: var(--font-medium);
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

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

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

/* Hero Video Responsive */
@media (max-width: 767px) {
    .hero-video {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-video-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .hero-video-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-video-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-video {
        min-height: 80vh;
    }

    .hero-video-stats {
        gap: 32px;
    }
}

/* ===================================================================
   HERO SECTION - Split Layout
   =================================================================== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 600px;
    background: #f8fafc;
}

@media (min-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
        min-height: 700px;
    }
}

.hero-split-content {
    display: flex;
    align-items: center;
    padding: 60px 24px;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-split-content {
        padding: 80px 60px;
        order: 1;
    }
}

.hero-split-inner {
    max-width: 560px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-split-inner {
        margin: 0 0 0 auto;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 177, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-split-title {
    font-size: 32px;
    font-weight: var(--font-bold);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-split-title span {
    color: var(--primary);
}

@media (min-width: 768px) {
    .hero-split-title {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .hero-split-title {
        font-size: 52px;
    }
}

.hero-split-desc {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Filter Buttons in Hero */
.hero-filters {
    margin-bottom: 32px;
}

.filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn-wrapper {
    position: relative;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-btn:hover {
    border-color: var(--primary);
    background: var(--white);
    color: var(--primary);
}

.filter-btn svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

/* Filter Dropdown */
.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 50;
}

.filter-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition);
}

.filter-dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-cta-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 102, 177, 0.35);
}

.hero-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 177, 0.4);
}

.hero-cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.hero-cta-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Mini Stats */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-mini-number {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: var(--black);
}

.hero-mini-label {
    font-size: 13px;
    color: var(--gray-500);
}

.hero-mini-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Right Image Section */
.hero-split-image {
    position: relative;
    order: 1;
    min-height: 300px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-split-image {
        order: 2;
        min-height: auto;
    }
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.hero-split:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 177, 0.1);
    pointer-events: none;
}

/* Floating Badge */
.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-badge svg {
    width: 24px;
    height: 24px;
    color: #0066B1;
}

.hero-floating-badge span {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--gray-800);
}

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

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-split-content {
        padding: 40px 20px;
    }

    .hero-split-title {
        font-size: 28px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-btn {
        justify-content: center;
        width: 100%;
    }

    .hero-mini-stats {
        gap: 16px;
    }

    .hero-mini-number {
        font-size: 20px;
    }

    .hero-floating-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
    }

    .hero-floating-badge span {
        font-size: 12px;
    }
}

/* ===================================================================
   CATEGORIES - Horizontal Scroll
   =================================================================== */
.categories-modern {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-700);
    white-space: nowrap;
    transition: var(--transition);
}

.category-chip:hover {
    background: var(--gray-200);
    color: var(--black);
}

.category-chip-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-chip-icon svg {
    width: 18px;
    height: 18px;
}

.category-chip-all {
    background: var(--primary);
    color: var(--white);
}

.category-chip-all:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.category-chip-all svg {
    width: 16px;
    height: 16px;
}

/* ===================================================================
   PRODUCTS SECTION - Modern Grid
   =================================================================== */
.products-modern {
    padding: 60px 0;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.section-tag-green {
    background: var(--green-light);
    color: var(--green);
}

.section-title-modern {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: var(--black);
}

@media (min-width: 768px) {
    .section-title-modern { font-size: 28px; }
}

.section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--primary);
    transition: var(--transition);
}

.section-link:hover {
    gap: 10px;
}

.section-link svg {
    width: 18px;
    height: 18px;
}

/* Product Grid */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid-modern { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .products-grid-modern { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Product Card */
.product-card-modern {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-modern:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-100);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge-green {
    background: var(--green);
}

.product-badge-red {
    background: var(--red);
}

.product-card-body {
    padding: 16px;
}

.product-card-category {
    display: block;
    font-size: 11px;
    font-weight: var(--font-medium);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-modern:hover .product-card-title {
    color: var(--primary);
}

.product-card-price {
    font-size: 16px;
    font-weight: var(--font-bold);
    color: var(--black);
}

/* ===================================================================
   SECTION DIVIDER
   =================================================================== */
.section-divider {
    height: 1px;
    background: var(--gray-200);
    max-width: 1280px;
    margin: 0 auto;
}

/* ===================================================================
   STATS SECTION - Minimal
   =================================================================== */
.stats-modern {
    padding: 60px 0;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid-modern { grid-template-columns: repeat(4, 1fr); }
}

.stat-modern {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-modern-number {
    font-size: 36px;
    font-weight: var(--font-bold);
    color: var(--black);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-modern-number { font-size: 48px; }
}

.stat-modern-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================================================
   CTA SECTION - Minimal
   =================================================================== */
.cta-modern {
    padding: 80px 0;
    background: var(--gray-100);
}

.cta-modern-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-modern-title {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: var(--black);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .cta-modern-title { font-size: 28px; }
}

.cta-modern-desc {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.cta-modern-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-modern svg {
    width: 18px;
    height: 18px;
}

.btn-modern-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-modern-whatsapp:hover {
    background: #128c7e;
}

.btn-modern-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-modern-outline:hover {
    background: var(--white);
    border-color: var(--gray-400);
}

.btn-modern-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-modern-primary:hover {
    background: var(--primary-dark);
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-title {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* ===================================================================
   WHATSAPP FLOATING BUTTON
   =================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: var(--radius-full);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 90;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ===================================================================
   PAGE STYLES - Breadcrumb, Forms, etc.
   =================================================================== */
.page-header {
    padding: 40px 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.page-title {
    font-size: 28px;
    font-weight: var(--font-bold);
    color: var(--black);
}

@media (min-width: 768px) {
    .page-title { font-size: 36px; }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray-500);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray-600);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: var(--green-light);
    color: var(--green);
    border: 1px solid var(--green);
}

.alert-error {
    background: var(--red-light);
    color: var(--red);
    border: 1px solid var(--red);
}

/* ===================================================================
   PRODUCT PAGE
   =================================================================== */
.product-gallery {
    display: grid;
    gap: 12px;
}

.product-gallery-main {
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.product-gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--primary);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: var(--font-medium);
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================================================
   PAGINATION
   =================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-700);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-100); }
.bg-gray-100 { background-color: var(--gray-100); }

.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ===================================================================
   RESPONSIVE HELPERS
   =================================================================== */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:w-64 { width: 16rem; }
    .lg\:flex-row { flex-direction: row; }
}

/* ===================================================================
   PROSE - Rich Text Content
   =================================================================== */
.prose {
    line-height: 1.8;
    color: var(--gray-700);
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    color: var(--black);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose ul, .prose ol {
    list-style-position: inside;
    margin-bottom: 1.25rem;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose a {
    color: var(--primary);
    text-decoration: underline;
}

.prose a:hover {
    color: var(--primary-dark);
}

/* ===================================================================
   LEGACY COMPATIBILITY - Old classes support
   =================================================================== */
.product-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow);
}

.product-card .image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
}

.product-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.badge-featured {
    background: var(--primary);
    color: var(--white);
}

.badge-out-of-stock {
    background: var(--red);
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: var(--gray-100);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar for product pages */
.sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--black);
    margin-bottom: 16px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sidebar-link:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.sidebar-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Contact Info Box */
.contact-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-content h4 {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: 4px;
}

.contact-content p,
.contact-content a {
    font-size: 14px;
    color: var(--gray-600);
}

.contact-content a:hover {
    color: var(--primary);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ============================================
   Toast Messages
   ============================================ */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.3s ease;
    max-width: 400px;
}

.toast-message.active {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #0066B1;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.toast-success .toast-icon {
    color: #0066B1;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.toast-text {
    flex: 1;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-800);
}

.toast-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--gray-600);
}

.toast-close svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 177, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 40;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 102, 177, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Spinner Animation
   ============================================ */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Header Scrolled State
   ============================================ */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   No Image Placeholder
   ============================================ */
.no-image {
    background: var(--gray-100);
    object-fit: contain;
}

/* ===================================================================
   CATEGORIES SECTION - Horizontal Scroll (Otocars Style)
   =================================================================== */
.categories-modern {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 102, 177, 0.25);
}

.category-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.category-chip-icon svg {
    width: 20px;
    height: 20px;
}

.category-chip-all {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.category-chip-all:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.category-chip-all svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.category-chip-all:hover svg {
    transform: translateX(4px);
}

/* ===================================================================
   SECTION HEADER - Modern Style
   =================================================================== */
.products-modern {
    padding: 80px 0;
    background: var(--white);
}

.section-header-modern {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 177, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    width: fit-content;
}

.section-tag-green {
    background: rgba(0, 166, 81, 0.1);
    color: var(--green);
}

.section-title-modern {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-bold);
    color: var(--black);
    line-height: 1.2;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.section-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.section-link:hover {
    color: var(--primary-dark);
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* ===================================================================
   PRODUCT CARDS - Modern Grid (Otocars Style)
   =================================================================== */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .products-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.product-card-modern {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    z-index: 2;
}

.product-badge-green {
    background: var(--green);
}

.product-badge-red {
    background: var(--red);
}

.product-badge-orange {
    background: var(--orange);
}

.product-card-body {
    padding: 20px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-category {
    font-size: 12px;
    font-weight: var(--font-medium);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-title {
    font-size: 15px;
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-card-title {
    color: var(--primary);
}

.product-card-price {
    font-size: 18px;
    font-weight: var(--font-bold);
    color: var(--black);
    margin-top: 4px;
}

/* Quick View Overlay */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 177, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-card-overlay {
    opacity: 1;
}

.product-card-overlay span {
    color: white;
    font-size: 14px;
    font-weight: var(--font-semibold);
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: var(--radius);
}

/* ===================================================================
   SECTION DIVIDER
   =================================================================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

/* ===================================================================
   STATS SECTION - Modern Style
   =================================================================== */
.stats-modern {
    padding: 60px 0;
    background: var(--gray-50);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.stat-modern {
    text-align: center;
    padding: 20px;
}

.stat-modern-number {
    display: block;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: var(--font-bold);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-modern-label {
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================================================
   CTA SECTION - Modern Style
   =================================================================== */
.cta-modern {
    padding: 100px 0;
    background: var(--gray-900);
}

.cta-modern-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-modern-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: 16px;
}

.cta-modern-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-modern-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-modern svg {
    width: 20px;
    height: 20px;
}

.btn-modern-whatsapp {
    background: #25D366;
    color: white;
}

.btn-modern-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-modern-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================================================
   RESPONSIVE ADJUSTMENTS
   =================================================================== */
@media (max-width: 767px) {
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-modern {
        padding: 60px 0;
    }

    .categories-modern {
        padding: 24px 0;
    }

    .stats-modern {
        padding: 40px 0;
    }

    .cta-modern {
        padding: 60px 0;
    }

    .cta-modern-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-modern {
        width: 100%;
        max-width: 280px;
    }
}

/* ===================================================================
   FOOTER - Modern Dark Style (Otocars Inspired)
   =================================================================== */
footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 60px;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: block;
}

a.footer-link:hover {
    color: var(--primary-bright);
    transform: translateX(4px);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 767px) {
    footer {
        padding-top: 60px;
    }

    .footer-grid {
        gap: 32px;
        padding-bottom: 40px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===================================================================
   PAGE HEADER - Category/Product Pages
   =================================================================== */
.page-header {
    background: var(--gray-900);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-header-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-bright);
    margin-bottom: 20px;
}

.page-header-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: var(--font-bold);
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-header-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header-desc {
        font-size: 16px;
    }
}

/* ===================================================================
   CATEGORIES SECTION - Modern Cards
   =================================================================== */
.categories-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 102, 177, 0.15);
    border-color: var(--primary);
}

.category-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.category-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.category-card-green .category-card-icon {
    background: var(--green-light);
}

.category-card-green .category-card-icon svg {
    color: var(--green);
}

.category-card-content {
    flex: 1;
}

.category-card-content h3 {
    font-size: 18px;
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: 4px;
}

.category-card-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.category-card-count {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.category-card:hover .category-card-count {
    background: var(--primary);
    color: white;
}

.category-card-green:hover .category-card-count {
    background: var(--green);
}

.category-card-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-arrow {
    background: var(--primary);
}

.category-card:hover .category-card-arrow svg {
    color: white;
    transform: translateX(4px);
}

.category-card-green:hover .category-card-arrow {
    background: var(--green);
}

@media (max-width: 767px) {
    .categories-section {
        padding: 60px 0;
    }

    .category-card {
        padding: 20px;
    }

    .category-card-icon {
        width: 56px;
        height: 56px;
    }

    .category-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .category-card-content h3 {
        font-size: 16px;
    }
}

/* ===================================================================
   SECTION HEADER - Modern Style
   =================================================================== */
.section-header-modern {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 177, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    width: fit-content;
}

.section-tag-green {
    background: rgba(0, 166, 81, 0.1);
    color: var(--green);
}

.section-title-modern {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-bold);
    color: var(--black);
    line-height: 1.2;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.section-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.section-link:hover {
    color: var(--primary-dark);
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* ===================================================================
   PRODUCT CARDS - Modern Grid
   =================================================================== */
.products-modern {
    padding: 80px 0;
    background: var(--white);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .products-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.product-card-modern {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    z-index: 2;
}

.product-badge-green {
    background: var(--green);
}

.product-card-body {
    padding: 20px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-category {
    font-size: 12px;
    font-weight: var(--font-medium);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-title {
    font-size: 15px;
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-card-title {
    color: var(--primary);
}

/* ===================================================================
   SECTION DIVIDER
   =================================================================== */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

/* ===================================================================
   STATS SECTION - Modern Style
   =================================================================== */
.stats-modern {
    padding: 60px 0;
    background: var(--gray-50);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.stat-modern {
    text-align: center;
    padding: 20px;
}

.stat-modern-number {
    display: block;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: var(--font-bold);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-modern-label {
    font-size: 14px;
    font-weight: var(--font-medium);
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================================================
   CTA SECTION - Modern Style
   =================================================================== */
.cta-modern {
    padding: 100px 0;
    background: var(--gray-900);
}

.cta-modern-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-modern-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: var(--font-bold);
    color: white;
    margin-bottom: 16px;
}

.cta-modern-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-modern-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-modern svg {
    width: 20px;
    height: 20px;
}

.btn-modern-whatsapp {
    background: #25D366;
    color: white;
}

.btn-modern-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-modern-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================================================
   RESPONSIVE ADJUSTMENTS
   =================================================================== */
@media (max-width: 767px) {
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-modern {
        padding: 60px 0;
    }

    .stats-modern {
        padding: 40px 0;
    }

    .cta-modern {
        padding: 60px 0;
    }

    .cta-modern-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-modern {
        width: 100%;
        max-width: 280px;
    }
}

/* ===================================================================
   MOBIL TASARIM OPTIMIZASYONU - Kupon BMW Stili
   Modern, kompakt, touch-friendly mobil deneyim
   =================================================================== */

/* ----- 1. MOBIL HEADER ----- */
@media (max-width: 767px) {
    /* Topbar mobilde gizle */
    .topbar-modern {
        display: none !important;
    }

    /* Header kompakt */
    .header-modern {
        padding: 0;
    }

    .header-modern .header-inner {
        height: 60px;
        padding: 0 16px;
    }

    /* Logo mobil boyut */
    .header-logo .logo-img {
        max-height: 45px !important;
        height: auto !important;
        width: auto !important;
    }

    .header-logo .logo-text-styled {
        gap: 6px;
    }

    .header-logo .logo-icon {
        font-size: 18px;
    }

    .header-logo .logo-imza {
        font-size: 16px;
    }

    .header-logo .logo-bmw {
        font-size: 14px;
    }

    /* Arama gizle - mobil menüde var */
    .search-compact {
        display: none !important;
    }

    /* Hamburger menü daha belirgin */
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 10px;
        background: var(--gray-100);
        border-radius: 10px;
    }

    .mobile-menu-toggle .hamburger-line {
        width: 22px;
        height: 2px;
        background: var(--gray-800);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Header actions düzenle */
    .header-actions {
        gap: 8px;
    }

    .header-whatsapp-btn {
        display: none !important;
    }
}

/* ----- 2. MOBIL ÜRÜN KARTLARI (Kupon BMW Stili) ----- */
@media (max-width: 767px) {
    /* Kampanya grid - 2 kolon */
    .kampanya-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Ürün kartı modern tasarım */
    .product-card-kupon {
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .product-card-kupon:active {
        transform: scale(0.98);
    }

    /* Ürün görseli */
    .product-card-kupon .product-image {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
        background: var(--gray-100);
    }

    .product-card-kupon .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    /* Badge düzenlemesi */
    .product-card-kupon .discount-badge,
    .product-card-kupon .featured-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 6px;
        z-index: 2;
    }

    .product-card-kupon .discount-badge {
        background: #e53935;
        color: white;
    }

    .product-card-kupon .featured-badge {
        background: var(--accent);
        color: var(--black);
    }

    /* Ürün içerik */
    .product-card-kupon .product-content {
        padding: 12px;
    }

    .product-card-kupon .product-name {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
        color: var(--gray-800);
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 35px;
    }

    .product-card-kupon .product-name a {
        color: inherit;
    }

    /* WhatsApp butonu */
    .product-card-kupon .product-contact-btn {
        margin-top: auto;
    }

    .product-card-kupon .btn-contact-whatsapp,
    .product-card-kupon .btn-contact-page {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .product-card-kupon .btn-contact-whatsapp {
        background: #25D366;
        color: white;
    }

    .product-card-kupon .btn-contact-whatsapp:active {
        background: #20BD5A;
    }

    .product-card-kupon .btn-contact-whatsapp i {
        font-size: 14px;
    }
}

/* ----- 3. FEATURES BAR - Modern Horizontal Scroll ----- */

/* Desktop */
.features-bar-modern {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}

.features-scroll-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-right: 1px solid var(--gray-200);
    flex: 1;
    justify-content: center;
}

.feature-item-modern:last-child {
    border-right: none;
}

.feature-icon-modern {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
}

.feature-icon-modern i {
    font-size: 16px;
    color: var(--accent);
}

.feature-text-modern {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text-modern strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
}

.feature-text-modern span {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.2;
}

/* MOBIL - Horizontal Scroll */
@media (max-width: 991px) {
    .features-scroll-container {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0;
    }

    .features-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .feature-item-modern {
        flex: 0 0 auto;
        min-width: auto;
        padding: 14px 20px;
        scroll-snap-align: start;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .features-bar-modern {
        background: #fff;
        border-bottom: 1px solid var(--gray-200);
    }

    .features-scroll-container {
        padding: 0;
    }

    .feature-item-modern {
        padding: 12px 16px;
        gap: 10px;
    }

    .feature-icon-modern {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
    }

    .feature-icon-modern i {
        font-size: 14px;
    }

    .feature-text-modern strong {
        font-size: 12px;
        white-space: nowrap;
    }

    .feature-text-modern span {
        font-size: 10px;
        white-space: nowrap;
    }
}

/* ----- 4. SECTION PADDING OPTIMIZASYONU ----- */
@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0 !important;
    }

    .kampanya-section {
        padding: 30px 0;
    }

    .kampanya-section.alt-bg {
        background: var(--gray-100);
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Kampanya header */
    .kampanya-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .kampanya-header h2 {
        font-size: 16px;
        gap: 8px;
    }

    .kampanya-header h2 i {
        font-size: 16px;
    }

    .kampanya-header .view-all {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ----- 5. MOBIL TYPOGRAPHY ----- */
@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    h1, .h1 {
        font-size: 24px;
    }

    h2, .h2 {
        font-size: 20px;
    }

    h3, .h3 {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title-area {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .section-title .sub-content {
        font-size: 12px;
    }
}

/* ----- 6. HERO SLIDER MOBIL ----- */
@media (max-width: 767px) {
    .hero-slider-modern {
        height: 55vh;
        min-height: 380px;
        max-height: 500px;
    }

    .hero-slide {
        padding: 0;
    }

    .hero-slide-content {
        padding: 60px 20px 40px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .hero-slide-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-slide-title span {
        display: inline;
    }

    .hero-slide-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-slide-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 10px;
        justify-content: center;
    }

    /* Slider navigation */
    .hero-nav-prev,
    .hero-nav-next {
        display: none !important;
    }

    .hero-pagination {
        bottom: 16px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* ----- 7. STICKY WHATSAPP BUTONU ----- */
.sticky-whatsapp-mobile {
    display: none;
}

@media (max-width: 767px) {
    .sticky-whatsapp-mobile {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 999;
        transition: all 0.3s ease;
    }

    .sticky-whatsapp-mobile:active {
        transform: scale(0.95);
    }

    .sticky-whatsapp-mobile i {
        font-size: 28px;
        color: white;
    }

    /* Pulse animasyonu */
    .sticky-whatsapp-mobile::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25D366;
        z-index: -1;
        animation: whatsapp-pulse 2s infinite;
    }

    @keyframes whatsapp-pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        100% {
            transform: scale(1.4);
            opacity: 0;
        }
    }
}

/* ----- 8. MOBIL MENÜ İYİLEŞTİRMELERİ ----- */
@media (max-width: 767px) {
    /* Offcanvas genişliği */
    .offcanvas {
        width: 300px !important;
        max-width: 85vw;
    }

    .offcanvas-header {
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-200);
    }

    .offcanvas-title img {
        max-height: 36px !important;
    }

    .offcanvas-body {
        padding: 20px;
    }

    /* Mobil arama */
    .mobile-search-form {
        margin-bottom: 24px;
    }

    .mobile-search-form .input-group {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .mobile-search-form .form-control {
        height: 48px;
        font-size: 15px;
        border: none;
        background: var(--gray-100);
        padding-left: 16px;
    }

    .mobile-search-form .form-control:focus {
        box-shadow: none;
        background: var(--gray-100);
    }

    .mobile-search-form .btn {
        width: 48px;
        background: var(--accent);
        border: none;
    }

    /* Mobil nav linkleri */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 48px;
        padding: 12px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--gray-800);
        border-bottom: 1px solid var(--gray-100);
        transition: all 0.2s ease;
    }

    .mobile-nav-link:active {
        color: var(--accent);
    }

    .mobile-nav-link.active {
        color: var(--accent);
    }

    .mobile-nav-link i {
        width: 20px;
        text-align: center;
        color: var(--gray-500);
    }

    .mobile-nav-link.active i {
        color: var(--accent);
    }

    /* Mobil kategoriler */
    .mobile-categories h6 {
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-600);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-categories .list-group-item {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        margin-bottom: 4px;
        border: none;
        background: var(--gray-100);
    }

    .mobile-categories .list-group-item:active {
        background: var(--accent-light);
        color: var(--accent);
    }

    /* Mobil dil seçici */
    .mobile-lang-buttons {
        display: flex;
        gap: 8px;
    }

    .mobile-lang-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 12px;
        background: var(--gray-100);
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .mobile-lang-btn.active {
        background: var(--accent);
        color: var(--black);
    }

    .mobile-lang-btn .lang-name {
        font-size: 13px;
        font-weight: 500;
    }

    .mobile-lang-btn .lang-code {
        font-size: 11px;
        opacity: 0.7;
    }

    /* Mobil iletişim butonları */
    .mobile-contact .btn {
        height: 48px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 10px;
    }
}

/* ----- 9. KATEGORİ KARTLARI - Horizontal Scroll ----- */
@media (max-width: 767px) {
    .categories-section-modern {
        overflow: hidden;
    }

    .categories-grid-modern {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 0 16px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .categories-grid-modern::-webkit-scrollbar {
        display: none;
    }

    .category-card-modern {
        flex: 0 0 auto;
        width: 130px;
        scroll-snap-align: start;
    }

    .category-card-modern .category-image {
        height: 100px;
        border-radius: 12px;
        overflow: hidden;
    }

    .category-card-modern .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .category-card-modern .category-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .category-card-modern .category-count {
        font-size: 10px;
        padding: 4px 8px;
    }

    .category-card-modern .category-info {
        padding: 10px 0 0;
    }

    .category-card-modern .category-number {
        font-size: 10px;
        color: var(--accent);
    }

    .category-card-modern .category-name {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
    }
}

/* ----- 10. TESTIMONIAL & NEWS MOBIL ----- */
@media (max-width: 767px) {
    /* Testimonial */
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-card-items {
        padding: 20px;
        border-radius: 16px;
        margin: 0 4px;
    }

    .testimonial-card-items p {
        font-size: 14px;
        line-height: 1.6;
    }

    .client-info {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .client-img {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .client-info .content h3 {
        font-size: 14px;
    }

    .client-info .content span {
        font-size: 12px;
    }

    .client-info .star i {
        font-size: 12px;
    }

    /* News section */
    .news-section .row {
        gap: 16px;
    }

    .news-card-items {
        border-radius: 16px;
        overflow: hidden;
    }

    .news-card-items .news-image {
        height: 160px;
    }

    .news-card-items .news-content {
        padding: 16px;
    }

    .news-card-items .news-content h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .news-card-items .post-box {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ----- 11. EKSTRA MOBIL DÜZENLEMELER ----- */
@media (max-width: 767px) {
    /* Counter section */
    .counter-section {
        padding: 40px 0;
    }

    .counter-items h2 {
        font-size: 28px;
    }

    .counter-items p {
        font-size: 13px;
    }

    /* CTA Banner */
    .cta-banner-wrapper {
        padding: 40px 20px !important;
        border-radius: 16px;
    }

    .cta-banner-wrapper h2 {
        font-size: 22px !important;
        margin-bottom: 16px !important;
    }

    .cta-banner-wrapper p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons .theme-btn {
        width: 100%;
        margin: 0 !important;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* TOP RATTING SECTION - 2 SÜTUN */
    .top-ratting-book-section .row.g-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .top-ratting-book-section .row.g-4 > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .top-ratting-box-items {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee;
    }

    .top-ratting-box-items .book-thumb {
        width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        aspect-ratio: 1/1;
        background: #f5f5f5;
    }

    .top-ratting-box-items .book-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .top-ratting-box-items .book-content {
        flex: none;
        padding: 10px;
    }

    .top-ratting-box-items .book-content h5 {
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
    }

    .top-ratting-box-items .book-content h3 {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .top-ratting-box-items .book-content h3 a {
        color: #1E293B;
    }

    .top-ratting-box-items .price-list {
        margin-bottom: 8px !important;
    }

    .top-ratting-box-items .price-list li {
        font-size: 14px !important;
        font-weight: 600;
    }

    .top-ratting-box-items .shop-btn {
        padding: 0 10px 10px !important;
    }

    .top-ratting-box-items .shop-btn .theme-btn {
        width: 100%;
        padding: 8px 12px !important;
        font-size: 11px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #2563EB;
        color: #fff;
        border-radius: 6px;
    }

    /* SHOP SECTION - 2 SÜTUN ZORUNLU */
    .shop-section .row.g-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .shop-section .row.g-4 > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* Shop box items - kompakt kart */
    .shop-box-items {
        border-radius: 10px;
        background: #fff;
        border: 1px solid #eee;
        overflow: hidden;
    }

    .shop-box-items .book-thumb {
        height: auto !important;
        aspect-ratio: 1/1;
        background: #f5f5f5;
    }

    .shop-box-items .book-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .shop-box-items .shop-content {
        padding: 10px !important;
    }

    .shop-box-items .shop-content h5 {
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
    }

    .shop-box-items .shop-content h3 {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .shop-box-items .shop-content h3 a {
        color: #1E293B;
    }

    .shop-box-items .price-list {
        margin-bottom: 0 !important;
    }

    .shop-box-items .price-list li {
        font-size: 14px !important;
        font-weight: 600;
        color: #1E293B;
    }

    .shop-box-items .shop-button {
        padding: 0 10px 10px !important;
    }

    .shop-box-items .shop-button .theme-btn {
        width: 100%;
        padding: 8px 12px !important;
        font-size: 11px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #2563EB;
        color: #fff;
        border-radius: 6px;
    }

    .shop-box-items .shop-button .theme-btn i {
        font-size: 12px;
    }

    /* Shop icon overlay - mobilde gizle */
    .shop-box-items .book-thumb .shop-icon {
        display: none !important;
    }

    /* Final CTA */
    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .cta-wrapper h2 {
        font-size: 22px;
    }

    .cta-wrapper p {
        font-size: 14px;
    }

    /* Back to top button */
    .back-to-top {
        width: 44px;
        height: 44px;
        right: 20px;
        bottom: 90px; /* WhatsApp butonunun üstünde */
    }

    /* Main padding */
    main:not(:has(.hero-slider-modern:first-child)):not(:has(.hero-video:first-child)) {
        padding-top: 60px;
    }
}

/* ----- 12. VERY SMALL SCREENS (iPhone SE vb.) ----- */
@media (max-width: 374px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .kampanya-grid {
        gap: 8px;
    }

    .product-card-kupon .product-content {
        padding: 10px;
    }

    .product-card-kupon .product-name {
        font-size: 12px;
    }

    .product-card-kupon .btn-contact-whatsapp {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero-slide-title {
        font-size: 20px;
    }

    .feature-box-items {
        min-width: 160px;
    }
}

/* ===================================================================
   FEATURES BAR - MODERN HORIZONTAL SCROLL
   Kupon BMW stili özellik barı
   =================================================================== */

.features-bar-modern {
    background: #1E40AF;
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.features-scroll-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

.feature-icon-modern {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-modern i {
    font-size: 18px;
    color: #000;
}

.feature-text-modern {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text-modern strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.feature-text-modern span {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

/* Features Bar Mobile */
@media (max-width: 991px) {
    .features-scroll-container {
        gap: 15px;
    }

    .feature-item-modern {
        padding: 8px 12px;
    }

    .feature-icon-modern {
        width: 38px;
        height: 38px;
    }

    .feature-icon-modern i {
        font-size: 16px;
    }

    .feature-text-modern strong {
        font-size: 13px;
    }

    .feature-text-modern span {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    /* Feature bar - Kupon BMW stili kompakt */
    .features-bar-modern {
        padding: 8px 0;
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
    }

    .features-scroll-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .feature-item-modern {
        flex: 1;
        min-width: 0;
        padding: 6px 8px;
        background: transparent;
        border: none;
        border-radius: 0;
        border-right: 1px solid #e0e0e0;
        justify-content: center;
    }

    .feature-item-modern:last-child {
        border-right: none;
    }

    .feature-item-modern:hover {
        background: transparent;
        transform: none;
    }

    .feature-icon-modern {
        width: 24px;
        height: 24px;
        background: transparent;
        border-radius: 0;
    }

    .feature-icon-modern i {
        font-size: 14px;
        color: var(--accent);
    }

    .feature-text-modern {
        display: none;
    }

    /* Scrollbar gizle */
    .features-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .features-scroll-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ===================================================================
   WHATSAPP FLOAT BUTTON
   Desktop ve mobil için farklı görünümler
   =================================================================== */

/* Desktop WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-900);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-900);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobilde desktop WhatsApp float'ı gizle, sticky-whatsapp-mobile kullan */
@media (max-width: 767px) {
    .whatsapp-float {
        display: none !important;
    }
}

/* ===================================================================
   STICKY WHATSAPP BUTTON - MOBILE ONLY
   =================================================================== */

/* Desktop'ta gizle */
.sticky-whatsapp-mobile {
    display: none;
}

/* Mobilde göster */
@media (max-width: 767px) {
    .sticky-whatsapp-mobile {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 999;
        animation: whatsappPulse 2s infinite;
        text-decoration: none;
    }

    .sticky-whatsapp-mobile i {
        font-size: 28px;
        color: white;
    }

    .sticky-whatsapp-mobile:hover,
    .sticky-whatsapp-mobile:focus {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }

    @keyframes whatsappPulse {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
            box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
        }
    }
}

/* ===================================================================
   FOOTER MODERN - MOBILE OPTIMIZATION
   Kupon BMW stili kompakt footer
   =================================================================== */

.footer-modern {
    background: #0a0a0a;
    color: #e5e5e5;
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-logo-img {
    max-height: 260px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bbb;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 10px;
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    color: var(--accent);
    font-size: 16px;
}

.footer-contact .contact-text {
    flex: 1;
}

.footer-contact .contact-text .label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-text a,
.footer-contact .contact-text p {
    font-size: 14px;
    color: #ddd;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-contact .contact-text a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.footer-bottom .copyright strong {
    color: var(--accent);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links .separator {
    color: #444;
}

/* FOOTER MOBILE STYLES */
@media (max-width: 991px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    /* Footer mobil - Kupon BMW stili basit */
    .footer-main {
        padding: 20px 0 15px;
    }

    .footer-widget {
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-logo-img {
        max-height: 180px;
    }

    .logo-text-styled.footer-version {
        justify-content: center;
    }

    .footer-desc {
        display: none;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .footer-title::after {
        display: none;
    }

    .footer-links {
        display: none;
    }

    /* İletişim - Yatay kompakt */
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        margin-bottom: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .footer-contact .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        background: rgba(14, 165, 233, 0.15);
        border-radius: 50%;
    }

    .footer-contact .contact-icon i {
        font-size: 14px;
    }

    .footer-contact .contact-text {
        flex: none;
        min-width: 0;
    }

    .footer-contact .contact-text .label {
        display: none;
    }

    .footer-contact .contact-text a,
    .footer-contact .contact-text p {
        font-size: 11px;
        word-break: break-word;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

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

    .footer-bottom-inner {
        text-align: center;
    }

    .footer-bottom .copyright {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .footer-bottom-links {
        display: none;
    }

    /* Footer row düzeni */
    .footer-main .row {
        display: block;
    }

    /* Logo/About sütunu */
    .footer-main .col-xl-3:first-child {
        margin-bottom: 15px;
    }

    /* Orta sütunlar - MOBILDE GİZLE */
    .footer-main .col-xl-2 {
        display: none;
    }

    /* İletişim sütunu - kompakt */
    .footer-main .col-xl-3:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-main .col-xl-3:last-child .footer-widget {
        text-align: center;
    }

    .footer-main .col-xl-3:last-child .footer-title {
        display: none;
    }

    /* View all link */
    .footer-widget .view-all-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--accent);
        font-weight: 500;
        font-size: 12px;
    }
}

/* ===================================================================
   KUPON BMW STİLİ - KAPSAMLI MOBİL TASARIM OVERRIDE
   Tüm mobil stilleri tek yerde yönetir
   =================================================================== */

@media (max-width: 768px) {

    /* ===== GENEL ===== */
    body {
        font-size: 14px !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* ===== SECTION BAŞLIKLARI - KOMPAKT ===== */
    .section-title h2,
    .kampanya-header h2,
    .section-title-area h2 {
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }

    .section-title span,
    .sub-content {
        font-size: 11px !important;
        display: none !important;
    }

    .section-title-area {
        margin-bottom: 15px !important;
    }

    /* ===== HERO SLIDER - index.php inline CSS tarafından yönetiliyor ===== */
    /* Slider yükseklik ve görünürlük kuralları index.php'de tanımlı */

    .hero-slide-bg {
        object-fit: cover !important;
        object-position: center !important;
    }

    /* ===== FEATURES BAR - MOBİL ===== */
    .features-bar-modern {
        padding: 12px 10px !important;
        background: #f8f9fa !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    .features-scroll-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .feature-item-modern {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 5px !important;
        background: #fff !important;
        border-radius: 8px !important;
        border: 1px solid #e9ecef !important;
        text-align: center !important;
    }

    .feature-icon-modern {
        width: 36px !important;
        height: 36px !important;
        background: #0EA5E9 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 6px !important;
    }

    .feature-icon-modern i {
        font-size: 16px !important;
        color: #fff !important;
    }

    .feature-text-modern {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2px !important;
    }

    .feature-text-modern strong {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #1E293B !important;
        line-height: 1.2 !important;
    }

    .feature-text-modern span {
        font-size: 10px !important;
        color: #6b7280 !important;
        line-height: 1.2 !important;
    }

    /* ===== KAMPANYA SECTİONS ===== */
    .kampanya-section,
    .shop-section,
    .top-ratting-book-section {
        padding: 20px 0 !important;
    }

    .kampanya-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid #eee !important;
    }

    .kampanya-header h2 {
        font-size: 15px !important;
        margin: 0 !important;
    }

    .kampanya-header h2 i {
        font-size: 13px !important;
    }

    .kampanya-header .view-all {
        font-size: 11px !important;
        padding: 0 !important;
        background: transparent !important;
        color: var(--accent) !important;
    }

    /* ===== ÜRÜN GRİD - 2 SÜTUN ===== */
    .kampanya-grid,
    .products-grid-kupon,
    .shop-section .row.g-4,
    .top-ratting-book-section .row.g-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .shop-section .row.g-4 > [class*="col-"],
    .top-ratting-book-section .row.g-4 > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        flex: none !important;
    }

    /* ===== ÜRÜN KARTLARI ===== */
    .product-card-kupon,
    .shop-box-items,
    .top-ratting-box-items {
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        height: 100% !important;
    }

    .product-card-kupon .product-image,
    .shop-box-items .book-thumb,
    .top-ratting-box-items .book-thumb {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        min-width: unset !important;
        background: #f5f5f5 !important;
    }

    .product-card-kupon .product-image img,
    .shop-box-items .book-thumb img,
    .top-ratting-box-items .book-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .shop-box-items .book-thumb .shop-icon,
    .top-ratting-box-items .book-thumb .shop-icon {
        display: none !important;
    }

    .product-card-kupon .product-content,
    .shop-box-items .shop-content,
    .top-ratting-box-items .book-content {
        padding: 10px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .product-card-kupon .product-category,
    .shop-box-items .shop-content h5,
    .top-ratting-box-items .book-content h5 {
        font-size: 10px !important;
        color: #888 !important;
        margin-bottom: 3px !important;
    }

    .product-card-kupon .product-name,
    .shop-box-items .shop-content h3,
    .top-ratting-box-items .book-content h3 {
        font-size: 12px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        flex: 1 !important;
    }

    .product-card-kupon .product-name a,
    .shop-box-items .shop-content h3 a,
    .top-ratting-box-items .book-content h3 a {
        color: #1E293B !important;
        text-decoration: none !important;
    }

    .product-card-kupon .btn-contact-whatsapp,
    .product-card-kupon .btn-contact-page,
    .shop-box-items .shop-button .theme-btn,
    .top-ratting-box-items .shop-btn .theme-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 100% !important;
        padding: 10px 8px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        background: #2563EB !important;
        color: #fff !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        min-height: 38px !important;
    }

    .product-card-kupon .quick-view-btn {
        display: none !important;
    }

    .shop-box-items .shop-button,
    .top-ratting-box-items .shop-btn {
        padding: 0 10px 10px !important;
        margin-top: auto !important;
    }

    /* ===== DİĞER SECTİONS ===== */
    .section-padding {
        padding: 25px 0 !important;
    }

    .testimonial-section,
    .news-section,
    .counter-section,
    .cta-banner-section {
        padding: 20px 0 !important;
    }

    /* ===== FOOTER ===== */
    .footer-main {
        padding: 15px 0 !important;
    }

    .footer-main .col-xl-2 {
        display: none !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }

    /* ===== WHATSAPP ===== */
    .whatsapp-float {
        display: none !important;
    }

    .sticky-whatsapp-mobile {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 52px !important;
        height: 52px !important;
        background: #25D366 !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
        z-index: 999 !important;
    }

    .sticky-whatsapp-mobile i {
        font-size: 26px !important;
        color: #fff !important;
    }

    .back-to-top {
        bottom: 80px !important;
        right: 20px !important;
        width: 38px !important;
        height: 38px !important;
    }
}

/* ===== 320-374px KÜÇÜK EKRANLAR ===== */
@media (max-width: 374px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .kampanya-grid,
    .shop-section .row.g-4,
    .top-ratting-book-section .row.g-4 {
        gap: 8px !important;
    }

    .product-card-kupon .product-name,
    .shop-box-items .shop-content h3,
    .top-ratting-box-items .book-content h3 {
        font-size: 11px !important;
    }

    .product-card-kupon .btn-contact-whatsapp,
    .shop-box-items .shop-button .theme-btn,
    .top-ratting-box-items .shop-btn .theme-btn {
        padding: 8px 6px !important;
        font-size: 10px !important;
        min-height: 34px !important;
    }

    .hero-slider-modern .hero-swiper {
        height: 140px !important;
    }
}

/* ===================================================================
   PREMIUM ÜRÜN KARTI - BMW MAVİ TEMA
   Modern, profesyonel e-ticaret kartı
   =================================================================== */

/* Ana Kart */
.product-card-premium {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 177, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 177, 0.15);
    border-color: rgba(0, 102, 177, 0.2);
}

/* Resim Alanı */
.card-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
}

.card-image-container .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 177, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.product-card-premium:hover .image-overlay {
    opacity: 1;
}

/* Quick View Butonu */
.quick-view-trigger {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #2563EB;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.product-card-premium:hover .quick-view-trigger {
    transform: translateY(0);
}

.quick-view-trigger:hover {
    background: #2563EB;
    color: #fff;
}

/* Badge Grubu */
.badge-group {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-featured {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 102, 177, 0.4);
}

.badge-new {
    background: #00a651;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.4);
}

.badge-hot {
    background: #e53935;
    color: #fff;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

.badge-discount {
    background: #0066B1;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 102, 177, 0.4);
}

/* Kart İçeriği */
.card-body {
    padding: 20px;
}

.category-label {
    display: inline-block;
    font-size: 10px;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #1E293B;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: #2563EB;
}

/* Kart Footer */
.card-footer {
    margin-top: auto;
}

/* WhatsApp CTA Butonu */
.product-card-premium .btn-contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-card-premium .btn-contact-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.product-card-premium .btn-contact-whatsapp i {
    font-size: 18px;
}

.product-card-premium .btn-contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #2563EB;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 177, 0.3);
}

.product-card-premium .btn-contact-page:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 177, 0.4);
    color: #fff;
}

/* Kampanya Grid - Desktop */
.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== PREMIUM KART RESPONSIVE ===== */
@media (max-width: 1199px) {
    .kampanya-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .kampanya-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card-premium {
        border-radius: 12px;
    }
    
    .card-body {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .kampanya-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card-premium {
        border-radius: 12px;
    }
    
    .card-body {
        padding: 14px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 12px;
    }
    
    .category-label {
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .product-card-premium .btn-contact-whatsapp,
    .product-card-premium .btn-contact-page {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 8px;
        min-height: 44px;
    }
    
    .product-card-premium .btn-contact-whatsapp i,
    .product-card-premium .btn-contact-page i {
        font-size: 16px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .quick-view-trigger {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .image-overlay {
        display: none;
    }
}

@media (max-width: 575px) {
    .kampanya-grid {
        gap: 10px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    .product-title {
        font-size: 12px;
        min-height: 32px;
        margin-bottom: 10px;
    }
    
    .product-card-premium .btn-contact-whatsapp span,
    .product-card-premium .btn-contact-page span {
        display: none;
    }
    
    .product-card-premium .btn-contact-whatsapp,
    .product-card-premium .btn-contact-page {
        padding: 12px;
    }
}

@media (max-width: 374px) {
    .product-title {
        font-size: 11px;
    }
    
    .product-card-premium .btn-contact-whatsapp,
    .product-card-premium .btn-contact-page {
        padding: 10px;
        min-height: 40px;
    }
}

/* ===================================================================
   EK MOBİL İYİLEŞTİRMELER - Touch Friendly
   =================================================================== */

/* Touch hedefleri için minimum boyut */
@media (max-width: 991px) {
    a, button, .btn, [role="button"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Tıklanabilir alanları genişlet */
    .nav-link, .menu-link {
        padding: 12px 16px;
    }
}

/* Mobil scroll bar gizle */
@media (max-width: 767px) {
    .features-scroll-container::-webkit-scrollbar,
    .categories-mobile-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .features-scroll-container,
    .categories-mobile-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* BMW Mavi Tema - Accent renk güncellemesi */
:root {
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #e6f2fa;
    --accent-color: #2563EB;
}

/* Kampanya header BMW Mavi tema */
.kampanya-header h2 {
    color: #2563EB;
}

.kampanya-header h2 i {
    color: #2563EB;
}

.kampanya-header .view-all {
    color: #2563EB;
    border-color: #2563EB;
}

.kampanya-header .view-all:hover {
    background: #2563EB;
    color: #fff;
}

/* Section başlıkları */
.section-title,
.kampanya-header.firsat h2,
.kampanya-header.gunun h2,
.kampanya-header.indirim h2,
.kampanya-header.populer h2 {
    color: #1E293B;
}

.kampanya-header.firsat h2 i { color: #2563EB; }
.kampanya-header.gunun h2 i { color: #00a651; }
.kampanya-header.indirim h2 i { color: #0066B1; }
.kampanya-header.populer h2 i { color: #e53935; }

/* ===================================================================
   MOBİL FOOTER VE SLIDER DÜZELTMELERİ
   =================================================================== */

@media (max-width: 767px) {
    /* ===== FOOTER MODERN MOBİL ===== */
    .footer-modern {
        background: #2563EB;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
    
    /* Footer row düzeni - tek sütun */
    .footer-main .row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Tüm sütunları göster ve tam genişlik yap */
    .footer-main [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        display: block !important;
    }
    
    /* Orta sütunlar görünür */
    .footer-main .col-xl-2 {
        display: block !important;
    }
    
    /* Widget genel stili */
    .footer-widget {
        text-align: center !important;
        padding: 0 15px;
    }
    
    /* Logo alanı */
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 15px !important;
    }
    
    .footer-logo-img {
        max-height: 50px !important;
    }
    
    .footer-desc {
        font-size: 13px;
        line-height: 1.5;
        color: rgba(255,255,255,0.7);
        margin-bottom: 15px;
    }
    
    /* Footer başlıkları */
    .footer-title {
        font-size: 14px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
        color: #fff !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        display: none !important;
    }
    
    /* Footer linkler - 2 sütun grid */
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin: 0 !important;
    }
    
    .footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 12px;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        color: rgba(255,255,255,0.8);
        font-size: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(0, 102, 177, 0.3);
        color: #fff;
    }
    
    .footer-links a i {
        font-size: 10px;
        color: #2563EB;
    }
    
    /* View all link */
    .footer-links .view-all-link {
        grid-column: span 2;
        background: #2563EB !important;
        color: #fff !important;
        font-weight: 600;
    }
    
    /* İletişim bilgileri - grid düzen */
    .footer-contact {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-contact li {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px 10px !important;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 10px !important;
        margin: 0 !important;
    }
    
    .footer-contact .contact-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        background: rgba(0, 102, 177, 0.2) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 8px !important;
    }
    
    .footer-contact .contact-icon i {
        font-size: 16px !important;
        color: #2563EB !important;
    }
    
    .footer-contact .contact-text {
        text-align: center !important;
    }
    
    .footer-contact .contact-text .label {
        display: block !important;
        font-size: 10px !important;
        color: rgba(255,255,255,0.5) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
    }
    
    .footer-contact .contact-text a,
    .footer-contact .contact-text p {
        font-size: 12px !important;
        color: #fff !important;
        word-break: break-word !important;
        line-height: 1.4 !important;
    }
    
    /* Sosyal medya butonları */
    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-top: 20px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-social a {
        width: 44px !important;
        height: 44px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 18px !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-social a:hover {
        background: #2563EB !important;
        transform: translateY(-3px) !important;
    }
    
    .footer-social a[title="WhatsApp"]:hover {
        background: #25D366 !important;
    }
    
    /* Footer bottom */
    .footer-bottom {
        background: rgba(0,0,0,0.3) !important;
        padding: 15px 0 !important;
    }
    
    .footer-bottom-inner {
        text-align: center !important;
    }
    
    .footer-bottom .copyright {
        font-size: 12px !important;
        color: rgba(255,255,255,0.6) !important;
        margin-bottom: 8px !important;
    }
    
    .footer-bottom .copyright strong {
        color: #2563EB !important;
    }
    
    .footer-bottom-links {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-bottom-links a {
        font-size: 11px !important;
        color: rgba(255,255,255,0.5) !important;
    }
    
    .footer-bottom-links .separator {
        display: none !important;
    }
    
    /* ===== HERO SLIDER MOBİL ===== */
    .hero-slider-modern {
        position: relative;
    }
    
    .hero-slider-modern .hero-swiper {
        height: 220px !important;
        min-height: 200px !important;
        max-height: 280px !important;
    }
    
    .hero-slide {
        position: relative;
        height: 100%;
    }
    
    .hero-slide-bg,
    .hero-fullscreen-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    /* Overlay ve içerik mobilde gizle */
    .hero-slide-overlay {
        display: none !important;
    }
    
    .hero-slide-content {
        display: none !important;
    }
    
    /* Slider navigasyon butonları */
    .hero-slider-modern .swiper-button-prev,
    .hero-slider-modern .swiper-button-next,
    .hero-nav-prev,
    .hero-nav-next {
        width: 36px !important;
        height: 36px !important;
        background: rgba(255,255,255,0.9) !important;
        border-radius: 50% !important;
        color: #1E293B !important;
    }
    
    .hero-slider-modern .swiper-button-prev::after,
    .hero-slider-modern .swiper-button-next::after,
    .hero-nav-prev i,
    .hero-nav-next i {
        font-size: 14px !important;
    }
    
    .hero-slider-modern .swiper-button-prev,
    .hero-nav-prev {
        left: 10px !important;
    }
    
    .hero-slider-modern .swiper-button-next,
    .hero-nav-next {
        right: 10px !important;
    }
    
    /* Pagination noktaları */
    .hero-slider-modern .swiper-pagination,
    .hero-pagination {
        bottom: 12px !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255,255,255,0.5) !important;
        opacity: 1 !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet-active {
        background: #2563EB !important;
        width: 24px !important;
        border-radius: 4px !important;
    }
}

/* 575px ve altı için ekstra kompakt */
@media (max-width: 575px) {
    .hero-slider-modern .hero-swiper {
        height: 180px !important;
        min-height: 160px !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr !important;
    }
    
    .footer-links .view-all-link {
        grid-column: span 1 !important;
    }
    
    .footer-contact {
        grid-template-columns: 1fr !important;
    }
    
    .footer-contact li {
        flex-direction: row !important;
        text-align: left !important;
        padding: 12px !important;
    }
    
    .footer-contact .contact-icon {
        margin-bottom: 0 !important;
        margin-right: 12px !important;
    }
    
    .footer-contact .contact-text {
        text-align: left !important;
    }
}

/* ===================================================================
   KRİTİK MOBİL DÜZELTMELER - Logo, Pagination, Ürünler
   =================================================================== */

@media (max-width: 767px) {
    /* ===== HEADER & LOGO FIX ===== */
    .header-modern {
        background: #fff !important;
        padding: 10px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .header-modern .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
        height: auto !important;
        min-height: 50px !important;
    }
    
    /* Logo kesinlikle görünür */
    .header-logo {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }
    
    .header-logo a {
        display: flex !important;
        align-items: center !important;
    }
    
    .header-logo img,
    .header-logo .logo-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 50px !important;
        height: auto !important;
        width: auto !important;
        max-width: 150px !important;
    }
    
    /* Text logo görünür */
    .header-logo .logo-text-styled {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .header-logo .logo-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #2563EB !important;
        color: #fff !important;
        border-radius: 8px !important;
    }
    
    .header-logo .logo-imza {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #2563EB !important;
        display: block !important;
    }
    
    .header-logo .logo-bmw {
        font-size: 11px !important;
        color: #666 !important;
        display: block !important;
    }
    
    /* Hamburger menü */
    .mobile-menu-toggle {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        background: #f5f5f5 !important;
        border-radius: 8px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .hamburger-line {
        width: 20px !important;
        height: 2px !important;
        background: #333 !important;
        display: block !important;
    }
    
    /* ===== SLIDER PAGINATION FIX ===== */
    .hero-slider-modern .swiper-pagination,
    .swiper-pagination.hero-pagination {
        bottom: 15px !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet,
    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.5) !important;
        opacity: 1 !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet-active,
    .swiper-pagination-bullet-active {
        width: 28px !important;
        height: 10px !important;
        border-radius: 5px !important;
        background: #2563EB !important;
    }
    
    /* ===== ÜRÜN KARTLARI - SİYAH ALAN FIX ===== */
    .kampanya-section {
        padding: 25px 0 !important;
        background: #fff !important;
    }
    
    .kampanya-section.section-bg,
    .kampanya-section.alt-bg {
        background: #f8f9fa !important;
    }
    
    .kampanya-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        background: transparent !important;
    }
    
    .product-card-premium {
        background: #fff !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .card-image-container {
        aspect-ratio: 1/1 !important;
        background: #f5f5f5 !important;
        overflow: hidden !important;
    }
    
    .card-image-container .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .card-body {
        padding: 12px !important;
        background: #fff !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .category-label {
        font-size: 10px !important;
        color: #2563EB !important;
        margin-bottom: 4px !important;
        display: block !important;
    }
    
    .product-title {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        min-height: auto !important;
        flex: 1 !important;
    }
    
    .product-title a {
        color: #1E293B !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .card-footer {
        margin-top: auto !important;
    }
    
    .product-card-premium .btn-contact-whatsapp {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 10px 12px !important;
        background: #25D366 !important;
        color: #fff !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        min-height: 44px !important;
    }
    
    .product-card-premium .btn-contact-whatsapp i {
        font-size: 16px !important;
    }
    
    /* Badge düzeltme */
    .badge-group {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        z-index: 5 !important;
    }
    
    .badge {
        padding: 4px 8px !important;
        font-size: 9px !important;
        border-radius: 4px !important;
    }
    
    /* Kampanya header */
    .kampanya-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 15px !important;
        padding: 0 !important;
    }
    
    .kampanya-header h2 {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1E293B !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .kampanya-header h2 i {
        color: #2563EB !important;
        font-size: 16px !important;
    }
    
    .kampanya-header .view-all {
        font-size: 12px !important;
        color: #2563EB !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }
}

/* 575px altı için */
@media (max-width: 575px) {
    .header-logo img,
    .header-logo .logo-img {
        max-height: 35px !important;
        max-width: 100px !important;
    }
    
    .product-card-premium .btn-contact-whatsapp span {
        display: none !important;
    }
    
    .product-card-premium .btn-contact-whatsapp {
        padding: 10px !important;
        justify-content: center !important;
    }
}

/* ===================================================================
   SLIDER GÖRSEL DÜZELTME - Banner Format Görseller İçin
   =================================================================== */

/* Slider container */
.hero-slider-modern {
    width: 100%;
    overflow: hidden;
}

.hero-slider-modern .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Slider görseli - tüm cihazlar için */
.hero-slide-bg,
.hero-fullscreen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Desktop slider */
@media (min-width: 992px) {
    .hero-slider-modern .hero-swiper {
        height: 500px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-slider-modern .hero-swiper {
        height: 350px;
    }
}

/* Mobil slider - banner görseller için optimize */
@media (max-width: 767px) {
    .hero-slider-modern {
        margin: 0;
        padding: 0;
    }
    
    .hero-slider-modern .hero-swiper {
        height: 200px !important;
        min-height: 180px !important;
        max-height: 250px !important;
    }
    
    .hero-slide {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .hero-slide-bg,
    .hero-fullscreen-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    /* Overlay ve içerik gizle */
    .hero-slide-overlay,
    .hero-slide-content,
    .hero-slide .container {
        display: none !important;
    }
    
    /* Swiper slide içi düzen */
    .hero-slide-withtext,
    .hero-slide-imageonly {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    /* Navigasyon butonları */
    .hero-slider-modern .swiper-button-prev,
    .hero-slider-modern .swiper-button-next,
    .hero-nav-prev,
    .hero-nav-next {
        display: none !important;
    }
    
    /* Pagination - altta ortada */
    .hero-slider-modern .swiper-pagination,
    .hero-pagination {
        position: absolute !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 6px !important;
        z-index: 10 !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.6) !important;
        opacity: 1 !important;
        margin: 0 !important;
    }
    
    .hero-slider-modern .swiper-pagination-bullet-active {
        width: 20px !important;
        border-radius: 4px !important;
        background: #2563EB !important;
    }
}

/* 575px altı */
@media (max-width: 575px) {
    .hero-slider-modern .hero-swiper {
        height: 160px !important;
        min-height: 140px !important;
    }
}
