/* Porto E-commerce - Main Stylesheet */

/* ========================================
   CSS Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
}

:root {
    /* MODERN BLACK & WHITE THEME - NO PURPLE! */
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --border-color: #e0e0e0;
    --text-color: #333333;
    --success-color: #28A745;
    --danger-color: #DC3545;
    --warning-color: #D4AF37;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.16);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19);
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #000;
    /* Modern ince beyaz scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.35) transparent;
}

/* Chrome / Edge / Safari */
html::-webkit-scrollbar {
    width: 4px;
}
html::-webkit-scrollbar-track {
    background: transparent;
}
html::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.35);
    border-radius: 10px;
}
html::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.6);
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: clip;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 15px;
}


/* ========================================
   Top Bar
======================================== */
.top-bar {
    background-color: #000;
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    flex: 1;
}

.top-search-form {
    display: flex;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
}

.top-search-input {
    flex: 1;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 12px;
    outline: none;
}

.top-search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.top-search-btn {
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.top-search-btn:hover {
    background: rgba(255,255,255,0.3);
}

.top-search-btn svg {
    display: block;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.top-phone:hover {
    opacity: 0.8;
}

.promo-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--white);
    transition: var(--transition);
}

.top-link:hover {
    color: var(--primary-color);
}

.language-selector, .currency-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector select,
.currency-selector select {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
}


.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   Main Header
======================================== */
.site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Sabit masaüstü header için içerik offset'i; mobil header normal/sticky akıştadır. */
body {
    padding-top: 0;
}
@media (min-width: 769px) {
    body {
        padding-top: var(--header-total-height, 155px);
    }
}

.main-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo a {
    display: block;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Search Bar */
.search-bar {
    flex: 1;
}

.search-form {
    display: flex;
    border: 2px solid #000;
    border-radius: 0;
    overflow: hidden;
}


.search-category {
    padding: 12px 15px;
    border: none;
    border-right: 1px solid var(--border-color);
    background-color: var(--light-color);
    cursor: pointer;
    min-width: 150px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    padding: 12px 20px;
    background-color: #000;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #222;
}

/* ========================================
   YENİ ARAMA KUTUSU - SIFIRDAN TASARIM
======================================== */
.search-bar-new {
    flex: 1;
    max-width: 600px;
}

.search-form-new {
    display: flex;
    align-items: stretch;
    border: 2px solid #000;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.search-input-new {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--dark-color);
    background: transparent;
}

.search-input-new::placeholder {
    color: #999;
}

.search-btn-new {
    padding: 14px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-new:hover {
    background-color: #333;
}

.search-btn-new svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   YENİ HEADER ACTIONS - SIFIRDAN SEPET SİSTEMİ
======================================== */
.new-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.action-item {
    position: relative;
    flex-shrink: 0;
}

.action-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.action-icon-btn:hover {
    color: #0066CC;
    transform: scale(1.1);
}

.action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ========================================
   YENİ SEPET TASARIMI - SIFIRDAN
======================================== */
.new-cart-wrapper {
    position: relative;
}

.new-cart-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.new-cart-button:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-container svg {
    color: #333;
}

.new-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

/* Sepet Animasyonları */
@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@keyframes cartShake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-3px) rotate(-3deg);
    }
    75% {
        transform: translateX(3px) rotate(3deg);
    }
}

.new-cart-count.pulse-animation {
    animation: cartPulse 0.6s ease-in-out;
}

.new-cart-button.cart-updated {
    animation: cartShake 0.5s ease-in-out;
}

.cart-count.pulse-animation {
    animation: cartPulse 0.6s ease-in-out;
}

.cart-icon-btn.cart-updated {
    animation: cartShake 0.5s ease-in-out;
}

.new-cart-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cart-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cart-amount {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

/* Dropdown */
.new-cart-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
}

.new-cart-wrapper:hover .new-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-drop-header {
    padding: 16px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drop-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clear-cart-btn {
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clear-cart-btn:hover {
    background: #ff4444;
    color: #fff;
    border-color: #ff4444;
}

.cart-drop-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 12px;
    background: #fff;
}

/* Mini Cart Item Styling - Yeni Tasarım İçin */
.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background: #fff;
    position: relative;
}

.mini-cart-item:last-child {
    margin-bottom: 0;
}

.mini-cart-item:hover {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(-3px);
}

.mini-item-image {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    border-radius: 4px;
}

.mini-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-item-details {
    flex: 1;
    min-width: 0;
}

.mini-item-details h5 {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin: 0 0 6px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mini-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.item-quantity {
    color: #000;
    font-weight: 700;
    background: #f0f0f0;
    padding: 3px 8px;
    font-size: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.item-price {
    font-weight: 700;
    color: #000;
    font-size: 13px;
}

.mini-item-remove {
    width: 26px;
    height: 26px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
}

.mini-item-remove:hover {
    background-color: #ff4444;
    transform: rotate(90deg) scale(1.1);
}

.mini-item-remove svg {
    stroke: currentColor;
    width: 14px;
    height: 14px;
}

.cart-drop-items::-webkit-scrollbar {
    width: 6px;
}

.cart-drop-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-drop-items::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 3px;
}

.cart-empty-state {
    text-align: center;
    padding: 50px 20px;
}

.cart-empty-state svg {
    margin: 0 auto 20px;
    opacity: 0.2;
    stroke: #000;
}

.cart-empty-state p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

/* Eski tasarım için de destekleyelim */
.mini-cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.mini-cart-empty svg {
    margin: 0 auto 20px;
    opacity: 0.2;
    stroke: #000;
}

.mini-cart-empty p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.cart-drop-footer {
    padding: 16px;
    border-top: 2px solid #000;
    background: #f8f9fa;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cart-total-row span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-total-row strong {
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid #28a745;
}

.checkout-btn:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.view-cart-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    border-radius: 4px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-cart-btn:hover {
    background: #000;
    color: #fff;
}

/* Auth Buttons - ULTRA MODERN SİYAH & BEYAZ TEMA */
.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

/* SVG İkon Stilleri */
.auth-btn svg {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

.auth-btn:hover svg {
    transform: translateX(3px) scale(1.1);
}

.register-btn:hover svg {
    transform: rotate(360deg) scale(1.1);
}

/* Parıltı Efekti */
.auth-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.7s ease-out, height 0.7s ease-out;
    z-index: 0;
}

.auth-btn:hover::before {
    width: 400px;
    height: 400px;
}

/* Alt Çizgi Efekti */
.auth-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auth-btn:hover::after {
    width: 90%;
}

/* Giriş Yap Butonu - Siyah Solid */
.login-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: 2px solid #000000;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 8px rgba(255, 255, 255, 0.05);
}

.login-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 -2px 8px rgba(255, 255, 255, 0.1);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Kayıt Ol Butonu - Beyaz Outline ile Modern Geçiş */
.register-btn {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.03);
}

.register-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 -2px 8px rgba(255, 255, 255, 0.05);
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Premium Glow Effect */
.auth-btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hover'da Micro-interaction - DEVRE DIŞI */
.auth-btn:hover {
    /* animation: buttonPulse 0.6s ease-in-out; */
}

/* ========================================
   ESKİ KODLAR - SİLİNECEK ALAN SONU
======================================== */

/* ========================================
   Navigation Menu - SIFIRDAN YENİ TASARIM
======================================== */
.main-nav {
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: static;
    top: auto;
    z-index: auto;
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
}

.nav-link svg {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
    transform: rotate(-90deg);
}

.nav-item:hover .nav-link svg {
    transform: rotate(-90deg) translateX(3px);
}

.special-link {
    color: #ffd700 !important;
}

.special-link:hover {
    background: rgba(255, 215, 0, 0.1) !important;
}

/* Sipariş Sorgula butonu */
.nav-link-order-track {
    background: #1a6ef7 !important;
    color: #fff !important;
    border-radius: 5px !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: .8px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: background .2s !important;
    white-space: nowrap !important;
}
.nav-link-order-track:hover {
    background: #0f5de0 !important;
    color: #fff !important;
}
.nav-link-order-track svg {
    stroke: #fff !important;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 2px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.category-btn svg {
    fill: var(--white);
}

.category-btn:hover svg {
    fill: var(--white);
}

.category-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.category-dropdown:hover .category-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    color: var(--dark-color);
}

.category-item:hover {
    background-color: var(--light-color);
    padding-left: 20px;
}

.category-icon {
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
}

.category-icon svg {
    stroke: var(--dark-color);
}

.category-item:hover .category-icon svg {
    stroke: var(--primary-color);
}

.category-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
}

.arrow-icon {
    stroke: var(--text-color);
    transition: var(--transition);
}

.category-item:hover .arrow-icon {
    stroke: var(--primary-color);
    transform: translateX(5px);
}
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.category-item i {
    font-size: 12px;
    color: var(--text-color);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Logo Ortada - Beyaz Daire */
.nav-logo-center {
    position: relative;
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.nav-logo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-logo-link img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.nav-item {
    position: relative;
}


.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: capitalize;
}

.nav-link span {
    display: inline-block;
}

.nav-link svg {
    flex-shrink: 0;
    stroke: #ffffff;
}

.dropdown-arrow {
    margin-left: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover svg,
.nav-link.active svg {
    stroke: #ffffff;
}

.special-link {
    color: #ffffff !important;
}

.special-link:hover {
    color: var(--primary-color) !important;
}

.special-link svg {
    stroke: #ffffff !important;
}

.special-link:hover svg {
    stroke: var(--primary-color) !important;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-special .special-link {
    color: var(--secondary-color);
}

.nav-buy .buy-link {
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 4px;
}


.nav-buy .buy-link:hover {
    background-color: #218838;
}

/* ========================================
   Page Layout
======================================== */
.main-content {
    min-height: 500px;
    padding: 30px 0;
}

.page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* ========================================
   Sidebar
======================================== */
.sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-title {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-list,
.brand-list,
.rating-list {
    padding: 0;
}

.category-list-item a,
.brand-list-item,
.rating-list-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}


.category-list-item a:hover {
    background-color: var(--light-color);
    padding-left: 25px;
}

.category-text {
    flex: 1;
    color: var(--dark-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.checkbox-label input {
    cursor: pointer;
}

/* Price Filter */
.price-filter {
    padding: 20px;
}

.price-slider-wrapper {
    margin-bottom: 15px;
}

.price-slider {
    width: 100%;
    margin-bottom: 10px;
}

.price-display {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.filter-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: #0052a3;
}


/* Rating Stars */
.stars {
    display: flex;
    gap: 2px;
    color: #FFC107;
}

.stars .rating-text {
    margin-left: 5px;
    color: var(--text-color);
    font-size: 12px;
}

/* Sidebar Banner */
.sidebar-banner {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
}

.sidebar-banner h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.sidebar-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Decorative Circles - Slider Üstünde Bağımsız
======================================== */
.decorative-circles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 0;
    position: relative;
}

.decorative-circles .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid #000;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.decorative-circles .circle:hover {
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* ========================================
   Hero Slider - MODERN TASARIM
======================================== */
.hero-slider {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 0;
    overflow: hidden;
    margin: 0 0 40px 0;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.slider-container {
    position: relative;
    height: 500px;
    padding-bottom: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    width: 100%;
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}


.hero-slide {
    height: 100%;
    display: none;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 40px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: none;
    width: 100%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image {
    display: none;
}

.hero-subtitle {
    display: inline-block;
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.hero-discount {
    margin-bottom: 25px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 36px;
    font-weight: 900;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.4);
    transform: rotate(-2deg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-2deg) scale(1);
    }
    50% {
        transform: rotate(-2deg) scale(1.05);
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #667eea;
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.btn-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 370px;
    object-fit: contain;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-nav button:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.slider-nav button svg {
    stroke: #667eea;
    width: 24px;
    height: 24px;
}

/* ========================================
   SLIDER DOTS - ULTRA MODERN TASARIM
======================================== */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
    padding: 12px 20px;
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    position: relative;
}

/* Pasif noktalar - açıkça belirtildi */
.dot:not(.active) {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot:hover::before {
    width: 24px;
    height: 24px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.2);
}

/* Aktif nokta */
.dot.active {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border-color: #fff !important;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5) !important;
    transform: scale(1) !important;
}

/* ========================================
   Promo Banners
======================================== */
.promo-banners {
    margin-bottom: 40px;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promo-banner {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.promo-banner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}


.promo-banner-content {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
}

.promo-text {
    flex: 1;
}

.promo-subtitle {
    display: block;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.promo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.promo-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.promo-link:hover {
    gap: 12px;
}

.promo-image {
    flex: 1;
}

.promo-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

/* Banner Variations */
.banner-1 {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}


.banner-2 {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.banner-3 {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
}

.banner-4 {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

/* ========================================
   Featured Products
======================================== */
.featured-products {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--secondary-color);
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all:hover {
    gap: 12px;
/* ========================================
   ÜRÜN KARTLARI - BİREBİR GÖRSEL TASARIM
   (Trendyol / LC Waikiki tarzı)
======================================== */

/* Grid - 4 sütun */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin-top: 20px;
    width: 100%;
    padding: 0 !important;
}

/* Kart */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    border-color: #bbb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
    transform: translateY(-3px);
}

/* ---- Resim Alanı ---- */
.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.product-image-main {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.product-image-main img,
.product-image-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-main img.active,
.product-image-main video.active {
    opacity: 1;
    z-index: 1;
}

/* Placeholder */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f0f0f0;
}

.product-placeholder svg { stroke: #bbb; }
.placeholder-text { color: #aaa; font-size: 12px; }

/* Kalp - sağ üst */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    border: none;
}

.wishlist-heart:hover { transform: scale(1.12); }

.wishlist-heart svg {
    width: 18px;
    height: 18px;
    stroke: #444;
    fill: none;
    stroke-width: 2;
}

.wishlist-heart.active svg {
    fill: #ff4757;
    stroke: #ff4757;
}

/* Mouse takip bölgeleri */
.product-image-zones {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 5;
}

.image-zone { cursor: pointer; }

/* Nokta göstergeleri - sol alt */
.product-image-indicators {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.image-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease;
    cursor: pointer;
}

.image-indicator.active {
    background: #fff;
    border-color: #fff;
}

/* Renk sayısı rozeti - sağ alt */
.color-count-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

.color-count-badge-inner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: conic-gradient(
        #e74c3c   0%  20%,
        #3498db  20%  40%,
        #2ecc71  40%  60%,
        #f39c12  60%  80%,
        #9b59b6  80% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-count-num {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    line-height: 1;
}

/* ---- ÜCRETSİZ KARGO BARI ---- */
.free-shipping-bar {
    background: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 7px 0;
    text-transform: uppercase;
    width: 100%;
    flex-shrink: 0;
}

/* ---- Ürün Bilgi Alanı ---- */
.product-info {
    padding: 12px 12px 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

/* Ürün Adı */
.product-name {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #222;
    margin: 0 0 6px 0;
    min-height: 38px;
    max-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-name a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover { color: #0066cc; }

/* Yıldız + Yorum Satırı */
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars-row {
    display: flex;
    gap: 1px;
}

.stars-row svg {
    width: 13px;
    height: 13px;
}

.star-f { fill: #FFB800; stroke: #FFB800; }
.star-h { fill: #FFB800; stroke: #FFB800; }
.star-e { fill: none;    stroke: #ddd;    }

.review-count {
    font-size: 11px;
    color: #888;
}

/* Fiyat + Buton Satırı */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-new {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.price-old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    display: block;
    margin-top: 2px;
}

/* + Butonu */
.add-to-cart-btn {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn svg {
    width: 18px;
    height: 18px;
    stroke: #444;
    stroke-width: 2.5;
    transition: stroke 0.2s ease;
}

.add-to-cart-btn:hover {
    border-color: #000;
    background: #000;
}

.add-to-cart-btn:hover svg { stroke: #fff; }

/* Yükleniyor durumu */
.add-to-cart-btn.cart-btn-loading {
    background: #f5f5f5;
    border-color: #ddd;
    pointer-events: none;
}
.add-to-cart-btn.cart-btn-loading::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border: 2px solid #ddd;
    border-top-color: #111;
    border-radius: 50%;
    animation: cartBtnSpin 0.7s linear infinite;
}
.add-to-cart-btn.cart-btn-loading svg { display: none; }

@keyframes cartBtnSpin {
    to { transform: rotate(360deg); }
}

/* Eklendi durumu */
.add-to-cart-btn.added {
    background: #22c55e;
    border-color: #22c55e;
}

.add-to-cart-btn.added svg { stroke: #fff; }

/* buy-now gizle - görselde yok */
.buy-now-btn { display: none !important; }

/* Responsive - Tablet */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .product-info { padding: 10px 10px 12px; }
    .product-name { font-size: 12px; min-height: 34px; max-height: 34px; }
    .price-new { font-size: 16px; }
    .add-to-cart-btn { width: 34px; height: 34px; }
}

/* Responsive - Small Mobile */
@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    margin: 40px 0;
}


.cta-banner {
    background: linear-gradient(135deg, #667EEA, #764BA2);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    color: var(--white);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-discount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.discount-text {
    font-size: 14px;
    font-weight: 600;
}

.discount-price {
    font-size: 48px;
    font-weight: 700;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-image {
    flex: 1;
}

.cta-image img {
    max-width: 100%;
    height: auto;
}


/* ========================================
   Deal Banner
======================================== */
.deal-banner {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

.deal-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.deal-text {
    flex: 1;
}

.deal-subtitle {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.deal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.deal-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.deal-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.deal-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.deal-image {
    flex: 1;
}

.deal-image img {
    max-width: 100%;
    border-radius: 8px;
}


/* ========================================
   Footer
======================================== */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    margin-top: 60px;
}

.footer-features {
    background-color: #2a2a2a;
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 13px;
    color: #999;
}

.footer-main {
    padding: 50px 0;
}

/* New Footer Design */
.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: 500px;
}

.footer-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* İletişim Kartı */
.footer-info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-card-header svg {
    color: var(--primary-color);
}

.info-card-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.info-card-content p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.info-card-content p strong {
    color: var(--white);
    display: inline-block;
    width: 140px;
}

/* Hızlı Linkler */
.footer-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-links-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.quick-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-col ul li {
    margin-bottom: 10px;
}

.quick-links-col ul li a {
    color: #bbb;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Newsletter ve Sosyal Medya */
.footer-social-newsletter {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}

.newsletter-compact h5,
.social-compact h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-form-compact {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form-compact input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form-compact input:focus {
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}

.newsletter-form-compact input::placeholder {
    color: #888;
}

.newsletter-form-compact button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-compact button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.social-icons-compact {
    display: flex;
    gap: 12px;
}

.social-icons-compact a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons-compact a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Harita Bölümü */
.footer-map-section {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-map-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.map-container {
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
}

/* Old Footer Grid Styles - Keep for compatibility */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-grid-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    color: var(--white);
}

.footer-col-wide {
    grid-column: span 1;
}

.footer-map {
    margin-top: 15px;
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-col-map {
    /* Harita kolonu için özel stil */
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}


.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #999;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-text {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 15px;
}


.form-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #444;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 4px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    width: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #0052a3;
}

.newsletter-message {
    font-size: 13px;
    margin-top: 10px;
}

.footer-brands {
    background-color: rgba(255,255,255,0.05);
    padding: 30px 0;
    border-top: 1px solid #444;
}

.brands-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item {
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}


.brand-item img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: #999;
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background-color: #0052a3;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}


/* ========================================
   Mobile Menu - FAB (yeni sistem footer.php içinde)
   Eski .mobile-menu stilleri kaldırıldı.
======================================== */

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}


@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}


/* ========================================
   Single Page / iPad View Layout
======================================== */
.single-page-layout {
    padding: 20px 0;
}

.container-fluid.px-3 {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.page-layout-single {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    max-width: 1024px;
    margin: 0 auto;
}

/* Compact Sidebar for iPad */
.sidebar-compact {
    max-height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 70px;
}

.sidebar-compact .sidebar-widget {
    margin-bottom: 15px;
}

.sidebar-compact .widget-title {
    padding: 12px 15px;
    font-size: 13px;
}

.sidebar-compact .category-list-item a,
.sidebar-compact .brand-list-item,
.sidebar-compact .rating-list-item {
    padding: 10px 15px;
    font-size: 13px;
}

.sidebar-compact .price-filter {
    padding: 15px;
}

.sidebar-compact .sidebar-banner {
    padding: 20px 15px;
}

/* Compact Main Area */
.single-page-layout .main-area {
    overflow: visible;
}

/* Compact Hero Slider */
.single-page-layout .slider-container {
    height: 380px;
    margin-bottom: 20px;
}

.single-page-layout .hero-content {
    padding: 30px;
}

.single-page-layout .hero-title {
    font-size: 36px;
}

.single-page-layout .discount-badge {
    font-size: 24px;
    padding: 8px 20px;
}

/* Compact Banners */
.single-page-layout .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.single-page-layout .promo-banner-content {
    padding: 20px;
}

.single-page-layout .promo-title {
    font-size: 20px;
}

.single-page-layout .promo-image img {
    height: 150px;
}

/* Compact Products Grid */
.single-page-layout .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.single-page-layout .product-card {
    font-size: 13px;
}

.single-page-layout .product-image {
    height: 220px;
}

.single-page-layout .product-info {
    padding: 15px;
}

.single-page-layout .product-name {
    font-size: 14px;
    height: auto;
    min-height: 40px;
}

.single-page-layout .price-new {
    font-size: 18px;
}

.single-page-layout .add-to-cart-btn {
    padding: 10px;
    font-size: 12px;
}

/* Compact CTA and Deal Sections */
.single-page-layout .cta-banner,
.single-page-layout .deal-banner {
    padding: 30px;
    margin: 30px 0;
}

.single-page-layout .cta-content h2,
.single-page-layout .deal-title {
    font-size: 28px;
}

.single-page-layout .discount-price {
    font-size: 36px;
}

/* Section spacing */
.single-page-layout .section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.single-page-layout .section-title {
    font-size: 20px;
}

/* iPad Specific - All content visible */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-layout-single {
        grid-template-columns: 220px 1fr;
        gap: 15px;
    }

    .single-page-layout .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-page-layout .slider-container {
        height: 320px;
    }

    .single-page-layout .hero-title {
        font-size: 28px;
    }

    .sidebar-compact {
        font-size: 12px;
    }
}

/* Compact view scrollbar styling */
.sidebar-compact::-webkit-scrollbar {
    width: 6px;
}

.sidebar-compact::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-compact::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.sidebar-compact::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* ========================================
   iPad Compact Header
======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .top-bar {
        padding: 6px 0;
        font-size: 11px;
    }

    .main-header {
        padding: 15px 0;
    }

    .logo img,
    .logo-text {
        height: 42px;
        font-size: 28px;
    }

    .header-content {
        gap: 15px;
    }

    .search-category {
        min-width: 120px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .search-btn {
        padding: 10px 15px;
    }

    .call-info {
        font-size: 11px;
    }

    .call-number {
        font-size: 12px;
    }

    .icon-link {
        font-size: 18px;
        padding: 6px;
    }

    .main-nav {
        font-size: 12px;
    }

    .category-btn {
        padding: 12px 18px;
        font-size: 12px;
    }

    .nav-link {
        padding: 12px 10px;
        font-size: 11px;
    }

    /* Footer compact */
    .footer-features {
        padding: 20px 0;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 12px;
    }

    .footer-main {
        padding: 35px 0;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-contact li,
    .footer-links a {
        font-size: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* iPad Portrait - Everything visible in one screen */
@media (min-width: 768px) and (max-width: 820px) and (orientation: portrait) {
    .single-page-layout {
        zoom: 0.85;
        transform-origin: top center;
    }

    .page-layout-single {
        grid-template-columns: 200px 1fr;
        gap: 12px;
    }

    .slider-container {
        height: 280px !important;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-image {
        height: 200px !important;
    }

    .banners-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .promo-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-image {
        width: 100%;
    }

    /* Reduce all margins and padding */
    .section-header {
        margin-bottom: 15px;
    }

    .featured-products,
    .promo-banners,
    .cta-section,
    .deal-banner {
        margin-bottom: 20px !important;
    }
}

/* iPad Landscape - Optimized for 1024px width */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .page-layout-single {
        grid-template-columns: 240px 1fr;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ========================================
   One Page iPad View - All Content Visible
======================================== */
.ipad-one-page-view {
    height: 100vh;
    overflow: hidden;
}

.ipad-one-page-view .main-content {
    height: calc(100vh - 180px);
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Compact everything for single viewport */
.compact-view .hero-slider {
    margin-bottom: 15px;
}

.compact-view .slider-container {
    height: 280px;
}

.compact-view .hero-content {
    padding: 20px;
}

.compact-view .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.compact-view .hero-subtitle {
    font-size: 11px;
    margin-bottom: 8px;
}

.compact-view .hero-description {
    font-size: 13px;
    margin-bottom: 15px;
}

.compact-view .discount-badge {
    font-size: 20px;
    padding: 6px 16px;
    margin-bottom: 15px;
}

.compact-view .hero-buttons {
    gap: 10px;
}

.compact-view .btn {
    padding: 10px 20px;
    font-size: 12px;
}

.compact-view .promo-banners {
    margin-bottom: 20px;
}

.compact-view .banners-grid {
    gap: 12px;
}

.compact-view .promo-banner-content {
    padding: 15px;
}

.compact-view .promo-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.compact-view .promo-subtitle {
    font-size: 11px;
}

.compact-view .promo-description {
    font-size: 12px;
    margin-bottom: 10px;
}

.compact-view .promo-image img {
    height: 120px;
}

.compact-view .featured-products {
    margin-bottom: 20px;
}

.compact-view .section-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.compact-view .section-title {
    font-size: 18px;
}

.compact-view .products-grid {
    gap: 12px;
}

.compact-view .product-card {
    border-radius: 6px;
}

.compact-view .product-image {
    height: 180px;
}

.compact-view .product-info {
    padding: 12px;
}

.compact-view .product-name {
    font-size: 13px;
    margin-bottom: 8px;
    min-height: 36px;
}

.compact-view .product-rating {
    font-size: 12px;
    margin-bottom: 8px;
}

.compact-view .price-new {
    font-size: 16px;
}

.compact-view .price-old {
    font-size: 12px;
}

.compact-view .add-to-cart-btn {
    padding: 8px;
    font-size: 11px;
}

.compact-view .cta-section,
.compact-view .deal-banner {
    margin: 20px 0;
}

.compact-view .cta-banner,
.compact-view .deal-content {
    padding: 20px;
}

.compact-view .cta-content h2,
.compact-view .deal-title {
    font-size: 24px;
}

.compact-view .discount-price {
    font-size: 32px;
}

.compact-view .sidebar-widget {
    margin-bottom: 12px;
}

.compact-view .widget-title {
    font-size: 12px;
    padding: 10px 15px;
}

.compact-view .category-list-item a {
    padding: 8px 15px;
    font-size: 12px;
}

.compact-view .sidebar-banner {
    padding: 20px 15px;
}

.compact-view .sidebar-banner h3 {
    font-size: 20px;
}

.compact-view .sidebar-banner h4 {
    font-size: 12px;
}

/* Smooth scrolling for sections */
.compact-view .main-area {
    scroll-snap-type: y proximity;
}

.compact-view section {
    scroll-snap-align: start;
}


/* ========================================
   Compact Footer for iPad
======================================== */
.compact-view .main-footer {
    margin-top: 30px;
}

.compact-view .footer-features {
    padding: 20px 0;
}

.compact-view .features-grid {
    gap: 20px;
}

.compact-view .feature-icon {
    font-size: 32px;
}

.compact-view .feature-content h4 {
    font-size: 13px;
    margin-bottom: 3px;
}

.compact-view .feature-content p {
    font-size: 11px;
}

.compact-view .footer-main {
    padding: 30px 0;
}

.compact-view .footer-grid {
    gap: 25px;
}

.compact-view .footer-title {
    font-size: 13px;
    margin-bottom: 12px;
}

.compact-view .footer-contact li {
    margin-bottom: 10px;
    font-size: 11px;
}

.compact-view .footer-links li {
    margin-bottom: 8px;
}

.compact-view .footer-links a {
    font-size: 12px;
}

.compact-view .newsletter-text {
    font-size: 12px;
    margin-bottom: 15px;
}

.compact-view .newsletter-input {
    padding: 10px 12px;
    font-size: 12px;
}

.compact-view .newsletter-btn {
    width: 45px;
}

.compact-view .footer-brands {
    padding: 20px 0;
}

.compact-view .brands-slider {
    gap: 20px;
}

.compact-view .brand-item img {
    height: 32px;
}

.compact-view .footer-bottom {
    padding: 15px 0;
}

.compact-view .copyright {
    font-size: 11px;
}

.compact-view .payment-icons {
    font-size: 20px;
}

/* Navigation compact */
.compact-view .nav-menu {
    gap: 0;
}

.compact-view .nav-link {
    padding: 12px 12px;
    font-size: 11px;
}

.compact-view .category-btn {
    padding: 12px 20px;
    font-size: 12px;
}

/* Back to top button */
.compact-view .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
}


/* ========================================
   iPad Width - Narrow Layout (1024px max)
======================================== */
body {
    background-color: #f0f0f0;
}

.main-content {
    background-color: #ffffff;
    max-width: 1024px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

/* Top bar narrow */
.top-bar .container {
    max-width: 1024px;
}

/* Header narrow */
.main-header .container {
    max-width: 1024px;
}

/* Navigation narrow */
.main-nav .container {
    max-width: 1024px;
}

/* Footer narrow */
.main-footer {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-features .container,
.footer-main .container,
.footer-brands .container,
.footer-bottom .container {
    max-width: 1024px;
}

/* Center the entire site content */
.single-page-layout {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}

.single-page-layout .container,
.single-page-layout .container-fluid {
    max-width: 100%;
    padding: 0;
}

/* Page wrapper for centered look */
.page-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

/* Reduce grid columns for narrow view */
.single-page-layout .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Compact hero for narrow width */
.single-page-layout .slider-container {
    height: 350px;
}

.single-page-layout .hero-title {
    font-size: 32px;
}

/* Banners in narrow view */
.single-page-layout .banners-grid {
    grid-template-columns: repeat(2, 1fr);
}


/* ========================================
   iPad Width View - Centered 1024px Layout
======================================== */
.ipad-width-view {
    background: #e5e5e5;
    min-height: 100vh;
}

.page-wrapper {
    max-width: 1024px;
    min-width: 1024px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 50px rgba(0,0,0,0.15);
    position: relative;
}

/* Force all containers to 1024px */
.ipad-width-view .container,
.ipad-width-view .container-fluid {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

/* Top bar full width inside wrapper */
.ipad-width-view .top-bar {
    width: 100%;
}

/* Header adjustments */
.ipad-width-view .main-header {
    width: 100%;
}

/* Navigation */
.ipad-width-view .main-nav {
    width: 100%;
}

/* Main content area */
.ipad-width-view .main-content {
    width: 100%;
    background: white;
}

/* Footer stays inside wrapper */
.ipad-width-view .main-footer {
    width: 100%;
}

/* Page layout inside */
.ipad-width-view .page-layout,
.ipad-width-view .page-layout-single {
    max-width: 100%;
    padding: 0 15px;
}

/* Adjust grid for 1024px width */
.ipad-width-view .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Hero slider fit */
.ipad-width-view .slider-container {
    height: 360px;
}

.ipad-width-view .hero-title {
    font-size: 34px;
}

/* Banners grid */
.ipad-width-view .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Sidebar fit */
.ipad-width-view .sidebar {
    max-width: 240px;
}

/* Product cards optimized */
.ipad-width-view .product-image {
    height: 220px;
}

/* Footer grid */
.ipad-width-view .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Features grid */
.ipad-width-view .features-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Remove any overflow */
.ipad-width-view {
    overflow-x: auto;
}

/* Center wrapper on larger screens */
@media (min-width: 1025px) {
    .page-wrapper {
        margin: 20px auto;
        border-radius: 8px;
    }
}

/* Exact 1024px view */
@media (max-width: 1024px) {
    .page-wrapper {
        min-width: 100%;
        max-width: 100%;
    }
}


/* ========================================
   SVG Icons Styling
======================================== */
svg {
    display: inline-block;
    vertical-align: middle;
}

.social-link svg,
.language-selector svg,
.currency-selector svg {
    width: 14px;
    height: 14px;
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

.call-us svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.icon-link svg {
    width: 22px;
    height: 22px;
}

.category-btn svg {
    width: 16px;
    height: 16px;
}

.nav-link svg {
    width: 10px;
    height: 10px;
    margin-left: 3px;
}

.category-item svg {
    width: 12px;
    height: 12px;
    margin-left: auto;
}

/* SVG animations */
.icon-link:hover svg,
.social-link:hover svg {
    transform: scale(1.1);
    transition: var(--transition);
}

.nav-link:hover svg {
    transform: translateY(2px);
    transition: var(--transition);
}


/* ========================================
   Full Width Layout (No Sidebar)
======================================== */
.page-layout-full {
    display: block;
    width: 100%;
}

.main-area-full {
    width: 100%;
    max-width: 100%;
    display: block;
}

.page-layout-full .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

.page-layout-full .banners-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* ========================================
   Modern Search Bar & Auth Buttons
======================================== */
.search-bar {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,102,204,0.15);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--dark-color);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.search-btn:hover {
    background-color: #0052a3;
}

.search-btn svg {
    display: block;
}

/* Auth Buttons - SİYAH BEYAZ TASARIM */
.auth-btn {
    padding: 10px 28px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: 2px solid #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.login-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.login-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.register-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    margin-left: 10px;
}

.register-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cart-icon-btn {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    margin: 0 15px 0 0;
    color: var(--dark-color);
    background: transparent;
    transition: all 0.3s ease;
}

.cart-icon-btn:hover {
    color: var(--primary-color);
    background: transparent;
}

.cart-icon-btn svg {
    stroke: currentColor;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 8px;
    background: #28a745;
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    border: 2px solid var(--white);
}

.cart-total {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 4px;
    white-space: nowrap;
}

.cart-icon-btn:hover .cart-total {
    color: var(--primary-color);
}


/* ========================================
   Success Notification
======================================== */
.success-notification {
    position: fixed;
    top: 80px;
    right: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 18px 12px 16px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
}

.success-notification.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.success-notification::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.success-notification::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    animation: progress 3s linear;
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}


/* ========================================
   Pagination
======================================== */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-arrow {
    padding: 0;
    width: 40px;
}

.page-arrow svg {
    stroke: currentColor;
}

.page-item:first-child .page-link {
    border-radius: 4px 0 0 4px;
}

.page-item:last-child .page-link {
    border-radius: 0 4px 4px 0;
}


/* ========================================
   Auth Modals
======================================== */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.auth-modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Modal açıkken cart dropdown gizle */
.auth-modal.show ~ * .mini-cart-dropdown,
body:has(.auth-modal.show) .mini-cart-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.auth-modal-content {
    position: relative;
    background-color: #fff;
    padding: 25px;
    width: 90%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
}

.auth-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.auth-modal-close:hover {
    color: #000;
}

.auth-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.auth-submit-btn {
    width: 100%;
    padding: 11px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.auth-submit-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.forgot-password-link {
    text-align: center;
    margin: 10px 0 0 0;
}

.forgot-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.forgot-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.auth-switch-text {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.auth-switch-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-switch-link:hover {
    text-decoration: underline;
}

.auth-switch-link:hover {
    text-decoration: underline;
}

.social-login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.social-login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.social-login-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 13px;
}

.social-login-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.social-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.google-btn:hover {
    border-color: #4285F4;
    background: #f8f9ff;
}

.facebook-btn:hover {
    border-color: #1877F2;
    background: #f0f5ff;
}

.discord-btn:hover {
    border-color: #5865F2;
    background: #f5f6ff;
}

@media (max-width: 768px) {
    .auth-modal-content {
        padding: 25px 20px;
        width: 95%;
        max-width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-modal-title {
        font-size: 20px;
    }
}



/* ========================================
   HERO SLIDER RESPONSIVE TASARIM
======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .decorative-circles .circle {
        width: 65px;
        height: 65px;
        border-width: 1.3px;
    }
    
    .decorative-circles {
        padding: 6px 0;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .discount-badge {
        font-size: 28px;
        padding: 12px 30px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .slider-nav button {
        width: 45px;
        height: 45px;
    }
    
    .slider-prev {
        left: 20px;
    }
    
    .slider-next {
        right: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .decorative-circles .circle {
        width: 50px;
        height: 50px;
        border-width: 1.2px;
    }
    
    .decorative-circles {
        padding: 5px 0;
        gap: 2px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .discount-badge {
        font-size: 24px;
        padding: 10px 25px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 12px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .decorative-circles .circle {
        width: 40px;
        height: 40px;
        border-width: 1px;
    }
    
    .decorative-circles {
        padding: 4px 0;
        gap: 1px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 6px 15px;
        margin-bottom: 12px;
    }
    
    .discount-badge {
        font-size: 20px;
        padding: 8px 20px;
        border-radius: 8px;
    }
    
    .hero-discount {
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav button svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-dots {
        bottom: 15px;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
        border-width: 1px;
    }
    
    .dot.active {
        width: 20px;
    }
}


/* ========================================
   HER SLIDE İÇİN FARKLI GRADIENT RENK
======================================== */
.hero-slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
}

.hero-slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95) 0%, rgba(238, 90, 111, 0.95) 100%);
}

.hero-slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.95) 0%, rgba(45, 108, 253, 0.95) 100%);
}

.hero-slide:nth-child(4) {
    background: linear-gradient(135deg, rgba(252, 203, 144, 0.95) 0%, rgba(251, 174, 75, 0.95) 100%);
}


/* ========================================
   MODAL AÇIKKEN CART DROPDOWN GİZLE
======================================== */
body.modal-open .mini-cart-dropdown,
body.modal-open .cart-dropdown:hover .mini-cart-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

body.modal-open .header-actions-new,
body.modal-open .cart-dropdown {
    pointer-events: none;
}

body.modal-open .auth-modal {
    pointer-events: auto;
}


/* ========================================
   AUTH MODALS - SPLIT DESIGN (BİREBİR TASARIM)
======================================== */

/* Modal Container */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Backdrop Overlay */
.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Split Modal Box */
.auth-modal-split {
    position: relative;
    display: flex;
    width: 90%;
    max-width: 850px;
    height: auto;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.auth-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.auth-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.auth-close-btn svg {
    stroke: #fff;
}

/* Left Side - Form */
.auth-left {
    flex: 1;
    padding: 50px 45px;
    background: #fff;
}

.auth-logo {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
}

.logo-login {
    color: #000;
}

.logo-page {
    color: #000;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.form-subtitle {
    font-size: 12px;
    color: #999;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

/* Form */
.split-form {
    display: flex;
    flex-direction: column;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input {
    width: 100%;
    padding: 13px 16px;
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    background: #ebebeb;
}

.form-field input::placeholder {
    color: #999;
}

.form-link {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password {
    font-size: 11px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #667eea;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #333;
}

/* Social Login */
.social-login {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-text {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Right Side - Welcome */
.auth-right {
    flex: 1;
    padding: 60px 45px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-right-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.auth-right-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2);
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.welcome-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 0 35px 0;
    max-width: 280px;
    position: relative;
    z-index: 2;
}

.switch-modal-btn {
    padding: 13px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.switch-modal-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-modal-split {
        flex-direction: column;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .auth-left {
        padding: 35px 30px;
    }
    
    .auth-right {
        padding: 40px 30px;
    }
    
    .auth-right-logo {
        opacity: 0.12;
    }
    
    .form-row-split {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-text {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-left {
        padding: 30px 25px;
    }
    
    .auth-right-logo {
        opacity: 0.1;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .auth-logo {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}



/* ============================================
   User Account Button & Dropdown
   ============================================ */
.user-account-btn {
    position: relative;
}

.user-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px 5px 5px;
    background: #f5f5f5;
    border: 1.5px solid #e8e8e8;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.user-trigger-btn:hover {
    background: #fff;
    border-color: #bbb;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.user-trigger-btn:hover .user-chevron {
    transform: rotate(180deg);
}
.user-chevron {
    transition: transform .2s;
    color: #888;
    flex-shrink: 0;
}

/* Trigger'daki küçük yuvarlak avatar */
.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    overflow: hidden;
}
.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-display-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Dropdown ---- */
.user-account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    min-width: 260px;
    z-index: 10000;
    overflow: hidden;
    animation: uadSlide .18s ease;
}
.user-account-dropdown.open { display: block; }
@keyframes uadSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Profil başlığı */
.uad-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px 14px;
    background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
}

/* Yuvarlak büyük avatar */
.uad-avatar-wrap {
    flex-shrink: 0;
    position: relative;
}
.uad-avatar-wrap label {
    display: block;
    cursor: pointer;
    position: relative;
}
.uad-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    border: 3px solid rgba(255,255,255,.3);
    overflow: hidden;
    transition: border-color .2s;
}
.uad-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.uad-avatar-wrap label:hover .uad-avatar {
    border-color: rgba(255,255,255,.7);
}
/* Kamera ikonu */
.uad-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
    color: #333;
}

/* İsim, email, hint */
.uad-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1;
}
.uad-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uad-email {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uad-upload-hint {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 2px;
}

.uad-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 3px 0;
}

/* Menü linkleri */
.uad-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background .15s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    font-family: inherit;
    text-align: left;
}
.uad-item:hover {
    background: #f5f5f5;
    color: #111;
}
.uad-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
    stroke: #888;
    transition: stroke .15s;
}
.uad-item:hover svg { stroke: #333; }

/* Admin */
.uad-admin { color: #1976d2; font-weight: 600; }
.uad-admin svg { stroke: #1976d2; }
.uad-admin:hover { background: #e3f2fd; }
.uad-badge {
    margin-left: auto;
    background: #1976d2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
}

/* Resim yükle */
.uad-upload-btn { color: #555; }
.uad-upload-btn svg { stroke: #555; }
.uad-upload-btn:hover { background: #f0f4ff; color: #3730a3; }
.uad-upload-btn:hover svg { stroke: #3730a3; }

/* Çıkış */
.uad-logout { color: #e53935; }
.uad-logout svg { stroke: #e53935; }
.uad-logout:hover { background: #fff5f5; }


/* Product Card Görselleri */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 5px;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.placeholder-text {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    padding: 0 15px;
}

.placeholder-size {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.8;
}


/* ========================================
   STORY CIRCLES - ÜST DAİRELER
======================================== */
.story-circles-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    background: #fff;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.story-circles-container::-webkit-scrollbar {
    height: 4px;
}

.story-circles-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.story-circles-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.story-circle-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 80px;
}

.story-circle-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.story-circle-border {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    padding: 3px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #3498db, #9b59b6) border-box;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.story-circle-border:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.story-circle-border.placeholder {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ddd, #ccc) border-box;
}

.story-circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.story-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-title {
    font-size: 11px;
    color: #333;
    font-weight: 600;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .story-circles-container {
        padding: 15px 10px;
        gap: 14px;
    }
    
    .story-circle-border {
        width: 65px;
        height: 65px;
    }

    .story-circle-wrapper {
        min-width: 65px;
    }
    
    .story-title {
        font-size: 10px;
        max-width: 65px;
    }
}


/* ========================================
   NEW PRODUCT CARDS - BLACK & WHITE MODERN DESIGN
   NO PURPLE! ONLY BLACK, WHITE & GOLD
======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card-new {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000 0%, #D4AF37 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card-new:hover::before {
    transform: scaleX(1);
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: #D4AF37;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f8f8f8;
    overflow: hidden;
    border-bottom: 2px solid #000000;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-image-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    stroke: #cccccc;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.badge-new {
    background: #000000;
    color: #ffffff;
}

.badge-sale {
    background: #D4AF37;
    color: #000000;
}

.badge-stock {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.product-card-new:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-new {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}

.action-btn-new:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.1);
}

.action-btn-new.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000000;
}

.action-btn-new svg {
    width: 20px;
    height: 20px;
}

.product-info-new {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    background: #ffffff;
}

.product-category-new {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999999;
}

.product-title-new {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title-new:hover {
    color: #D4AF37;
}

.product-rating-new {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-new {
    display: flex;
    gap: 2px;
}

.stars-new svg {
    width: 14px;
    height: 14px;
}

.star-filled {
    fill: #D4AF37;
    stroke: #D4AF37;
}

.star-empty {
    fill: none;
    stroke: #cccccc;
}

.rating-count-new {
    font-size: 11px;
    color: #999999;
    font-weight: 500;
}

.product-price-new {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: auto;
}

.price-current {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
}

.price-original {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    text-decoration: line-through;
}

.price-discount {
    font-size: 12px;
    font-weight: 700;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 0;
    margin-left: auto;
}

.product-footer-new {
    padding: 0 24px 24px 24px;
}

.add-to-cart-btn-new {
    width: 100%;
    padding: 16px;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #000000;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn-new:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.add-to-cart-btn-new svg {
    width: 18px;
    height: 18px;
}

/* Product Grid Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-image-wrapper {
        height: 280px;
    }
    
    .product-info-new {
        padding: 20px;
    }
    
    .product-title-new {
        font-size: 14px;
        min-height: 40px;
    }
    
    .price-current {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Loading State */
.product-card-skeleton {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-content {
    padding: 24px;
}

.skeleton-line {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 12px;
    border-radius: 4px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.long {
    width: 90%;
}

/* Empty State */
.products-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.products-empty-state svg {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    stroke: #cccccc;
}

.products-empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.products-empty-state p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 30px;
}

.browse-products-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.browse-products-btn:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Section Titles */
.section-title-new {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin: 60px 0 40px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title-new::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000000 0%, #D4AF37 100%);
}

.section-subtitle-new {
    text-align: center;
    font-size: 14px;
    color: #999999;
    margin-top: 20px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}


/* ========================================
   AUTH MODALS - SPLIT DESIGN
======================================== */

/* Modal Temel - varsayılan gizli */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.auth-modal.show {
    display: flex;
}

/* Arka Plan Overlay */
.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Modal Kutusu - Split */
.auth-modal-split {
    position: relative;
    z-index: 1;
    display: flex;
    width: 880px;
    max-width: 95vw;
    min-height: 540px;
    max-height: 95vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from { transform: scale(0.88) translateY(30px); opacity: 0; }
    to   { transform: scale(1) translateY(0);       opacity: 1; }
}

/* Kapatma Butonu */
.auth-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}

.auth-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sol Taraf - Form */
.auth-left {
    flex: 1;
    background: #ffffff;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.auth-logo {
    margin-bottom: 28px;
}

.logo-login {
    font-size: 22px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-page {
    font-size: 22px;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 4px;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 28px;
}

.split-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row-split {
    display: flex;
    gap: 12px;
}

.form-row-split .form-field {
    flex: 1;
}

.form-field input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-field input:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-link {
    text-align: right;
    margin-top: -6px;
}

.forgot-password {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}

.forgot-password:hover {
    color: #000;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}

.submit-btn:hover {
    background: #D4AF37;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

/* Sosyal Giriş */
.social-login {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.social-text {
    font-size: 13px;
    color: #aaa;
    white-space: nowrap;
}

.social-login .social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 0;
}

.social-icon:hover {
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Sağ Taraf - Tanıtım */
.auth-right {
    width: 300px;
    background: linear-gradient(145deg, #000000 0%, #1a1a1a 100%);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
}

.auth-right-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 28px;
    border: 3px solid rgba(212, 175, 55, 0.6);
    background: #fff;
}

.auth-right-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.welcome-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.switch-modal-btn {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.switch-modal-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* Responsive Modal */
@media (max-width: 640px) {
    .auth-modal-split {
        flex-direction: column;
        width: 92vw;
        max-height: 90vh;
    }

    .auth-right {
        width: 100%;
        padding: 24px;
        min-height: auto;
    }

    .auth-left {
        padding: 32px 24px;
    }

    .form-row-split {
        flex-direction: column;
    }
}


/* ========================================
   FOOTER STYLES
======================================== */

.main-footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
}

/* Footer Features Bar */
.footer-features {
    background: #000;
    padding: 28px 0;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.feature-icon {
    color: #D4AF37;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3px;
}

.feature-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* Footer Main */
.footer-main {
    padding: 56px 0 40px;
}

.footer-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sol Bilgi Bölümü */
.footer-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* İletişim Kartı */
.footer-info-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid #D4AF37;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #000;
}

.info-card-header svg {
    color: #D4AF37;
    flex-shrink: 0;
}

.info-card-header h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.6;
}

.info-card-content strong {
    color: #000;
}

/* Hızlı Linkler */
.footer-quick-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.quick-links-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #D4AF37;
    white-space: nowrap;
}

.quick-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-links-col ul li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.quick-links-col ul li a:hover {
    color: #000;
}

/* Newsletter & Sosyal */
.footer-social-newsletter {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.newsletter-compact h5,
.social-compact h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 12px;
}

.newsletter-form-compact {
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    max-width: 280px;
}

.newsletter-form-compact input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    font-size: 12px;
    font-family: inherit;
    background: #fafafa;
}

.newsletter-form-compact button {
    padding: 10px 14px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.newsletter-form-compact button:hover {
    background: #D4AF37;
}

.newsletter-message {
    font-size: 12px;
    margin-top: 8px;
    min-height: 18px;
}

.social-icons-compact {
    display: flex;
    gap: 10px;
}

.social-icons-compact a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icons-compact a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* Sağ Harita Bölümü */
.footer-map-section {
    width: 340px;
    flex-shrink: 0;
}

.footer-map-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #D4AF37;
}

.map-container {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Footer Brands */
.footer-brands {
    background: #f8f8f8;
    padding: 24px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.brands-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background: #000;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.payment-methods {
    display: flex;
    align-items: center;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.back-to-top.visible,
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-content-wrapper {
        flex-direction: column;
    }

    .footer-map-section {
        width: 100%;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .footer-quick-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social-newsletter {
        flex-direction: column;
        gap: 20px;
    }

    .features-grid {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ============================================================
   SITE FOOTER - Sıfırdan Yeni Tasarım (sf-* prefix)
   ============================================================ */

/* ---- 1. Özellikler Şeridi ---- */
.site-footer {
    background: #111;
    color: #ccc;
    font-family: var(--font-primary);
    margin-top: 0;
}

.sf-features {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 30px 0;
}

.sf-features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sf-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
}

.sf-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    flex-shrink: 0;
}

.sf-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sf-feature-text strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
}

.sf-feature-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ---- 2. Ana Gövde ---- */
.sf-body {
    padding: 60px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sf-body-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* ---- Kolonlar ---- */
.sf-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
}

/* ---- Marka Kolonu ---- */
.sf-logo {
    margin-bottom: 18px;
}

.sf-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sf-about-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
}

.sf-social {
    display: flex;
    gap: 10px;
}

.sf-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: all 0.25s ease;
    text-decoration: none;
}

.sf-social-link:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
    transform: translateY(-3px);
}

/* ---- Link Listesi ---- */
.sf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf-links li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-links li a:hover {
    color: #D4AF37;
    padding-left: 4px;
}

.sf-links li a svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.sf-links-account li a {
    font-weight: 500;
}

/* ---- İletişim Bloğu ---- */
.sf-contact-block {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.sf-contact-item svg {
    color: #D4AF37;
    flex-shrink: 0;
}

/* ---- Bülten Kolonu ---- */
.sf-newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sf-newsletter-form {
    display: flex;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: border-color 0.25s;
}

.sf-newsletter-form:focus-within {
    border-color: #D4AF37;
}

.sf-newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
    font-size: 13px;
    font-family: var(--font-primary);
    color: #fff;
}

.sf-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.sf-newsletter-form button {
    padding: 11px 16px;
    background: #D4AF37;
    border: none;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.sf-newsletter-form button:hover {
    background: #c9a22e;
}

.sf-newsletter-msg {
    font-size: 12px;
    min-height: 18px;
    margin-top: 4px;
}

/* ---- Ödeme Rozetleri ---- */
.sf-payment-badges {
    margin-top: 28px;
}

.sf-payment-badges h5 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
}

.sf-payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-pay-badge {
    padding: 5px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
}

/* ---- 3. Alt Şerit ---- */
.sf-bottom {
    padding: 18px 0;
    background: #000;
}

.sf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sf-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.sf-copyright strong {
    color: rgba(255,255,255,0.7);
}

.sf-bottom-links {
    display: flex;
    gap: 20px;
}

.sf-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.sf-bottom-links a:hover {
    color: #D4AF37;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .sf-body-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .sf-col-brand {
        grid-column: span 3;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 24px;
        align-items: start;
    }

    .sf-col-brand .sf-col-title {
        display: none;
    }
}

@media (max-width: 768px) {
    .sf-features-grid {
        gap: 16px;
    }

    .sf-feature {
        min-width: calc(50% - 8px);
    }

    .sf-body-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sf-col-brand {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .sf-body {
        padding: 40px 0 32px;
    }
}

@media (max-width: 480px) {
    .sf-feature {
        min-width: 100%;
    }

    .sf-body-grid {
        grid-template-columns: 1fr;
    }

    .sf-col-brand {
        grid-column: span 1;
    }

    .sf-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .sf-bottom-links {
        justify-content: center;
    }
}

/* ============================================================
   BİLDİRİM DROPDOWN
============================================================ */
.notif-wrapper {
    position: relative;
}

.notif-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    transition: background .2s, transform .2s;
}
.notif-btn:hover { background: #e8e8e8; transform: scale(1.05); }

.notif-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid #fff;
    line-height: 1;
    pointer-events: none;
}
.notif-badge.hidden { display: none; }

/* Dropdown kutusu */
.notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    z-index: 9999;
    border-radius: 0;
    overflow: hidden;
    animation: notifSlide .22s ease;
}
.notif-dropdown.open { display: block; }

@keyframes notifSlide {
    from { opacity:0; transform:translateY(8px); }
    to   { opacity:1; transform:translateY(0); }
}

/* Başlık */
.notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #f0f0f0;
}
.notif-head-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: .3px;
}
.notif-head-actions {
    display: flex;
    gap: 8px;
}
.notif-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}
.notif-action-btn:hover { background: #f5f5f5; color: #111; border-color: #bbb; }
.notif-clear-btn:hover { background: #fff5f5; color: #e53935; border-color: #e53935; }

/* Liste */
.notif-list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
.notif-list::-webkit-scrollbar { width: 3px; }
.notif-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

/* Bildirim satırı */
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid #f7f7f7;
    cursor: pointer;
    transition: background .15s;
    position: relative;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: #fafafa; }
.notif-item.unread { background: #fffbf0; }
.notif-item.unread:hover { background: #fff8e1; }

/* İkon */
.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.notif-icon-order  { background: #e3f2fd; color: #1976d2; }
.notif-icon-promo  { background: #fff8e1; color: #f57c00; }
.notif-icon-user   { background: #f3e5f5; color: #7b1fa2; }
.notif-icon-system { background: #e8f5e9; color: #388e3c; }

/* İçerik */
.notif-content { flex: 1; min-width: 0; }
.notif-text {
    font-size: 13px;
    color: #222;
    font-weight: 500;
    margin: 0 0 3px;
    line-height: 1.4;
}
.notif-item.read .notif-text { color: #888; font-weight: 400; }
.notif-time {
    font-size: 11px;
    color: #aaa;
}

/* Okunmamış nokta */
.notif-dot {
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.notif-item.read .notif-dot { display: none; }

/* Boş durum */
.notif-empty {
    padding: 32px 16px;
    text-align: center;
}
.notif-empty p {
    margin: 10px 0 0;
    font-size: 13px;
    color: #bbb;
}

@keyframes bellShake {
    0%,100% { transform: rotate(0); }
    20%      { transform: rotate(-15deg); }
    40%      { transform: rotate(15deg); }
    60%      { transform: rotate(-10deg); }
    80%      { transform: rotate(10deg); }
}


/* ========================================
   USER ACCOUNT DROPDOWN - Profil Menüsü
======================================== */
.user-account-btn {
    position: relative;
    flex-shrink: 0;
}

.user-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 7px;
    background: #f4f4f4;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
    color: #222;
}

.user-trigger-btn:hover {
    background: #e8e8e8;
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-display-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-chevron {
    color: #666;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

/* Dropdown kutusu */
.user-account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
    z-index: 99999;
    overflow: hidden;
    animation: uadSlide 0.2s ease;
}

.user-account-dropdown.open {
    display: block;
}

@keyframes uadSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header kısmı: avatar + isim + email */
.uad-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.uad-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.uad-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: border-color 0.2s;
}

.uad-avatar:hover {
    border-color: #6366f1;
}

.uad-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uad-avatar-edit {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #6366f1;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.uad-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.uad-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uad-email {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uad-upload-hint {
    font-size: 10px;
    color: #a0aec0;
    margin-top: 2px;
}

/* Ayraç */
.uad-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

/* Menü öğeleri */
.uad-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.uad-item:hover {
    background: #f8fafc;
    color: #1e293b;
}

.uad-item svg {
    color: #94a3b8;
    flex-shrink: 0;
    transition: color 0.15s;
}

.uad-item:hover svg {
    color: #6366f1;
}

/* Admin öğesi */
.uad-admin {
    color: #7c3aed;
    font-weight: 700;
}

.uad-admin svg {
    color: #7c3aed;
}

.uad-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: #ede9fe;
    color: #7c3aed;
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    letter-spacing: 0.3px;
}

/* Yükle butonu */
.uad-upload-btn {
    color: #374151;
}

/* Çıkış */
.uad-logout {
    color: #ef4444;
}

.uad-logout svg {
    color: #ef4444;
}

.uad-logout:hover {
    background: #fff5f5;
    color: #dc2626;
}

.uad-logout:hover svg {
    color: #dc2626;
}
