/* XMAX Audio - Ana CSS Dosyası */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo img {
    max-height: 60px;
    width: auto;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* One Page Sections */
.one-page section {
    scroll-margin-top: 80px;
}

section[id] {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.75) 100%);
    z-index: 1;
    animation: heroBackgroundMove 20s ease-in-out infinite;
    overflow: hidden;
}

/* Büyük hareketli multimedya cihazı görseli */
.hero-animated-device {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 500px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiNmZmY7c3RvcC1vcGFjaXR5OjAuNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3R5bGU9InN0b3AtY29sb3I6I2ZmZjtzdG9wLW9wYWNpdHk6MC4yIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMTAwIiB5PSI1MCIgd2lkdGg9IjUwMCIgaGVpZ2h0PSIzNTAiIHJ4PSIyMCIgZmlsbD0idXJsKCNncmFkKSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjQiIG9wYWNpdHk9IjAuNCIvPjxyZWN0IHg9IjEyMCIgeT0iNzAiIHdpZHRoPSI0NjAiIGhlaWdodD0iMzEwIiByeD0iMTAiIGZpbGw9IiMwMDAiIG9wYWNpdHk9IjAuNiIvPjxjaXJjbGUgY3g9IjM1MCIgY3k9IjIyMCIgcj0iNjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIzIiBvcGFjaXR5PSIwLjUiLz48cGF0aCBkPSJNMjUwIDI4MCBRMzUwIDIzMCA0NTAgMjgwIFE1NTAgMzMwIDY1MCAyODAiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIzIiBmaWxsPSJub25lIiBvcGFjaXR5PSIwLjUiLz48Y2lyY2xlIGN4PSIyNTAiIGN5PSIyODAiIHI9IjE1IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjYiLz48Y2lyY2xlIGN4PSI0NTAiIGN5PSIyODAiIHI9IjE1IiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjYiLz48L3N2Zz4=');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: floatHero 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatHero {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translate(-50%, -50%) translateY(-40px) rotate(3deg) scale(1.08);
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-25px) rotate(-2deg) scale(1.05);
    }
    75% { 
        transform: translate(-50%, -50%) translateY(-45px) rotate(2deg) scale(1.07);
    }
}

@media (max-width: 968px) {
    .hero-animated-device {
        width: 500px;
        height: 350px;
    }
}

@media (max-width: 640px) {
    .hero-animated-device {
        width: 350px;
        height: 250px;
        opacity: 0.3;
    }
}

/* Eğer hero-bg.jpg yoksa, gradient göster */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%);
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Altı Bölüm */
.hero-below-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.section-title-main {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.hero-below-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.home-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .home-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-boxes-grid {
        grid-template-columns: 1fr;
    }
}

.home-box {
    position: relative;
    overflow: hidden;
    background: #f8f9fa; /* Varsayılan, inline style ile override edilebilir */
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
    --box-bg-color: #667eea;
    --box-bg-color-end: #764ba2;
}

/* Hover çizgi efekti - alttan yukarı 2 saniyede doldur */
.box-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--box-bg-color, #667eea) 0%, var(--box-bg-color-end, #764ba2) 100%);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.home-box:hover .box-hover-line {
    width: 100%;
}

/* Hover'da arka plan dolumu - 2 saniyede doldur */
.home-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--box-bg-color, #667eea);
    opacity: 0.1;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.home-box:hover::before {
    width: 100%;
}

.home-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #dee2e6;
}

.box-image-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.box-image-icon {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.box-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.box-icon-gradient {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    line-height: 1;
}

.box-title {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.box-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.box-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    margin-top: 1rem;
}

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

/* Yorumlar Bölümü */
.comments-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

.comment-rating {
    margin-bottom: 1rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.star.filled {
    color: #ffc107;
}

.comment-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author strong {
    color: var(--primary-color);
}

.verified-badge {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Markalar Slider */
.brands-slider-section {
    padding: 3rem 0;
    background: var(--white);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-slider-track {
    display: flex;
    animation: slideBrands 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

@keyframes slideBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-slide:hover {
    opacity: 1;
}

.brand-slide img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-slide:hover img {
    filter: grayscale(0%);
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.brands-slider-track:hover {
    animation-play-state: paused;
}

/* Kutucuk Detay Sayfası */
.box-detail-page {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.box-detail-header {
    position: relative;
}

.box-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
}

.box-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-detail-title-section {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
}

.box-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.box-detail-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.box-detail-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.box-detail-content {
    padding: 3rem;
    line-height: 1.8;
    color: var(--text-color);
}

.box-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.box-detail-content h2,
.box-detail-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.box-detail-content p {
    margin-bottom: 1.5rem;
}

.box-detail-content ul,
.box-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.box-detail-content li {
    margin-bottom: 0.5rem;
}

.box-detail-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .box-detail-image {
        height: 250px;
    }
    
    .box-detail-page h1 {
        font-size: 1.8rem;
    }
    
    .box-detail-content {
        padding: 2rem 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background: #555;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.product-info h3 {
    margin: 0.5rem 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    line-height: 1.4;
}

.product-info h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.product-info h3 a:hover {
    color: var(--secondary-color);
}

.product-info p {
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.6;
}

/* Ürün Özellikleri Mini */
.product-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: help;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-badge:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.feature-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Video Badge */
.product-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.video-icon {
    font-size: 1.1rem;
}

/* Video Container */
.product-video {
    margin-top: 2rem;
}

.product-video h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .video-container iframe,
    .video-container video {
        height: 250px;
    }
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product-image-gallery {
    width: 100%;
}

.product-main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-main-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #ff6b35;
    border-width: 3px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-specs-table {
    margin-top: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.specs-table th {
    background: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 1px solid #dee2e6;
    width: 40%;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover {
    background: #f8f9fa;
}
    box-shadow: var(--shadow);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-qr {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.product-qr img {
    max-width: 200px;
    margin: 1rem 0;
}

.product-description,
.product-specs {
    margin: 2rem 0;
}

.product-description h2,
.product-specs h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.description-content,
.specs-content {
    line-height: 1.8;
    color: var(--text-light);
}

/* Product Tabs */
.product-tabs {
    margin-top: 2rem;
}

.tabs-header {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s;
    position: relative;
    bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-panel.active {
    display: block;
}

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

.product-contact-form {
    max-width: 600px;
}

.product-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.product-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.product-contact-form input,
.product-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.product-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Feature Filters */
.feature-filters {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-filters h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.filters-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

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

/* Category Cards with Icons */
.category-card {
    text-align: center;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Documents */
.documents-list {
    margin: 2rem 0;
}

.document-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.document-icon {
    font-size: 3rem;
}

.document-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form,
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact Page */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2980b9;
}

/* About Page */
.about-content {
    line-height: 1.8;
    margin: 2rem 0;
}

.about-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-light);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-section .section-title {
    margin-bottom: 3rem;
}

/* Category Cards Animation */
.category-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Product Cards Animation */
.product-card {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .contact-page {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Yeni Yorumlar Bölümü */
.comments-section-new {
    padding: 5rem 0;
    /* Arka plan rengi dinamik olarak header.php'den gelecek */
}

.comments-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .comments-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .comments-grid-new {
        grid-template-columns: 1fr;
    }
}

.comment-card-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-image-slice: 1;
    transition: all 0.3s ease;
}

.comment-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.comment-avatar {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.comment-text-new {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin: 2rem 0 1.5rem 0;
    font-size: 1rem;
    padding-top: 1rem;
}

.comment-author-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.comment-author-new strong {
    color: var(--text-color);
    font-size: 1rem;
}

.comment-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.verified-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #27ae60;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Ürün Reklamı Bölümü */
.featured-product-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.featured-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .featured-product-wrapper {
        grid-template-columns: 1fr;
    }
}

.featured-product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.featured-product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .featured-product-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.featured-product-image {
    position: relative;
    text-align: center;
}

.product-image-animated {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: floatProduct 3s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.product-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Karşılaştırma Bölümü */
.compare-section {
    padding: 5rem 0;
    background: var(--white);
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 800px;
}

.compare-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.compare-product-header {
    text-align: center;
    padding: 0.5rem 0.4rem;
}

.compare-product-image {
    margin: 0.5rem 0;
    text-align: center;
}

.compare-product-image img {
    max-width: 60px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.compare-product-header h3 {
    color: white;
    font-size: 0.85rem;
    margin: 0.3rem 0 0.15rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.compare-product-category {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.15rem;
}

.compare-table th {
    color: white;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-weight: 600;
    vertical-align: top;
}

.compare-table th:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    z-index: 2;
}

.compare-table td {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
    font-size: 0.9rem;
}

.compare-table tbody tr:hover {
    background: #f8f9fa;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-name-cell {
    background: #f8f9fa;
    font-weight: 600;
    text-align: left !important;
    color: var(--text-color);
    position: sticky;
    left: 0;
    z-index: 1;
}

.feature-icon-compare {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.compare-table thead th:first-child {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    left: 0;
    z-index: 2;
}

@media (max-width: 968px) {
    .compare-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }
    
    .compare-product-image img {
        max-width: 50px;
        max-height: 38px;
    }
    
    .compare-product-header h3 {
        font-size: 0.75rem;
    }
    
    .compare-product-category {
        font-size: 0.7rem;
    }
    
    .compare-table {
        min-width: 800px;
    }
    
    .compare-table th {
        padding: 0.5rem 0.4rem;
    }
    
    .compare-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
    }
}

.feature-icon-compare {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.compare-table tbody tr:hover {
    background: #f8f9fa;
}

/* Hero Slider Section - Profesyonel Multimedia Tasarım */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    /* Arka plan rengi dinamik olarak header.php'den gelecek */
}

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

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .slider-image {
    transform: scale(1.05);
    animation: slideZoom 8s ease-in-out infinite;
}

@keyframes slideZoom {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 4rem 3rem 3rem;
    color: white;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.6s ease-out;
}

.hero-slide:not(.active) .slider-caption {
    transform: translateY(50px);
    opacity: 0;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    animation: slideTitleFadeIn 0.8s ease-out 0.3s both;
}

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

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #fff;
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255,255,255,0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(255,255,255,0.9);
    }
}

/* Multimedia efekti - Glow */
.hero-slide.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: multimediaGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes multimediaGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-slider-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slider-caption {
        padding: 3rem 2rem 2rem;
    }
}

@media (max-width: 640px) {
    .hero-slider-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .slider-caption {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .slider-controls {
        bottom: 20px;
        padding: 0.75rem 1rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 30px;
    }
}

/* Ana Sayfa Reklam Alanı */
.home-ad-section {
    padding: 5rem 0;
    background: var(--white);
}

.home-ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.home-ads-grid:has(.home-ad-left:only-child),
.home-ads-grid:has(.home-ad-center:only-child),
.home-ads-grid:has(.home-ad-right:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

.home-ads-grid:has(.home-ad-left) + .home-ads-grid:has(.home-ad-right),
.home-ads-grid:has(.home-ad-left):has(.home-ad-right):not(:has(.home-ad-center)) {
    grid-template-columns: 1fr 1fr;
}

.home-ad-item {
    position: relative;
    overflow: hidden;
    background-color: #ffffff; /* Varsayılan, inline style ile override edilebilir */
    --ad-bg-color: #667eea;
    --ad-bg-color-rgb: 102, 126, 234;
    --ad-bg-color-end: #764ba2;
    --ad-bg-color-end-rgb: 118, 75, 162;
}

/* Hover çizgi efekti - alttan yukarı 2 saniyede doldur */
.home-ad-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ad-bg-color, #667eea) 0%, var(--ad-bg-color-end, #764ba2) 100%);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.home-ad-item:hover::after {
    width: 100%;
}

/* Hover'da arka plan dolumu - 2 saniyede doldur */
.home-ad-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--ad-bg-color, #667eea);
    opacity: 0.1;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.home-ad-item:hover::before {
    width: 100%;
}

.home-ad-left {
    justify-self: start;
}

.home-ad-center {
    justify-self: center;
}

.home-ad-right {
    justify-self: end;
}

.home-ad-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.home-ad-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    /* Tüm görsellerin aynı boyutta görünmesi için aspect ratio kullan */
    aspect-ratio: 16 / 9;
}

.home-ad-image-wrapper:hover {
    transform: scale(1.02);
}

.ad-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video overlay için de aynı yüksekliği kullan */
.home-ad-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.home-ad-image {
    position: relative;
    overflow: hidden;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-ad-image:hover .video-play-overlay {
    opacity: 1;
}

.play-button {
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.video-play-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home-ad-link {
    display: block;
    width: 100%;
}

.home-ad-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.home-ad-video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 10px;
    padding: 2rem;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: #667eea;
}

.video-modal-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.home-ad-content {
    text-align: center;
    margin-top: 2rem;
}

.home-ad-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 968px) {
    .home-ads-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .home-ad-left,
    .home-ad-center,
    .home-ad-right {
        justify-self: center;
    }
}

/* Footer Map Section */
.footer-map-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.footer-map-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.site-footer .container {
    padding: 3rem 20px 1rem;
}

@media (max-width: 768px) {
    .footer-map-section {
        padding: 1.5rem 0;
    }
    
    .footer-map-wrapper iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        padding: 1rem;
    }
    
    .home-ad-section {
        padding: 3rem 0;
    }
}

