/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --gold: #d4af37;           /* Ana Altın Rengi */
    --gold-dark: #b8962e;      /* Koyu Altın (Hover) */
    --dark-brown: #2c1810;     /* Koyu Kahve (Ana Zemin) */
    --cream: #f9f7f2;          /* Krem (Arkaplanlar) */
    --black: #0b0b0b;          /* Siyah */
    --white: #ffffff;          /* Beyaz */
    --gray-text: #555555;      /* Gri Metin */
    --border-color: #eeeeee;   /* Çerçeve Rengi */
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* =========================================
   2. YARDIMCI SINIFLAR (Utilities)
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--cream);
}

.bg-dark {
    background-color: var(--dark-brown);
    color: var(--white);
}

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

/* Başlık Stilleri */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title.left-align {
    text-align: left;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
}

.bg-dark .section-title h2 {
    color: var(--gold);
}

.divider {
    height: 3px;
    width: 100px;
    background: var(--gold);
    margin: 15px auto;
}

.divider.ml-0 {
    margin-left: 0;
}

.divider.bg-white {
    background-color: var(--white);
    opacity: 0.3;
}

/* =========================================
   3. BUTONLAR
   ========================================= */
.btn-premium {
    padding: 15px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-premium:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-incele {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--black);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.btn-incele:hover {
    color: var(--gold);
}

/* WhatsApp Butonu */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   4. HEADER & NAVİGASYON
   ========================================= */
.top-bar {
    background-color: var(--dark-brown);
    color: var(--gold);
    padding: 10px 0;
    font-size: 0.9rem;
}

.socials a {
    color: var(--gold);
    margin-left: 15px;
}

.main-nav {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--dark-brown);
}

.menu a:hover {
    color: var(--gold);
}

/* Hamburger Menü İkonu (Masaüstünde Gizli) */
.hamburger-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-brown);
}

/* Mobil Menü Overlay (Gizli Katman) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.98); /* Çok koyu arka plan */
    z-index: 2000;
    display: none; /* JS ile block yapılacak */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-content {
    text-align: center;
    position: relative;
    width: 100%;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 20px;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-logo {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.mobile-logo span {
    color: var(--gold);
}

.mobile-links li {
    margin: 25px 0;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

/* Menü elemanlarının sırayla gelmesi için animasyon gecikmeleri */
.mobile-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-links li:nth-child(4) { animation-delay: 0.4s; }

.mobile-links a {
    color: var(--white);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.mobile-links a:hover {
    color: var(--gold);
}

.mobile-contact {
    margin-top: 50px;
    color: var(--gold);
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   5. HERO (SLIDER) ALANI
   ========================================= */
.hero-section {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1588613437299-a9a38eb45479?auto=format&fit=crop&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* =========================================
   6. HAKKIMIZDA MODÜLÜ
   ========================================= */
.row-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .year {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.split-content p {
    margin-bottom: 20px;
    color: var(--gray-text);
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
}

.feature-item span {
    font-weight: bold;
    color: var(--dark-brown);
    font-size: 0.9rem;
}

/* =========================================
   7. ÜRÜNLER VİTRİNİ
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img-link {
    display: block;
    overflow: hidden;
}

.product-img {
    height: 300px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.product-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.product-info .price {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: bold;
    margin-top: 5px;
}

/* =========================================
   8. ÜRÜN DETAY SAYFASI
   ========================================= */
.breadcrumb-area {
    background: #f8f8f8;
    padding: 20px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.breadcrumb-area a {
    color: #999;
}

.breadcrumb-area i {
    margin: 0 10px;
    font-size: 0.7rem;
    color: #ccc;
}

.breadcrumb-area span {
    color: var(--dark-brown);
    font-weight: bold;
}

.detail-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.detail-image {
    flex: 1;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.detail-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

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

.detail-meta {
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.detail-meta li {
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-weight: 600;
}

.detail-meta li i {
    color: var(--gold);
    margin-right: 10px;
}

.action-buttons {
    margin-top: 20px;
}

/* =========================================
   9. İLETİŞİM MODÜLÜ
   ========================================= */
.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: #ccc;
    font-size: 0.95rem;
}

.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.map-section {
    margin-top: 0;
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* =========================================
   11. RESPONSIVE (MOBİL UYUMLULUK)
   ========================================= */
@media (max-width: 768px) {
    /* MENÜ DEĞİŞİKLİKLERİ */
    .menu {
        display: none; /* Masaüstü menüyü gizle */
    }
    
    .hamburger-btn {
        display: block; /* Mobil butonu göster */
    }
    
    .top-bar {
        display: none; /* Üst ince barı mobilde kapatıyoruz */
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Hakkımızda */
    .row-split {
        flex-direction: column;
    }

    .split-image img {
        box-shadow: none;
    }

    .experience-badge {
        right: 10px;
        padding: 15px;
    }

    /* Ürün Detay */
    .detail-wrapper {
        flex-direction: column;
    }

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

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* İletişim */
    .contact-wrapper {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}/* --- YENİ EKLENEN ÖZELLİKLER --- */

/* 1. Duyuru Barı */
.announcement-bar {
    background-color: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    animation: slideDown 0.5s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* 2. Floating WhatsApp Butonu */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
    animation: pulse 2s infinite;
}
.floating-wa-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Nabız Efekti Animasyonu */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 3. Çerez Politikası Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 999;
    display: none; /* JS ile açılacak */
    border-top: 1px solid #333;
}
.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}
.btn-cookie {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.8rem;
}
.btn-cookie:hover {
    background-color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 80px; /* Çerez banner gelirse üst üste binmesin */
        right: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 25px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --gold: #d4af37;           /* Logo Sarısı */
    --gold-dark: #b8962e;      /* Koyu Altın */
    --dark-brown: #1a1a1a;     /* Siyah/Koyu Gri (Premium his için) */
    --cream: #fcfbf9;          /* Çok Açık Krem */
    --black: #000000;
    --white: #ffffff;
    --gray-text: #666666;
    --border-color: #e5e5e5;
}

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

body {
    font-family: 'Montserrat', sans-serif; /* Menüdeki modern font */
    background-color: var(--white);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Başlıklar için tırnaklı font */
    font-weight: 700;
    color: var(--dark-brown);
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. YARDIMCI SINIFLAR
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section-padding { padding: 100px 0; }
.bg-cream { background-color: var(--cream); }
.bg-dark { background-color: var(--dark-brown); color: var(--white); }
.text-center { text-align: center; }

/* Başlık Stilleri */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 3rem; margin-bottom: 15px; }
.section-title.left-align { text-align: left; }
.bg-dark .section-title h2 { color: var(--gold); }

.divider {
    height: 2px;
    width: 80px;
    background: var(--gold);
    margin: 0 auto;
}
.divider.ml-0 { margin-left: 0; }
.divider.bg-white { background-color: rgba(255,255,255,0.2); }

/* =========================================
   3. HEADER & MENÜ (Görsele Uygun)
   ========================================= */
.top-bar {
    background-color: var(--black);
    color: var(--gold);
    padding: 8px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.main-nav {
    padding: 25px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

/* Logo Ayarları */
.logo a { display: flex; align-items: center; }
.logo img { 
    max-height: 85px; /* Logoyu biraz büyüttük */
    width: auto; 
}

/* MENÜ LİNKLERİ (Attığın görsele göre ayarlandı) */
.menu { display: flex; gap: 40px; }
.menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500; /* Biraz ince ama okunaklı */
    color: #333;
    text-transform: uppercase; /* BÜYÜK HARF */
    letter-spacing: 2px; /* Harf aralığı geniş */
    position: relative;
    padding: 5px 0;
}

/* Hover Efekti (Alt çizgi) */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: 0.3s;
}
.menu a:hover { color: var(--black); }
.menu a:hover::after { width: 100%; }

/* Hamburger Menü (Mobil) */
.hamburger-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--black); }

/* =========================================
   4. HERO SLIDER
   ========================================= */
.hero-slider-section { height: 85vh; position: relative; background: #000; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { text-align: center; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; }
.slide-bg { position: absolute; top:0; left:0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.7; transition: transform 7s ease; }
.swiper-slide-active .slide-bg { transform: scale(1.1); opacity: 0.8; } 

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 20px; }
.hero-content h1 { 
    font-size: 4.5rem; 
    margin-bottom: 20px; 
    color: var(--white); 
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    font-weight: 400; /* Daha zarif */
}
.hero-content p { font-size: 1.2rem; letter-spacing: 1px; font-weight: 300; margin-bottom: 40px; }

/* Butonlar */
.btn-premium {
    padding: 18px 50px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
    display: inline-block;
    transition: 0.4s;
}
.btn-premium:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* =========================================
   5. ÜRÜNLER & KARTLAR
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Otomatik sığdır */
    gap: 40px;
}

.product-card {
    background: var(--white);
    transition: 0.4s;
    position: relative;
    border-bottom: 1px solid transparent;
}
.product-card:hover { transform: translateY(-10px); }

.product-img {
    height: 320px; /* Uzun dik dikdörtgen görsel */
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.product-card:hover .product-img img { transform: scale(1.1); opacity: 0.9; }

.product-info { padding: 25px 10px; text-align: center; }
.product-info h3 { 
    font-size: 1.1rem; 
    margin-bottom: 10px; 
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}
.product-info h3 a { color: var(--dark-brown); }
.product-info h3 a:hover { color: var(--gold); }

.product-info .price { 
    display: block; 
    font-size: 1.2rem; 
    color: var(--gold-dark); 
    font-weight: 700; 
    margin-top: 5px; 
    font-family: 'Montserrat', sans-serif;
}

.btn-incele {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}
.btn-incele:hover { color: var(--black); border-color: var(--black); }

/* =========================================
   6. DUYURU & WHATSAPP
   ========================================= */
.announcement-bar {
    background-color: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-wa-btn {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: #25D366; color: #fff;
    border-radius: 50%; text-align: center; line-height: 60px; font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999;
    transition: 0.3s;
}
.floating-wa-btn:hover { background-color: #128C7E; transform: scale(1.1); }

/* =========================================
   7. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .menu { display: none; }
    .hamburger-btn { display: block; }
    .top-bar { display: none; }
    .hero-content h1 { font-size: 2.8rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } /* Mobilde yan yana 2 ürün */
    .product-img { height: 200px; }
}