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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.main-header {
    background-color: #660000;
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/* Header tam genişlik - logo solda dursun */
.main-header .container {
    max-width: 100%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    gap: 24px;
}

/* Navigasyonu sağa it */
.main-header .main-nav {
    margin-left: auto;
}

/* Header search (desktop) */
.header-center{ flex:1; display:flex; justify-content:center; }
.header-search{ display:none; position: relative; }
.header-search-form{ display:flex; align-items:center; gap:6px; }
.header-search-form input{
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 220px;
    background:#fff;
}
.header-search-form button{
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #000;
    background:#000; color:#fff; cursor:pointer;
}
.search-suggest{
    position:absolute; top: 40px; left:0; right:0;
    background:#fff; border:1px solid #eee; border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    display:none; z-index: 1002; max-height: 320px; overflow:auto;
}
.ss-item{ display:block; padding:8px 10px; color:#000; text-decoration:none; }
.ss-item:hover{ background:#f7f7f7; }
.ss-empty{ color:#666; cursor:default; }
.ss-media{ display:flex; align-items:center; gap:10px; }
.ss-thumb{ width:40px; height:40px; object-fit:cover; border-radius:6px; border:1px solid #eee; }
.ss-text{ display:block; }

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

/* Hide mobile-only search by default on desktop */
.mobile-search{ display:none; }

/* Mobile header layout - move hamburger to far right */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto; /* push right */
        order: 3; /* make sure it becomes the last item */
    }
    .logo { order: 1; }
    .header-center { order: 2; }
    /* On mobile, don't force nav to the right; button should be last */
    .main-header .main-nav {
        margin-left: 0;
    }
}
.logo a {
    text-decoration: none;
    color: white;
}

/* Header search (desktop) */
.header-search{
    display:none;
    margin-left: 24px;
}
.header-search input{
    padding: 8px 10px;
    border:1px solid #ddd;
    border-radius: 8px;
    min-width: 240px;
}
.header-search .btn{
    padding: 8px 12px;
}
@media (min-width: 980px){
    .header-search{ display:flex; align-items:center; gap:8px; }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover {
    color: #ffcccc;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcccc;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* Only show the Gallery link in mobile menu */
.main-nav .mobile-only{ display:none; }
@media (max-width: 900px){
  .main-nav .mobile-only{ display:block; }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlider 15s infinite;
    opacity: 1;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes heroSlider {
    0% {
        transform: translateX(100%);
        opacity: 1;
    }
    2% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translateX(0);
        opacity: 1;
    }
    33% {
        transform: translateX(0);
        opacity: 1;
    }
    35% {
        transform: translateX(-100%);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 1;
    }
}

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

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background-color: #000000;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-hero-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-hero-secondary {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-icon {
    color: #000000;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: white;
    margin-bottom: 4rem;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}
.intro-logo {
    max-width: 110px !important;
    height: auto;
    border-radius: 6px;
    display: block;
}
@media (max-width: 768px) {
    .intro-head {
        gap: 12px;
    }
    .intro-logo {
        max-width: 90px !important;
    }
}

/* Mobile heading readability tweaks */
@media (max-width: 576px) {
    .intro-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .intro-text h2 {
        font-size: 1.55rem;
        line-height: 1.25;
        margin: 4px 0 8px 0;
        word-break: break-word;
        hyphens: auto;
    }
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
}

.intro-lead {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
}

.feature-item svg {
    flex-shrink: 0;
    color: #000000;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.intro-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: #ffffff;
    color: #000000;
    padding: 4rem 0 2rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #000000;
}

/* Categories Page Header Background */
.categories-page-header {
    background-image: url('https://arabam-blog.mncdn.com/wp-content/uploads/2023/02/araba-logolari.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.categories-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.categories-page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
}

/* Header with background image (no white padding/border) */
.image-header{
    padding: 0 !important;
    margin-bottom: 10px !important;
    border: 0 !important;
}
/* Galeri başlığı: mobilde göster, masaüstünde gizle */
@media (min-width: 980px){
  .image-header{ display:none !important; }
}

/* Compact spacing for products page blocks */
.products-section{
    padding-top: 0 !important;
}
.products-section .category-filter{ margin-top: 4px !important; }
.products-section .category-filter h3{
    margin-bottom: 8px;
}

.categories-page-header h1 {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.categories-page-header p {
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    color: #000000;
    font-weight: 500;
}

/* Latest Products Section */
.latest-products {
    padding: 4rem 0;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.no-products {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #000000;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #999;
}

.placeholder-image p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #999;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* 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-color: #000000;
    color: white;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.btn-secondary {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: white;
}

/* Product Detail */
.product-detail {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-image-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-detail-image {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.product-detail-image:hover img {
    transform: scale(1.02);
}

.placeholder-image-large {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.placeholder-image-large p {
    margin-top: 1rem;
    font-size: 1rem;
}

.product-detail-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    padding: 1.5rem;
}

.product-detail-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.product-category-badge {
    margin-bottom: 1rem;
}

.product-category-badge a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.product-category-badge a:hover {
    background: #000000;
    color: white;
}

.product-detail-info-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail-price-wrapper {
    margin-top: 1.5rem;
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    display: inline-block;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.product-buy-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:16px;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
    margin-top:8px;
}
.product-buy-box .stock-line{
    color:#28a745;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:8px;
}
.stock-dot{
    width:10px;height:10px;border-radius:50%;
    background:#28a745;display:inline-block;
}
.qty-row{
    display:flex;align-items:center;gap:8px;margin:12px 0;
}
.qty-row input{
    width:60px;text-align:center;
    padding:8px;border:1px solid #ddd;border-radius:8px;
}
.qty-btn{
    width:36px;height:36px;border:1px solid #ddd;border-radius:8px;background:#fff;cursor:pointer;
}
.btn-wide{width:100%;justify-content:center;}

/* Extra info box on product detail left column */
.product-info-extra{
    margin-top: 16px;
    background:#ffffff;
    border:1px solid #eee;
    border-radius:12px;
    padding:16px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}
.extra-logo-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:12px;
}
.extra-logo{
    max-width:180px;
    height:auto;
}
.extra-sections h3{
    margin:10px 0 6px 0;
    font-size:1.05rem;
    color:#000;
}
.extra-sections p{
    color:#444;
    line-height:1.6;
}
.contact-list{
    margin: 0;
    padding-left: 18px;
    color:#333;
}
.contact-list a{ color:#000; text-decoration: underline; }

.em-red{
    text-decoration-line: underline;
    text-decoration-color: #e53935;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.mini-divider{
    height: 1px;
    background: #eee;
    margin: 12px 0;
}
.trust-badges{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
}
.trust-badges li{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
    border: 1px dashed #e5e5e5;
    border-radius: 8px;
    padding: 8px 10px;
    color: #333;
    font-size: .95rem;
}
.tb-icon{
    width: 28px; height: 28px;
    display:grid; place-items:center;
    border-radius: 50%;
    background:#fff;
    border:1px solid #ececec;
}

/* Responsive tweaks for trust badges */
@media (max-width: 600px){
    .trust-badges{
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 8px;
    }
    .trust-badges li{
        justify-content: center;
        padding: 10px;
        font-size: .9rem;
    }
}
@media (max-width: 380px){
    .trust-badges{
        grid-template-columns: 1fr;
    }
}

.btn-call {
    background-color: #28a745;
    color: #fff !important;
    border: 2px solid #28a745;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color .2s, transform .1s;
}
.btn-call:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-1px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: #ffffff;
    color: #000000;
    border: 2px dashed #cfcfcf;
}

.btn-outline:hover {
    border-color: #000000;
}

.product-specs-box {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.product-specs-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.spec-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.spec-value {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 600;
}

.product-description-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.product-description-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 600;
}

.description-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.description-content p {
    margin-bottom: 1rem;
}

.no-description {
    color: #999;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e74c3c;
    display: inline-flex;
    align-items: center;
}

.btn-cta-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
    padding: 3rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
}

.contact-intro {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.contact-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    color: #000000;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #e74c3c;
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
}

.map-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: white;
    font-weight: 500;
}

/* About Content */
.about-content {
    padding: 2rem 0;
}

.about-text {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Contact Content */
.contact-content {
    padding: 2rem 0;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.main-footer p {
    margin: 0;
    font-size: 0.95rem;
    color: #cccccc;
}

/* Latest Products Section */
.latest-products {
    padding: 4rem 0;
    background: white;
}

.latest-products h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #000000;
    font-weight: 700;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 56px;
    }
    
    .mobile-products-bar {
        display: block !important;
    }
    
    .main-header .container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #660000;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 100px; /* space for top logo */
        padding-bottom: 140px; /* space for bottom logo */
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    /* Mobile drawer logo */
    .main-nav::before {
        content: '';
        position: absolute;
        top: 14px;
        left: 16px;
        width: 150px;
        height: 56px;
        background-image: url('../images/ldrfren.png');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
        pointer-events: none;
    }
    .mobile-search{
        display:block;
        padding: 10px 12px 8px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-search-form{ display:flex; gap:8px; padding-right:8px; }
    .mobile-search-form input{
        flex:1; min-width: 10px;
        padding: 10px 12px; border-radius: 10px; border:1px solid #e4e4e4; background:#fff;
        box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
    }
    .mobile-search-form button{
        padding: 10px 12px; border-radius: 10px; border:1px solid #000; background:#000; color:#fff;
    }
    /* Mobil öneriler kutusu menü içi */
    #mobileSearchSuggest{
        position: static;
        margin: 8px 12px 10px 12px;
        max-height: 260px;
        overflow: auto;
        border-radius: 12px;
        border:1px solid rgba(255,255,255,0.12);
        background: #fff;
    }
    #mobileSearchSuggest .ss-item{
        padding: 10px 12px;
        border-bottom: 1px solid #f2f2f2;
    }
    #mobileSearchSuggest .ss-item:last-child{ border-bottom: 0; }
    #mobileSearchSuggest .ss-media{ gap:12px; }
    #mobileSearchSuggest .ss-thumb{
        width:48px; height:48px; border-radius:10px;
        border:1px solid #eee; object-fit:cover;
        box-shadow: 0 2px 6px rgba(0,0,0,.06);
    }
    #mobileSearchSuggest .ss-text{
        font-weight:600; color:#222;
        display:block; line-height:1.35;
    }
    #mobileSearchSuggest .ss-empty{
        color:#777; text-align:center; padding:14px 0;
    }
    /* Bottom visual/logo in drawer */
    .main-nav::after {
        content: '';
        position: absolute;
        bottom: 16px;
        left: 10%;
        width: 80%;
        height: 120px;
        background-image: url('../images/logomm2.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        opacity: 0.95;
        pointer-events: none;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        padding: 1.2rem 2rem;
        display: block;
        width: 100%;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .main-nav a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .hero-section {
        min-height: 400px;
        margin-bottom: 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
        margin-top: 0;
    }
    
    .intro-text h2 {
        font-size: 1.8rem;
    }
    
    .intro-lead {
        font-size: 1.1rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .product-detail-info-wrapper h2 {
        font-size: 2rem;
    }
    
    .product-detail-price {
        font-size: 2rem;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .product-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .product-category-header {
        display: none !important;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .intro-cta {
        flex-direction: column;
    }
    
    .intro-cta .btn {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        width: 100%;
    }
}

/* Mobile Products Bar */
.mobile-products-bar {
    display: none;
    position: relative;
    z-index: 998;
    background: #660000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    margin: 0;
}

.mobile-products-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    background: linear-gradient(135deg, #660000 0%, #880000 100%);
    overflow: hidden;
    position: relative;
}

.mobile-products-link:hover,
.mobile-products-link:active {
    background: linear-gradient(135deg, #880000 0%, #660000 100%);
    color: white;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    animation: marquee 12s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-16.666%);
    }
}

/* Mobile Floating Action Bar */
.mobile-fab {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    overflow: visible;
    gap: 0;
}

.fab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    position: relative;
    min-height: 56px;
    border-radius: 0;
}

.fab-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.fab-button:active::after {
    opacity: 1;
}

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

.fab-whatsapp:hover,
.fab-whatsapp:active {
    background-color: #20BA5A;
    transform: scale(0.98);
}

.fab-phone {
    background-color: #007AFF;
    color: white;
}

.fab-phone:hover,
.fab-phone:active {
    background-color: #0066CC;
    transform: scale(0.98);
}

.fab-button svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: none;
}

/* Desktop Sidebar FAB */
@media (min-width: 769px) {
    .mobile-fab {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        right: auto;
        width: 50px;
        z-index: 999;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        border-radius: 0 8px 8px 0;
        overflow: visible;
    }
    
    .fab-button {
        flex: 0 0 auto;
        width: 50px;
        height: 50px;
        min-height: 50px;
        padding: 0;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .fab-button:first-child {
        border-radius: 0 8px 0 0;
    }
    
    .fab-button:last-child {
        border-radius: 0 0 8px 0;
    }
    
    .fab-button svg {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }
    
    .fab-whatsapp:hover,
    .fab-phone:hover {
        transform: scale(1.2);
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .fab-whatsapp:hover {
        background-color: #20BA5A;
        box-shadow: 4px 0 20px rgba(37, 211, 102, 0.5);
    }
    
    .fab-phone:hover {
        background-color: #0066CC;
        box-shadow: 4px 0 20px rgba(0, 122, 255, 0.5);
    }
    
    .fab-button:hover svg {
        transform: scale(1.1);
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

/* Ürün detay sayfası görseli tıklanabilir yap */
#productMainImage {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#productMainImage:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Mobil için lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .lightbox-image {
        max-height: 85vh;
    }
}

