/* GENEL AYARLAR */
:root {
    --ana-renk: #D4AF37; /* Gold Varsayılan */
    --siyah: #111111;
    --koyu-gri: #222222;
    --beyaz: #ffffff;
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #fcfcfc; 
    color: #333; 
    overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
}

a { text-decoration: none; transition: 0.3s; }

/* HEADER & NAVBAR */
.top-bar { 
    background: var(--siyah); 
    color: #ccc; 
    font-size: 12px; 
    padding: 10px 0; 
    border-bottom: 1px solid #333;
}

.navbar { 
    background: var(--beyaz); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.04); 
    padding: 20px 0; 
}

.navbar-brand { 
    font-family: 'Playfair Display', serif; 
    font-size: 26px; 
    font-weight: 700; 
    color: var(--siyah); 
    letter-spacing: 2px; 
}

.nav-link { 
    color: #444 !important; 
    font-weight: 500; 
    text-transform: uppercase; 
    font-size: 12px; 
    letter-spacing: 1px; 
    margin: 0 12px; 
    position: relative;
}

.nav-link:hover { color: var(--ana-renk) !important; }

/* SEPET İKONU */
.cart-icon { position: relative; color: var(--siyah); font-size: 22px; }
.cart-count { 
    position: absolute; top: -8px; right: -8px; 
    background: var(--ana-renk); color: #fff; 
    font-size: 10px; width: 18px; height: 18px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}

/* KARTLAR VE ÜRÜNLER */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title span { display: block; font-size: 12px; color: var(--ana-renk); letter-spacing: 2px; font-weight: 600; margin-bottom: 5px;}
.section-title h2 { font-size: 32px; color: var(--siyah); }

.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.product-card:hover { 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transform: translateY(-5px); 
    border-color: transparent;
}
.product-img-wrap { position: relative; overflow: hidden; height: 300px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.1); }

.product-info { padding: 20px; text-align: center; }
.product-category { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.product-title { font-size: 16px; margin: 5px 0 10px; display: block; color: var(--siyah); font-weight: 600; }
.product-price { font-weight: 700; color: var(--ana-renk); font-size: 18px; }
.old-price { text-decoration: line-through; color: #ccc; font-size: 14px; margin-right: 5px; }

/* BUTONLAR */
.btn-custom {
    background: var(--siyah); color: #fff;
    padding: 12px 30px; border-radius: 0;
    font-size: 13px; font-weight: 600;
    letter-spacing: 1px; border: 1px solid var(--siyah);
}
.btn-custom:hover { background: transparent; color: var(--siyah); }
.btn-hero {
    background: #fff; color: var(--siyah);
    padding: 15px 40px; font-weight: bold; border-radius: 0;
}

/* FOOTER */
footer h3, footer h5 { font-family: 'Playfair Display', serif; letter-spacing: 1px; }
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px;
    background: #25d366; color: #fff;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float:hover { background: #1ebc57; color: #fff; transform: scale(1.1); }