:root {
    /* Primary Colors */
    --primary: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385db;
    --accent: #00d4ff;
    --accent-dark: #00a5cc;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --light-darker: #e2e8f0;
    --white: #ffffff;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 212, 255, 0.7) 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
/* ==================== OVERFLOW FIX ==================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}
/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-base);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; /* ÖNEMLİ */
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ==================== HEADER V2.0 ==================== */
.main-header-v2 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: relative; /* İLK BAŞTA RELATIVE */
    z-index: var(--z-sticky);
    border-bottom: 1px solid var(--light-darker);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.main-header-v2.scrolled {
    position: fixed; /* SCROLL EDİNCE FİXED OLACAK */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 1);
    border-bottom: 2px solid var(--primary);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

/* Logo */
.logo-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}

.logo-v2 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-text small {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav-v2 {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .main-nav-v2 {
        display: flex;
    }
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-light);
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu-v2 {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-dropdown:hover .dropdown-menu-v2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.dropdown-item-v2:hover {
    background: var(--light);
    transform: translateX(5px);
}

.dropdown-item-v2 i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.dropdown-item-v2 img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.dropdown-item-v2 div {
    flex: 1;
}

.dropdown-item-v2 strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.dropdown-item-v2 span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

.dropdown-products {
    min-width: 400px;
}

.dropdown-item-v2.view-all {
    margin-top: 0.5rem;
    border-top: 1px solid var(--light-darker);
    padding-top: 1rem;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.header-phone i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle - DÜZELTİLMİŞ VERSİYON */
.mobile-menu-toggle {
    display: flex !important; /* !important ekledik */
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    cursor: pointer;
    z-index: 1000; /* Z-index ekledik */
    position: relative; /* Position ekledik */
    background: transparent;
    border: none;
    padding: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%; /* Genişlik belirttik */
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-toggle:hover span {
    background: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay-v2 {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay-v2.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content-v2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-menu-overlay-v2.active .mobile-menu-content-v2 {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-darker);
}

.mobile-menu-header .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-full);
    color: var(--dark);
    font-size: 1.2rem;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.mobile-menu-nav > a,
.mobile-submenu-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-menu-nav > a:hover,
.mobile-submenu-title:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-menu-nav i {
    width: 24px;
    text-align: center;
    color: var(--gray);
}

.mobile-submenu {
    margin: 0.5rem 0;
}

.mobile-submenu-title {
    cursor: pointer;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1rem 0.75rem 3.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-submenu-link:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-menu-contact {
    padding: 1rem;
    border-top: 1px solid var(--light-darker);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-contact-btn:first-child {
    background: var(--dark);
    color: var(--white);
}

.mobile-contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== HERO SECTION V2.0 ==================== */
.hero-v2 {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* fixed → scroll (mobilde sorun çıkarır) */
    overflow: hidden;
    width: 100%; /* EKLE */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(0, 102, 204, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    padding: 4rem 0;
    width: 100%; /* EKLE */
    box-sizing: border-box; /* EKLE */
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-v2 h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .hero-v2 {
        min-height: 500px;
        background-attachment: scroll; /* ÖNEMLİ */
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}
@media (min-width: 768px) {
    .hero-v2 h1 {
        font-size: 4rem;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary-v2,
.btn-outline-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-v2 {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary-v2:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-outline-v2 {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-v2:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-v2.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ==================== SECTIONS ==================== */
.section-v2,
.services-section-v2,
.products-section-v2,
.why-us-section-v2,
.regions-section-v2,
.reviews-section-v2,
.cta-section-v2 {
    padding: 5rem 0;
}

.section-title-v2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pre-title {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title-v2 h2 {
        font-size: 3rem;
    }
}

.section-title-v2 p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

.section-title-v2.text-white .pre-title {
    color: var(--accent);
}

.section-title-v2.text-white h2,
.section-title-v2.text-white p {
    color: var(--white);
}

/* ==================== SERVICES SECTION ==================== */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-v2 {
    position: relative;
    background: var(--white);
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.service-card-v2:hover::before {
    opacity: 0.05;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card-v2 > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.service-card-v2:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card-v2 p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
}

.service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 0;
}

.service-card-v2:hover .service-bg {
    opacity: 0.03;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section-v2 {
    background: var(--light);
}

.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 320px → 280px */
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%; /* EKLE */
}

@media (max-width: 768px) {
    .products-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-v2:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card-v2:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.product-card-v2:hover .quick-view {
    transform: translateY(0);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-content h3 a {
    color: var(--dark);
}

.product-content h3 a:hover {
    color: var(--primary);
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.product-meta i {
    color: var(--primary);
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-value.rental {
    font-size: 1.1rem;
    color: var(--dark);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-view-v2,
.btn-whatsapp-v2 {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.btn-view-v2 {
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--light-darker);
}

.btn-view-v2:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-whatsapp-v2 {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp-v2:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.products-cta {
    text-align: center;
}

/* ==================== WHY US SECTION ==================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .why-us-content h2 {
        font-size: 3rem;
    }
}

.why-us-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list-v2 {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--gray);
    line-height: 1.6;
}

.why-us-visual {
    position: relative;
}

.why-us-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==================== REGIONS SECTION ==================== */
.regions-section-v2 {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.regions-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(0,212,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.regions-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 300px → 280px */
    gap: 1rem;
    position: relative;
    z-index: 1;
    width: 100%; /* EKLE */
}

@media (max-width: 768px) {
    .regions-grid-v2 {
        grid-template-columns: 1fr; /* TEK SÜTUN */
    }
}

.region-card-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
}

.region-card-v2:hover {
    background: rgba(0, 102, 204, 0.2);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.region-card-v2 i:first-child {
    color: var(--accent);
    font-size: 1.5rem;
}

.region-card-v2 span {
    flex: 1;
    font-weight: 600;
}

.region-card-v2 .arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.region-card-v2:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-slider-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reviews-slider-v2::-webkit-scrollbar {
    display: none;
}

.review-card-v2 {
    background: var(--white);
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-lg);
    padding: 2rem;
    scroll-snap-align: start;
    transition: all var(--transition-base);
}

.review-card-v2:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.reviewer-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ==================== CTA SECTION ==================== */
.cta-section-v2 {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M0 0L200 200M200 0L0 200" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 200px 200px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ==================== PAGE HEADER ==================== */
.page-header-v2 {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(0,212,255,0.1)"/></svg>');
    background-size: 50px 50px;
}

.page-header-v2 .container {
    position: relative;
    z-index: 1;
}

.page-header-v2 h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-header-v2 h1 {
        font-size: 3.5rem;
    }
}

.page-header-v2 p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb-v2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb-v2 a {
    color: #0f172a;
    transition: var(--transition-fast);
}

.breadcrumb-v2 a:hover {
    color: var(--accent);
}

.breadcrumb-v2 i {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ==================== PRODUCTS CATALOG PAGE ==================== */
.products-catalog-v2 {
    padding: 4rem 0;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-darker);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-catalog-card {
    background: var(--white);
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-catalog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.product-badge-catalog {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-image-catalog {
    position: relative;
    height: 260px;
    background: var(--light);
    overflow: hidden;
}

.product-image-catalog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-catalog-card:hover .product-image-catalog img {
    transform: scale(1.1);
}

.product-quick-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-catalog-card:hover .product-quick-actions {
    opacity: 1;
}

.quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.quick-action:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-content-catalog {
    padding: 1.5rem;
}

.product-cat-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.product-content-catalog h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-content-catalog h3 a {
    color: var(--dark);
}

.product-content-catalog h3 a:hover {
    color: var(--primary);
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.product-specs i {
    color: var(--primary);
}

.product-features-mini {
    margin-bottom: 1.5rem;
}

.product-features-mini li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--dark-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-features-mini i {
    color: var(--success);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-pricing-catalog {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-group:last-child {
    margin-bottom: 0;
}

.price-group .label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.price-group .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-group.rental .price {
    font-size: 1.2rem;
    color: var(--dark);
}

.product-actions-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-detail-v2,
.btn-order-v2 {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.btn-detail-v2 {
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--light-darker);
}

.btn-detail-v2:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-order-v2 {
    background: #25D366;
    color: var(--white);
}

.btn-order-v2:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Catalog CTA */
.catalog-cta-section {
    background: var(--light);
    padding: 4rem 0;
}

.catalog-cta-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.catalog-cta-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.catalog-cta-box h3 i {
    color: var(--primary);
}

.catalog-cta-box p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-section-v2 {
    padding: 4rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery-v2 {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
}

.stock-badge-large {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Info */
.product-info-v2 {
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-block;
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-title-v2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .product-title-v2 {
        font-size: 2.5rem;
    }
}

.product-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-location i {
    color: var(--primary);
}

.product-location strong {
    color: var(--dark);
}

.product-rating-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-darker);
}

.stars-display {
    display: flex;
    gap: 0.25rem;
}

.stars-display i {
    color: #fbbf24;
    font-size: 1rem;
}

.review-count {
    color: var(--gray);
    font-size: 0.9rem;
}

.product-meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-darker);
}

.meta-item {
    font-size: 0.95rem;
    color: var(--dark-light);
}

.meta-item strong {
    color: var(--dark);
    font-weight: 600;
}

.product-description-v2 {
    margin-bottom: 2rem;
}

.product-description-v2 p {
    color: var(--dark-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features-v2 {
    margin-bottom: 2rem;
}

.product-features-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-features-v2 h3 i {
    color: var(--primary);
}

.product-features-v2 ul {
    display: grid;
    gap: 0.75rem;
}

.product-features-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--dark-light);
}

.product-features-v2 li i {
    color: var(--success);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-pricing-v2 {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.price-option {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.price-option:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-option.rental {
    border: 2px solid var(--primary);
}

.price-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.price-label i {
    color: var(--primary);
    font-size: 1.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.product-cta-buttons {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .product-cta-buttons {
        grid-template-columns: 2fr 1fr;
    }
}

.btn-whatsapp-large,
.btn-call-v2 {
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-call-v2 {
    background: var(--dark);
    color: var(--white);
}

.btn-call-v2:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-light);
}

.trust-item i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Related Products */
.related-products-section {
    padding: 4rem 0;
    background: var(--light);
}

.section-title-simple {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.related-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.related-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-product-card h4 {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.related-price {
    padding: 0 1rem 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-related-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-related-order:hover {
    background: #128C7E;
}

/* ==================== SERVICE PAGE ==================== */
.page-header-v2.service-header {
    background: var(--gradient-primary);
}

.service-content-section {
    padding: 4rem 0;
}

.content-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .content-layout-sidebar {
        grid-template-columns: 2fr 1fr;
    }
}

/* Main Content */
.main-content-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.content-intro {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-light);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2 i {
    color: var(--primary);
}

.content-section p {
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.inline-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.inline-link:hover {
    border-bottom-color: var(--primary);
}

/* Featured Products Inline */
.featured-products-inline {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.featured-products-inline h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-products-inline h3 i {
    color: #0369a1;
}

.inline-products-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .inline-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inline-product-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.inline-product-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.inline-product-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.inline-product-info {
    flex: 1;
}

.inline-product-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inline-product-info h4 a {
    color: #0369a1;
}

.inline-product-info h4 a:hover {
    color: #0284c7;
}

.inline-product-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.inline-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0369a1;
    margin-bottom: 0.75rem;
}

.btn-inline-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.btn-inline-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section-v2 {
    margin-top: 3rem;
}

.faq-section-v2 h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-section-v2 h2 i {
    color: var(--primary);
}

.faq-section-v2 p {
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-section-v2 strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Box */
.cta-box-v2 {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    color: var(--white);
    flex-wrap: wrap;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.cta-buttons-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons-inline .btn-primary-v2,
.cta-buttons-inline .btn-whatsapp-v2 {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-buttons-inline .btn-primary-v2:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.cta-buttons-inline .btn-whatsapp-v2 {
    background: #25D366;
    color: var(--white);
}

.cta-buttons-inline .btn-whatsapp-v2:hover {
    background: #128C7E;
}

/* Sidebar */
.sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--white);
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.widget h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.widget h3 i {
    color: var(--primary);
}

/* Quick Contact Widget */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all var(--transition-base);
}

.contact-btn:last-child {
    margin-bottom: 0;
}

.contact-btn.phone-btn {
    background: var(--dark);
    color: var(--white);
}

.contact-btn.phone-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-btn.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.contact-btn.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Location Widget */
.location-tree {
    max-height: 500px;
    overflow-y: auto;
}

.city-group {
    margin-bottom: 1.5rem;
}

.city-group:last-child {
    margin-bottom: 0;
}

.city-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-group h4 i {
    color: var(--primary);
    font-size: 0.9rem;
}

.district-list,
.neighborhood-list {
    margin-left: 1rem;
}

.district-list li,
.neighborhood-list li {
    margin-bottom: 0.5rem;
}

.district-list a,
.neighborhood-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--dark-light);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.district-list a:hover,
.neighborhood-list a:hover,
.district-list li.active > a,
.neighborhood-list li.active > a {
    background: var(--light);
    color: var(--primary);
    padding-left: 1rem;
}

.district-list i,
.neighborhood-list i {
    font-size: 0.75rem;
    color: var(--gray);
}

.neighborhood-list {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

/* Products Widget */
.sidebar-products-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light);
}

.sidebar-products-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-products-list a {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: var(--transition-fast);
}

.sidebar-products-list a:hover {
    transform: translateX(5px);
}

.sidebar-products-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.sidebar-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-product-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* ==================== FOOTER ==================== */
.main-footer-v2 {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent);
    font-size: 2rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-stats .stat {
    font-size: 0.9rem;
}

.footer-stats strong {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-links i {
    font-size: 0.75rem;
    color: var(--accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info i {
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== FLOATING ELEMENTS ==================== */
/* Floating Contact Buttons Container */
.floating-contact-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: var(--z-fixed);
}

/* Base Float Button Style */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
    background: #25D366;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* Phone Float */
.phone-float {
    background: var(--primary);
    animation: pulse-phone 2s infinite;
    animation-delay: 0.5s;
}

.phone-float:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
}

/* Pulse Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 102, 204, 0);
    }
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .floating-contact-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    :root {
        font-size: 15px;
    }
    
    .hero-v2 {
        min-height: 600px;
    }
    
    .hero-v2 h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    .hero-v2 {
        min-height: 500px;
    }
    
    .hero-v2 h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-v2,
    .services-section-v2,
    .products-section-v2,
    .why-us-section-v2,
    .regions-section-v2,
    .reviews-section-v2,
    .cta-section-v2 {
        padding: 3rem 0;
    }
    
    .section-title-v2 h2 {
        font-size: 2rem;
    }
    
    .services-grid-v2,
    .products-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .regions-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .cta-box-v2 {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons-inline {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-buttons-inline .btn-primary-v2,
    .cta-buttons-inline .btn-whatsapp-v2 {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 5rem;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-v2,
    .btn-outline-v2 {
        width: 100%;
        justify-content: center;
    }
    
    .product-actions,
    .product-actions-catalog {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .main-header-v2,
    .mobile-menu-overlay-v2,
    .whatsapp-float,
    .scroll-to-top,
    .main-footer-v2 {
        display: none !important;
    }
    
    body {
        background: var(--white);
    }
    
    .container {
        max-width: 100%;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-light);
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

/* ==================== END ==================== */
/* Product Detail Wrapper with Sidebar */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .product-detail-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

/* Product Sidebar */
.product-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--light-darker);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.sidebar-widget h3 i {
    color: var(--primary);
}

.widget-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Regions List Sidebar */
.regions-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
}

.region-link-sidebar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-md);
    color: var(--dark);
    transition: all var(--transition-base);
}

.region-link-sidebar:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.region-link-sidebar i:first-child {
    color: var(--primary);
    font-size: 1.1rem;
}

.region-link-sidebar:hover i:first-child {
    color: var(--white);
}

.region-link-sidebar span {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.region-link-sidebar i:last-child {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* CTA Widget */
.cta-widget p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all var(--transition-base);
}

.sidebar-cta-btn:last-child {
    margin-bottom: 0;
}

.sidebar-cta-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.sidebar-cta-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sidebar-cta-btn.phone {
    background: var(--dark);
    color: var(--white);
}

.sidebar-cta-btn.phone:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Content Link Styling */
.content-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dotted var(--primary);
    transition: var(--transition-fast);
}

.content-link:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}
/* ==================== MAKALE İÇİ GÖRSEL SİSTEMİ ==================== */


.article-image-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    background: var(--white);
    width: 100%; /* EKLEME 3 */
    max-width: 100%; /* EKLEME 4 */
}

.article-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.article-image-item img {
    width: 100%;
    max-width: 100%; /* EKLEME 5 */
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.article-image-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.95), transparent);
    padding: 1.5rem 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-word; /* EKLEME 6 */
}

.image-caption i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0; /* EKLEME 7 */
}
/* ==================== MAKALE İÇİ BASIT GÖRSEL SİSTEMİ ==================== */
.article-images-simple {
    margin: 2rem 0;
    width: 100%;
}

.article-single-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-single-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.image-description {
    padding: 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
    background: #f1f5f9;
    margin: 0;
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
    .article-images-simple {
        margin: 1.5rem 0;
    }
    
    .article-single-image img {
        border-radius: 8px;
    }
    
    .image-description {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}
/* Mobil Responsive */
@media (max-width: 768px) {
    .article-images-grid {
        grid-template-columns: 1fr; /* TEK SÜTUN */
        gap: 1.5rem;
        padding: 1rem; /* AZALTILDI */
        margin: 2rem 0; /* AZALTILDI */
    }
    
    .article-image-item img {
        height: 200px;
    }
    
    .image-caption {
        font-size: 0.85rem;
        padding: 1rem 0.75rem 0.75rem;
        gap: 0.5rem; /* AZALTILDI */
    }
    
    .image-caption i {
        font-size: 1.25rem; /* AZALTILDI */
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .article-images-grid {
        padding: 0.75rem;
        margin: 1.5rem 0;
        border-radius: var(--radius-md);
    }
    
    .image-caption {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem 0.5rem;
    }
}

/* ==================== ÜRÜN DETAY STICKY FIX ==================== */
.product-gallery-v2 {
    position: relative;
    top: auto;
    height: auto;
    max-width: 100%; /* EKLEME 8 */
}

/* Masaüstünde sticky, mobilde normal */
@media (min-width: 1024px) {
    .product-gallery-v2 {
        position: sticky;
        top: 100px;
        height: fit-content;
        z-index: 10;
    }
}

/* Mobilde görsel düzgün görünsün */
@media (max-width: 1023px) {
    .product-gallery-v2 {
        position: relative;
        margin-bottom: 2rem;
        width: 100%; /* EKLEME 9 */
    }
    
    .main-image-container {
        max-height: 400px;
        overflow: hidden;
        width: 100%; /* EKLEME 10 */
    }
    
    .main-product-image {
        height: auto;
        max-height: 400px;
        width: 100%; /* EKLEME 11 */
        object-fit: contain;
    }
}

/* Stock badge pozisyon düzeltmesi */
.stock-badge-large {
    z-index: 3;
}

/* Product detail grid düzeltmesi */
.product-detail-grid {
    position: relative;
    isolation: isolate;
    max-width: 100%; /* EKLEME 12 */
}

/* Ürün bilgileri scroll edebilsin */
.product-info-v2 {
    position: relative;
    z-index: 1;
    max-width: 100%; /* EKLEME 13 */
}

/* Sidebar düzeltmeleri */
.product-sidebar-v2 {
    position: relative;
    z-index: 1;
    max-width: 100%; /* EKLEME 14 */
}

@media (min-width: 1200px) {
    .product-sidebar-v2 {
        position: sticky;
        top: 100px;
        height: fit-content;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Scroll davranışını düzelt */
.product-detail-wrapper {
    position: relative;
    overflow: visible;
    max-width: 100%; /* EKLEME 15 */
}

/* Alternatif çözüm: Görsel sabit kalacak ama diğer içerik üzerine gelmeyecek */
@media (min-width: 1024px) {
    .product-gallery-v2 {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
    
    .main-image-container {
        position: relative;
        z-index: 1;
    }
}
/* Ürün galeri altında ekstra bilgi */
.product-gallery-info {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-gallery-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-light);
    margin: 0;
}

.product-gallery-info i {
    color: var(--success);
    font-size: 1rem;
}