@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ff6600;
    --primary-dark: #e65c00;
    --text-main: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body { background: var(--bg-light); color: var(--text-main); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVBAR (ÜST MENÜ) --- */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky; top: 0; z-index: 1000;
    padding: 20px 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: -1px; }

.nav-links { display: flex; gap: 30px; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.cart-btn { position: relative; font-size: 20px; }
.cart-count {
    position: absolute; top: -8px; right: -8px;
    background: var(--primary); color: white;
    font-size: 10px; font-weight: bold;
    padding: 3px 6px; border-radius: 10px;
}

/* --- HERO SECTION (VITRIN) --- */
.hero {
    background: white;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 15px; color: var(--text-main); }
.hero p { color: var(--text-light); font-size: 18px; margin-bottom: 30px; }
.btn-hero {
    background: var(--primary); color: white;
    padding: 15px 40px; border-radius: 50px;
    font-weight: 600; font-size: 16px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}
.btn-hero:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* --- ÜRÜN KARTLARI --- */
.section-title { font-size: 28px; font-weight: 700; margin: 60px 0 30px; text-align: center; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-img-box {
    height: 300px;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover img { transform: scale(1.05); }

.product-info { padding: 20px; text-align: center; }
.product-cat { color: var(--text-light); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-title { font-weight: 700; font-size: 16px; margin-bottom: 10px; color: var(--text-main); }
.product-price { font-size: 18px; font-weight: 800; color: var(--primary); }

.btn-add-cart {
    display: block; width: 100%;
    padding: 12px; margin-top: 15px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    color: var(--primary); font-weight: 600;
    background: transparent; cursor: pointer;
}
.btn-add-cart:hover { background: var(--primary); color: white; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .product-img-box { height: 200px; }
}