/* Genel Ayarlar ve Reset */
:root {
    --primary-color: #c71b1c;
    /* Özalp Kırmızısı */
    --secondary-color: #063049;
    /* Özalp Laciverti */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e1e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.oz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.oz-bg-light {
    background-color: var(--light-bg);
}

/* --- BUTON STİLLERİ (YENİ EKLENDİ) --- */
.oz-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Kırmızı Dolgu Buton (Hero ve Çağrı için) */
.oz-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

    .oz-btn-primary:hover {
        background: #a01213;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(199, 27, 28, 0.4);
    }

/* Lacivert Dolgu Buton (Hakkımızda için) */
.oz-btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

    .oz-btn-secondary:hover {
        background: #042335;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(6, 48, 73, 0.4);
    }

/* Çerçeveli Buton (Kartlar için) */
.oz-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 15px;
    padding: 10px 25px;
    font-size: 0.95rem;
}

    .oz-btn-outline:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

/* Top Bar */
#top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    #top-bar .oz-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #top-bar .contact-info span {
        margin-right: 20px;
    }

    #top-bar .contact-info i {
        margin-right: 5px;
        color: var(--primary-color);
    }

    #top-bar .social-media a {
        margin-left: 15px;
        color: var(--white);
        opacity: 0.8;
    }

        #top-bar .social-media a:hover {
            opacity: 1;
            color: var(--primary-color);
        }

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.logo img {
    height: 70px;
    margin-right: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
}

    .nav-links li {
        margin-left: 30px;
        position: relative;
    }

    .nav-links a {
        font-weight: 500;
        font-size: 1rem;
        color: #444;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

    /* Header içindeki İletişim Butonu */
    .nav-links .oz-btn-contact {
        background: var(--primary-color);
        color: var(--white) !important;
        padding: 10px 25px;
        border-radius: 5px;
        transition: 0.3s;
    }

        .nav-links .oz-btn-contact:hover {
            background: #a01213;
        }

/* Dropdown Menu */
.oz-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 220px;
    display: none;
    flex-direction: column;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
}

    .oz-dropdown-menu li {
        margin: 0;
    }

        .oz-dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #f1f1f1;
            font-size: 0.95rem;
        }

            .oz-dropdown-menu li a:hover {
                background: #f9f9f9;
                padding-left: 25px;
            }

.oz-dropdown:hover .oz-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Nested Submenu Styles --- */
.oz-dropdown-submenu {
    position: relative; /* Alt menü bunun içine göre konumlanacak */
}

.oz-submenu {
    position: absolute;
    top: 0;
    left: 100%; /* Sağa doğru açıl */
    width: 220px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none; /* Varsayılan gizli */
    flex-direction: column;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    margin-left: 0px; /* Arada boşluk kalmasın */
}

    .oz-submenu li {
        margin: 0;
    }

        .oz-submenu li a {
            display: block;
            padding: 12px 20px;
            border-bottom: 1px solid #f1f1f1;
            font-size: 0.9rem;
            color: #444;
        }

            .oz-submenu li a:hover {
                background: #f9f9f9;
                padding-left: 25px;
                color: var(--primary-color);
            }

/* Hover durumunda göster */
.oz-dropdown-submenu:hover > .oz-submenu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    /* Removed static background styles as they are now handled by swiper-slide */
    position: relative;
    /* height/min-height handled by .hero-slider class */
}

.hero-slider {
    width: 100%;
    height: 65vh;
    min-height: 500px;
    text-align: center;
    color: var(--white);
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    /* Horizontally center content */
    height: 100%;
    /* Ensure slide takes full height of container */
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    /* Changed to absolute for reliable centering */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Classic dead-center method */
    z-index: 2;
    margin: 0;
}

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        font-weight: 300;
        color: var(--white);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

/* Grid Sistemleri */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Kartlar */
.oz-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid transparent;
}

    .oz-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--primary-color);
    }

.icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(199, 27, 28, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.oz-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.oz-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.oz-card p {
    color: #666;
    margin-bottom: 20px;
    min-height: 50px;
}

/* Yeni İkonlu Kart Stilleri */
.oz-card-icon {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.oz-card-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(199, 27, 28, 0.15);
    border-color: var(--primary-color);
}

.oz-card-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.oz-card-icon:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.oz-card-icon h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.oz-card-icon:hover h3 {
    color: var(--primary-color);
}

.oz-card-icon .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.oz-card.empty-card {
    background: transparent;
    border: 2px dashed #eee;
    box-shadow: none;
    opacity: 0.5;
}

/* Hakkımızda Bölümü */
.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #ccc;
    padding-top: 70px;
}

.footer-grid {
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-color);
    }

.footer-col ul li {
    margin-bottom: 12px;
}

    .footer-col ul li a {
        display: flex;
        align-items: center;
    }

        .footer-col ul li a i {
            font-size: 0.8rem;
            margin-right: 10px;
            color: var(--primary-color);
        }

        .footer-col ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .footer-col p i {
        margin-right: 10px;
        color: var(--primary-color);
    }

.copyright {
    background: #042335;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    .copyright p{
        margin-bottom: 0px !important
    }
    /* Responsive (Mobil Uyumluluk) */
    @media (max-width: 992px) {
        .grid-3 {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }

        .showcase-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        .nav-links li {
            margin: 15px 0;
        }

    .hamburger {
        display: block;
    }

    .grid-3,
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* Resmi üste al */

    .hero-content h1 {
        font-size: 2rem;
    }

    #top-bar {
        display: none;
    }
}

/* --- SAYFA BAŞLIĞI (PAGE HEADER) --- */
.page-header {
    background: linear-gradient(rgba(6, 48, 73, 0.8), rgba(6, 48, 73, 0.8)), url('../img/slider/2.jpg') no-repeat center center/cover;
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

.oz-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

    .oz-breadcrumb a {
        color: var(--white);
    }

        .oz-breadcrumb a:hover {
            color: var(--primary-color);
        }

    .oz-breadcrumb i {
        margin: 0 10px;
        font-size: 0.8rem;
    }

    .oz-breadcrumb span {
        color: var(--primary-color);
        font-weight: 500;
    }

/* --- SIDEBAR DÜZENİ --- */
.grid-sidebar {
    display: grid;
    grid-template-columns: 3fr 1fr;
    /* Sol 3 birim, Sağ 1 birim genişlik */
    gap: 40px;
}

/* İçerik Alanı */
.content-area h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-area h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.content-area p {
    margin-bottom: 15px;
    text-align: justify;
}

.about-main-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}

    .info-box i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-right: 20px;
        margin-top: 5px;
    }

    .info-box h4 {
        margin-bottom: 5px;
        color: var(--secondary-color);
    }

/* Sidebar Widgetları */
.widget {
    background: var(--white);
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
}

    .widget h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
        color: var(--secondary-color);
    }

.widget-links li {
    border-bottom: 1px solid #f4f4f4;
}

    .widget-links li:last-child {
        border-bottom: none;
    }

    .widget-links li a {
        display: block;
        padding: 12px 0;
        color: #555;
        transition: 0.3s;
    }

        .widget-links li a:hover,
        .widget-links li a.active {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .widget-links li a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }

/* İletişim Widget */
.contact-widget ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

    .contact-widget ul li i {
        width: 30px;
        height: 30px;
        background: var(--secondary-color);
        color: var(--white);
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        margin-right: 10px;
        font-size: 0.8rem;
    }

.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .grid-sidebar {
        grid-template-columns: 1fr;
    }

    /* Mobilde tek sütun */
    .sidebar {
        order: 2;
    }

    /* Sidebar'ı alta al */
}

/* --- ÜRÜN LİSTELEME SAYFASI (YENİ EKLENDİ) --- */

.oz-text-center {
    text-align: center;
}

.oz-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    margin-bottom: 20px;
}

/* Grid Yapısı */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Ürün Kartı */
.product-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

/* Ürün Resmi */
.product-image {
    position: relative;
    height: 220px;
    /* Sabit yükseklik */
    overflow: hidden;
    background: #f9f9f9;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Resmi kutuya sığdırır, taşanı kırpar */
        transition: transform 0.5s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
    /* Resim hafifçe büyür */
}

/* Hover Overlay (Üzerine gelince çıkan ikon) */
.oz-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 48, 73, 0.6);
    /* Lacivert transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .oz-overlay {
    opacity: 1;
}

.oz-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    transition: 0.3s;
}

    .oz-btn-icon:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: scale(1.1);
    }

/* Ürün Bilgileri */
.product-info {
    padding: 20px;
    text-align: center;
}

    .product-info h3 {
        font-size: 1.2rem;
        color: var(--secondary-color);
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-info p {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 20px;
        height: 45px;
        /* İki satır metin yüksekliği */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-info .oz-btn {
        margin-top: 0;
    }

/* --- ÜRÜN DETAY SAYFASI (YENİ EKLENDİ) --- */

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Sol Taraf: Galeri */
.product-gallery {
    position: sticky;
    top: 100px;
    /* Sayfa kayarken bir süre sonra sabit kalır */
}

.main-image {
    width: 100%;
    height: 400px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .main-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    object-fit: cover;
}

    .thumb:hover,
    .thumb.active {
        opacity: 1;
        border-color: var(--primary-color);
        box-shadow: 0 0 5px rgba(199, 27, 28, 0.3);
    }

/* Sağ Taraf: İçerik */
.product-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-meta {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

    .badge.stock {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .badge.condition {
        background: #e3f2fd;
        color: #1565c0;
    }

.product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.product-description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 30px;
}

    .features-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        color: #444;
    }

        .features-list li i {
            color: #2e7d32;
            /* Yeşil ikon */
            margin-right: 10px;
            font-size: 1.1rem;
        }

/* Aksiyon Butonları */
.action-buttons {
    display: flex;
    gap: 15px;
}

.oz-btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

    .oz-btn-whatsapp:hover {
        background: #128c7e;
        color: #fff;
    }

/* --- TABLI İÇERİK --- */
.product-tabs {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.tab-buttons {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    /* Çizgiyi örtmek için */
    transition: 0.3s;
}

    .tab-btn:hover {
        color: var(--secondary-color);
    }

    .tab-btn.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

.tab-content {
    display: none;
    /* Varsayılan gizli, JS ile açılacak */
    animation: fadeIn 0.5s;
}

    .tab-content h3 {
        font-size: 1.3rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .tab-content ul {
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .tab-content li {
        margin-bottom: 8px;
    }

/* Teknik Tablo */
.tech-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

    .tech-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .tech-table tr:nth-child(odd) {
        background: #f9f9f9;
    }

    .tech-table td:first-child {
        font-weight: 500;
        color: var(--secondary-color);
        width: 40%;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .main-image {
        height: 300px;
    }

    .action-buttons {
        flex-direction: column;
    }

        .action-buttons .oz-btn {
            width: 100%;
        }
}

/* --- GALERİ SAYFASI (YENİ EKLENDİ) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    /* Tüm resimler aynı yükseklikte */
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 48, 73, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox (Modal) Stili */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

    .close-lightbox:hover,
    .close-lightbox:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* Mobil için Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* --- İLETİŞİM SAYFASI (YENİ EKLENDİ) --- */
.grid-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* İletişim Bilgileri Kutusu */
.contact-info-box h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-desc {
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .info-item .icon {
        width: 50px;
        height: 50px;
        background: #f0f4f8;
        color: var(--primary-color);
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 1.2rem;
        margin-right: 20px;
        flex-shrink: 0;
        /* İkonun sıkışmasını engeller */
    }

    .info-item h4 {
        font-size: 1.1rem;
        color: var(--secondary-color);
        margin-bottom: 5px;
    }

    .info-item p {
        color: #666;
        font-size: 0.95rem;
    }

    .info-item a:hover {
        color: var(--primary-color);
    }

/* Sosyal Medya Linkleri (Büyük) */
.social-links-big {
    margin-top: 40px;
}

    .social-links-big a {
        display: inline-block;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        background: #eee;
        color: #555;
        border-radius: 5px;
        margin-right: 10px;
        transition: 0.3s;
    }

        .social-links-big a:hover {
            color: var(--white);
        }

        .social-links-big a.fb:hover {
            background: #3b5998;
        }

        .social-links-big a.ins:hover {
            background: #e1306c;
        }

        .social-links-big a.tw:hover {
            background: #1da1f2;
        }


/* İletişim Formu Kutusu */
.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-color);
}

    .contact-form-box h3 {
        font-size: 1.5rem;
        color: var(--secondary-color);
        margin-bottom: 30px;
        text-align: center;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
        font-size: 0.95rem;
        transition: 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 5px rgba(199, 27, 28, 0.2);
        }

/* Harita Alanı */
.map-section {
    margin-bottom: -70px;
    /* Footer ile boşluğu kapatmak için (opsiyonel) */
    filter: grayscale(20%);
    /* Haritayı biraz grileştirir, daha şık durur */
    transition: 0.3s;
}

    .map-section:hover {
        filter: grayscale(0%);
    }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .grid-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-box {
        padding: 30px;
    }
}

/* --- NEW STYLES FOR REDESIGN --- */

/* News Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Changed to 50-50 split */
    gap: 30px;
}

.product-highlight {
    height: 100%;
    min-height: 400px;
    /* Increased height for alignment */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    /* Increased padding */
}

.oz-overlay-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    padding: 10px;
    /* Extra padding for text legibility area */
}

    .oz-overlay-text h3 {
        margin-bottom: 10px;
        font-size: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        color: var(--white);
        text-align: left;
        /* Ensure title is readable */
    }

/* Fix for Swiper inside Grid causing overflow */
.showcase-right {
    min-width: 0;
    overflow: hidden;
}

.news-slider {
    padding-bottom: 40px !important;
    /* space for pagination */
    height: 100%;
    /* Fill the container height */
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 180px;
    /* Reduced height as they are now horizontal */
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
}

.news-img {
    height: 100%;
    width: 35%;
    /* Fixed width for image */
    overflow: hidden;
    flex-shrink: 0;
}

    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: none;
    /* Removed border as image separates it */
}

    .news-content h3 {
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .news-content p {
        font-size: 0.9rem;
        color: #666;
    }

/* Card Background Style (for Quick Access) */
.oz-card-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    text-align: left;
    border: none;
    border-radius: 10px;
}

    .oz-card-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
        transition: 0.3s;
        z-index: 0;
    }

    .oz-card-bg:hover::before {
        background: linear-gradient(to top, rgba(199, 27, 28, 0.9), rgba(199, 27, 28, 0.4));
    }

.oz-card-overlay {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    transition: 0.3s;
}

.oz-card-bg h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.oz-card-bg .oz-btn-outline-white {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.oz-card-bg:hover .oz-btn-outline-white {
    opacity: 1;
    transform: translateY(0);
}

.oz-card-bg:hover {
    transform: translateY(-5px);
}

/* White Outline Button */
.oz-btn-outline-white {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
}

    .oz-btn-outline-white:hover {
        background: var(--white);
        color: var(--primary-color);
    }

.oz-btn-sm {
    padding: 5px 15px;
    font-size: 0.85rem;
}

.oz-btn-light {
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--white);
}

    .oz-btn-light:hover {
        background: #eee;
    }

/* Empty Card Placeholder */
.empty-card {
    background: transparent;
    box-shadow: none;
    border: 2px dashed #ddd;
    min-height: 250px;
}

/* Video Slider Styles */
.video-slider {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    /* padding-bottom: 56.25%;  Aspect Ratio 16:9 for responsive iframes if needed, but here we want full height */
    padding-bottom: 0;
}

.video-slider .swiper-slide {
    height: 100%;
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slider .swiper-button-next,
.video-slider .swiper-button-prev {
    color: var(--white);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Language Selector */
.top-bar-right {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

.current-lang {
    display: flex;
    align-items: center;
    color: var(--white);
    opacity: 0.9;
    padding: 5px 0;
}

    .current-lang img {
        margin-right: 5px;
        height: 12px;
        /* Small flag */
    }

    .current-lang i {
        font-size: 0.7rem;
        margin-left: 5px;
        color: var(--primary-color);
    }

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: none;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown:hover .lang-menu {
    display: block;
    animation: fadeIn 0.3s;
}

.lang-menu li a {
    display: flex;
    /* Ensure flags and text align */
    align-items: center;
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: none;
    /* Remove underline */
}

    .lang-menu li a img {
        margin-right: 8px;
        height: 12px;
    }

    .lang-menu li a:hover {
        background: #f1f1f1;
        color: var(--primary-color);
    }
