/* GENEL SIFIRLAMA VE AYARLAR */
* { box-sizing: border-box; }
body { 
    margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #000; color: #fff; overflow-x: hidden;
    user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { -webkit-user-drag: none; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; }

/* --- HEADER (Üst Menü) --- */
header { 
    position: absolute; top: 0; left: 0; width: 100%; z-index: 9999;
    padding: 20px 40px; background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.logo img { height: 60px; margin-right: 15px; transform: translateY(-8px); object-fit: contain; filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); pointer-events: auto; }
.logo h1 { margin: 0; font-size: 26px; color: #D4AF37; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px rgba(212, 175, 55, 0.5); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { font-size: 14px; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: 0.3s; cursor: pointer; padding: 10px 0; display: flex; align-items: center; gap: 5px; }
.nav-item:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: white; }

/* --- AÇILIR MENÜ (Masaüstü için artık SİYAH) --- */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { 
    display: none; 
    position: absolute; 
    background-color: #111; /* Beyazdı, artık şık bir siyah */
    min-width: 240px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); 
    z-index: 1001; 
    top: 100%; 
    left: 0; 
    border-top: 3px solid #D4AF37; 
    border-radius: 0 0 5px 5px; 
    padding: 10px 0; 
}
.dropdown-content a { color: #ddd !important; padding: 12px 20px; display: block; font-weight: 500; font-size: 14px; transition: all 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s; }
.dropdown-content a:hover { background-color: #1a1a1a; color: #D4AF37 !important; padding-left: 25px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- ANA EKRAN (HERO) --- */
.hero-section { position: relative; width: 100%; height: 100vh; background-image: url('resimler/kapak.png'); background-size: cover; background-position: center; transition: background-image 0.4s ease-in-out; display: flex; align-items: center; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-left: 80px; width: 100%; max-width: 1400px; margin: auto; }
.product-list { display: flex; flex-direction: column; gap: 1.5vh; }
.product-item { font-size: 3.5vh; font-weight: 700; color: rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.3s ease; width: fit-content; }
.product-item a { display: block; width: 100%; height: 100%; color: inherit; }
.product-item:hover { color: #ffffff; transform: translateX(20px); text-shadow: 0 0 20px rgba(255,255,255,0.4); }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    header { padding: 15px 20px; background: rgba(0,0,0,0.9); }
    .logo h1 { font-size: 18px; }
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background-color: #000; padding: 20px; gap: 15px; border-top: 1px solid #333; max-height: 85vh; overflow-y: auto; }
    .nav-links.active { display: flex; }
    
    /* İŞTE AÇ KAPAT MANTIĞI: Varsayılan kapalı, tıklayınca ".open" class'ı ile açılır */
    .dropdown-content { display: none !important; position: static; width: 100%; box-shadow: none; border: none; background: transparent; padding: 5px 0 5px 15px; border-left: 2px solid #D4AF37; margin-top: 10px; }
    .dropdown.open .dropdown-content { display: block !important; }
    .dropdown-content a { color: #aaa !important; padding: 10px 0 !important; font-size: 13px !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
    .dropdown-content a:last-child { border-bottom: none !important; }
    
    body { overflow-y: auto; overflow-x: hidden; } 
}

/* ==========================================================================
   BEYAZ ARKA PLANLI DETAY SAYFALARI İÇİN ÖZEL AYARLAR
   ========================================================================== */
body.detail-page { background-color: #fff; color: #333; display: flex; flex-direction: column; min-height: 100vh; }
body.detail-page header { position: sticky; background: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.cart-btn { color: #D4AF37 !important; font-weight: 800; border: 1px solid #D4AF37; padding: 8px 15px !important; border-radius: 4px; transition: 0.3s; margin-left: 10px; }
.cart-btn:hover { background-color: #D4AF37; color: #111 !important; box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }

.breadcrumb { max-width: 1200px; width: 100%; margin: 30px auto; padding: 0 20px; font-size: 13px; color: #888; text-align: left; }
.breadcrumb a:hover { color: #D4AF37; }
.breadcrumb i { margin: 0 8px; font-size: 10px; color: #ccc; }

.product-container { max-width: 1200px; margin: 0 auto 60px; padding: 0 20px; display: flex; gap: 50px; align-items: flex-start; flex-wrap: wrap; }
.product-gallery { flex: 1; min-width: 400px; max-width: calc(50% - 25px); }
.product-details { flex: 1; min-width: 400px; max-width: calc(50% - 25px); }

.main-image-wrapper { width: 100%; height: 500px; background-color: #fcfcfc; border: 1px solid #eee; border-radius: 4px; display: flex; align-items: center; justify-content: center; padding: 5px; margin-bottom: 15px; overflow: hidden; }
.main-image-wrapper img { width: 100%; height: 100%; object-fit: contain; }

.thumbnail-list { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbnail-list img { width: calc(20% - 8px); height: 80px; object-fit: contain; background: #fcfcfc; border: 1px solid #eee; border-radius: 4px; cursor: pointer; padding: 5px; transition: 0.2s; }
.thumbnail-list img:hover, .thumbnail-list img.active { border-color: #D4AF37; }

.product-title { font-size: 32px; font-weight: 700; color: #222; margin-top: 0; margin-bottom: 15px; line-height: 1.2; }
.product-sku { font-size: 13px; color: #888; margin-bottom: 25px; display: block; }
.price-box { margin-bottom: 30px; }
.product-price { font-size: 36px; font-weight: 700; color: #D4AF37; display: flex; align-items: center; gap: 10px; }
.price-currency { font-size: 20px; font-weight: 600; }
.shipping-info { display: block; font-size: 13px; color: #777; margin-top: 8px; }
.shipping-info i { color: #27ae60; margin-right: 5px; }

.quantity-wrapper { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.quantity-selector { display: flex; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
.qty-btn { background: #f8f9fa; border: none; width: 40px; height: 44px; font-size: 18px; cursor: pointer; color: #555; transition: 0.2s; }
.qty-btn:hover { background: #eee; color: #000; }
.qty-input { width: 50px; height: 44px; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; text-align: center; font-size: 16px; font-weight: 600; color: #222; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-unit { margin-left: 10px; font-weight: 600; color: #555; }

.btn-add-to-cart { background-color: #D4AF37; color: #111; padding: 0 40px; height: 44px; font-size: 16px; font-weight: 700; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: 0.3s; flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-add-to-cart:hover { background-color: #b5952f; }

.whatsapp-box { margin-bottom: 30px; }
.btn-whatsapp { background-color: #25d366; color: #fff; padding: 15px 30px; width: 100%; font-size: 16px; font-weight: 600; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; text-align: center; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-whatsapp:hover { background: #128c7e; }

.features-list { padding: 0; margin: 0 0 30px 0; list-style: none; }
.features-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 14px; color: #555; line-height: 1.5; }
.features-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: #D4AF37; }
.features-list strong { color: #222; }

.accordion { border-top: 1px solid #eee; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-header { padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; color: #222; }
.accordion-header:hover { color: #D4AF37; }
.accordion-content { padding-bottom: 18px; display: none; color: #666; font-size: 15px; line-height: 1.6; }
.accordion-content p { margin-top: 0; }

.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.show { display: flex; opacity: 1; }
.modal-content { background: #fff; padding: 40px; border-radius: 8px; text-align: center; max-width: 420px; width: 90%; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transform: translateY(-20px); transition: transform 0.3s ease; }
.modal-overlay.show .modal-content { transform: translateY(0); }
.modal-icon { font-size: 50px; color: #27ae60; margin-bottom: 15px; }
.modal-title { font-size: 22px; margin: 0 0 10px; color: #222; font-weight: 700; }
.modal-desc { font-size: 15px; color: #666; margin-bottom: 30px; line-height: 1.5; }
.modal-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-continue { background: #f8f9fa; color: #333; border: 1px solid #ddd; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: 0.2s; flex: 1; min-width: 150px; }
.btn-continue:hover { background: #eee; }
.btn-go-cart { background: #D4AF37; color: #111; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: 0.2s; flex: 1; min-width: 150px; display: flex; justify-content: center; align-items: center; }
.btn-go-cart:hover { background: #b5952f; color: #111 !important; }

@media (max-width: 900px) { 
    .product-container { flex-direction: column; gap: 30px; } 
    .product-gallery, .product-details { max-width: 100%; width: 100%; min-width: 100%; } 
    .main-image-wrapper { height: 350px; }
    .thumbnail-list img { width: calc(25% - 7.5px); }
    .quantity-wrapper { flex-direction: column; align-items: stretch; gap: 15px; }
    .quantity-selector { justify-content: center; }
}

/* ==========================================================================
   ÜRÜN LİSTELEME (KATEGORİ) SAYFALARI İÇİN ÖZEL AYARLAR
   ========================================================================== */
body.category-page { position: relative; display: flex; flex-direction: column; min-height: 100vh; background-color: #fff; color: #444; }
body.category-page header { position: sticky; background: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.collection-header { padding: 40px 0; text-align: left; max-width: 1400px; margin: auto; padding-left: 20px; border-bottom: 1px solid #eee; }
.collection-header h2 { font-size: 32px; margin: 0; color: #222; font-weight: 700; text-transform: uppercase; }

.main-container { max-width: 1400px; margin: 40px auto; padding: 0 20px; display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }

.sidebar { padding-right: 10px; }
.sidebar h3 { font-size: 18px; margin-bottom: 20px; font-weight: 700; color: #222; border-bottom: 2px solid #D4AF37; display: inline-block; padding-bottom: 5px; }
.category-list li { margin-bottom: 10px; }
.category-list a { color: #666; font-size: 15px; display: block; padding: 5px 0; }
.category-list a:hover { color: #D4AF37; padding-left: 5px; font-weight: 600; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.product-card { background: #fff; transition: 0.3s; position: relative; text-align: center; border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden; }
.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-5px); border-color: #ddd; }
.product-card a { display: block; height: 100%; }

.card-image { width: 100%; height: 280px; position: relative; overflow: hidden; background: #fcfcfc; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #f9f9f9; }
.card-image img { max-width: 90%; max-height: 90%; object-fit: contain; position: absolute; inset: 0; margin: auto; transition: opacity 0.4s ease-in-out; }

.main-img { opacity: 1; z-index: 1; }
.hover-img { opacity: 0; z-index: 2; }
.product-card:hover .main-img { opacity: 0; }
.product-card:hover .hover-img { opacity: 1; }

.card-details { padding: 15px; }
.product-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: #333; height: 42px; overflow: hidden; line-height: 1.4; }
.product-price { color: #D4AF37; font-weight: 700; font-size: 16px; display: block; }

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .main-container { grid-template-columns: 1fr; } .sidebar { display: none; } .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .products-grid { grid-template-columns: repeat(1, 1fr); } }

/* ==========================================================================
   FİLTRELEMELİ LİSTELEME SAYFALARI İÇİN ÖZEL AYARLAR (Aksesuarlar vb.)
   ========================================================================== */
body.filter-page { background-color: #f8f9fa; color: #333; position: relative; display: flex; flex-direction: column; min-height: 100vh; }
body.filter-page header { position: sticky; background: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.page-header { max-width: 1400px; margin: 40px auto 20px; padding: 0 20px; border-bottom: 2px solid #eee; padding-bottom: 15px; }
.page-header h2 { font-size: 30px; margin: 0; color: #222; font-weight: 800; text-transform: uppercase; }

.filter-page .main-container { max-width: 1400px; margin: 0 auto 60px; padding: 0 20px; display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

.filter-page .sidebar { background: #fff; padding: 25px; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: sticky; top: 100px; }
.filter-page .sidebar h3 { font-size: 18px; margin-top: 0; margin-bottom: 20px; color: #222; border-bottom: 2px solid #D4AF37; display: inline-block; padding-bottom: 5px; }
.filter-page .category-list li { margin-bottom: 12px; }
.filter-page .category-list a { color: #555; font-size: 15px; display: block; padding: 8px 10px; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.filter-page .category-list a:hover { background: #f9f9f9; color: #D4AF37; padding-left: 15px; }
.filter-page .category-list a.active { background: #D4AF37; color: #111; font-weight: 600; padding-left: 15px; } 

.filter-page .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.filter-page .product-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; text-align: center; transition: 0.3s; display: block; } 
.filter-page .product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-5px); border-color: #ddd; }
.filter-page .product-card a { display: block; height: 100%; padding-bottom: 20px; }

.filter-page .card-image { width: 100%; height: 250px; background: #fff; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #f9f9f9; padding: 15px; }
.filter-page .card-image img { max-width: 100%; max-height: 100%; object-fit: contain; }

.filter-page .card-details { padding: 20px 15px 0; }
.filter-page .product-title { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #333; height: 44px; overflow: hidden; line-height: 1.4; }

.filter-page .product-price { display: inline-block; color: #D4AF37; font-weight: 700; font-size: 14px; border: 1px solid #D4AF37; padding: 8px 20px; border-radius: 4px; transition: 0.3s; }
.filter-page .product-card:hover .product-price { background: #D4AF37; color: #111; }

@media (max-width: 1024px) { .filter-page .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .filter-page .main-container { grid-template-columns: 1fr; } .filter-page .products-grid { grid-template-columns: repeat(2, 1fr); } .filter-page .sidebar{position: static;} }
@media (max-width: 500px) { .filter-page .products-grid { grid-template-columns: repeat(1, 1fr); } }

/* ==========================================================================
   SEPET SAYFASI İÇİN ÖZEL AYARLAR (sepet.html)
   ========================================================================== */
body.cart-page { background-color: #f8f9fa; color: #333; display: flex; flex-direction: column; min-height: 100vh; }
body.cart-page header { position: sticky; background: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
body.cart-page .main-content { flex: 1; max-width: 1200px; width: 100%; margin: 40px auto; padding: 0 20px; }

.cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 20px; }
.cart-title { font-size: 28px; font-weight: 700; color: #222; margin: 0; }
.btn-clear-cart { background-color: #ff4757; color: white; border: none; padding: 10px 15px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.2s; display: none; align-items: center; gap: 8px; }
.btn-clear-cart:hover { background-color: #ff6b81; }

.cart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.cart-items { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.cart-item { display: flex; align-items: center; gap: 20px; padding: 15px 0; border-bottom: 1px solid #eee; }
.cart-item:last-child { border-bottom: none; }
.cart-item img { width: 80px; height: 80px; object-fit: contain; border: 1px solid #eee; border-radius: 4px; padding: 5px; }
.cart-item .item-info { flex: 1; }
.cart-item .item-title { font-size: 16px; font-weight: 600; color: #222; }
.cart-item .item-qty { font-size: 13px; color: #888; margin-top: 5px; }
.cart-item .item-price { color: #D4AF37; font-weight: 700; margin-top: 5px; font-size: 16px; }
.btn-remove { color: #ff4757; background: none; border: none; cursor: pointer; font-size: 18px; padding: 10px; transition: 0.2s; }
.btn-remove:hover { color: #D4AF37; transform: scale(1.1); }

.cart-summary { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: sticky; top: 100px; }
.summary-title { font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; color: #555; }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; color: #222; border-top: 2px solid #eee; padding-top: 15px; margin-top: 15px; }
.summary-total span:last-child { color: #D4AF37; }

.btn-checkout { display: block; width: 100%; background: #27ae60; color: white; text-align: center; padding: 15px; font-size: 16px; font-weight: bold; text-transform: uppercase; border-radius: 4px; margin-top: 20px; border: none; cursor: pointer; transition: 0.3s; }
.btn-checkout:hover { background: #219653; }
.empty-cart { text-align: center; padding: 50px 20px; color: #888; width: 100%; }
.empty-cart i { font-size: 60px; color: #ddd; margin-bottom: 15px; }

@media (max-width: 900px) { .cart-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   YENİ BEYAZ (SADE) İLETİŞİM SAYFASI TASARIMI
   ========================================================================== */
body.contact-page { background-color: #fff; color: #333; display: flex; flex-direction: column; min-height: 100vh; }
body.contact-page header { position: sticky; background: #000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.mobicci-contact-area { padding: 80px 20px; background: #ffffff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.mobicci-container { max-width: 1000px; margin: 0 auto; }
.mobicci-title { font-size: 28px; font-weight: 300; color: #444; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.mobicci-info-row { display: flex; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.mobicci-info-box { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 300px; }
.mobicci-info-box i { font-size: 28px; color: #333; }
.mobicci-info-box strong { display: block; color: #D4AF37; font-size: 16px; margin-bottom: 5px; }
.mobicci-info-box p { margin: 0; font-size: 13px; color: #888; }
.mobicci-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 40px; }
.mobicci-desc strong { color: #333; }

.mobicci-form .mobicci-input-group { display: flex; gap: 20px; margin-bottom: 20px; }
.mobicci-form input, .mobicci-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 14px; color: #333; background: #fff; transition: 0.3s; }
.mobicci-form input:focus, .mobicci-form textarea:focus { outline: none; border-color: #D4AF37; box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
.mobicci-submit { background-color: #333; color: #fff; border: none; padding: 14px 25px; font-size: 14px; font-weight: 600; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.3s; margin-top: 10px; }
.mobicci-submit:hover { background-color: #111; }
.mobicci-submit i { font-size: 12px; }
.map-section { height: 400px; width: 100%; background-color: #eee; border-top: 1px solid #ddd; }
.map-section iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 768px) { .mobicci-form .mobicci-input-group { flex-direction: column; } }

/* ==========================================================================
   TÜM SAYFALAR İÇİN ORTAK FOOTER
   ========================================================================== */
footer { 
    position: relative; background-color: #0d1b2a; background-image: url('resimler/diagonal-lines.png'); background-size: repeat; background-position: center; background-repeat: repeat; color: #fff; padding: 50px 0 20px 0; text-align: left; margin-top: 60px; font-size: 14px; z-index: 1; overflow: hidden; border-top: 3px solid #D4AF37; 
}
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: -1; }
.footer-content { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding: 0 40px; }
.footer-col h4 { color: #D4AF37; margin-bottom: 20px; font-size: 16px; margin-top: 0; }
.footer-col p { color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.footer-col ul li { margin-bottom: 10px; color: rgba(255, 255, 255, 0.7); }
.footer-col ul li a { transition: 0.3s; }
.footer-col ul li a:hover { color: #D4AF37; }
.footer-col i { color: #D4AF37; width: 25px; }

.copyright { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   NEDEN BİZİ SEÇMELİSİNİZ? (Anasayfa kutulu bölüm)
   ========================================================================== */
.why-us-section { padding: 100px 20px; background-color: #0d1b2a; background-image: url('resimler/diagonal-lines.png'); background-size: repeat; background-position: center; background-repeat: repeat; color: #fff; position: relative; overflow: hidden; }
.why-us-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); z-index: 1; }
.why-us-section .why-us-container { position: relative; z-index: 2; }
.why-us-section h2 { color: #fff; }
.why-us-box i { color: #D4AF37; }
.why-us-box h3 { color: #D4AF37; }
.why-us-box p { color: rgba(255, 255, 255, 0.8); }

body.category-page footer, body.filter-page footer, body.detail-page footer, body.cart-page footer, body.contact-page footer { margin-top: auto; }
.page-header, .filter-page .main-container, .category-page .main-container { width: 100%; }

/* Fırın Boya (Filter Page) sayfası mobilde sol menü görünürlüğü düzeltmesi */
@media (max-width: 900px) {
    body.filter-page .sidebar {
        display: block !important;
        margin-bottom: 30px;
    }
}