:root {
    --primary: #F37021; 
    --primary-dark: #d65a0f;
    --dark: #2d3436;
    --gray: #636e72;
    --light-gray: #f4f6f8;
    --white: #ffffff;
    
    --radius-soft: 8px;    
    --radius-round: 50px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --dropdown-shadow: 0 15px 35px rgba(0,0,0,0.1);
    
    --spacing-section: 60px;
    --spacing-grid: 25px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
    width: 1600px; 
    max-width: 96%;
    margin: 0 auto;
}

/* --- HEADER --- */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Ayarı */
.logo-img { 
    height: 90px; 
    width: auto; 
    display: block; 
    object-fit: contain;
}

.search-box { flex: 1; position: relative; max-width: 800px; margin: 0 30px; }
.search-box input {
    width: 100%; padding: 13px 25px; border: 2px solid #eee;
    border-radius: var(--radius-round); outline: none; background: #fdfdfd;
    transition: 0.3s; font-size: 14px;
}
.search-box input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1); }
.search-btn {
    position: absolute; right: 4px; top: 4px; height: calc(100% - 8px); width: 45px;
    background: var(--primary); color: white; border: none; border-radius: 50%;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.search-btn:hover { transform: scale(1.1); background: var(--primary-dark); }

.header-icons { display:flex; gap: 15px; }
.header-icons a { font-size: 20px; color: var(--dark); width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:0.3s;}
.header-icons a:hover { background: var(--light-gray); color: var(--primary); }

/* --- MENÜ --- */
.nav-bar {
    background: var(--primary); margin-top: 15px; border-radius: var(--radius-soft);
}
.nav-list { display: flex; padding: 0 20px; justify-content: space-between; }
.nav-link { display: flex; align-items: center; gap: 8px; color: white; padding: 16px 20px; font-weight: 600; font-size: 15px; }
.nav-item { position: relative; }
.nav-item:hover .nav-link { background: rgba(0,0,0,0.08); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: white; width: 900px; padding: 30px;
    border-radius: 0 0 var(--radius-soft) var(--radius-soft); box-shadow: var(--dropdown-shadow);
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.2s ease; z-index: 999;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-top: 4px solid var(--primary-dark);
}
.nav-item:nth-last-child(-n+3) .dropdown-menu { left: auto; right: 0; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-col h4 { color: var(--primary); font-size: 15px; margin-bottom: 15px; font-weight: 800; text-transform: uppercase; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.dropdown-col ul li { margin-bottom: 8px; }
.dropdown-col ul li a { color: #555; font-size: 14px; transition: 0.2s; }
.dropdown-col ul li a:hover { color: var(--primary); padding-left: 5px; }

/* --- SLIDER --- */
.slider-wrapper {
    margin-top: 20px; margin-bottom: 40px; border-radius: var(--radius-soft);
    overflow: hidden; position: relative; height: 600px; 
    box-shadow: var(--shadow);
}
.slider-track { display: flex; transition: transform 0.6s ease-in-out; height: 100%; }
.slide { min-width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* [DÜZELTME] KARANLIK GÖLGE BURADAYDI, KALDIRILDI */
.slide::after { 
    content: none !important; 
    display: none !important; 
    background: none !important;
}

.slide-content { position: absolute; top: 50%; left: 60px; transform: translateY(-50%); color: white; max-width: 600px; z-index: 2; }
.slide-content h2 { font-size: 3.2rem; margin-bottom: 15px; font-weight: 800; line-height:1.1; }
.slide-content p { font-size: 1.2rem; margin-bottom: 25px; opacity:0.9; }
.slide-btn { padding: 14px 40px; background: var(--primary); color: white; border-radius: 50px; font-weight: bold; cursor:pointer; transition:0.3s; border:none;}
.slide-btn:hover { background: white; color: var(--primary); }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
    color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: 0.3s;
}
.slider-arrow:hover { background: var(--primary); }
.prev { left: 20px; } .next { right: 20px; }

/* --- HİZMETLER --- */
.service-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-bottom: 50px; padding: 30px;
    background: #fff; border: 1px solid #eee; border-radius: var(--radius-soft); box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.service-item { display: flex; align-items: center; gap: 15px; justify-content: center; }
.service-icon { color: var(--primary); font-size: 2rem; }
.service-text h5 { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 3px;}
.service-text p { font-size: 13px; color: #888; margin:0; }

/* --- GRID YAPILARI --- */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; padding-bottom:10px; border-bottom:1px solid #f0f0f0; }
.section-title { font-size: 24px; font-weight: 800; color: var(--dark); text-transform:uppercase; letter-spacing:-0.5px; display:flex; align-items:center; gap:10px; }
.section-title i { color:var(--primary); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 25px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white); border: 1px solid #f0f0f0; border-radius: var(--radius-soft); padding: 20px;
    transition: all 0.3s ease; position: relative; display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

.badge {
    position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 4px;
    font-size: 11px; font-weight: 800; z-index: 2; color:white;
}
.badge.new { background: #3498db; }
.badge.sale { background: #e74c3c; }
.badge.hot { background: var(--primary); }

.product-image {
    height: 220px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center;
}
.product-image img { max-width: 90%; max-height: 90%; transition: 0.4s; }
.product-card:hover .product-image img { transform: scale(1.08); }

.product-title { font-size: 15px; color: #333; font-weight: 600; line-height: 1.4; margin-bottom: auto; height:42px; overflow:hidden; }
.product-price { font-size: 19px; color: var(--primary); font-weight: 800; margin: 12px 0; }
.old-price { font-size: 14px; color: #999; text-decoration: line-through; margin-left: 8px; font-weight:normal; }

.add-btn {
    width: 100%; padding: 12px; background: #333; color: white; border: none; border-radius: 6px;
    font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px;
}
.add-btn:hover { background: var(--primary); }

/* --- KATEGORİ ŞERİDİ --- */
.category-section-wrapper {
    background-color: var(--light-gray);
    width: 100%;
    padding: 60px 0;
    margin-bottom: 60px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.category-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 30px; text-align: center;
}
.cat-item { cursor:pointer; }
.cat-img {
    width: 110px; height: 110px; background: white; border-radius: 50%; margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s; border: 3px solid white;
}
.cat-item:hover .cat-img { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(243, 112, 33, 0.2); }
.cat-img img { width: 50%; }
.cat-name { font-weight: 700; color: #444; font-size: 15px; }

/* --- BANNERS & BLOG --- */
.banner-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.banner-box { height: 280px; border-radius: var(--radius-soft); overflow: hidden; position: relative; cursor: pointer; }
.banner-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.banner-box:hover img { transform: scale(1.05); }
.banner-content {
    position: absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display:flex; flex-direction:column; justify-content:flex-end; padding:25px; color:white;
}

.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom:60px;}
.blog-card { border:1px solid #eee; border-radius:var(--radius-soft); overflow:hidden; background: #fff;}
.blog-img { height: 180px; overflow:hidden; }
.blog-img img { width:100%; height:100%; object-fit:cover; transition:0.5s; }
.blog-card:hover .blog-img img { transform:scale(1.1); }
.blog-content { padding:20px; }
.blog-title { font-size:16px; font-weight:700; margin-bottom:10px; color:#333; }

/* --- FOOTER --- */
footer { background: #222; color: #bbb; padding-top: 60px; border-top: 5px solid var(--primary); }
.newsletter { background: #333; padding: 40px; text-align: center; border-radius: 10px; margin-bottom: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; padding-bottom: 50px; border-bottom: 1px solid #444; }
.footer-bottom { padding: 30px 0; display: flex; justify-content: space-between; font-size: 13px; }

/* --- MOBİL UYUMLULUK DÜZELTMELERİ --- */
@media (min-width: 992px) {
    header.mobile { display: none !important; }
}
@media (max-width: 991px) {
    .desktop-header-wrapper { display: none !important; }
    header.mobile { display: block !important; }
}

/* --- [EKSTRA GÜVENLİK] ÜRÜN DETAYI İÇİN ÖZEL SIFIRLAMA --- */
/* Ürün sayfasındaki resimlerde oluşabilecek her türlü gölgeyi zorla kaldırır */
.product-profile-1 .carousel-item::after, 
.product-profile-1 .carousel-item::before,
.product-profile-1 .product-image-container::after,
.product-profile-1 .product-image-container::before {
    content: none !important;
    display: none !important;
    background: none !important;
}