@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* General */
* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111;
    overflow-x: hidden;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 15px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 75px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    position: relative;
}

.navbar .nav-links li a::after {
    content: "";
    display: block;
    height: 2px;
    background: #c49b63;
    width: 0;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar .nav-links li a:hover::after {
    width: 100%;
}

/* Wrapper: Sidebar + Content */
.products-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
    gap: 40px;
    flex: 1;
}

/* Sidebar */
.products-sidebar {
    flex: 0 0 250px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.products-sidebar h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
}

.products-sidebar ul {
    list-style: none;
    padding: 0;
}

.products-sidebar li {
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.products-sidebar li:hover,
.products-sidebar li.active {
    background: #c49b63;
    color: white;
}

/* Product Content */
.products-content {
    flex: 1;
}

/* Grup Başlığı */
.product-group {
    margin-bottom: 60px;
}

.product-group h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #222;
    border-bottom: 2px solid #c49b63;
    display: inline-block;
    padding-bottom: 5px;
}

/* Ürünler Grid */
.product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Ürün Kartı */
.product-card {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f8f8f8;
    border-radius: 10px 10px 0 0;
    display: block;
}

.product-card h3 {
    margin: 10px;
    font-size: 1.2rem;
}

.product-card p {
    margin: 0 10px 10px 10px;
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

.contact-btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 15px;
    background-color: #c49b63;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    text-align: center;
}

.contact-btn:hover {
    background-color: #b08a50;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    background-color: #111;
    color: #ddd;
    font-family: 'Bahnschrift';
}

.site-footer p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    font-size: 2.2rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.social-icon.whatsapp:hover { color: #25D366; }
.social-icon.instagram:hover { color: #E1306C; }
.social-icon.x:hover { color: #999; }
.social-icon.facebook:hover { color: #1877F2; }

/* Responsive */