/* ===================================
   Bakbi Toys - Kırmızı Beyaz Tema
   Oyuncak Firması Tanıtım Sitesi
   =================================== */

/* Renk Paleti - Kırmızı & Beyaz */
:root {
    --primary-red: #DC143C;
    --dark-red: #B71C1C;
    --light-red: #FF6B6B;
    --accent-red: #E53935;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #EEEEEE;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --shadow: rgba(220, 20, 60, 0.1);
    --shadow-hover: rgba(220, 20, 60, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

.site-header .container {
    max-width: 100%;
    padding: 0 10px;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header - Logo Sola, Menü Sağa */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 4px solid var(--primary-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Body padding to prevent content hiding under fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }
}

/* Header Scroll Animasyonu */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header her zaman görünür - gizlenme yok */
.site-header.scroll-up,
.site-header.scroll-down {
    transform: translateY(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    max-width: 100%;
    transition: padding 0.3s ease;
}

/* Logo Container - İki Logo Yan Yana - KÜÇÜK BOYUT */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-right: auto;
    padding: 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
}

.logo-2 img {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-2 img:hover {
    transform: scale(1.05);
}

/* Header Scroll Effect - Çok Az Küçülme */
.site-header.scrolled .header-content {
    padding: 6px 0;
    transition: padding 0.3s ease;
}

.site-header.scrolled .logo img {
    max-height: 85px;
    transition: max-height 0.3s ease;
}

.site-header.scrolled .logo-2 img {
    max-height: 85px;
    transition: max-height 0.3s ease;
}

/* Header hover efekti */
.site-header:hover {
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.15);
}

.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation .nav-menu li {
    position: relative;
    margin: 0;
}

.main-navigation .nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation .nav-menu li:last-child a {
    padding-right: 18px;
}

.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu .current-menu-item a,
.main-navigation .nav-menu .current-post-type-archive a,
.main-navigation .nav-menu .current-product-ancestor a,
.main-navigation .nav-menu .current-product-page a {
    background: var(--primary-red);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    z-index: 100;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-toggle:hover {
    transform: scale(1.1);
}

/* Hero Slider - Clean Default Design */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--white);
    margin: 0;
    padding: 0;
}

/* SmartSlider3 Entegrasyonu - Orijinal Boyut */
.smartslider-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: var(--off-white);
}

.smartslider-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* SmartSlider'ın orijinal boyutunu koru */
.smartslider-wrapper .n2-section-smartslider {
    margin: 0 !important;
    padding: 0 !important;
}

/* SmartSlider'ın kendi stillerini tamamen koru */
.smartslider-wrapper .n2-ss-slider-wrapper {
    margin: 0 !important;
}

/* Responsive - Mobilde de orijinal boyut */
@media (max-width: 768px) {
    .smartslider-section {
        padding: 0;
    }

    .smartslider-wrapper {
        width: 100%;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-dark);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.7) 0%, rgba(183, 28, 28, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-text {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.slide-text p {
    margin-bottom: 10px;
}

.slide-content .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

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

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* Varsayılan Hero Banner (Slider yoksa) */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Buttons - Kırmızı Beyaz */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--dark-red);
}

.btn-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-link:hover::after {
    transform: translateX(5px);
}

/* Sections */
section {
    padding: 0px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Company Intro */
.company-intro {
    background: var(--white);
    padding: 60px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Product Categories - Kırmızı Kartlar */
.product-categories {
    padding: 60px 0;
    background: var(--off-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-box {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-red);
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    background: var(--primary-red);
}

.category-box:hover * {
    color: var(--white) !important;
}

.category-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.category-box:hover .category-icon {
    transform: scale(1.1);
}

.category-box:hover .category-icon svg {
    fill: var(--white);
}

.category-box:hover .category-icon svg circle,
.category-box:hover .category-icon svg rect,
.category-box:hover .category-icon svg ellipse {
    fill: var(--white);
}

.category-box:hover .category-icon svg path {
    stroke: var(--primary-red);
}

.category-box h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.category-box p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.category-box .btn-link {
    font-weight: 600;
}

/* Advantages - Kırmızı Vurgulu */
.advantages {
    background: var(--off-white);
    padding: 60px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
    border-bottom: 4px solid var(--primary-red);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials - Kırmızı Aksan */
.testimonials {
    background: var(--white);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--primary-red);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1rem;
    font-style: normal;
}

/* CTA Section - Kırmızı Arka Plan */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Page - Kırmızı Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    margin-bottom: 5px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    background: var(--primary-red);
}

.product-card:hover .product-info {
    background: var(--primary-red);
}

.product-card:hover .product-info h3,
.product-card:hover .product-info h3 a,
.product-card:hover .product-excerpt {
    color: var(--white);
}

.product-card:hover .btn-secondary {
    background: var(--white);
    color: var(--primary-red);
}

.product-image {
    overflow: hidden;
    height: auto;
    background: var(--light-gray);
}

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

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.product-excerpt {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.product-meta {
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Product Detail - Kırmızı Vurgulu */
.product-detail {
    background: var(--white);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-details h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.product-categories {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-specifications,
.product-certifications {
    background: var(--off-white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-red);
}

.product-specifications h3,
.product-certifications h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.product-actions {
    margin-top: 30px;
}

/* Footer - Kırmızı Aksan */
.site-footer {
    background: var(--text-dark);
    padding: 40px 0 15px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 25px;
}

.footer-column h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-column p a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: var(--primary-red);
}

.footer-column strong {
    color: var(--white);
    display: inline-block;
    margin-bottom: 3px;
    margin-right: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* İletişim Bilgileri - Kompakt Görünüm */
.footer-column p strong+br {
    display: none;
}

.footer-column p:has(strong) {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-red);
    opacity: 0.9;
}

.contact-item span,
.contact-item a {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-menu {
    list-style: none;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.social-icon svg {
    fill: var(--white);
}

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

/* Sidebar Layouts - Sidebar Sağda */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 25px;
}

.main-content {
    min-width: 0;
    order: 1;
}

.sidebar {
    order: 2;
}

/* Sidebar Styles - Kırmızı Vurgulu - Sağa Yaslanmış */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    order: 2;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-red);
    transition: all 0.3s ease;
    text-align: left;
}

.sidebar-widget:hover {
    box-shadow: 0 5px 20px var(--shadow-hover);
    transform: translateY(-3px);
}

.widget-title {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    font-weight: 700;
    text-align: left;
}

/* Product Category List - Hizalı */
.product-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category-list .cat-item {
    margin-bottom: 12px;
}

.product-category-list .cat-item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    text-align: left;
    gap: 10px;
}

.product-category-list .cat-item a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(-5px);
}

.cat-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.cat-item a span:not(.cat-icon):not(.cat-count) {
    flex: 1;
    text-align: left;
}

.cat-count {
    flex-shrink: 0;
    margin-left: auto;
    background: var(--primary-red);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-category-list .cat-item a:hover .cat-count {
    background: var(--white);
    color: var(--primary-red);
}

/* Age Filter */
.age-filter-list {
    list-style: none;
}

.age-filter-list li {
    margin-bottom: 10px;
}

.age-filter-list a {
    display: block;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
}

.age-filter-list a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(5px);
}

/* Popular Products Widget */
.popular-product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

.popular-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-product-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

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

.popular-product-thumb:hover img {
    transform: scale(1.1);
}

.popular-product-info h4 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.popular-product-info a {
    color: var(--text-dark);
}

.popular-product-info a:hover {
    color: var(--primary-red);
}

/* Safety Widget - Hizalı */
.safety-widget {
    background: var(--primary-red);
    color: var(--white);
    border-left-color: var(--dark-red);
    text-align: left;
}

.safety-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    text-align: left;
}

.safety-info {
    text-align: left;
}

.safety-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: left;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.safety-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.safety-list li::before {
    content: '✓';
    flex-shrink: 0;
    font-weight: bold;
}

/* Recent Products Widget */
.recent-product-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-light);
}

.recent-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-product-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

.recent-product-info h4 {
    font-size: 0.95rem;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.recent-product-info a {
    color: var(--text-dark);
}

.recent-product-info a:hover {
    color: var(--primary-red);
}

.age-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact Widget */
.contact-widget {
    background: var(--text-dark);
    color: var(--white);
    border-left-color: var(--primary-red);
}

.contact-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-sidebar {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 0;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-sidebar:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Certificates Widget */
.cert-badges-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cert-badge-item {
    background: var(--bg-light);
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cert-badge-item:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.cert-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-red);
}

.cert-badge-item:hover .cert-icon {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide {
        height: 400px;
    }

    .slide-title {
        font-size: 2.3rem;
    }

    .slide-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding: 0 10px;
    }

    .logo-container {
        gap: 10px;
        max-width: 65%;
        flex: 1;
        justify-content: center;
    }

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

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

    .header-content {
        padding: 6px 0;
    }

    .site-header.scrolled .header-content {
        padding: 4px 0;
    }

    .site-header.scrolled .logo img {
        max-height: 50px;
    }

    .site-header.scrolled .logo-2 img {
        max-height: 50px;
    }

    .menu-toggle {
        padding: 8px;
    }

    .menu-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .search-toggle {
        padding: 8px;
    }

    .search-toggle svg {
        width: 18px;
        height: 18px;
    }

    /* Mobil Menü Açık Durumu - Küçük Ekranlar */
    .main-navigation.menu-open {
        padding-top: 70px;
    }

    .main-navigation.menu-open::before {
        height: 70px;
    }

    /* Mobil menüde logo container'ı göster */
    body.menu-open .logo-container {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        height: 70px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.menu-open .logo-container .logo img {
        max-height: 30px;
    }

    body.menu-open .logo-container .logo-2 img {
        max-height: 28px;
    }

    .menu-toggle.active {
        top: 18px;
        left: 10px;
    }

    .search-toggle.menu-active {
        top: 18px;
        right: 10px;
    }

    .slide {
        height: 350px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .slide-content .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 15px;
    }

    .logo-container {
        gap: 8px;
        max-width: 60%;
    }

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

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

    .header-content {
        padding: 12px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation .nav-menu {
        display: none;
    }

    .main-navigation .nav-menu a {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Mobil Menü Açık Durumu */
    .main-navigation.menu-open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
        padding-top: 80px;
    }

    .main-navigation.menu-open .nav-menu {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-navigation.menu-open .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation.menu-open .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    /* Mobil Menü Açıkken Header'da Logo Göster */
    .main-navigation.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: var(--white);
        border-bottom: 4px solid var(--primary-red);
        z-index: 1001;
    }

    /* Mobil Menü Açıkken Logo Container Göster */
    body.menu-open .logo-container {
        display: flex;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        height: 80px;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    body.menu-open .logo-container .logo img {
        max-height: 45px;
    }

    body.menu-open .logo-container .logo-2 img {
        max-height: 42px;
    }

    /* X Butonu ve Arama Butonu Üstte Kalacak */
    .menu-toggle.active {
        position: fixed;
        top: 20px;
        left: 15px;
        z-index: 1003;
    }

    .search-toggle.menu-active {
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 1003;
    }

    /* Body scroll'u engelle menü açıkken */
    body.menu-open {
        overflow: hidden;
    }

    .slide {
        height: 400px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
        padding: 8px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .main-content {
        order: 1;
    }

    .sidebar {
        order: 2;
    }

    .sidebar {
        position: static;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cert-badges-sidebar {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-box,
.product-card,
.advantage-item {
    animation: fadeInUp 0.6s ease-out;
}


/* ===================================
   YENİ ANA SAYFA BÖLÜMLERİ
   =================================== */

/* Genel Home Page Stilleri */
.home-page {
    background: var(--white);
}

/* Kategori İkonları - Emoji Stili */
.icon-emoji {
    font-size: 4rem;
    display: block;
}

/* Öne Çıkan Ürünler */
.featured-products {
    padding: 60px 0;
    background: var(--off-white);
}

/* Kalite ve Güvenlik Sertifikaları */
.certifications {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.certifications-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    text-align: center;
}

.cert-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: var(--white);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.cert-item:hover .cert-logo {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.cert-item p {
    font-weight: 600;
    color: var(--text-dark);
}

/* Üretim Süreci */
.production-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.process-list {
    list-style: none;
    margin-bottom: 30px;
}

.process-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    opacity: 0.95;
}

.process-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

/* İş Ortakları */
.partners {
    padding: 60px 0;
    background: var(--off-white);
    text-align: center;
}

.partners-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

/* Blog Bölümü */
.blog-section {
    padding: 15px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.blog-image {
    overflow: hidden;
    height: 200px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* İletişim CTA */
.cta-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 20px 35px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

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

.contact-btn.primary:hover {
    background: var(--off-white);
    color: var(--dark-red);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
}

.contact-btn .icon {
    font-size: 2rem;
}

.contact-btn span:last-child {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive - Yeni Bölümler */
@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-content {
        grid-template-columns: 1fr;
    }
}

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

    .cert-logo {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        flex-direction: row;
        justify-content: center;
    }

    .process-text h2 {
        font-size: 2rem;
    }

    .cta-contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   ARAMA BUTONU VE MODAL
   =================================== */

/* Arama Butonu */
.search-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.search-toggle:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

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

/* Arama Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.search-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.search-modal-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 25px;
}

.search-modal-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 25px;
}

.search-modal-header p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 25px;
}

/* Arama Formu */
.search-form {
    margin-bottom: 40px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-gray);
    pointer-events: none;
}

.search-field {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
}

/* Arama Önerileri */
.search-suggestions {
    margin-top: 30px;
}

.suggestions-section {
    margin-bottom: 30px;
}

.suggestions-section:last-child {
    margin-bottom: 0;
}

.suggestions-section h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Öneri Etiketleri */
.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.suggestion-tag:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Öneri Öğeleri */
.suggestion-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    background: var(--off-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.suggestion-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.suggestion-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.suggestion-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.suggestion-type {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-modal.active {
        padding-top: 20px;
    }

    .search-modal-content {
        width: 95%;
        padding: 30px 20px;
        border-radius: 15px;
        max-height: 90vh;
    }

    .search-modal-header h2 {
        font-size: 1.5rem;
        margin-top: 25px;
    }

    .search-field {
        font-size: 1rem;
        padding: 15px 20px 15px 50px;
    }

    .search-results-container {
        max-height: 300px;
    }

    .suggestion-tags {
        gap: 8px;
    }

    .suggestion-tag {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}


/* ===================================
   ARAMA SONUÇLARI SAYFASI
   =================================== */

.search-results-page {
    background: var(--off-white);
}

.search-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 60px 0;
    text-align: center;
}

.search-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.search-query {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.result-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.search-form-inline {
    max-width: 600px;
    margin: 0 auto;
}

.search-form-inline .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form-inline .search-field {
    width: 100%;
    padding: 15px 60px 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: var(--white);
}

.search-form-inline .search-field:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-submit {
    position: absolute;
    right: 5px;
    background: var(--primary-red);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* Arama Sonuçları Grid */
.search-results {
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.result-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

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

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

.result-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.result-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: var(--primary-red);
}

.result-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-meta svg {
    width: 14px;
    height: 14px;
}

.result-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.result-link:hover {
    gap: 12px;
}

.result-link svg {
    width: 16px;
    height: 16px;
}

/* Sonuç Bulunamadı */
.no-results {
    padding: 80px 0;
}

.no-results-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.no-results-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.no-results-content>p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.search-suggestions-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-suggestions-box h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.search-suggestions-box ul {
    list-style: none;
    text-align: left;
}

.search-suggestions-box li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.search-suggestions-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.popular-searches {
    margin-bottom: 40px;
}

.popular-searches h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-red);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-header h1 {
        font-size: 2rem;
    }

    .search-query {
        font-size: 1rem;
    }

    .result-image {
        height: 200px;
    }

    .result-title {
        font-size: 1.2rem;
    }

    .no-results-content h2 {
        font-size: 2rem;
    }
}


/* ===================================
   SITE SLOGAN - ESTETIK TASARIM
   =================================== */

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.site-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), rgba(229, 57, 53, 0.08));
    border-radius: 50px;
    border: 1px solid rgba(220, 20, 60, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.site-tagline:hover::before {
    left: 100%;
}

.site-tagline:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12), rgba(229, 57, 53, 0.12));
    border-color: rgba(220, 20, 60, 0.25);
    transform: translateX(3px);
}

.tagline-icon {
    font-size: 0.9rem;
    color: var(--primary-red);
    animation: sparkle 2s ease-in-out infinite;
}

.tagline-icon:last-child {
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.tagline-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Alternatif Tasarım - Gradient Text */
.tagline-text-gradient {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-tagline {
        padding: 5px 12px;
    }

    .tagline-text {
        font-size: 0.8rem;
    }

    .tagline-icon {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .logo-section {
        gap: 6px;
    }

    .site-tagline {
        padding: 4px 10px;
    }

    .tagline-text {
        font-size: 0.75rem;
    }

    .tagline-icon {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-tagline {
        display: none;
    }
}


/* ===================================
   SLOGAN - ALTERNATİF RIBBON TASARIM
   =================================== */

/* Ribbon Stili (Opsiyonel - Daha gösterişli) */
.site-tagline.ribbon-style {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 0;
    border: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.site-tagline.ribbon-style::before,
.site-tagline.ribbon-style::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}


/* ===================================
   DİL SEÇİCİ MENÜSÜ - ÜRÜNLER SAYFASI
   =================================== */

/* Polylang Dil Seçici - Ürünler Sayfasında Beyaz Arka Plan */
body.post-type-archive-product .pll-parent-menu-item > a,
body.post-type-archive-product .lang-item > a,
body.post-type-archive-product .menu-item-language > a {
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

/* Hover Durumunda Kırmızı Arka Plan */
body.post-type-archive-product .pll-parent-menu-item > a:hover,
body.post-type-archive-product .lang-item > a:hover,
body.post-type-archive-product .menu-item-language > a:hover {
    background: var(--primary-red) !important;
    color: var(--white) !important;
}

/* Aktif Dil - Beyaz Arka Plan */
body.post-type-archive-product .pll-parent-menu-item.current-lang > a,
body.post-type-archive-product .lang-item.current-lang > a,
body.post-type-archive-product .menu-item-language.current-lang > a {
    background: var(--white) !important;
    color: var(--primary-red) !important;
}

/* Alt Menü (Dropdown) Dil Seçenekleri */
body.post-type-archive-product .pll-parent-menu-item .sub-menu li a,
body.post-type-archive-product .lang-item .sub-menu li a,
body.post-type-archive-product .menu-item-language .sub-menu li a {
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

/* Alt Menü Hover */
body.post-type-archive-product .pll-parent-menu-item .sub-menu li a:hover,
body.post-type-archive-product .lang-item .sub-menu li a:hover,
body.post-type-archive-product .menu-item-language .sub-menu li a:hover {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border-style: solid;
}

.site-tagline.ribbon-style::before {
    left: -10px;
    border-width: 0 0 36px 10px;
    border-color: transparent transparent var(--dark-red) transparent;
}

.site-tagline.ribbon-style::after {
    right: -10px;
    border-width: 36px 10px 0 0;
    border-color: var(--dark-red) transparent transparent transparent;
}

.site-tagline.ribbon-style .tagline-text {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-tagline.ribbon-style .tagline-icon {
    color: var(--white);
}

/* Badge Stili (Opsiyonel - Minimal) */
.site-tagline.badge-style {
    background: var(--white);
    border: 2px solid var(--primary-red);
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.15);
}

.site-tagline.badge-style:hover {
    background: var(--primary-red);
}

.site-tagline.badge-style:hover .tagline-text,
.site-tagline.badge-style:hover .tagline-icon {
    color: var(--white);
}

/* Glow Efekti (Opsiyonel - Parlak) */
.site-tagline.glow-style {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
    }
}

.site-tagline.glow-style .tagline-text {
    color: var(--white);
    font-weight: 700;
}

.site-tagline.glow-style .tagline-icon {
    color: var(--white);
}


/* ===================================
   HEADER YAN YANA DÜZEN - FİNAL
   Logo | Slogan | Menüler (Aynı Hizada)
   =================================== */

/* Header içeriği - Yan yana düzen */
.site-header .header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    
    flex-wrap: nowrap !important;
}

/* Logo - Sol taraf */
.site-header .logo {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Slogan - Logo'nun yanında */
.site-header .site-tagline {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* Navigation - Sağ taraf */
.site-header .main-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 15px !important;
    flex: 1 !important;
    margin: 0 !important;
}

/* Logo section kaldırma */
.logo-section {
    display: contents !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .site-header .header-content {
        gap: 20px !important;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
    }
    .about-hero {
        margin-top: 40px !important;
    }

    .site-header .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .site-header .header-content {
        display: grid !important;
        grid-template-columns: 40px 1fr 40px !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 12px 0 !important;
    }

    /* Menü butonu - Sol üst */
    .menu-toggle {
        display: flex !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        padding: 8px !important;
        z-index: 1001 !important;
        position: relative;
        justify-content: center !important;
        align-items: center !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2.5px !important;
        background: var(--primary-red) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Logo container - Orta */
    .site-header .logo-container {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 auto !important;
    }

    .logo,
    .logo-2 {
        display: flex !important;
        align-items: center !important;
    }

    .logo img {
        max-height: 60px !important;
        display: block !important;
    }

    .logo-2 img {
        max-height: 60px !important;
        display: block !important;
    }

    .site-header .site-tagline {
        display: none !important;
    }

    /* Arama butonu - Sağ üst */
    .search-toggle {
        display: flex !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        margin: 0 !important;
        padding: 8px !important;
        z-index: 1001 !important;
        position: relative;
        justify-content: center !important;
        align-items: center !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        width: 40px !important;
        height: 40px !important;
    }

    .search-toggle svg {
        display: block !important;
        width: 20px !important;
        height: 20px !important;
        stroke: var(--primary-red) !important;
    }

    /* Main navigation - İkinci satır, gizli */
    .site-header .main-navigation {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        display: none !important;
    }

    .site-header .main-navigation.menu-open {
        display: block !important;
    }

    /* Menü içeriği */
    .main-navigation .nav-menu {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: 0;
        margin: 0;
        border-top: 1px solid var(--border-color);
    }

    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }

    .main-navigation .nav-menu a {
        padding: 14px 20px;
        width: 100%;
        border-radius: 0;
        font-size: 0.95rem;
    }

    /* Header için body padding ekle */
    body {
        padding-top: 50px;
    }
    
    /* Anasayfa için padding kaldır - slider header'a yapışsın */
    body.home {
        padding-top: 64px;
    }
    
    body.home .site-main {
        margin-top: 25px;
    }

    
}

@media (max-width: 480px) {
    .main-navigation .nav-menu a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    /* Anasayfa için padding kaldır - slider header'a yapışsın */
    body.home {
        padding-top: 60px;
    }
    
    body.home .site-main {
        margin-top: 0;
    }
    
    .contact-hero {
        margin-top: 35px !important;
    }
    .logo img {
        max-height: 60px !important;
    }

    .logo-2 img {
        max-height: 60px !important;
    }
    .about-hero {
        margin-top: 35px !important;
    }
    .site-header .logo-container {
        gap: 8px !important;
    }

    .site-header .header-content {
        padding: 10px 0 !important;
    }

    .menu-toggle {
        padding: 6px !important;
    }

    .menu-toggle span {
        width: 20px !important;
        height: 2px !important;
    }

    .search-toggle {
        padding: 6px !important;
    }

    .search-toggle svg {
        width: 18px !important;
        height: 18px !important;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .container {
        padding: 0 10px;
    }
}


/* ===================================
   MENÜ İLETİŞİM ORTALAMA DÜZELTMESİ
   =================================== */

/* Tüm menü öğeleri için eşit hizalama */
.main-navigation .nav-menu li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.main-navigation .nav-menu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

/* Son öğe (İletişim) özel ortalama */
.main-navigation .nav-menu li:last-of-type {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.main-navigation .nav-menu li:last-of-type a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}


/* ===================================
   DROPDOWN MENÜ (ALT MENÜ) ÖZELLİĞİ
   =================================== */

/* Alt menü container */
.main-navigation .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 125px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 5px 5px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

/* Alt menü göster */
.main-navigation .nav-menu li:hover>.sub-menu,
.main-navigation .nav-menu li.focus>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Alt menü öğeleri */
.main-navigation .nav-menu .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu .sub-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 0;
    white-space: nowrap;
}

.main-navigation .nav-menu .sub-menu a:hover {
    background: var(--primary-red);
    color: white;
    padding-left: 25px;
}

/* Alt menü ok işareti */
.main-navigation .nav-menu .menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.main-navigation .nav-menu .menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* İkinci seviye alt menü (nested dropdown) */
.main-navigation .nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

.main-navigation .nav-menu .sub-menu .menu-item-has-children>a::after {
    border-left: 5px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 0;
    margin-left: auto;
    margin-right: 0;
    float: right;
}

/* Mobil için dropdown */
@media (max-width: 1024px) {
    .main-navigation .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary-red);
        margin-left: 15px;
        margin-top: 5px;
        padding: 5px 0;
        background: var(--light-gray);
        border-radius: 4px;
        display: none;
    }

    .main-navigation .nav-menu .menu-item-has-children.active>.sub-menu {
        display: block;
    }

    .main-navigation .nav-menu .sub-menu .sub-menu {
        margin-left: 15px;
    }

    .main-navigation .nav-menu .menu-item-has-children>a::after {
        float: right;
        margin-left: auto;
    }

    .main-navigation .nav-menu .menu-item-has-children.active>a::after {
        transform: rotate(180deg);
    }
}

/* Tablet ve mobil için menü düzenlemeleri */
@media (max-width: 1024px) {
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 80px 20px 20px;
    }

    .main-navigation.menu-open {
        right: 0;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation .nav-menu a {
        padding: 12px 8px;
        justify-content: flex-start;
        border-radius: 0;
    }

    .menu-toggle {
        display: flex;
    }
}


/* ===================================
   POLYLANG DİL DEĞİŞTİRİCİ - KÜÇÜK BAYRAK
   =================================== */

.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: 2px solid #DC143C;
    border-radius: 6px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-toggle:hover {
    background: #DC143C;
    color: white;
}

/* Küçük bayrak boyutu */
.language-toggle img {
    width: 18px !important;
    height: 13px !important;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

.language-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
}

.language-switcher.active .language-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid #DC143C;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

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

.language-dropdown li {
    margin: 0;
    padding: 0;
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-dropdown li a:hover {
    background: #f8f9fa;
    color: #DC143C;
}

.language-dropdown li.active a {
    background: #DC143C;
    color: white;
}

/* Küçük bayrak boyutu dropdown'da */
.language-dropdown li a img {
    width: 18px !important;
    height: 13px !important;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobil için dil değiştirici */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 8px;
        margin-right: 8px;
    }

    .language-toggle {
        padding: 5px 8px;
        font-size: 12px;
        gap: 4px;
    }

    /* Mobilde sadece bayrak göster */
    .language-toggle span {
        display: none;
    }

    /* Mobilde bayrak biraz daha büyük */
    .language-toggle img {
        width: 20px !important;
        height: 15px !important;
    }

    .language-dropdown {
        right: auto;
        left: 0;
        min-width: 120px;
    }
}

/* Tablet için */
@media (max-width: 1024px) and (min-width: 769px) {
    .language-toggle {
        padding: 5px 9px;
        font-size: 12px;
    }

    .language-toggle span {
        max-width: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* ===================================
   DROPDOWN MENÜ (Alt Menü) STİLLERİ
   =================================== */

/* Dropdown Container */
.main-navigation .menu-item-has-children {
    position: relative;
}

/* Dropdown Toggle Icon */
.main-navigation .menu-item-has-children>a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children.active>a::after,
.main-navigation .menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Sub Menu (Dropdown) */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 180px;
    width: max-content;
    max-width: 250px;
    list-style: none;
}

/* Dil Menüsü için Özel Dar Genişlik */
.main-navigation .menu-item-has-children.lang-item .sub-menu,
.main-navigation .menu-item-has-children[class*="lang"] .sub-menu {
    min-width: 120px;
    max-width: 150px;
    width: auto;
}

/* Dropdown Göster */
.main-navigation .menu-item-has-children:hover>.sub-menu,
.main-navigation .menu-item-has-children.active>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub Menu Items */
.main-navigation .sub-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    border-radius: 0;
    transition: all 0.2s ease;
}

.main-navigation .sub-menu a:hover {
    background: var(--primary-red);
    color: var(--white);
    padding-left: 20px;
}

/* Polylang Dil Menüsü Özel Stiller */
.main-navigation .lang-item .sub-menu a,
.main-navigation [class*="lang"] .sub-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

/* Dil Bayrakları */
.main-navigation .sub-menu img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobil Dropdown */
@media (max-width: 1024px) {
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 5px 0;
        padding: 5px 0;
        display: none;
        border-radius: 5px;
        width: 100%;
        max-width: 100%;
    }

    .main-navigation .menu-item-has-children.active>.sub-menu {
        display: block;
    }

    .main-navigation .sub-menu a {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .main-navigation .sub-menu a:hover {
        padding-left: 25px;
    }
}

/* Mobil Menü Açıkken Sub Menu */
@media (max-width: 1024px) {
    .main-navigation.menu-open .sub-menu {
        width: 100%;
    }
}


/* ===================================


/* ===================================
   MOBİL FİLTRELEME SİSTEMİ - YENİ TASARIM
   Modern, Kullanışlı ve Estetik
   =================================== */

/* Mobil Filtreleme Butonu - Varsayılan Gizli */
.mobile-filter-toggle {
    display: none;
}

/* ===================================
   MOBİL TASARIM (< 1024px)
   =================================== */
@media (max-width: 1024px) {

    .blog-header{
        margin-top: 20px !important;
    }

    /* Page Header Optimizasyonu */
    .page-header.products-header {
        margin-bottom: 0;
        padding-bottom: 5px;
        padding: 15px;
        margin-top: 35px !important;
    }

    /* ===================================
       FİLTRELEME BUTONU
       =================================== */
    .mobile-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 0 16px 0;
        box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
        position: relative;
        z-index: 100;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .mobile-filter-toggle .filter-text {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        font-size: 0.95rem;
    }

    .mobile-filter-toggle svg {
        flex-shrink: 0;
    }

    .mobile-filter-toggle:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(220, 20, 60, 0.4);
    }

    .mobile-filter-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .mobile-filter-toggle.active {
        border-radius: 50px 50px 0 0;
        box-shadow: 0 0 0 rgba(220, 20, 60, 0);
    }

    .mobile-filter-toggle.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* ===================================
       DROPDOWN PANEL
       =================================== */
    .sidebar-product {
        position: relative;
        background: var(--white);
        z-index: 99;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        margin: -16px 0 20px 0;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }

    .sidebar-product.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* ===================================
       KATEGORİ FİLTRELEME WİDGET
       =================================== */
    .sidebar-product .product-filter-widget {
        padding: 20px;
        background: var(--white);
        border-radius: 0 0 20px 20px;
    }

    .sidebar-product .widget-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--light-gray);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* ===================================
       KATEGORİ LİSTESİ - MODERN BUTONLAR
       =================================== */
    .sidebar-product .product-category-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
    }

    .sidebar-product .filter-checkbox-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        background: var(--off-white);
        border: 2px solid var(--gray);
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
        user-select: none;
    }

    /* Checkbox Gizle */
    .sidebar-product .filter-checkbox-label input[type="checkbox"] {
        display: none;
    }

    /* Checkbox Custom İkon */
    .sidebar-product .checkbox-custom {
        display: none;
    }

    /* Kategori İsmi */
    .sidebar-product .category-name {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .sidebar-product .cat-icon {
        font-size: 1.1rem;
    }

    .sidebar-product .cat-count {
        background: var(--white);
        color: var(--text-gray);
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        margin-left: 4px;
    }

    /* Hover Durumu */
    .sidebar-product .filter-checkbox-label:hover {
        background: var(--light-gray);
        border-color: var(--primary-red);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
    }

    /* Seçili Durumu */
    .sidebar-product .filter-checkbox-label:has(input:checked) {
        background: var(--primary-red);
        border-color: var(--primary-red);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    }

    .sidebar-product .filter-checkbox-label:has(input:checked) .cat-count {
        background: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }

    .sidebar-product .filter-checkbox-label:has(input:checked) .cat-icon {
        animation: bounce 0.5s ease;
    }

    /* Active Durumu */
    .sidebar-product .filter-checkbox-label:active {
        transform: scale(0.95);
    }

    /* ===================================
       FİLTRELERİ TEMİZLE BUTONU
       =================================== */
    .sidebar-product .filter-reset-btn {
        width: 100%;
        padding: 12px;
        background: var(--text-dark);
        color: var(--white);
        border: none;
        border-radius: 25px;
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .sidebar-product .filter-reset-btn::before {
        content: '↻';
        font-size: 1.2rem;
    }

    .sidebar-product .filter-reset-btn:hover {
        background: var(--primary-red);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    }

    .sidebar-product .filter-reset-btn:active {
        transform: scale(0.98);
    }

    /* ===================================
       BAKBİ TOYS WİDGET - GİZLE
       =================================== */
    .sidebar-product .safety-widget {
        display: none;
    }

    /* ===================================
       CONTENT LAYOUT
       =================================== */
    .content-with-sidebar {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .main-content {
        order: 2;
        padding-top: 0;
    }

    .sidebar {
        order: 1;
    }

    .products-section {
        padding-top: 0;
    }

    /* ===================================
       ANİMASYONLAR
       =================================== */
    @keyframes bounce {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .sidebar-product.active .product-category-filters {
        animation: slideDown 0.4s ease;
    }
}

/* ===================================
   TABLET OPTİMİZASYONU (769px - 1024px)
   =================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-filter-toggle {
        padding: 18px 24px;
        font-size: 1.05rem;
    }

    .sidebar-product.active {
        max-height: 500px;
    }

    .sidebar-product .product-category-filters {
        gap: 12px;
    }

    .sidebar-product .filter-checkbox-label {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* ===================================
   KÜÇÜK MOBİL (< 480px)
   =================================== */
@media (max-width: 480px) {
    .mobile-filter-toggle {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .mobile-filter-toggle .filter-text {
        font-size: 0.85rem;
    }

    .mobile-filter-toggle svg {
        width: 16px;
        height: 16px;
    }

    .sidebar-product .product-filter-widget {
        padding: 16px;
    }

    .sidebar-product .widget-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .sidebar-product .product-category-filters {
        gap: 8px;
    }

    .sidebar-product .filter-checkbox-label {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .sidebar-product .cat-icon {
        font-size: 1rem;
    }

    .sidebar-product .cat-count {
        padding: 2px 6px;
        font-size: 0.7rem;
    }

    .sidebar-product .filter-reset-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* ===================================
   BACKDROP - ARKA PLAN KARARTMA
   =================================== */
.filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-backdrop.active {
    display: block;
    opacity: 1;
}

/* ===================================
   SCROLL LOCK
   =================================== */
body.filter-open {
    overflow: hidden;
}

/* ===================================
   MOBİL FİLTRELEME SİSTEMİ - V4
   Modern Dropdown Tasarım
   =================================== */

/* Mobil Filtreleme Container */
.mobile-filter-system {
    display: none;
    position: relative;
    margin-bottom: 20px;
}

/* Mobil Filtreleme Butonu */
.mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
}

.mobile-filter-toggle:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.mobile-filter-toggle:active {
    transform: translateY(0);
}

.mobile-filter-toggle.active {
    background: var(--primary-red);
    color: var(--white);
    border-radius: 12px 12px 0 0;
}

.mobile-filter-toggle .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-filter-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobil Kategori Dropdown */
.mobile-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-red);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-category-dropdown.active {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
}

/* Dropdown Header */
.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.dropdown-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.dropdown-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dropdown-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.dropdown-close svg {
    stroke: var(--white);
}

/* Dropdown Content */
.dropdown-content {
    padding: 12px;
    max-height: 320px;
    overflow-y: auto;
}

/* Kategori Seçenekleri */
.category-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    background: var(--off-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-option:hover {
    background: var(--light-gray);
    border-color: var(--primary-red);
    transform: translateX(4px);
}

.category-option:last-child {
    margin-bottom: 0;
}

/* Checkbox Gizle */
.category-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom Checkbox */
.checkbox-custom {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.category-option input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.category-option input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
}

/* Kategori Bilgisi */
.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.category-count {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.category-option:hover .category-name {
    color: var(--primary-red);
}

/* Dropdown Footer */
.dropdown-footer {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--off-white);
    border-top: 1px solid var(--border-color);
    position: sticky;
    bottom: 0;
}

.filter-reset-btn,
.filter-apply-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-reset-btn {
    background: var(--light-gray);
    color: var(--text-dark);
}

.filter-reset-btn:hover {
    background: var(--gray);
}

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

.filter-apply-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Scrollbar Styling */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Mobil Görünüm - 768px ve altı */
@media (max-width: 768px) {
    .mobile-filter-system {
        display: block;
    }

    /* Desktop sidebar'ı gizle */
    .sidebar-product {
        display: none;
    }

    /* Content full width */
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .main-content {
        width: 100%;
    }

    /* Dropdown daha büyük */
    .mobile-category-dropdown.active {
        max-height: 70vh;
    }

    .dropdown-content {
        max-height: calc(70vh - 140px);
    }
}

/* Çok Küçük Ekranlar - 480px ve altı */
@media (max-width: 480px) {
    .mobile-filter-toggle {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .category-option {
        padding: 12px 14px;
    }

    .category-name {
        font-size: 0.95rem;
    }

    .category-count {
        font-size: 0.8rem;
    }

    .dropdown-header h3 {
        font-size: 1rem;
    }

    .filter-reset-btn,
    .filter-apply-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Animasyonlar */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-category-dropdown.active {
    animation: slideDown 0.3s ease-out;
}

/* Aktif Filtre Badge */
.mobile-filter-toggle .active-filter-badge {
    background: var(--white);
    color: var(--primary-red);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: auto;
}

.mobile-filter-toggle.active .active-filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/*
 ===================================
   Canlı Arama Sonuçları
   =================================== */

.search-results-container {
    margin-top: 30px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.search-loading {
    text-align: center;
    padding: 40px 20px;
}

.search-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.search-loading p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Arama Sonuçları Wrapper */
.search-results-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Arama Modalı Sonuç Alanı */
.search-results-container {
    margin-top: 20px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

.search-results-container::-webkit-scrollbar {
    width: 6px;
}

.search-results-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.search-results-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Sonuç Bölümü */
.search-results-section {
    background: var(--off-white);
    border-radius: 15px;
    padding: 20px;
}

.search-results-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-results-count {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sonuç Listesi */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sonuç Item */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-result-item:hover {
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 20, 60, 0.15);
}

/* Sonuç Görseli */
.search-result-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.search-result-placeholder {
    font-size: 2rem;
}

/* Sonuç İçeriği */
.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-result-category,
.search-result-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.search-result-category {
    display: inline-block;
    background: var(--light-red);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Tümünü Gör Linki */
.search-view-all {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-view-all:hover {
    transform: translateX(5px);
    color: var(--dark-red);
}

/* Sonuç Bulunamadı */
.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.search-no-results-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Hata Mesajı */
.search-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--primary-red);
    font-size: 1rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        width: 95%;
        padding: 30px 20px;
        max-height: 85vh;
    }

    .search-modal-header h2 {
        font-size: 1.5rem;
    }

    .search-field {
        font-size: 1rem;
        padding: 15px 20px 15px 50px;
    }

    .search-result-item {
        gap: 12px;
        padding: 10px;
    }

    .search-result-image {
        width: 50px;
        height: 50px;
    }

    .search-result-title {
        font-size: 0.95rem;
    }

    .search-results-section {
        padding: 15px;
    }

    .search-no-results-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .search-modal.active {
        padding-top: 60px;
    }

    .search-modal-content {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .search-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }

    .search-modal-header {
        margin-bottom: 20px;
    }

    .search-modal-header h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .search-modal-header p {
        font-size: 0.9rem;
    }

    .search-result-image {
        width: 45px;
        height: 45px;
    }

    .search-result-title {
        font-size: 0.9rem;
    }

    .search-result-category,
    .search-result-date {
        font-size: 0.8rem;
    }
}

/* Hero Logos - Desktop Only */
.hero-logos {
    display: none;
}

@media (min-width: 992px) {
    /* Ensure parent containers are relative for absolute positioning of logos */
    .about-hero, 
    .certificates-hero, 
    .contact-hero, 
    .page-header {
        position: relative !important;
    }

    .hero-logos.desktop-only {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 5;
    }

    .hero-logo-left, 
    .hero-logo-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 180px;
        max-width: 15vw;
        height: auto;
        pointer-events: auto;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        transition: transform 0.3s ease;
    }
    
    .hero-logo-left:hover, 
    .hero-logo-right:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .hero-logo-left {
        left: 40px;
    }

    .hero-logo-right {
        right: 40px;
    }

    .hero-logo-left img, 
    .hero-logo-right img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
}
