/* =================================================================== */
/* HCR EV TEKSTİL - COMPLETE PROFESSIONAL STYLE SHEET (FINAL)          */
/* =================================================================== */

/* ============================================ */
/* 1. TEMEL AYARLAR & DEĞİŞKENLER               */
/* ============================================ */
:root {
    /* Renk Paleti */
    --primary-color: #222222;       /* Ana Siyah/Antrasit */
    --secondary-color: #967259;     /* Marka Rengi (Gold/Kahve) */
    --background-color: #f9f9f9;    /* Sayfa Arka Planı */
    --text-color: #4a4a4a;          /* Genel Metin Rengi */
    --light-text-color: #ffffff;    /* Beyaz Metin */
    
    /* Yapısal Değişkenler */
    --border-radius: 12px;
    --section-spacing: 100px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay taşmayı engelle */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding-top: 90px; /* Header yüksekliği kadar boşluk */
    flex: 1; /* Footer'ı aşağı itmek için */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -0.03em;
}

/* ============================================ */
/* 2. HEADER (ÜST MENÜ)                         */
/* ============================================ */
.site-header-v2 {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header-v2.scrolled {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.site-header-v2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}
.site-header-v2.scrolled .header-logo img { height: 45px; }

.main-nav-v2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav-v2 a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav-v2 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.header-actions { display: flex; align-items: center; gap: 20px; }

.action-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.action-icon:hover {
    background-color: #f0ebe7;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ============================================ */
/* 3. SAYFA BAŞLIKLARI & BÖLÜMLER               */
/* ============================================ */
.page-header {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 { font-size: 3.2rem; margin: 0; color: #fff; }

.content-section { padding: var(--section-spacing) 0; }

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 15px;
    border-radius: 2px;
}

/* ============================================ */
/* 4. ANA SAYFA (HERO & FEATURES)               */
/* ============================================ */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    object-fit: cover;
}

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

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 10px; color: #fff; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.5rem; color: #f0f0f0; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: #ddd; margin-bottom: 40px; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; }
.hero-btn {
    padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s ease;
}
.hero-btn.primary { background-color: var(--secondary-color); color: #fff; border: 2px solid var(--secondary-color); }
.hero-btn.primary:hover { background-color: transparent; }
.hero-btn.secondary { background-color: transparent; color: #fff; border: 2px solid #fff; }
.hero-btn.secondary:hover { background-color: #fff; color: var(--primary-color); }

/* Scroll İkonu */
.scroll-down-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; opacity: 0.8;
}
.mouse { width: 30px; height: 50px; border: 2px solid #fff; border-radius: 20px; position: relative; }
.wheel {
    width: 4px; height: 8px; background-color: #fff; border-radius: 2px;
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { opacity: 1; top: 10px; } 100% { opacity: 0; top: 30px; } }

/* Feature Kartları */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; margin-top: -50px; position: relative; z-index: 10; justify-content: center;
}
.feature-card {
    background: #fff; padding: 40px; border-radius: var(--border-radius);
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex; flex-direction: column; align-items: center;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.card-icon {
    width: 70px; height: 70px; background-color: var(--background-color);
    color: var(--secondary-color); font-size: 2rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    transition: all 0.3s ease;
}
.feature-card:hover .card-icon { background-color: var(--secondary-color); color: #fff; }

.card-button {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
    color: var(--secondary-color); text-decoration: none; font-weight: bold;
}
.card-button:hover { gap: 12px; }

/* Hakkımızda Özeti */
.about-summary {
    text-align: center; max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
}
.text-link {
    color: var(--secondary-color); text-decoration: none; font-weight: bold;
    border-bottom: 2px solid transparent; transition: border-color 0.3s ease;
}
.text-link:hover { border-bottom-color: var(--secondary-color); }

/* ============================================ */
/* 5. GALERİ & ÜRÜNLER                          */
/* ============================================ */
.gallery-controls { padding: 30px 0 10px; position: relative; z-index: 20; }
.search-wrapper { position: relative; max-width: 500px; margin: 0 auto; }
.search-wrapper i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #999; }
#searchInput {
    width: 100%; padding: 16px 20px 16px 50px; border: 1px solid #e0e0e0;
    border-radius: 50px; font-size: 1rem; transition: all 0.3s ease;
}
#searchInput:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 5px 20px rgba(150, 114, 89, 0.2); }

.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px; margin-bottom: 50px;
}

.product-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.4s ease;
    display: flex; flex-direction: column; height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }

.product-image {
    width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background-color: #f4f4f4;
}
.product-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-info {
    padding: 25px; display: flex; flex-direction: column; flex-grow: 1; text-align: center;
}
.product-info h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-color); }
.product-info p {
    font-size: 0.9rem; color: #666; margin-bottom: 20px;
    flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.btn-details {
    display: inline-block; padding: 10px 25px; border: 1px solid var(--secondary-color);
    color: var(--secondary-color); border-radius: 50px; text-decoration: none;
    font-weight: 600; align-self: center; transition: all 0.3s ease;
}
.btn-details:hover { background-color: var(--secondary-color); color: #fff; }

.load-more-container { text-align: center; margin-top: 40px; }
.btn-load-more {
    background-color: var(--primary-color); color: #fff; border: none; padding: 15px 35px;
    border-radius: 50px; font-weight: bold; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
}
.btn-load-more:hover { background-color: var(--secondary-color); transform: translateY(-3px); }
.btn-load-more:hover i { transform: rotate(180deg); }

/* ============================================ */
/* 6. HAKKIMIZDA & SSS                          */
/* ============================================ */
.page-slogan { background-color: #fff; border-bottom: 1px solid #eee; }
.page-slogan h2 { font-style: italic; font-weight: 400; color: var(--secondary-color); }
.page-slogan h2::after { display: none; }

.about-intro { background-color: #fff; }
.about-intro .container { max-width: 850px; }
.about-intro p { font-size: 1.15rem; color: #555; text-align: center; margin-bottom: 25px; }

.mission-vision-section { background-color: var(--background-color); }
.mission-vision-grid { display: flex; gap: 30px; }
.mission-vision-card {
    background: #fff; flex: 1; padding: 50px 40px; border-radius: var(--border-radius);
    text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition-smooth);
}
.mission-vision-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.section-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 25px; display: inline-block; }

.our-values { background-color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.value-card {
    background: #fff; padding: 40px 30px; border-radius: var(--border-radius);
    text-align: center; border: 1px solid #f0f0f0; box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth); position: relative; overflow: hidden;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 4px;
    background-color: var(--secondary-color); transition: width 0.4s ease;
}
.value-card:hover::before { width: 100%; }
.value-icon {
    width: 70px; height: 70px; margin: 0 auto 25px; border-radius: 50%;
    background-color: #f9f6f4; display: flex; align-items: center; justify-content: center;
}
.value-icon i { font-size: 1.8rem; color: var(--secondary-color); }

/* SSS (FAQ) */
.faq-section { background-color: #f9f9f9; padding: 80px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background-color: #fff; margin-bottom: 15px; border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.3s ease;
}
.faq-question {
    padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 700; color: var(--primary-color);
    background-color: #fff; user-select: none;
}
.faq-question i { color: var(--secondary-color); font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-answer {
    max-height: 0; overflow: hidden; padding: 0 25px; opacity: 0;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-answer p { margin: 15px 0 25px 0; color: #666; line-height: 1.6; }

.faq-item.active { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 500px; opacity: 1; padding-bottom: 10px; }

/* ============================================ */
/* 7. İLETİŞİM                                  */
/* ============================================ */
.contact-section-v3 { padding: 100px 0; background-color: var(--background-color); }
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.6fr;
    background-color: #fff; border-radius: var(--border-radius); overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); margin: 0 auto;
}
.contact-info-panel {
    background-color: var(--primary-color); color: #e0e0e0; padding: 60px 40px;
    display: flex; flex-direction: column; z-index: 2;
}
.contact-info-panel h3, .contact-info-panel strong { color: #fff; }
.contact-info-panel p, .contact-info-panel span, .contact-info-panel a { color: #b0b0b0; }
.info-list { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; }
.info-item i { color: var(--secondary-color); font-size: 1.4rem; margin-top: 5px; }

.contact-socials { margin-top: 40px; display: flex; gap: 15px; }
.contact-socials a {
    width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s ease;
}
.contact-socials a:hover { background-color: var(--secondary-color); transform: translateY(-3px); }

.map-container { margin-top: auto; padding-top: 30px; border-radius: 12px; overflow: hidden; }
.map-container iframe { display: block; width: 100%; border-radius: 8px; filter: grayscale(20%); }

.contact-form-panel { background-color: #fff; padding: 60px; }
.contact-form-panel h3 { font-size: 2.2rem; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 25px; }
.contact-form-v2 label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--primary-color); }
.contact-form-v2 input, .contact-form-v2 textarea {
    width: 100%; padding: 15px; border: 1px solid #e0e0e0; border-radius: 8px;
    background-color: #fcfcfc; font-family: 'Montserrat', sans-serif;
}
.contact-form-v2 input:focus, .contact-form-v2 textarea:focus {
    outline: none; border-color: var(--secondary-color); background-color: #fff;
}
.cta-button-v2 {
    width: 100%; padding: 18px; background-color: var(--primary-color); color: #fff;
    font-weight: bold; border: none; border-radius: 8px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.3s ease;
}
.cta-button-v2:hover { background-color: var(--secondary-color); transform: translateY(-3px); }

/* ============================================ */
/* 8. FOOTER (PREMIUM 3 SÜTUN)                  */
/* ============================================ */
.site-footer-premium {
    background-color: #1a1a1a;
    color: #b0b0b0;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding-top: 0;
}

.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a 0%, var(--secondary-color) 50%, #1a1a1a 100%);
    width: 100%;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr; /* 3 Sütun: Marka - Linkler - İletişim */
    gap: 50px;
}

.footer-col h4 {
    color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 25px;
    text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #b0b0b0; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-col ul li a:hover { color: var(--secondary-color); transform: translateX(5px); }

.brand-desc { line-height: 1.6; margin-bottom: 25px; max-width: 300px; }
.footer-logo img { height: 50px; margin-bottom: 20px; opacity: 0.9; }

.footer-socials, .contact-row { display: flex; align-items: center; gap: 15px; }
.footer-socials a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer-socials a:hover { background-color: var(--secondary-color); transform: translateY(-3px); }

.contact-row { margin-bottom: 15px; }
.contact-row i { color: var(--secondary-color); width: 20px; text-align: center; }
.contact-row a, .contact-row span { color: #b0b0b0; text-decoration: none; transition: color 0.3s ease; }
.contact-row a:hover { color: #fff; }

.footer-bottom { background-color: #111; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.payment-icons { display: flex; gap: 15px; font-size: 1.5rem; color: #666; }

/* ============================================ */
/* 9. POPUP SİSTEMİ (GENEL AYARLAR)             */
/* ============================================ */

/* Kaplama (Overlay) - Varsayılan GİZLİ */
.popup-overlay {
    display: none; /* JS ile .active olunca açılacak */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

/* Görünür Durum */
.popup-overlay.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
}

/* Kapatma Butonu (Premium Tasarım) */
.popup-content, .popup-small, .product-popup-content {
    position: relative !important; /* Buton buna göre hizalanır */
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #999; cursor: pointer;
    transition: all 0.3s ease; z-index: 20;
}

.popup-close:hover {
    background-color: #f5f5f5;
    color: #d32f2f;
    transform: rotate(90deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- A. SEPET POPUP (KÜÇÜK) --- */
.popup-small {
    background: #fff; padding: 40px 30px; border-radius: 12px;
    max-width: 500px; width: 90%; text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-icon-header {
    width: 80px; height: 80px; background: #f4f4f4; color: var(--secondary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; margin: 0 auto 20px;
}
.popup-small h3 { font-size: 1.8rem; margin-bottom: 15px; }
.popup-small p { color: #666; margin-bottom: 30px; }

.popup-channels-grid { display: flex; flex-direction: column; gap: 15px; }
.channel-box {
    display: flex; align-items: center; padding: 15px 20px; border-radius: 12px;
    text-decoration: none; background: #fff; border: 1px solid #eee;
    transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.channel-box:hover { transform: translateY(-3px); border-color: var(--secondary-color); }

.ch-icon {
    width: 45px; height: 45px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff; margin-right: 15px;
}
.channel-box.trendyol .ch-icon { background-color: #F27A1A; }
.channel-box.dolap .ch-icon { background-color: #40c388; }
.channel-box.instagram .ch-icon { background: linear-gradient(45deg, #f09433 0%, #bc1888 100%); }

.ch-text { flex-grow: 1; text-align: left; display: flex; flex-direction: column; }
.ch-text strong { color: var(--primary-color); }
.ch-text span { font-size: 0.85rem; color: #888; }
.channel-box .arrow { color: #ccc; transition: transform 0.3s ease; }
.channel-box:hover .arrow { color: var(--secondary-color); transform: translateX(5px); }

/* --- B. ÜRÜN DETAY POPUP (BÜYÜK) --- */
.product-popup-content {
    background: #fff; border-radius: 12px; max-width: 900px; width: 95%;
    display: flex; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.popup-body { display: flex; width: 100%; flex-wrap: wrap; }

.popup-left {
    flex: 1; min-width: 300px; background: #f9f9f9; padding: 30px;
    display: flex; align-items: center; justify-content: center;
}
.popup-left img {
    width: 100%; max-width: 400px; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); object-fit: cover;
}

.popup-right {
    flex: 1; min-width: 300px; padding: 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.popup-right h2 { font-size: 2rem; margin-bottom: 15px; }
.popup-right p { color: #666; margin-bottom: 30px; }

.popup-variants-area span { display: block; font-weight: bold; margin-bottom: 10px; color: var(--primary-color); }
.popup-colors { display: flex; gap: 10px; margin-bottom: 30px; }

.color-swatch {
    width: 35px; height: 35px; border-radius: 50%; cursor: pointer;
    border: 2px solid #ddd; transition: all 0.2s ease;
}
.color-swatch:hover { transform: scale(1.1); border-color: #999; }
.color-swatch.active { border: 2px solid var(--secondary-color); transform: scale(1.2); }

.whatsapp-order-btn {
    display: inline-flex; align-items: center; gap: 10px; background: #25D366;
    color: #fff; padding: 12px 25px; border-radius: 50px; font-weight: bold;
    text-decoration: none; transition: transform 0.3s ease;
}
.whatsapp-order-btn:hover { transform: translateY(-3px); }

/* ============================================ */
/* 10. MOBİL UYUMLULUK (Responsive)             */
/* ============================================ */
@media (max-width: 992px) {
    .site-header-v2 { padding: 0 15px; }
    .main-nav-v2 { display: none; } /* JS ile açılır */
    .mobile-nav-toggle { display: block; }
    
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .popup-body { flex-direction: column; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .brand-desc { margin: 0 auto 20px; }
    .footer-socials, .contact-row { justify-content: center; }
    .footer-bottom .container { flex-direction: column; gap: 15px; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    
    .form-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Mobil Popup */
    .popup-left, .popup-right { padding: 20px; text-align: center; }
    .popup-colors { justify-content: center; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-info h4 { font-size: 1rem; }
    .btn-details { padding: 8px 15px; font-size: 0.8rem; }
}

/* =================================================================== */
/* 10. MOBİL UYUMLULUK VE RESPONSIVE AYARLAR (TAM ÇÖZÜM)               */
/* =================================================================== */

/* --- TABLET VE KÜÇÜK LAPTOPLAR (max-width: 992px) --- */
@media (max-width: 992px) {
    
    /* 1. Header (Menü) Düzenlemesi */
    .site-header-v2 { 
        padding: 0 15px; 
    }
    
    /* Menüyü Gizle (Hamburger ikonuna basınca açılacak) */
    .main-nav-v2 {
        display: none; 
        position: absolute;
        top: 90px; /* Header yüksekliği kadar aşağı */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        flex-direction: column;
        border-top: 1px solid #eee;
    }
    
    /* JS ile 'nav-open' sınıfı eklenince görünür yap */
    .main-nav-v2.nav-open {
        display: flex;
    }
    
    .main-nav-v2 ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav-v2 ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f9f9f9;
    }
    
    .main-nav-v2 a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    /* Hamburger Menü İkonunu Göster */
    .mobile-nav-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-left: 15px;
    }
    
    /* 2. Footer Sütunlarını Düzenle (2'li dizilim) */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }

    /* 3. İletişim Sayfası (Yan yana panelleri alt alta al) */
    .contact-wrapper {
        grid-template-columns: 1fr; 
    }
    .contact-info-panel, .contact-form-panel {
        padding: 40px 20px;
    }
}

/* --- TELEFONLAR (max-width: 768px) --- */
@media (max-width: 768px) {

    /* 1. Hero (Video) Alanı */
    .hero-content h1 {
        font-size: 2.2rem; /* Başlığı küçült */
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column; /* Butonları alt alta al */
        gap: 15px;
    }
    .hero-btn {
        width: 100%; /* Tam genişlik */
    }

    /* 2. Genel Başlıklar */
    .content-section h2 {
        font-size: 2rem;
    }
    
    /* 3. Galeri Grid (Tek sütuna düşmesin, 2 sütun kalsın ama boşluk azalsın) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    
    /* 4. Footer (Mobilde tek sütun olsun) */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); /* Alt çizgiyi ortala */
    }
    .brand-desc {
        margin: 0 auto 20px;
    }
    .footer-socials, .contact-row {
        justify-content: center;
    }
    
    /* Footer Alt Kısmı */
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }

    /* 5. Popup Pencereler (Mobilde tam ekran gibi olsun) */
    .product-popup-content, .popup-small {
        width: 95%;
        max-height: 90vh; /* Ekrandan taşmasın */
        overflow-y: auto; /* İçerik uzunsa kaydırılsın */
    }

    .popup-body {
        flex-direction: column; /* Yan yana olan resim ve yazıyı alt alta al */
    }

    .popup-left, .popup-right {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    /* Renk seçeneklerini ortala */
    .popup-colors {
        justify-content: center;
    }
    
    /* Popup Kapatma Butonu (Daha belirgin) */
    .popup-close {
        top: 10px;
        right: 10px;
        background-color: #f5f5f5;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    /* 6. İletişim Formu */
    .form-grid {
        grid-template-columns: 1fr; /* Ad ve Mail alt alta */
    }
}

/* --- ÇOK KÜÇÜK TELEFONLAR (max-width: 480px) --- */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Galeri kartlarındaki yazıları küçült */
    .product-info h4 { font-size: 1rem; }
    .btn-details { padding: 8px 15px; font-size: 0.85rem; }
    
    /* Footer logoyu biraz küçült */
    .footer-logo img { height: 40px; }
}
/* ======================================================= */
/* MOBİL İÇİN MİNİMAL POPUP TASARIMI (GÜÇLENDİRİLMİŞ)      */
/* ======================================================= */

@media (max-width: 768px) {
    /* 1. Popup Kutusunu Ekran Boyutuna Sabitle */
    .product-popup-content {
        max-height: 85vh !important; /* Ekranın %85'i kadar olsun */
        display: flex !important;
        flex-direction: column !important; /* Alt alta dizilim */
        overflow: hidden !important; /* Dış taşmayı engelle */
        border-radius: 16px !important;
        width: 95% !important;
    }

    /* 2. Popup Gövdesi (Esnek Yapı) */
    .popup-body {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    /* 3. Resim Alanı (Kompakt ve Üstte) */
    .popup-left {
        width: 100% !important;
        height: 250px !important; /* Sabit yükseklik */
        padding: 0 !important;
        background-color: #f0f0f0 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        min-width: auto !important; /* Eski kuralı ez */
    }

    .popup-left img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; /* Resmi kesmeden sığdır */
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* 4. İçerik Alanı (Kaydırılabilir) */
    .popup-right {
        width: 100% !important;
        padding: 20px !important;
        overflow-y: auto !important; /* Yazı uzunsa sadece burası kaysın */
        text-align: center !important;
        flex: 1 !important;
        min-width: auto !important; /* Eski kuralı ez */
    }

    /* Başlık ve Yazı Boyutları */
    .popup-right h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .popup-right p {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
        color: #555 !important;
    }

    /* Renk Seçenekleri */
    .popup-variants-area {
        margin-bottom: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .popup-colors {
        justify-content: center !important;
        gap: 15px !important;
        display: flex !important;
        margin-bottom: 0 !important;
    }

    .color-swatch {
        width: 40px !important;
        height: 40px !important;
        border-width: 2px !important;
    }

    /* 5. Sipariş Butonu (Tam Genişlik) */
    .popup-actions {
        margin-top: 20px !important;
        padding-bottom: 10px !important;
        width: 100% !important;
    }

    .whatsapp-order-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 15px !important;
        font-size: 1rem !important;
    }

    /* 6. Kapatma Butonu (Kesin Konum) */
    .popup-close {
        top: 10px !important;
        right: 10px !important;
        background-color: rgba(255, 255, 255, 0.9) !important;
        width: 35px !important;
        height: 35px !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
        color: #333 !important;
        z-index: 99999 !important;
    }
}

/* ======================================================= */
/* MOBİL POPUP DÜZELTMESİ (SON VE KESİN SÜRÜM)             */
/* ======================================================= */

@media (max-width: 768px) {
    
    /* 1. Popup Ana Kutusu: Ekranın Ortasında ve Kaydırılabilir Olsun */
    .product-popup-content {
        width: 90% !important;
        max-height: 90vh !important; /* Ekranın %90'ı kadar */
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important; /* Taşmayı engelle */
        border-radius: 12px !important;
        background-color: #fff !important;
        position: relative !important;
    }

    /* 2. Kapatma Butonu: Sağ Üstte Sabit */
    .popup-close {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        background-color: rgba(255, 255, 255, 0.9) !important;
        width: 35px !important;
        height: 35px !important;
        z-index: 100 !important; /* En üstte */
        border-radius: 50% !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
        color: #333 !important;
    }

    /* 3. Popup İçeriği: Dikey (Alt Alta) Dizilim ve Kaydırma */
    .popup-body {
        display: block !important; /* Flex yerine Block yapıyoruz ki aksın */
        overflow-y: auto !important; /* Dikey kaydırmayı aç */
        height: 100% !important;
        padding-bottom: 20px !important;
    }

    /* 4. Resim Alanı: Yüksekliği Sınırla */
    .popup-left {
        width: 100% !important;
        height: auto !important;
        max-height: 300px !important; /* Resim ekranı kaplamasın */
        padding: 0 !important;
        background-color: #f4f4f4 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .popup-left img {
        width: 100% !important;
        height: 100% !important;
        max-height: 300px !important;
        object-fit: contain !important; /* Resmi kesme, sığdır */
    }

    /* 5. Yazı ve Bilgi Alanı: Resmin Altına Gelsin */
    .popup-right {
        width: 100% !important;
        padding: 20px !important;
        text-align: center !important;
        height: auto !important; /* Yüksekliği serbest bırak */
    }

    .popup-right h2 {
        font-size: 1.4rem !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .popup-right p {
        font-size: 0.95rem !important;
        color: #555 !important;
        margin-bottom: 20px !important;
    }

    /* Renk Seçenekleri */
    .popup-variants-area {
        margin-bottom: 20px !important;
    }
    
    .popup-colors {
        justify-content: center !important;
        margin-bottom: 0 !important;
    }

    /* Sipariş Butonu */
    .whatsapp-order-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 15px !important;
        margin-top: 10px !important;
    }
}

/* ======================================================= */
/* MOBİL ÜRÜN KARTI OPTİMİZASYONU (MINIMAL & KOMPAKT)      */
/* ======================================================= */

@media (max-width: 768px) {
    
    /* 1. Izgara Boşluğunu Ayarla */
    .gallery-grid {
        gap: 12px !important; /* Kartlar arası boşluğu biraz aç/kapa */
        margin-bottom: 30px !important;
    }

    /* 2. Kart Yapısı */
    .product-card {
        border-radius: 8px !important; /* Mobilde daha keskin köşe */
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; /* Hafif gölge */
    }

    /* 3. Resim Alanı */
    .product-image {
        aspect-ratio: 1 / 1; /* Kare formatı koru */
        background-color: #f8f8f8 !important;
    }

    /* 4. Bilgi Alanını Daralt (EN ÖNEMLİ KISIM) */
    .product-info {
        text-align: center !important; /* Metni ortala */
        align-items: center !important; /* Flex öğelerini ortala */
        display: flex !important;
        flex-direction: column !important;
        padding: 12px 5px !important;
    }

    /* 5. Başlık Ayarı */
    .product-info h4 {
        font-size: 0.9rem !important; /* Fontu küçült */
        margin-bottom: 5px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        /* Uzun isimleri 2 satırla sınırla, taşarsa ... koy */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.6em; /* Hizayı korumak için minimum yükseklik */
    }

    /* 6. Açıklamayı Gizle (Yerden Tasarruf) */
    .product-info p {
        display: none !important; /* Mobilde açıklamayı gizle, sadece başlık ve buton kalsın */
    }

    /* 7. Buton Optimizasyonu */
    .btn-details {
        width: 100% !important; /* Tam genişlik */
        padding: 6px 0 !important; /* İnce buton */
        font-size: 0.8rem !important;
        margin-top: auto !important; /* En alta it */
        border-radius: 4px !important; /* Hafif yuvarlak */
        text-align: center !important;
        background-color: transparent !important;
        border: 1px solid #ddd !important;
        color: var(--primary-color) !important;
    }
    
    /* İsteğe bağlı: Butonu siyah yapıp yazıyı beyaz yapmak istersen: */
    /*
    .btn-details {
        background-color: var(--primary-color) !important;
        color: #fff !important;
        border: none !important;
    }
    */
}


/* ======================================================= */
/* MOBİL HEADER & HAMBURGER MENÜ DÜZELTMESİ (FIX)          */
/* ======================================================= */

@media (max-width: 992px) {
    
    /* 1. Header Ana Kapsayıcıyı Tek Satıra Zorla */
    .site-header-v2 .container {
        display: flex !important;
        justify-content: space-between !important; /* Logo sola, ikonlar sağa */
        align-items: center !important;
        flex-wrap: nowrap !important; /* ASLA alt satıra geçmesin */
        height: 70px !important; /* Yüksekliği sabitle */
    }

    /* 2. Logo Alanını Sınırla (Çok yer kaplamasın) */
    .header-logo {
        flex-shrink: 1; /* Gerekirse küçülsün */
        max-width: 150px; /* Maksimum genişlik */
    }

    .header-logo img {
        height: 40px !important; /* Logo boyutu mobilde ideal olsun */
        width: auto !important;
        object-fit: contain;
    }

    /* 3. Sağ Taraf (İkonlar + Hamburger) */
    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important; /* İkonlar arası boşluğu biraz azalt */
        flex-shrink: 0; /* Asla büzülmesin */
        flex-wrap: nowrap !important; /* Yan yana kalsınlar */
    }

    /* 4. Header İkonları (Mail, Sepet) */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .action-icon {
        font-size: 1.2rem !important; /* İkonları mobilde hafif küçült */
        width: 35px !important; /* Tıklama alanı */
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* 5. Hamburger Menü Butonu */
    .mobile-nav-toggle {
        display: flex !important; /* Görünür yap */
        align-items: center;
        justify-content: center;
        font-size: 1.6rem !important; /* Biraz belirgin olsun */
        margin-left: 5px !important; /* İkonlardan hafif ayır */
        padding: 0 !important;
        line-height: 1 !important;
        height: 40px;
        width: 40px;
    }
}
/* ======================================================= */
/* MOBİL MENÜ GÖRÜNÜRLÜK AYARI (ZORUNLU)                   */
/* ======================================================= */

@media (max-width: 992px) {
    /* Varsayılan olarak gizli */
    .main-nav-v2 {
        display: none; 
        position: absolute;
        top: 70px; /* Header yüksekliği */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        padding: 20px;
        flex-direction: column;
        z-index: 10001; /* En üstte */
        border-top: 1px solid #f0f0f0;
    }

    /* JS ile 'nav-open' sınıfı eklenince GÖSTER (!important ile zorla) */
    .main-nav-v2.nav-open {
        display: flex !important;
    }

    /* Buton Ayarı */
    .mobile-nav-toggle {
        display: block;
        cursor: pointer;
        z-index: 10002; /* Menünün de üstünde */
        background: none;
        border: none;
        font-size: 1.6rem;
        color: var(--primary-color);
        padding: 5px;
    }
}

/* ======================================================= */
/* FONT EŞİTLEME YAMASI (TÜM SİTE AYNI FONT OLSUN)         */
/* ======================================================= */

/* 1. Tüm elementleri Montserrat yapmaya zorla */
body, h1, h2, h3, h4, h5, h6, p, a, span, li, button, input, textarea, .page-slogan h2 {
    font-family: 'Montserrat', sans-serif !important;
}

/* 2. Hakkımızda sayfasındaki Slogan'ın italik stilini koru ama fontu düzelt */
.page-slogan h2 {
    font-style: italic; /* İstersen bunu da normal yapabilirsin: 'normal' yazarak */
    font-weight: 600 !important;
    color: var(--secondary-color) !important;
}

/* 3. Hakkımızda Paragrafları */
.about-intro p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ======================================================= */
/* KATEGORİ FİLTRELEME STİLLERİ                            */
/* ======================================================= */

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px; /* Arama kutusundan uzaklaştır */
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: var(--text-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

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

.filter-btn.active {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(150, 114, 89, 0.3);
}

/* MOBİL İÇİN YATAY KAYDIRMA */
@media (max-width: 768px) {
    .category-filters {
        justify-content: flex-start; /* Sola yasla */
        flex-wrap: nowrap; /* Asla alt satıra geçme */
        overflow-x: auto; /* Yatay kaydırmayı aç */
        padding-bottom: 10px; /* Kaydırma çubuğu için yer */
        padding-left: 5px;
        margin-top: 15px;
        /* Kaydırma çubuğunu gizle (Chrome/Safari) */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .category-filters::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .filter-btn {
        flex-shrink: 0; /* Butonların büzülmesini engelle */
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}


/* ======================================================= */
/* MİSYON & VİZYON MOBİL DÜZELTMESİ (ORTALI & KOMPAKT)     */
/* ======================================================= */

@media (max-width: 768px) {
    
    /* 1. Grid Yapısını Alt Alta Al ve Boşluğu Azalt */
    .mission-vision-grid {
        display: flex !important;
        flex-direction: column !important; /* Alt alta diz */
        gap: 20px !important; /* Aralarındaki boşluğu küçült */
    }

    /* 2. Kart Tasarımını İyileştir */
    .mission-vision-card {
        text-align: center !important; /* İçeriği ortala */
        padding: 30px 20px !important; /* Dikey boşluğu azalt (Dikliği kırar) */
        width: 100% !important; /* Ekranı tam kapla */
        border-radius: 12px !important; /* Köşeleri yumuşat */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; /* Hafif gölge */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* İkon ve yazıları dikeyde ortala */
        justify-content: center !important;
    }

    /* 3. İkon Boyutunu ve Boşluğunu Ayarla */
    .section-icon {
        font-size: 2.5rem !important; /* Mobilde ikonu biraz küçült */
        margin-bottom: 15px !important;
        display: inline-block !important;
    }

    /* 4. Başlık ve Metin Ayarları */
    .mission-vision-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .mission-vision-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important; /* Metnin taşmasını engelle */
        margin: 0 !important;
    }
}

/* ======================================================= */
/* MOBİL FİLTRE KAYDIRMA EFEKTİ (FADE & ARROW)             */
/* ======================================================= */

/* Kapsayıcı Ayarı */
.filters-wrapper {
    position: relative; /* İçindeki oku konumlandırmak için */
    margin-top: 25px;
}

/* Varsayılan olarak oku gizle (Masaüstü için) */
.scroll-indicator {
    display: none;
}

/* SADECE MOBİLDE ÇALIŞSIN */
@media (max-width: 768px) {
    
    .filters-wrapper {
        margin-top: 15px;
    }

    /* Orijinal Listeyi Düzenle */
    .category-filters {
        padding-right: 50px !important; /* Okun altında yazı kalmasın diye boşluk */
    }

    /* Kaydırma Göstergesi (Sağdaki Beyazlık ve Ok) */
    .scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 60px; /* Efektin genişliği */
        height: 100%;
        /* Soldan sağa: Şeffaftan beyaza geçiş (Yazının üstüne binen sis efekti) */
        background: linear-gradient(to right, rgba(255,255,255,0), #ffffff 80%);
        pointer-events: none; /* Tıklamayı engelleme, alttaki butona basılabilsin */
        z-index: 5;
        border-radius: 0 50px 50px 0;
    }

    /* Ok İkonu Stili */
    .scroll-indicator i {
        color: var(--secondary-color);
        font-size: 1.2rem;
        /* Animasyon Tanımlama */
        animation: scrollBounce 1.5s infinite ease-in-out;
        margin-left: 15px; /* Beyazlığın en sağına it */
    }

    /* Zıplama Animasyonu */
    @keyframes scrollBounce {
        0%, 100% {
            transform: translateX(0);
            opacity: 1;
        }
        50% {
            transform: translateX(5px); /* Sağa git */
            opacity: 0.5; /* Hafif sönükleş */
        }
    }
}