@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');
:root { --bg-color: #f8f9fa; --sidebar-bg: #ffffff; --text-color: #333333; --accent-color: #ff5722; --card-bg: #ffffff; --shadow: 0 5px 15px rgba(0,0,0,0.08); --sidebar-width: 250px; --sidebar-close-width: 80px; }
body.dark-mode { --bg-color: #121212; --sidebar-bg: #1e1e1e; --text-color: #e0e0e0; --card-bg: #252525; --shadow: 0 5px 15px rgba(0,0,0,0.5); }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Rajdhani', sans-serif; transition: 0.3s; }
body { background-color: var(--bg-color); color: var(--text-color); min-height: 100vh; overflow-x: hidden; }
/* SIDEBAR */
.sidebar { width: var(--sidebar-width); background-color: var(--sidebar-bg); height: 100vh; position: fixed; top: 0; left: 0; display: flex; flex-direction: column; padding: 20px 10px; box-shadow: var(--shadow); z-index: 100; }
.sidebar.close { width: var(--sidebar-close-width); }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 0 10px; }
.logo h2 { color: var(--accent-color); font-size: 1.5rem; white-space: nowrap; }
.sidebar.close .logo h2 { display: none; }
#sidebar-toggle { background: none; border: none; color: var(--text-color); font-size: 1.5rem; cursor: pointer; }
.menu { list-style: none; flex-grow: 1; overflow-y: auto; }
.menu a { text-decoration: none; color: var(--text-color); font-size: 1rem; font-weight: 600; display: flex; align-items: center; padding: 10px; border-radius: 10px; white-space: nowrap; margin-bottom: 5px; }
.menu a i { min-width: 30px; font-size: 1.1rem; color: var(--accent-color); margin-right: 10px; text-align: center; }
.sidebar.close .menu a span { display: none; }
.menu a:hover, .menu a.active { background-color: var(--accent-color); color: white; }
.menu a:hover i, .menu a.active i { color: white; }
.footer-links { display: flex; justify-content: space-around; padding-top: 15px; border-top: 1px solid #e9ecef; }
.sidebar.close .footer-links { flex-direction: column; align-items: center; gap: 10px; }
.footer-links a { color: #666; font-size: 1.3rem; } .footer-links a:hover { color: var(--accent-color); transform: scale(1.1); }
.sidebar.close .shopier-btn { display: none; }
/* CONTENT & GRID */
.content { margin-left: var(--sidebar-width); padding: 30px; width: calc(100% - var(--sidebar-width)); }
.content.expand { margin-left: var(--sidebar-close-width); width: calc(100% - var(--sidebar-close-width)); }
.main-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.theme-btn { background: var(--card-bg); border: 2px solid #e9ecef; color: var(--text-color); padding: 10px; border-radius: 50%; cursor: pointer; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; margin-top: 20px; }
.card { background-color: var(--card-bg); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.card:hover { transform: translateY(-5px); border: 1px solid var(--accent-color); }
.card-image { background-color: #e0e0e0; min-height: 200px; }
.card-image img { width: 100%; height: 200px; object-fit: cover; }
.card-info { padding: 15px; }
.price { color: var(--accent-color); font-weight: bold; font-size: 1.2rem; }
/* SLIDER */
.carousel-container { width: 100%; height: 400px; border-radius: 20px; overflow: hidden; position: relative; box-shadow: var(--shadow); margin-bottom: 40px; }
.carousel-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.slide-caption { position: absolute; bottom: 40px; left: 40px; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.slide-btn { padding: 10px 25px; background-color: var(--accent-color); color: white; text-decoration: none; border-radius: 20px; font-weight: bold; display: inline-block; margin-top: 10px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.5); color: white; border: none; padding: 10px; cursor: pointer; border-radius: 50%; font-size: 1.2rem; z-index: 10; }
.prev-btn { left: 20px; } .next-btn { right: 20px; }
/* DETAIL & ZOOM */
.product-detail-container { display: flex; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.product-image-large img { width: 100%; max-width: 500px; border-radius: 15px; box-shadow: var(--shadow); cursor: zoom-in; }
.image-modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); justify-content: center; align-items: center; }
.modal-content { max-width: 90%; max-height: 90%; border-radius: 10px; animation: zoomIn 0.3s; }
.close-modal { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; }
@keyframes zoomIn { from {transform:scale(0)} to {transform:scale(1)} }
.action-buttons { display: flex; gap: 15px; margin-top: 20px; }
.buy-btn { padding: 12px 25px; color: white; text-decoration: none; border-radius: 30px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; }
.shopier { background-color: var(--accent-color); }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.back-btn { background: none; border: 1px solid var(--text-color); color: var(--text-color); padding: 8px 15px; cursor: pointer; border-radius: 5px; margin-bottom: 20px; }
@media (max-width: 768px) { .sidebar { width: 70px; } .sidebar-header, .logo, .menu a span, .shopier-btn { display: none; } .content { margin-left: 70px; width: calc(100% - 70px); } .menu a { justify-content: center; } .carousel-container { height: 250px; } .product-detail-container { flex-direction: column; } }
/* --- ÖZEL SİPARİŞ CTA BÖLÜMÜ --- */
.special-orders {
    text-align: center;
    padding: 60px 30px;
    background-color: var(--card-bg); /* Temaya uygun arka plan */
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.special-orders h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.special-orders p {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 40px auto; /* Ortala ve alt boşluk ver */
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-btn.email {
    background-color: var(--text-color); /* Temaya göre siyah veya beyaz */
    color: var(--bg-color); /* Yazı rengi zıt olsun */
    border: 2px solid var(--text-color);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .special-orders { padding: 40px 20px; }
    .special-orders h2 { font-size: 2rem; }
    .special-orders p { font-size: 1.1rem; }
    .cta-btn { width: 100%; justify-content: center; }
}