:root { --primary: #1e272e; --accent: #e84393; --bg-color: #fdfbfb; --text-dark: #2d3436; --white: #ffffff; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; overflow-x: hidden; } 
* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100vw; } 

@keyframes sinematikAcilis {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body { 
    font-family: 'Poppins', sans-serif; 
    background: var(--bg-color); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    animation: sinematikAcilis 0.8s ease-out forwards; 
    
    /* YENİ NESİL LÜKS MOUSE İKONU (KOYU GRİ) */
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M2 2l8 22 4-9 9-4z' fill='%231e272e' stroke='%23ffffff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 2 2, auto;
}

/* BUTONLARIN ÜZERİNE GELİNCE PEMBEYE DÖNEN MOUSE İKONU */
a, button, .product-card, .faq-question, .island-btn, .btn, .modal-close {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M2 2l8 22 4-9 9-4z' fill='%23e84393' stroke='%23ffffff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 2 2, pointer !important;
}

h1, h2, h3, .island-logo { font-family: 'Playfair Display', serif; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* =========================================================
   YENİ NESİL HAREKETLİ İLETİŞİM BUTONU (FAB)
   ========================================================= */
.floating-fab { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.fab-links { display: flex; flex-direction: column; gap: 12px; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); pointer-events: none; }
.floating-fab.active .fab-links { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-links a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: var(--white); color: var(--primary); font-size: 20px; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.15); transition: 0.3s; position: relative; }
.fab-links a:hover { transform: scale(1.15); color: var(--white); }
.fab-links .fs-wp:hover { background: #25d366; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.fab-links .fs-ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 8px 20px rgba(232,67,147,0.4); }
.fab-links .fs-fb:hover { background: #1877f2; box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.fab-links .fs-map:hover { background: #ea4335; box-shadow: 0 8px 20px rgba(234,67,53,0.4); }

/* Ana Nabız Atan Buton */
.fab-toggle { width: 55px; height: 55px; border-radius: 50%; background: var(--primary); color: var(--white); border: none; font-size: 22px; box-shadow: 0 8px 25px rgba(30, 39, 46, 0.4); transition: 0.4s; position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; }
.fab-toggle::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    transform: translate(-50%, -50%); 
    border-radius: 50%; 
    border: 2px solid var(--primary); 
    z-index: -1; 
    animation: pulse-ring 2s infinite; 
    box-sizing: border-box;
}
.fab-toggle .close-icon { position: absolute; transform: scale(0) rotate(-90deg); transition: 0.4s; opacity: 0; }
.fab-toggle .main-icon { transition: 0.4s; transform: scale(1) rotate(0); opacity: 1; }

.floating-fab.active .fab-toggle { background: var(--accent); box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4); }
.floating-fab.active .fab-toggle::before { border-color: var(--accent); animation: none; } 
.floating-fab.active .fab-toggle .main-icon { transform: scale(0) rotate(90deg); opacity: 0; }
.floating-fab.active .fab-toggle .close-icon { transform: scale(1) rotate(0); opacity: 1; }

@keyframes pulse-ring { 
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; } 
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; } 
}

/* =========================================================
   GENEL TASARIM VE MASAÜSTÜ NAVBAR
   ========================================================= */
.header-wrapper { position: fixed; top: 25px; width: 100%; display: flex; justify-content: center; z-index: 1000; pointer-events: none; }
.floating-island { pointer-events: auto; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1050px; padding: 10px 15px 10px 35px; border-radius: 60px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; overflow: hidden; }
.island-logo { font-size: 24px; color: var(--primary); text-decoration: none; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: 0.4s; display: flex; align-items: center; }
.island-logo img { max-height: 40px; width: auto; object-fit: contain; }
.island-nav ul { display: flex; gap: 15px; list-style: none; align-items: center;}
.island-nav a { text-decoration: none; color: var(--primary); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; padding: 10px 20px; border-radius: 30px; transition: 0.3s; display: flex; align-items: center; gap: 8px;}
.island-nav a:hover { background: rgba(232, 67, 147, 0.06); color: var(--accent); transform: translateY(-2px); }
.island-nav i { color: var(--accent); font-size: 14px; }
.island-btn { background: var(--primary); color: white !important; padding: 14px 30px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; text-decoration: none; transition: 0.4s; display: flex; align-items: center; gap: 10px;}
.island-btn:hover { background: var(--accent); box-shadow: 0 8px 25px rgba(232, 67, 147, 0.3); transform: scale(1.05); }

/* Hero Bölümü */
.hero { position: relative; text-align: center; padding: 220px 20px 180px 20px; overflow: hidden; color: var(--white); }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(30, 39, 46, 0.7), rgba(30, 39, 46, 0.7)); z-index: -1; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 52px; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 18px; margin-bottom: 35px; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); font-weight: 300;}
.btn { display: inline-block; background: var(--accent); color: white; padding: 14px 35px; text-decoration: none; border-radius: 50px; transition: 0.3s; font-weight: 500; }
.btn:hover { background: #c8337a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.section-title { display: flex; align-items: center; justify-content: center; text-align: center; font-size: 32px; margin-bottom: 40px; color: var(--primary); gap: 20px; letter-spacing: 1px;}
.section-title::before, .section-title::after { content: ''; display: block; width: 50px; height: 1px; background: var(--accent); opacity: 0.6; }

/* Kategoriler Slider */
.category-slider-section { padding: 80px 0 30px 0; background: var(--white); }
.categorySwiper .swiper-slide { width: 120px; } 
.cat-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--primary); transition: 0.4s; padding: 10px; width: 100%;}
.cat-card:hover { transform: translateY(-8px); }
.cat-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 2px solid transparent; padding: 3px; background: linear-gradient(white, white) padding-box, linear-gradient(45deg, var(--accent), var(--primary)) border-box; margin-bottom: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: 0.4s; }
.cat-card:hover img { box-shadow: 0 12px 25px rgba(232, 67, 147, 0.2); }
.cat-card span { font-weight: 500; font-size: 14px; text-transform: uppercase; text-align: center;}
@media (min-width: 768px) { .categorySwiper .swiper-wrapper { justify-content: center; } }

/* Vitrin & Ürün Kartları */
.collection { padding: 60px 0 90px 0; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.04); transition: 0.4s; border: 1px solid rgba(0,0,0,0.02); display: flex; flex-direction: column; height: 100%; cursor: pointer;}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.img-wrapper { width: 100%; height: 220px; overflow: hidden; position: relative; background-color: #ffffff; display: flex; align-items: center; justify-content: center;}
.product-card img { width: 100%; height: 100%; object-fit: contain; transition: 0.6s; margin: auto; display: block; } 
.product-card:hover img { transform: scale(1.05); }
.card-body { padding: 20px; text-align: left; display: flex; flex-direction: column; flex-grow: 1; } 
.product-card h3 { margin: 0 0 8px 0; color: var(--primary); font-size: 17px; font-weight: 600; }
.product-card p.desc { color: #7f8c8d; font-size: 13px; margin-bottom: 15px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 300;}
.price-action { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f8f9fa; padding-top: 15px; margin-top: auto; }
.price { font-weight: 600; color: var(--primary) !important; font-size: 18px !important; margin: 0 !important; }
.btn-wp-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: #25d366; color: white; border-radius: 50%; text-decoration: none; font-size: 18px; transition: 0.3s; box-shadow: 0 4px 10px rgba(37,211,102,0.2); }
.btn-wp-icon:hover { background: #128c7e; transform: scale(1.1) rotate(5deg); }

/* Popup Modal */
.product-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s ease;}
.product-modal.active { display: flex; opacity: 1; }
.modal-content { background: var(--white); width: 90%; max-width: 850px; border-radius: 20px; overflow: hidden; display: flex; position: relative; max-height: 90vh; box-shadow: 0 25px 50px rgba(0,0,0,0.2); transform: scale(0.9); transition: transform 0.3s ease;}
.product-modal.active .modal-content { transform: scale(1); }
.modal-close { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.05); border: none; font-size: 20px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; display:flex; align-items:center; justify-content:center; color: var(--text-dark); transition: 0.3s;}
.modal-close:hover { background: var(--accent); color: white; transform: rotate(90deg);}
.modal-img { flex: 1; width: 50%; background: #fff; display: flex; align-items: center; justify-content: center;} 
.modal-img img { width: 100%; height: 100%; object-fit: contain; display: block; margin: auto; } 
.modal-info { flex: 1; width: 50%; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; overflow-y: auto;}
.modal-info h2 { color: var(--primary); font-size: 28px; margin-bottom: 15px; font-family: 'Playfair Display', serif;}
.modal-info .modal-desc { color: #636e72; font-size: 15px; line-height: 1.8; margin-bottom: 30px; font-weight: 300;}
.modal-info .modal-price { font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 25px; display: block;}
.btn-modal-wp { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 16px; transition: 0.3s; box-shadow: 0 10px 20px rgba(37,211,102,0.3);}
.btn-modal-wp:hover { background: #128c7e; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(37,211,102,0.4);}

/* Diğer Bölümler */
.testimonials { padding: 80px 0; background: var(--white); }
.testimonial-card { background: var(--bg-color); padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.02); height: 100%; display: flex; flex-direction: column;}
.testimonial-card .stars { color: #f1c40f; margin-bottom: 20px; font-size: 13px; }
.testimonial-card p { font-style: italic; color: #636e72; margin-bottom: 25px; flex-grow: 1; }
.vending-machine { padding: 100px 0; background: linear-gradient(135deg, #fff5f8 0%, #fdfbfb 100%); }
.vending-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.vending-text { flex: 1; }
.vending-image { flex: 1; text-align: center; }
.vending-image img { max-width: 100%; border-radius: 20px; border: 8px solid var(--white); }
.faq-section { padding: 90px 0; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #f1f2f6; border-radius: 12px; background: var(--bg-color); overflow: hidden;}
.faq-question { padding: 22px 25px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 500;}
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; background: var(--white); }
.faq-item.active .faq-answer { max-height: 300px; padding: 25px 0; }
.about { padding: 90px 0; background: var(--bg-color); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 35px; text-align: center; }
.feature-box { padding: 40px 30px; background: var(--white); border-radius: 16px; }

/* Footer */
.site-footer { background: var(--primary); color: white; padding: 70px 0 20px 0; }
.footer-container { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 40px; }
.footer-info p { opacity: 0.7; margin-top: 15px; font-weight: 300; font-size: 14px; line-height: 1.8;}
.footer-contact p { margin-bottom: 15px; opacity: 0.8; font-size: 14px; font-weight: 300; letter-spacing: 0.5px;}
.footer-contact i { color: var(--accent); margin-right: 12px; font-size: 16px; width: 20px; text-align: center;}
.footer-contact a { color: white; text-decoration: none; transition: 0.3s; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; font-size: 13px; opacity: 0.5; font-weight: 300; letter-spacing: 1px;}

/* =========================================
   MOBİL UYUMLULUK VE KUSURSUZ YAĞ GİBİ GEÇİŞ 
   ========================================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px !important; word-wrap: break-word; line-height: 1.3;} 
    .hero p { font-size: 15px; }
    .section-title { font-size: 22px !important; gap: 10px; }
    .section-title::before, .section-title::after { width: 30px; }

    /* NAVBAR - BAŞLANGIÇ DURUMU (AÇIK HALİ) */
    .header-wrapper { top: 15px; }
    .floating-island { 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        padding: 15px; 
        border-radius: 20px; 
        gap: 12px; 
        width: 92%; 
        max-width: 92%; /* Animasyon için kritik */
        margin: 0 auto; 
        /* GEÇİŞLER BURADA YAĞ GİBİ YAPILDI */
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    }
    
    /* LOGO HER ZAMAN MERKEZDE KALIR */
    .island-logo { 
        display: flex; justify-content: center; align-items: center; 
        width: 100%; margin: 0; padding: 0; 
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .island-logo img { 
        display: block; margin: 0 auto; max-height: 40px; 
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    } 
    
    /* LİNKLER VE BUTON İÇİN ANİMASYON HAZIRLIĞI */
    .island-nav { 
        width: 100%; max-height: 150px; opacity: 1; visibility: visible; overflow: hidden; 
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    }
    .island-nav ul { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0; padding: 0;}
    .island-nav a { font-size: 11px; padding: 5px 8px; }
    
    .island-btn { 
        width: 100%; justify-content: center; padding: 12px; font-size: 12px; margin-top: 0; border-radius: 50px; 
        max-height: 50px; opacity: 1; visibility: visible; overflow: hidden; 
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    }
    
    /* AŞAĞI KAYDIRINCA (SCROLLED) - YUMUŞACIK ERİME VE MERKEZDE KALMA EFEKTİ */
    .header-wrapper.scrolled .floating-island { 
        width: 220px; /* Sadece logoya yetecek kadar genişlik */
        max-width: 70%;
        padding: 8px 25px; 
        border-radius: 40px; 
        gap: 0; 
        background: rgba(255, 255, 255, 0.95); 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    }
    
    .header-wrapper.scrolled .island-logo img { max-height: 30px; } 
    
    /* Çat diye kaybolmaz, yüksekliği ve saydamlığı azalarak pürüzsüzce kapanır */
    .header-wrapper.scrolled .island-nav, 
    .header-wrapper.scrolled .island-btn { 
        max-height: 0 !important; 
        opacity: 0 !important; 
        visibility: hidden !important;
        margin: 0 !important; 
        padding: 0 !important; 
        border: none !important;
    } 

    /* FAB Buton Mobil Pozisyonu */
    .floating-fab { bottom: 20px; right: 20px; }

    /* Diğer Mobil Düzeltmeler */
    .hero { padding-top: 220px; } 
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .img-wrapper { height: 140px; }
    .card-body { padding: 12px; }
    .product-card h3 { font-size: 13px; margin-bottom: 5px; line-height: 1.3;}
    .product-card p.desc { font-size: 11px; margin-bottom: 10px;}
    .price-action { padding-top: 10px; flex-direction: column; gap: 8px; align-items: flex-start;}
    .price { font-size: 14px !important; }
    .btn-wp-icon { width: 100%; height: 32px; border-radius: 8px; font-size: 14px;} 
    
    .modal-content { flex-direction: column; max-height: 85vh; overflow-y: auto; }
    .modal-img { width: 100%; height: 250px; flex: none;}
    .modal-info { width: 100%; padding: 25px 20px; }
    .modal-info h2 { font-size: 22px; }
    .modal-info .modal-price { font-size: 22px; }
    .btn-modal-wp { width: 100%; font-size: 15px; }
    .modal-close { top: 10px; right: 10px; background: rgba(255,255,255,0.8); color: black; box-shadow: 0 2px 10px rgba(0,0,0,0.1);}

    .vending-container { flex-direction: column; text-align: center; gap: 30px;}
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .footer-map iframe { width: 100% !important; max-width: 100%; }
}