/* --- GENEL AYARLAR --- */
:root {
    --primary: #4F46E5;       
    --primary-dark: #4338CA;
    --secondary: #F43F5E;     
    --tertiary: #10B981;      /* Başarı/Yeşil */
    --bg-color: #F8FAFC;      
    --surface: #FFFFFF;       
    --text-dark: #0F172A;     
    --text-gray: #64748B;
    --border: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --header-height: 88px; /* Desktop Header Height */
}
@media (max-width: 768px) {
    :root { --header-height: 72px; } /* Mobile Header Height */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
html { overflow-x: hidden; max-width: 100%; }
body { background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 15px; }
@media (max-width: 768px) {
    .container { padding: 0 15px; }
}

/* --- HEADER --- */
header { background-color: var(--surface); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.header-main { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.logo { font-size: 28px; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; display: flex; align-items: center; gap: 8px; }
.logo i { color: var(--primary); font-size: 24px; }

.search-container { flex: 1; max-width: 700px; display: flex; background-color: var(--bg-color); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.search-container:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }
.search-select { border: none; background: transparent; padding: 0 15px; color: var(--text-gray); font-weight: 500; border-right: 1px solid var(--border); outline: none; cursor: pointer; }
.search-input { flex: 1; border: none; background: transparent; padding: 14px 20px; font-size: 15px; outline: none; }
.search-btn { background-color: var(--primary); color: white; padding: 0 25px; font-size: 16px; transition: var(--transition); }
.search-btn:hover { background-color: var(--primary-dark); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.action-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-gray); font-size: 13px; font-weight: 600; position: relative; cursor: pointer; }
.action-item i { font-size: 20px; color: var(--text-dark); transition: var(--transition); }
.action-item:hover i { color: var(--primary); transform: translateY(-2px); }
.badge { position: absolute; top: -5px; right: -5px; background-color: var(--secondary); color: white; font-size: 10px; font-weight: bold; height: 18px; width: 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Account Dropdown */
.account-dropdown-wrapper { position: relative; }
.account-dropdown {
    position: absolute; top: calc(100% + 15px); right: -20px; width: 260px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px);
    border-radius: var(--radius-md); border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 20px; z-index: 1100;
    opacity: 0; visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.account-dropdown-wrapper:hover .account-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.account-dropdown::before {
    content: ''; position: absolute; top: -8px; right: 35px;
    width: 16px; height: 16px; background: white;
    transform: rotate(45deg); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}

.dropdown-header { margin-bottom: 15px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.dropdown-header h4 { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.dropdown-header p { font-size: 12px; color: var(--text-gray); margin-top: 2px; }

.dropdown-body { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.dropdown-btn { 
    display: block; width: 100%; padding: 10px; text-align: center;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
    transition: var(--transition);
}
.dropdown-btn.primary { background: var(--primary); color: white; }
.dropdown-btn.primary:hover { background: var(--primary-dark); transform: scale(1.02); }
.dropdown-btn.outline { border: 1px solid var(--border); color: var(--text-dark); }
.dropdown-btn.outline:hover { background: var(--bg-color); border-color: var(--primary); color: var(--primary); }

.dropdown-footer { border-top: 1px solid var(--border); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.dropdown-footer a { 
    display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-gray);
    padding: 8px; border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown-footer a:hover { background: var(--bg-color); color: var(--primary); padding-left: 12px; }
.dropdown-footer a i { font-size: 14px; width: 16px; text-align: center; }

/* Arama Dropdown */
.search-dropdown {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 20px 0;
    z-index: 900;
    transform: translateY(-10px);
    opacity: 0; visibility: hidden;
    transition: all 0.35s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.search-dropdown.active {
    transform: translateY(0);
    opacity: 1; visibility: visible;
}
.search-dropdown-container {
    max-width: 800px; margin: 0 auto;
    position: relative;
}
.search-dropdown-input {
    width: 100%; padding: 16px 25px; 
    background: var(--bg-color);
    border: 2px solid transparent; border-radius: var(--radius-md);
    font-size: 16px; font-weight: 500; outline: none;
    transition: var(--transition);
}
.search-dropdown-input:focus {
    border-color: var(--primary); background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.search-dropdown-btn {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    background: var(--primary); color: white;
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.search-overlay-blur {
    position: fixed; inset: 0; top: var(--header-height);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 800;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease;
}
.search-overlay-blur.active { opacity: 1; visibility: visible; }

/* Hamburger Butonu */
.hamburger-btn {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    border: 1px solid var(--border);
    cursor: pointer; gap: 5px;
    transition: var(--transition);
    flex-shrink: 0;
}
.hamburger-btn:hover { background: var(--primary); border-color: var(--primary); }
.hamburger-btn span {
    display: block; width: 20px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform-origin: center;
}
.hamburger-btn:hover span { background: white; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger-btn.open { background: var(--primary); border-color: var(--primary); }
.hamburger-btn.open span { background: white; }

/* Mobil Menü Overlay */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none; /* Inaktifken tıklamayı engelleme */
    transition: opacity 0.3s ease;
    display: block; /* Opacity ile kontrol edileceği için hep blok kalabilir ancak pointer-events kapalı */
}
.mobile-overlay.active { 
    opacity: 1; 
    pointer-events: auto; /* Aktifken tıklamayı aç */
}

/* Mobil Drawer Menü */
.mobile-drawer {
    position: fixed; top: 0; left: 0;
    width: 300px; max-width: 85vw;
    height: 100vh;
    background: var(--surface);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    display: flex; flex-direction: column;
    box-shadow: 5px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
}
.drawer-logo { font-size: 22px; font-weight: 800; color: white; display: flex; align-items: center; gap: 8px; }
.drawer-logo i { color: white; font-size: 20px; }
.drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }

.drawer-nav { flex: 1; padding: 10px 0; }
.drawer-nav-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    color: var(--text-gray); letter-spacing: 1px;
    padding: 10px 20px 10px;
}
.drawer-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 20px;
    font-size: 15px; font-weight: 600; color: var(--text-dark);
    border-bottom: 1px solid var(--bg-color);
    transition: var(--transition);
}
.drawer-nav a i {
    width: 20px; text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    transition: var(--transition);
}
.drawer-nav a:hover { background: var(--bg-color); color: var(--primary); }
.drawer-nav a:hover i { color: var(--primary); }
.drawer-nav a.flash { color: var(--secondary); }
.drawer-nav a.flash i { color: var(--secondary); }

.drawer-actions {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex; gap: 10px;
}
.drawer-action-btn {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    padding: 12px 8px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 600; color: var(--text-dark);
    transition: var(--transition);
}
.drawer-action-btn i { font-size: 20px; color: var(--text-gray); }
.drawer-action-btn:hover { background: var(--primary); color: white; }
.drawer-action-btn:hover i { color: white; }

.category-nav { border-top: 1px solid var(--border); padding: 12px 0; }
.category-list { display: flex; gap: 30px; flex-wrap: wrap; }
.category-list::-webkit-scrollbar { display: none; }
.category-list a { font-weight: 600; font-size: 14px; color: var(--text-dark); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.category-list a i { color: var(--text-gray); }
.category-list a:hover, .category-list a:hover i { color: var(--primary); }

/* --- KATEGORİ DROPDOWN --- */
.cat-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.cat-has-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
    cursor: pointer;
    padding: 4px 0;
}
.cat-has-sub:hover, .cat-has-sub:hover i { color: var(--primary); }
.cat-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
    color: var(--text-gray) !important;
}
.cat-dropdown-wrapper:hover .cat-arrow { transform: rotate(180deg); color: var(--primary) !important; }

.cat-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    border: 1px solid var(--border);
    z-index: 9999;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    transform: translateX(-50%) translateY(6px);
}
.cat-dropdown-wrapper:hover .cat-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
/* Dropdown ile wrapper arasındaki boşluğu bridge et */
.cat-dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0; right: 0;
    height: 14px;
}
.cat-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 9px 12px !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark) !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.cat-dropdown-item i { color: var(--text-gray) !important; font-size: 13px; width: 16px; text-align: center; }
.cat-dropdown-item:hover { background: var(--primary-light, #eef2ff); color: var(--primary) !important; }
.cat-dropdown-item:hover i { color: var(--primary) !important; }

/* --- BENTO VİTRİN --- */
.bento-hero { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px 250px; gap: 20px; margin: 30px auto 40px; }
/* Bento bannerlar kapalıyken slider tek sütun tam genişlik kaplasın */
.bento-hero--full { grid-template-columns: 1fr; grid-template-rows: 500px; }
.bento-hero--full .item-main { grid-row: span 1; }
/* Bento bannerlar alttayken: slider üstte tam, bannerlar altta 2 kolon */
.bento-hero--bottom { grid-template-columns: 1fr 1fr; grid-template-rows: 400px 200px; }
.bento-hero--bottom .item-main { grid-column: 1 / -1; grid-row: 1; } /* slider tam genşlik */
.bento-hero--bottom .item-top  { grid-row: 2; grid-column: 1; }
.bento-hero--bottom .item-bottom { grid-row: 2; grid-column: 2; }
.bento-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; background-color: var(--surface); display: flex; align-items: center; transition: var(--transition); }
.bento-item:not(.item-main) { padding: 40px; }
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bento-item img { position: absolute; right: 0; bottom: 0; height: 90%; object-fit: contain; transition: var(--transition); }
.bento-item:hover img { transform: scale(1.05); }
.bento-content { position: relative; z-index: 10; max-width: 50%; }
.bento-tag { background-color: rgba(0,0,0,0.05); padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.bento-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.bento-desc { color: var(--text-gray); margin-bottom: 20px; font-size: 15px; }

.btn { background-color: var(--text-dark); color: white; padding: 12px 24px; border-radius: var(--radius-md); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.btn:hover { background-color: var(--primary); }

.item-main { grid-row: span 2; background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); padding: 0 !important; }
.main-slide { padding: 40px; display: flex; align-items: center; transition: opacity 0.8s ease; opacity: 0; }
.main-slide.active { opacity: 1; }
.item-main .bento-title { font-size: 46px; }
.item-main img { height: 100%; right: -5%; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 32px; z-index: 100;
    transition: all 0.4s ease; border: none; background: none;
    opacity: 0; cursor: pointer;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.item-main:hover .slider-arrow { opacity: 0.8; }
.slider-arrow:hover { opacity: 1 !important; transform: translateY(-50%) scale(1.2); }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.item-top { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.item-top .bento-content { max-width: 60%; }
.item-top .bento-title { font-size: 24px; }
.item-bottom { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); }
.item-bottom .bento-content { max-width: 60%; }
.item-bottom .bento-title { font-size: 24px; }

/* --- DÜZELTİLMİŞ YUVARLAK KATEGORİLER --- */
.circle-categories { 
    display: flex; justify-content: space-between; gap: 20px; 
    margin-bottom: 40px; overflow-x: auto; 
    padding: 15px 5px 25px 5px; 
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.circle-categories::-webkit-scrollbar { display: none; }
.circle-cat { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 100px; cursor: pointer; }
.circle-img-box { width: 80px; height: 80px; border-radius: 50%; background-color: var(--surface); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.circle-img-box i { font-size: 30px; color: var(--primary); transition: var(--transition); }
.circle-cat:hover .circle-img-box { transform: translateY(-8px); box-shadow: var(--shadow-md); background-color: var(--primary); }
.circle-cat:hover .circle-img-box i { color: white; }
.circle-cat span { font-size: 14px; font-weight: 600; text-align: center; }

/* --- KAMPANYA BANNERLARI --- */
.promo-banner {
    width: 100%; border-radius: var(--radius-lg); overflow: hidden; margin: 50px 0;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(90deg, #1E293B 0%, #334155 100%); color: white; padding: 40px 60px;
    box-shadow: var(--shadow-md); position: relative;
}
.promo-content { max-width: 500px; z-index: 2; }
.promo-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.promo-content p { font-size: 16px; margin-bottom: 20px; opacity: 0.9; }

/* Style 1: Klasik Mor Gradient */
.promo-banner.pb-style-1 { background: linear-gradient(90deg, var(--primary) 0%, #818CF8 100%); }
.promo-banner.pb-style-1 img { position: absolute; right: 5%; top: -20px; height: 130%; object-fit: contain; opacity: 0.8; mix-blend-mode: screen; }

/* Style 2: Karanlık Premium */
.promo-banner.pb-style-2 { background: #0f172a; border: 1px solid #334155; }
.promo-banner.pb-style-2::before { content: ''; position: absolute; inset:0; background: radial-gradient(circle at top right, rgba(99,102,241,0.2), transparent 50%); z-index: 1; }
.promo-banner.pb-style-2 .promo-content h2 { color: #f8fafc; }
.promo-banner.pb-style-2 .promo-content p { color: #cbd5e1; }
.promo-banner.pb-style-2 .btn { background: var(--primary) !important; color: white !important; border: 1px solid var(--primary); }
.promo-banner.pb-style-2 img { position: absolute; right: 0; top: 0; height: 100%; object-fit: cover; opacity: 0.5; mix-blend-mode: lighten; }

/* Style 3: İkiye Bölünmüş Konsept (Split) */
.promo-banner.pb-style-3 { padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: #f8fafc; color: var(--text-dark); align-items: stretch; }
.promo-banner.pb-style-3 .promo-content { padding: 50px 60px; display: flex; flex-direction: column; justify-content: center; max-width: 100%; box-sizing: border-box; }
.promo-banner.pb-style-3 .promo-content h2 { color: var(--text-dark); }
.promo-banner.pb-style-3 .promo-content p { color: var(--text-gray); }
.promo-banner.pb-style-3 .btn { background: var(--text-dark) !important; color: white !important; align-self: flex-start; }
.promo-banner.pb-style-3 .img-box { position: relative; height: 100%; width: 100%; background: #e2e8f0; overflow: hidden; }
.promo-banner.pb-style-3 .img-box img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; }

/* Style 4: Klasik Mor Gradient (Ters: Yazı Sağda, Resim Solda) */
.promo-banner.pb-style-4 { background: linear-gradient(270deg, var(--primary) 0%, #818CF8 100%); justify-content: flex-end; }
.promo-banner.pb-style-4 .promo-content { text-align: right; }
.promo-banner.pb-style-4 img { position: absolute; left: 5%; right: auto; top: -20px; height: 130%; object-fit: contain; opacity: 0.8; mix-blend-mode: screen; }

/* Style 5: Karanlık Premium (Ters: Yazı Sağda, Resim Solda) */
.promo-banner.pb-style-5 { background: #0f172a; border: 1px solid #334155; justify-content: flex-end; }
.promo-banner.pb-style-5::before { content: ''; position: absolute; inset:0; background: radial-gradient(circle at top left, rgba(99,102,241,0.2), transparent 50%); z-index: 1; }
.promo-banner.pb-style-5 .promo-content { text-align: right; }
.promo-banner.pb-style-5 .promo-content h2 { color: #f8fafc; }
.promo-banner.pb-style-5 .promo-content p { color: #cbd5e1; }
.promo-banner.pb-style-5 .btn { background: var(--primary) !important; color: white !important; border: 1px solid var(--primary); }
.promo-banner.pb-style-5 img { position: absolute; left: 0; right: auto; top: 0; height: 100%; object-fit: cover; opacity: 0.5; mix-blend-mode: lighten; }

/* Style 6: İkiye Bölünmüş Konsept (Ters: Yazı Sağda, Resim Solda) */
.promo-banner.pb-style-6 { padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: #f8fafc; color: var(--text-dark); align-items: stretch; }
.promo-banner.pb-style-6 .promo-content { padding: 50px 60px; display: flex; flex-direction: column; justify-content: center; max-width: 100%; box-sizing: border-box; grid-column: 2; grid-row: 1; text-align: right; align-items: flex-end; }
.promo-banner.pb-style-6 .promo-content h2 { color: var(--text-dark); }
.promo-banner.pb-style-6 .promo-content p { color: var(--text-gray); }
.promo-banner.pb-style-6 .btn { background: var(--text-dark) !important; color: white !important; }
.promo-banner.pb-style-6 .img-box { position: relative; height: 100%; width: 100%; background: #e2e8f0; overflow: hidden; grid-column: 1; grid-row: 1; }
.promo-banner.pb-style-6 .img-box img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; }


/* --- GÜVEN BİLGİLERİ (TRUST SIGNALS) --- */
.features-section { 
    background-color: #fbfbfc; 
    padding: 50px 0; 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border);
    margin: 40px -3% 50px; /* Kenarları tam kaplaması için negatif marjin (konteyner dışı) */
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feature-item i { font-size: 28px; color: var(--text-dark); margin-bottom: 5px; }
.feature-item h4 { font-size: 16px; font-weight: 800; color: var(--text-dark); }
.feature-item p { font-size: 13px; color: var(--text-gray); font-weight: 500; }

/* --- ÜRÜN GRID --- */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; margin-top: 40px; }
.section-title { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.section-title i { color: var(--secondary); }
.view-all { color: var(--primary); font-weight: 600; font-size: 14px; background: white; padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border); }
.view-all:hover { border-color: var(--primary); }

.showcase-grid { 
    display: flex; 
    flex-wrap: nowrap;
    gap: 20px; 
    margin-bottom: 30px; 
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px; /* shadow fix */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: stretch; /* Tüm kartları aynı boya getir */
}
.showcase-grid::-webkit-scrollbar { display: none; }

/* Standart ürün grid (kategori, arama, benzer ürünler) */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }

/* ── Kaydırma Wrapper & Butonları ── */
.showcase-scroll-wrap {
    position: relative;
}
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-60%); /* Kartların ortası */
    z-index: 20;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    color: var(--text-dark);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease, background .15s;
    pointer-events: none;
}
.showcase-scroll-wrap:hover .showcase-nav:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}
.showcase-nav:hover { background: var(--primary); color: white; border-color: var(--primary); }
.showcase-nav--prev { left: -22px; }
.showcase-nav--next { right: -22px; }
.showcase-nav.hidden { opacity: 0 !important; pointer-events: none !important; }

.showcase-card { 
    flex: 0 0 calc((100% - ((var(--desktop-cols, 5) - 1) * 20px)) / var(--desktop-cols, 5));
    background-color: var(--surface); 
    border-radius: var(--radius-md); 
    padding: 15px; 
    position: relative; 
    transition: var(--transition); 
    border: 1px solid transparent; 
    display: flex; 
    flex-direction: column;
    scroll-snap-align: start;
}
.showcase-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-3px); z-index: 10; }

.discount-badge { position: absolute; top: 15px; left: 15px; background-color: var(--secondary); color: white; font-size: 12px; font-weight: 800; padding: 4px 8px; border-radius: var(--radius-sm); z-index: 2; }
.fav-btn { position: absolute; top: 15px; right: 15px; background-color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 2; color: var(--text-gray); transition: var(--transition); border: none; cursor: pointer; }
.fav-btn:hover { color: var(--secondary); transform: scale(1.1); }
.fav-btn.active { color: var(--secondary); }
.fav-btn.active i { font-weight: 900; }

.fav-count { background-color: var(--secondary) !important; color: white !important; }

.product-img-box { height: 180px; background-color: var(--bg-color); border-radius: var(--radius-sm); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img-box img { max-height: 80%; mix-blend-mode: multiply; transition: transform 0.4s ease; }
.product-card:hover .product-img-box img { transform: scale(1.1); }

.brand-name { font-size: 12px; color: var(--text-gray); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.product-name { 
    font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; 
    display: -webkit-box; -webkit-line-clamp: 2; 
    line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; 
    min-height: 40px; /* Standart 2 satırlık alan kaplatır */
}
.rating { display: flex; align-items: center; gap: 5px; font-size: 12px; margin-bottom: 15px; font-weight: 600; }
.rating i { color: #F59E0B; }
.rating span { color: var(--text-gray); font-weight: 500; }
.price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.price-info { display: flex; flex-direction: column; }
.old-price { font-size: 12px; color: var(--text-gray); text-decoration: line-through; }
.current-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.add-cart-btn { background-color: var(--bg-color); color: var(--text-dark); width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.add-cart-btn:hover { background-color: var(--primary); color: white; }

/* --- FOOTER --- */
footer { background-color: var(--surface); border-top: 1px solid var(--border); padding: 80px 0 50px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-desc { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; max-width: 300px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-color); display: flex; align-items: center; justify-content: center; color: var(--text-dark); font-size: 18px; }
.social-icons a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-title { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); display: flex; align-items: center; justify-content: space-between; }
.footer-title i { display: none; font-size: 14px; transition: var(--transition); }
.footer-links { transition: all 0.4s ease; overflow: hidden; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-gray); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.app-buttons { display: flex; flex-direction: column; gap: 10px; }
.app-btn { background: var(--text-dark); color: white; padding: 10px 20px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 15px; transition: var(--transition); }
.app-btn:hover { background: var(--primary); }
.app-btn i { font-size: 24px; }
.app-btn-text span { display: block; font-size: 10px; opacity: 0.8; }
.app-btn-text strong { font-size: 16px; font-weight: 700; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; color: var(--text-gray); font-size: 14px; }
.payment-methods { display: flex; gap: 10px; font-size: 24px; color: var(--text-dark); opacity: 0.7; }

/* --- KAMPANYA POPUP (WHEEL) --- */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-content {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    width: 90%; max-width: 850px;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
    padding: 50px; position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.popup-overlay.active .popup-content { transform: translateY(0) scale(1); }
.popup-close {
    position: absolute; top: 20px; right: 25px;
    font-size: 24px; color: var(--text-gray); z-index: 10;
    transition: var(--transition);
}
.popup-close:hover { color: var(--secondary); transform: rotate(90deg); }

.dont-show-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; margin-top: 15px; padding: 10px;
    font-size: 13px; font-weight: 700; color: var(--text-gray);
    background: transparent; border: 1px solid var(--border);
    border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
}
.dont-show-btn:hover { 
    background-color: #f1f5f9; 
    color: var(--secondary);
    border-color: var(--secondary);
}

.popup-left { display: flex; align-items: center; justify-content: center; position: relative; }
.wheel-container {
    width: 320px; height: 320px; position: relative;
    border-radius: 50%; border: 8px solid var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
/* Canvas tabanlı çark stilleri */
#spinWheel {
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
}
.wheel-center-label {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; background: var(--text-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px; letter-spacing: 0.5px; color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 10; pointer-events: none;
    border: 4px solid #fff;
}
.wheel-pointer {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    font-size: 42px; color: var(--text-dark); z-index: 15; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    text-shadow: 0 -2px 0 white, 2px -2px 0 white, -2px -2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 2px 2px 0 white, -2px 2px 0 white;
}

.popup-right { display: flex; flex-direction: column; justify-content: center; }
.popup-title { font-size: 26px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.popup-desc { color: var(--text-gray); font-size: 15px; margin-bottom: 25px; }
.form-group { margin-bottom: 15px; }
.form-input { width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; background-color: var(--bg-color); transition: var(--transition); }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); outline: none; background-color: var(--surface); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; cursor: pointer; }
.checkbox-group input { margin-top: 4px; accent-color: var(--primary); cursor: pointer; }
.checkbox-group label { font-size: 11px; color: var(--text-gray); line-height: 1.4; cursor: pointer; }
.spin-btn { width: 100%; background-color: var(--text-dark); color: white; padding: 16px; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px; margin-top: 10px; transition: var(--transition); }
.spin-btn:hover { background-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.spin-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* --- ÇEREZ (COOKIE) BANNER --- */
.cookie-banner {
    position: fixed; bottom: -150%; left: 0; width: 100%;
    background-color: var(--surface);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px 0; z-index: 3000;
    transition: bottom 0.6s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    border-top: 1px solid var(--border);
}
.cookie-banner.show { bottom: 0; }
.cookie-container { max-width: 1440px; margin: 0 auto; padding: 0 3%; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 300px; }
.cookie-icon { font-size: 32px; color: #D97706; }
.cookie-text h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--text-dark); }
.cookie-text p { font-size: 13px; color: var(--text-gray); }
.cookie-text a { color: var(--primary); text-decoration: underline; font-weight: 600; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn { padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; transition: var(--transition); white-space: nowrap; }
.cookie-btn.accept { background-color: var(--primary); color: white; }
.cookie-btn.accept:hover { background-color: var(--primary-dark); }
.cookie-btn.reject { background-color: var(--bg-color); color: var(--text-dark); border: 1px solid var(--border); }
.cookie-btn.reject:hover { background-color: #e2e8f0; }

/* --- MASAÜSTÜ ARAMA ÇUBUĞU --- */
.search-bar-desktop { 
    display: flex; flex: 1; max-width: 550px; margin: 0 40px; 
    background: #f1f5f9; border: 1px solid transparent; 
    border-radius: var(--radius-sm);
    height: 44px;
    transition: var(--transition);
    position: relative;
}
.search-bar-desktop:focus-within { background: white; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }
.search-bar-desktop input { flex: 1; border: none; padding: 0 16px; font-weight: 500; outline: none; background: transparent; font-size: 14px; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.search-bar-desktop button { background: transparent; color: var(--text-gray); border: none; padding: 0 15px; cursor: pointer; font-size: 18px; }
.search-bar-desktop button:hover { color: var(--primary); }

.action-item.mobile-only { display: none; }

/* --- GLOBAL ACCOUNT LAYOUT (NUCLEAR FIX) --- */
.profile-layout { 
    display: grid; grid-template-columns: 260px 1fr; gap: 35px; margin: 40px 0 80px; align-items: flex-start;
}
.profile-sidebar {
    width: 260px; flex-shrink: 0; background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 28px 20px; position: sticky; top: 110px; height: fit-content;
}
.profile-user-info { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.profile-avatar { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%); color: white; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25); }
.profile-user-info p { font-size: 12px; color: var(--text-gray); font-weight: 500; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; display: block; }
.profile-nav { display: flex; flex-direction: column; gap: 3px; }
.profile-nav-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--text-gray); font-weight: 600; font-size: 14px; transition: var(--transition); text-decoration: none; }
.profile-nav-item i { font-size: 17px; width: 20px; text-align: center; color: #94a3b8; transition: var(--transition); }
.profile-nav-item:hover, .profile-nav-item.active { background: #eef2ff; color: var(--primary); font-weight: 700; }
.profile-nav-item:hover i, .profile-nav-item.active i { color: var(--primary); }
.profile-nav-item.logout { color: var(--secondary); }
.profile-nav-item.logout i { color: var(--secondary); }
.profile-nav-item.logout:hover { background: #fff1f2; color: var(--secondary); }
.nav-divider { height: 1px; background: var(--border); margin: 10px 0; }

@media (max-width: 992px) {
    .profile-layout { display: block; margin: 20px 0 50px; }
    .profile-sidebar { 
        width: 100% !important; border-radius: 0; border-left: none; border-right: none; position: sticky !important; top: var(--header-height); 
        padding: 12px 15px; background: var(--surface); z-index: 900; box-shadow: 0 4px 10px rgba(0,0,0,0.03); margin-bottom: 25px;
    }
    .profile-user-info { padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid var(--border); justify-content: flex-start; }
    .profile-avatar { width: 32px; height: 32px; font-size: 13px; }
    .profile-user-info h3 { font-size: 13px; }
    .profile-user-info p { display: none; }
    .profile-nav { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; gap: 8px; padding: 5px 2px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .profile-nav::-webkit-scrollbar { display: none; }
    .profile-nav-item { white-space: nowrap; padding: 7px 15px; flex-shrink: 0; background: var(--bg-color); border: 1.5px solid var(--border); border-radius: 20px; font-size: 13px; }
    .profile-nav-item.active { background: var(--primary); color: white; border-color: var(--primary); }
    .profile-nav-item.active i { color: white; }
.profile-nav-item i { font-size: 15px; margin-right: -4px; }
    .nav-divider { display: none; }
}

/* --- PROFILE COMPONENTS (GLOBAL) --- */
.profile-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; gap: 20px; }
.profile-section-header h1 { font-size: 28px; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; margin: 0; }
.profile-section-header p { color: var(--text-gray); margin-top: 5px; font-size: 15px; max-width: 600px; }

.profile-content { display: flex; flex-direction: column; gap: 28px; flex: 1; min-width: 0; }
.profile-card { background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.card-title { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.card-title i { color: var(--primary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; transition: var(--transition); outline: none; font-family: inherit; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.05); }
.form-control:disabled { background: var(--bg-color); cursor: not-allowed; }

.profile-btn { background: var(--primary); color: white; padding: 12px 25px; border-radius: 10px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; min-width: 180px; justify-content: center; }
.profile-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

.alert { padding: 15px 20px; border-radius: 12px; margin-bottom: 25px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

@media (max-width: 992px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .profile-card { padding: 20px; }
    .card-title { font-size: 18px; margin-bottom: 20px; }
    .profile-btn { width: 100%; }
}

/* --- ORDER DETAIL SPECIFIC --- */
.detail-layout { display: flex; align-items: flex-start; gap: 35px; margin: 40px 0 80px; }
.detail-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text-gray); transition: var(--transition); text-decoration: none; }
.back-link:hover { color: var(--primary); transform: translateX(-3px); }

.page-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.title-wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.page-title { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }
.header-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-det { padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-det.outline { border: 1px solid var(--border); background: var(--surface); color: var(--text-dark); }
.btn-det.outline:hover { background: var(--bg-color); }
.btn-det.danger { border: 1px solid #fecdd3; background: var(--surface); color: var(--secondary); }
.btn-det.danger:hover { background: #fff1f2; }

.dcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.dcard-head { padding: 18px 25px; border-bottom: 1px solid var(--border); background: #fafafa; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.dcard-head h3 { font-size: 15px; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 10px; margin: 0; }
.dcard-head h3 i { color: var(--text-gray); }
.dcard-body { padding: 25px; }

.tracker-wrap { padding: 28px 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; background: #fff; }
.tracker-wrap::-webkit-scrollbar { display: none; }
.tracker-steps { display: flex; justify-content: space-between; position: relative; width: 100%; max-width: 800px; margin: 0 auto; padding: 0 20px 5px; min-width: 480px; }
.tracker-steps::before { content: ''; position: absolute; top: 18px; left: 40px; right: 40px; height: 4px; background: var(--border); z-index: 1; border-radius: 2px; }
.tracker-progress { position: absolute; top: 18px; left: 40px; height: 4px; z-index: 2; border-radius: 2px; transition: width 0.8s ease; }
.step { display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; z-index: 3; flex: 1; text-align: center; }
.step-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 4px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-gray); transition: var(--transition); }
.step-label { font-size: 12px; font-weight: 600; color: var(--text-gray); line-height: 1.3; }
.step-date { font-size: 11px; color: #94a3b8; }
.step.done .step-icon { background: var(--tertiary); border-color: var(--tertiary); color: white; }
.step.done .step-label { color: var(--text-dark); font-weight: 700; }
.step.current .step-icon { background: white; border-color: #0ea5e9; box-shadow: 0 0 0 5px #e0f2fe; }
.step.current .step-label { color: #0ea5e9; font-weight: 800; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.info-ttl { font-size: 11px; font-weight: 800; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.info-ttl i { color: var(--primary); }
.info-text { font-size: 14px; color: var(--text-dark); line-height: 1.8; }
.info-text strong { font-weight: 700; display: block; margin-bottom: 3px; }

.pay-box { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-color); margin-top: 5px; }
.pay-box i { font-size: 22px; color: var(--text-gray); }
.pay-box span { display: block; font-size: 14px; font-weight: 700; }
.pay-box small { font-size: 12px; color: var(--text-gray); }

.pkg-head { display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; background: #f8fafc; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.pkg-title { font-size: 14px; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.btn-track { padding: 7px 16px; font-size: 12px; font-weight: 700; background: var(--text-dark); color: white; border-radius: 20px; display: inline-flex; align-items: center; gap: 7px; transition: var(--transition); text-decoration: none; }
.btn-track:hover { background: var(--primary); box-shadow: 0 4px 10px rgba(79,70,229,0.2); transform: translateY(-1px); }

.product-item { display: flex; justify-content: space-between; align-items: center; padding: 18px 25px; border-bottom: 1px dashed var(--border); flex-wrap: wrap; gap: 15px; }
.product-item:last-child { border-bottom: none; }
.p-main { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 0; }
.p-img { width: 75px; height: 75px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-color); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.p-img img { max-width: 85%; max-height: 85%; object-fit: contain; mix-blend-mode: multiply; }
.p-name { font-size: 14px; font-weight: 700; color: var(--text-dark); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; text-decoration: none; }
.p-var { font-size: 12px; color: var(--text-gray); }
.p-meta { display: flex; align-items: center; gap: 35px; text-align: right; flex-shrink: 0; }
.p-qty { font-size: 13px; color: var(--text-gray); font-weight: 600; background: var(--bg-color); padding: 4px 12px; border-radius: 20px; }
.p-price { font-size: 16px; font-weight: 800; color: var(--text-dark); min-width: 110px; text-align: right; }

.order-summary { padding: 20px 25px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; background: #fafafa; }
.summary-table { width: 100%; max-width: 340px; }
.sum-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--text-gray); font-weight: 500; }
.sum-row.discount { color: var(--tertiary); font-weight: 600; }
.sum-row.total { padding-top: 14px; margin-top: 8px; border-top: 2px solid var(--border); font-size: 18px; font-weight: 800; color: var(--text-dark); }
.sum-row.total .val { color: var(--primary); }

/* --- RATING MODAL (PREMIUM) --- */
.orders-main { flex: 1; min-width: 0; }
.page-header { margin-bottom: 25px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 15px; }
.status-badge { font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 50px; display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.2px; transition: var(--transition); border: 1px solid transparent; }
.status-badge i { font-size: 14px; opacity: 0.9; }
.status-badge:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.tracker-status-text { margin-bottom: 22px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.tracker-status-text .status-badge { flex-shrink: 0; }
.tracker-status-text .status-date { font-size: 13px; color: var(--text-gray); font-weight: 500; }
.page-title h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.page-title p { font-size: 14px; color: var(--text-gray); margin-top: 4px; }

.order-search { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 5px 15px; width: 280px; transition: var(--transition); }
.order-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.order-search input { flex: 1; border: none; padding: 10px; font-size: 13px; outline: none; background: transparent; }

.order-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; gap: 5px; overflow-x: auto; scrollbar-width: none; }
.order-tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 14px 22px; font-size: 14px; font-weight: 600; color: var(--text-gray); border: none; border-bottom: 2px solid transparent; background: none; white-space: nowrap; transition: var(--transition); cursor: pointer; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }

.orders-list { display: flex; flex-direction: column; gap: 22px; }
.order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.04); width: 100%; }

.order-header { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); background: #fafafa; flex-wrap: wrap; gap: 15px; }
.header-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.meta-box { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-size: 11px; color: var(--text-gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.meta-val { font-size: 14px; font-weight: 700; color: var(--text-dark); }

.order-tracker { padding: 22px 25px; border-bottom: 1px solid var(--border); }
.tracker-steps { display: flex; justify-content: space-between; position: relative; max-width: 100%; overflow-x: auto; padding: 0 16px 5px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tracker-steps::before { content: ''; position: absolute; top: 15px; left: 36px; right: 36px; height: 3px; background: var(--border); z-index: 1; }
.tracker-progress { position: absolute; top: 15px; left: 36px; height: 3px; background: var(--tertiary); z-index: 2; transition: width 0.8s ease; }
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 3; min-width: 70px; }
.step-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 3px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-gray); }
.step.done .step-icon { background: var(--tertiary); border-color: var(--tertiary); color: white; }

.order-products { padding: 5px 25px; }
.product-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.product-item:last-child { border-bottom: none; }
.p-main { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 240px; }
.p-img { width: 65px; height: 65px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-color); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.p-img img { max-width: 85%; max-height: 85%; object-fit: contain; mix-blend-mode: multiply; }
.p-info { display: flex; flex-direction: column; gap: 3px; }
.p-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.p-meta { display: flex; align-items: center; gap: 30px; }
.p-price { font-size: 15px; font-weight: 800; color: var(--text-dark); width: 90px; text-align: right; }

.order-footer { padding: 14px 25px; background: #fafafa; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-left { font-size: 13px; color: var(--text-gray); display: flex; align-items: center; gap: 8px; }

.action-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-action { padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; transition: var(--transition); cursor: pointer; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; justify-content: center; }

.btn-outline { border-color: var(--border); background: white; color: var(--text-dark); }
.btn-outline:hover { border-color: #cbd5e1; background: #f8fafc; }
.btn-primary { background: var(--text-dark); color: white; }
.btn-primary:hover { opacity: 0.9; }
.btn-warning { background: #F59E0B; color: white; }
.btn-danger  { border-color: #fecaca; background: #fff1f2; color: #e11d48; }
.btn-danger:hover { background: #ffe4e6; }

@media (max-width: 768px) {
    .page-header { flex-direction: column; align-items: stretch; }
    .order-search { width: 100%; }
    .order-header { padding: 15px; flex-direction: column; align-items: flex-start; }
    .header-meta { gap: 12px 20px; width: 100%; grid-template-columns: 1fr 1fr; display: grid; }
    .tracker-steps { justify-content: space-around; }
    
    .order-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .footer-left { justify-content: center; }
    .action-btns { flex-direction: column; width: 100%; }
    .btn-action { width: 100%; }
}

@media (max-width: 480px) {
    .order-header, .order-tracker, .order-products, .order-footer { padding: 14px; }
    .p-meta { width: 100%; justify-content: space-between; border-top: 1px dashed var(--border); padding-top: 10px; margin-top: 4px; }
    .p-main { min-width: 0; }
}

/* --- RATING MODAL (PREMIUM) --- */
.modal-overlay { 
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 5000; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 20px;
}
.modal-card { 
    background: white; border-radius: 24px; padding: 40px; max-width: 500px; width: 100%; position: relative; animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ADDRESS BOOK SPECIFIC --- */
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 20px; }
.address-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 25px; position: relative; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; height: 100%; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.address-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 25px -10px rgba(79, 70, 229, 0.15); }
.address-card.default { border-color: rgba(79, 70, 229, 0.3); background: linear-gradient(to bottom right, var(--surface), #f9faff); }

.address-title { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.address-title i { color: var(--primary); font-size: 18px; }
.address-contact { font-weight: 700; color: var(--text-dark); margin-bottom: 5px; font-size: 14px; }
.address-details { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin-bottom: 15px; }
.address-phone { font-size: 13px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.address-phone i { color: var(--text-gray); font-size: 12px; }

.card-actions { margin-top: 25px; display: flex; gap: 10px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.address-card .action-btn { flex: 1; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; display: flex; align-items: center; justify-content: center; gap: 8px; }
.address-card .btn-edit { background: var(--bg-color); color: var(--text-dark); border-color: var(--border); }
.address-card .btn-edit:hover { background: #e2e8f0; }
.address-card .btn-delete { background: #fff1f2; color: #e11d48; border-color: #fecaca; }
.address-card .btn-delete:hover { background: #ffe4e6; }

.default-opts { position: absolute; top: 15px; right: 15px; display: flex; gap: 8px; }
.opt-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-color); border: 1px solid var(--border); color: var(--text-gray); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.opt-btn:hover { border-color: var(--primary); color: var(--primary); }
.opt-btn.active.delivery { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3); }
.opt-btn.active.billing { background: var(--tertiary); color: white; border-color: var(--tertiary); box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3); }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.addr-badge { font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; display: flex; align-items: center; gap: 5px; }
.badge-delivery { background: #e0e7ff; color: var(--primary); }
.badge-billing { background: #d1fae5; color: #065f46; }

.add-address-card { border: 2px dashed #cbd5e1 !important; background: #f8fafc; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; color: #94a3b8; min-height: 220px; cursor: pointer; transition: var(--transition); box-shadow: none !important; }
.add-address-card i { font-size: 40px; transition: var(--transition); }
.add-address-card:hover { border-color: var(--primary) !important; color: var(--primary); background: #f5f7ff; }
.add-address-card:hover i { transform: scale(1.1); }

/* Address Modal Refinement */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 5000; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 20px; }
.modal-content { background: white; border-radius: 24px; padding: 30px; max-width: 550px; width: 100%; position: relative; animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 20px; right: 25px; font-size: 28px; color: #94a3b8; cursor: pointer; transition: 0.2s; }
.modal-close:hover { color: #f43f5e; transform: rotate(90deg); }

@media (max-width: 992px) {
    .detail-layout { flex-direction: column; }
    .tracker-steps { min-width: 420px; }
}

@media (max-width: 768px) {
    .page-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .header-acts { width: 100%; display: flex; gap: 12px; }
    .btn-det { flex: 1; justify-content: center; min-height: 44px; }
    .info-grid { grid-template-columns: 1fr; gap: 20px; }
    .dcard-body { padding: 18px; }
    .pkg-head { padding: 12px 18px; }
    .product-item { padding: 15px 18px; flex-direction: column; align-items: flex-start; }
    .p-meta { width: 100%; justify-content: space-between; border-top: 1px dashed var(--border); padding-top: 12px; }
    .order-summary { justify-content: center; padding: 16px 18px; }
    .summary-table { max-width: 100%; }
    .address-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .title-wrap { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
    .page-title { font-size: 22px; width: 100%; line-height: 1.2; word-break: break-all; }
    .header-acts { flex-direction: column; }
    .btn-det { width: 100%; }
    .tracker-steps { min-width: 320px; }
    .step-icon { width: 34px; height: 34px; border-width: 3px; font-size: 11px; }
    .step-label { font-size: 10.5px; }
    .step-date { font-size: 9px; }
    .tracker-status-text { gap: 10px; margin-bottom: 20px; }
}
@keyframes modalIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-close-btn { position: absolute; top: 20px; right: 25px; font-size: 28px; color: #94a3b8; cursor: pointer; transition: 0.2s; border: none; background: none; }
.modal-close-btn:hover { color: #f43f5e; transform: rotate(90deg); }

.modal-title { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.modal-title i { color: #F59E0B; }
.modal-subtitle { font-size: 14px; color: var(--text-gray); margin-bottom: 25px; }

.star-rating-row { display: flex; gap: 10px; font-size: 36px; margin-bottom: 25px; cursor: pointer; color: #e2e8f0; justify-content: center; }
.star-rating-row i { transition: all 0.2s transform; }
.star-rating-row i.active { color: #F59E0B; }
.star-rating-row i:hover { transform: scale(1.15); }

.review-textarea { 
    width: 100%; padding: 15px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 15px; min-height: 120px; resize: vertical; outline: none; font-family: inherit; transition: all 0.2s; margin-bottom: 20px; 
}
.review-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08); }

/* Custom File Upload */
.upload-wrapper { margin-bottom: 25px; }
.upload-label { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; display: block; }

.file-upload-box { 
    border: 2px dashed var(--border); border-radius: 16px; padding: 25px; text-align: center; cursor: pointer; transition: all 0.3s; background: #fafbfc; position: relative; overflow: hidden;
}
.file-upload-box:hover { border-color: var(--primary); background: #f5f7ff; }
.file-upload-box i { font-size: 28px; color: var(--text-gray); margin-bottom: 10px; display: block; }
.file-upload-box span { font-size: 13px; font-weight: 600; color: var(--text-gray); }
.file-upload-box input { display: none; }

.upload-preview-container { 
    display: none; position: relative; width: 100%; height: 180px; margin-top: 15px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
}
.upload-preview-container img { width: 100%; height: 100%; object-fit: cover; }
.remove-preview-btn { 
    position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s; 
}
.remove-preview-btn:hover { background: #f43f5e; }

.submit-review-btn { 
    width: 100%; background: var(--primary); color: white; padding: 16px; border-radius: 14px; font-weight: 800; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.4);
}
.submit-review-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.6); }

@media (max-width: 480px) {
    .modal-card { padding: 30px 20px; border-radius: 20px; }
    .star-rating-row { font-size: 32px; }
}

/* --- TAM MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 1024px) {
    .bento-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 15px; margin: 20px auto; }
    .item-main { grid-row: auto; height: 380px; }
    .main-slide { padding: 30px; }
    .item-main .bento-title { font-size: 32px; }
    .bento-content { max-width: 80%; }
    .slider-arrow { width: 45px; height: 45px; font-size: 24px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { padding: 20px; margin: 25px 0; display: flex; flex-direction: row !important; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: nowrap !important; }
    .promo-content { max-width: 60%; text-align: left !important; }
    .promo-content h2 { font-size: 19px; line-height: 1.1; margin-bottom: 5px; }
    .promo-content p { font-size: 11px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
    .promo-content .btn { padding: 8px 15px; font-size: 12px; }
    .promo-banner img { opacity: 0.8; z-index: 1; height: 100%; top: 0; right: 0; position: absolute; max-width: 45%; object-fit: contain; }
    
    /* Grid Stilleri (3 & 6) Mobilde Yan Yana Kalmalı */
    .promo-banner.pb-style-3, .promo-banner.pb-style-6 { display: grid !important; grid-template-columns: 1fr 1fr !important; }
    .promo-banner.pb-style-3 .promo-content, .promo-banner.pb-style-6 .promo-content { padding: 15px; order: 1; text-align: left; align-items: flex-start; }
    .promo-banner.pb-style-6 .promo-content { text-align: right !important; align-items: flex-end; order: 2; }
    .promo-banner.pb-style-3 .img-box, .promo-banner.pb-style-6 .img-box { height: 100%; min-height: 100px; }
    .promo-banner.pb-style-3 .img-box { order: 2; }
    .promo-banner.pb-style-6 .img-box { order: 1; }
}

@media (max-width: 1024px) {
    .hamburger-btn { display: flex; z-index: 1001; }
    .logo { margin-right: auto; }
    .category-nav { display: none; }
    .search-bar-desktop { display: none; }
    .header-actions .action-item span { display: none; }
    .header-actions .action-item.mobile-only { display: flex !important; }
}

@media (max-width: 768px) {
    /* Üst Kısım */
    .header-main { flex-wrap: nowrap; gap: 10px; padding: 12px 0; }
    .logo { font-size: 20px; }
    
    .header-actions { gap: 8px; }
    .action-item i { font-size: 20px; }

    /* Bento & Slider Mobilde Küçük Dokunuşlar */
    .item-main { height: 320px; }
    .main-slide { padding: 25px; }
    .item-main .bento-title { font-size: 28px; }
    .bento-content { max-width: 100%; }
    .bento-desc { font-size: 14px; margin-bottom: 15px; }
    .item-main img { height: 80%; right: -10%; bottom: 0; opacity: 0.4; } /* Görsel arkaya, metin ön plana */
    .slider-arrow { display: none; } /* Mobilde yan okları gizleyerek alanı ferahlat */

    /* Promo Banners Mobilde Daha Da Küçültme */
    .promo-banner { padding: 15px; min-height: 150px; }
    .promo-content h2 { font-size: 17px; }
    .promo-content p { display: none; } /* En küçük ekranlarda açıklamayı gizle */
    .promo-content .btn { padding: 6px 12px; font-size: 11px; }

    /* Ürünler - Mobilde 2 Ürün Yan Yana Sığsın */
    .showcase-grid { gap: 12px; padding-bottom: 12px; }
    .showcase-card { flex: 0 0 calc((100% - 12px) / 2); }
    .product-img-box { height: 130px; }
    .product-name { font-size: 13px; }
    .current-price { font-size: 15px; }

    /* Özellikler - Mobilde 2x2 Olsun */
    .features-section { margin: 25px 0; padding: 30px 0; border: none; background: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 25px 12px; }
    .feature-item i { font-size: 22px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 10px; }
    .footer-title { cursor: pointer; padding: 15px 0; border-bottom: 1px solid var(--border); margin-bottom: 0; display: flex; align-items: center; justify-content: space-between; }
    .footer-title i { display: block; font-size: 14px; transition: var(--transition); color: var(--text-gray); }
    .footer-title.active { color: var(--primary); border-bottom-color: var(--primary); }
    .footer-title.active i { transform: rotate(180deg); color: var(--primary); }

    .footer-links { 
        max-height: 0; 
        opacity: 0; 
        overflow: hidden; 
        padding: 0;
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s;
    }
    .footer-links.active { 
        max-height: 1000px; 
        opacity: 1; 
        padding: 20px 0 10px;
        transition: max-height 0.5s cubic-bezier(1, 0, 1, 0), opacity 0.4s;
    }
    
    /* Newsletter */
    .footer-newsletter-column { text-align: left; margin-top: 10px; }
    .footer-newsletter-column .footer-title { border-bottom: none; padding-bottom: 0; margin-bottom: 8px; cursor: default; pointer-events: none; }
    .footer-newsletter-column .footer-title i { display: none; }

    /* Popup/Cookie */
    .popup-content { grid-template-columns: 1fr; padding: 30px 20px; max-height: 90vh; overflow-y: auto; width: 95%; }
    .cookie-container { flex-direction: column; text-align: center; }

    /* Bölüm başlıkları */
    .section-header { flex-wrap: wrap; gap: 10px; }
    .section-title { font-size: 20px; }
}

@media (max-width: 480px) {
    .showcase-grid { gap: 10px; }
    .showcase-card { flex: 0 0 calc((100% - 10px) / 2); }
    .product-img-box { height: 120px; }
    .header-main { padding: 10px 0; }
    .logo { font-size: 18px; }
    .search-input { padding: 12px 12px; font-size: 14px; }
}

/* --- WhatsApp Yüzen Buton --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px; height: 50px;
        bottom: 20px; right: 20px;
        font-size: 28px;
    }
}

/* --- Yukarı Çık Butonu --- */
.scroll-top-btn {
    position: fixed;
    bottom: 95px; /* WhatsApp butonunun hemen üstünde */
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: none; /* JS ile görünürlük değiştirilecek */
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
}
.scroll-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .scroll-top-btn { bottom: 80px; right: 20px; width: 50px; height: 50px; font-size: 18px; }
}

/* --- SHARED CATEGORY & SEARCH LAYOUT --- */
.category-layout { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 80px; width: 100%; }
.sidebar-filters { width: 260px; flex-shrink: 0; position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 10px; }
.sidebar-filters::-webkit-scrollbar { width: 5px; }
.sidebar-filters::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.filter-group { border-bottom: 1px solid var(--border); padding-bottom: 25px; margin-bottom: 25px; }
.filter-title { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; }
.checkbox-list { display: flex; flex-direction: column; gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; cursor: pointer; }
.checkbox-item label { font-size: 14px; color: var(--text-dark); font-weight: 500; cursor: pointer; flex: 1; }
.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs input { flex: 1; width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 13px; outline: none; }
.price-btn { background: var(--text-dark); color: white; width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.price-btn:hover { background: var(--primary); }
.product-area { flex: 1; min-width: 0; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.sort-select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 15px; font-size: 13px; font-weight: 600; color: var(--text-dark); background-color: var(--surface); outline: none; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; }
.product-card { background: var(--surface); border-radius: var(--radius-md); display: flex; flex-direction: column; position: relative; transition: var(--transition); border: 1px solid transparent; padding: 12px; }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); transform: translateY(-4px); }
.card-img-wrapper { position: relative; padding-top: 100%; background-color: #f8fafc; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 15px; display: block; }
.card-img-wrapper img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 85%; max-height: 85%; object-fit: contain; }
.card-badges { position: absolute; top: 12px; left: 12px; z-index: 10; display: flex; flex-direction: column; gap: 5px; }
.badge-discount { background-color: var(--secondary); color: white; font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 4px; }
.product-brand { font-size: 11px; font-weight: 800; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-title { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; height: 42px; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-gray); margin-bottom: 15px; }
.product-rating i { color: var(--warning); }
.card-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.price-current { font-size: 18px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 12px; color: var(--text-light); text-decoration: line-through; display: block; }
.btn-add-cart { width: 42px; height: 42px; border-radius: var(--radius-sm); background-color: #f1f5f9; color: var(--text-dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.btn-add-cart:hover { background-color: var(--primary); color: white; }

.mobile-filter-btn { display: none; padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 700; color: var(--text-dark); }
.filter-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(15,23,42,0.6); z-index: 1050; display: none; }
.close-filter { display: none; text-align: right; font-size: 24px; margin-bottom: 20px; color: var(--text-dark); }

@media (max-width: 992px) {
    .category-layout { flex-direction: column; }
    .sidebar-filters { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; max-height: none; background: var(--surface); z-index: 1100; padding: 25px; transition: transform 0.4s ease; overflow-y: auto; }
    .sidebar-filters.active { transform: translateX(320px); }
    .filter-overlay.active { display: block; }
    .close-filter { display: block; }
    .mobile-apply-btn { display: block !important; margin-top: 20px; width: 100%; background: var(--primary); color: white; padding: 14px; border-radius: var(--radius-sm); font-weight: 700; }
}

@media (max-width: 768px) {
    .toolbar { flex-direction: column; gap: 15px; align-items: flex-start; }
    .toolbar-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .mobile-filter-btn { width: 100%; justify-content: center; height: 42px; display: flex !important; }
    .sort-select { width: 100%; height: 42px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card { padding: 8px; }
    .price-current { font-size: 15px; }
}

/* --- EMPTY STATE (PREMIUM) --- */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInEmpty 0.6s ease;
}
.empty-state-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.empty-state-icon i {
    font-size: 42px;
    color: var(--primary);
}
.empty-state-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0.2;
    animation: rotateEmpty 20s linear infinite;
}
.empty-state h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.empty-state p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}
.empty-state .btn-primary {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.empty-state .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
}

@keyframes fadeInEmpty { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rotateEmpty { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

