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

:root {
    --primary-color: #ff6000;
    --secondary-color: #e55a00;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #ff6000, #ff7a1a);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(255, 96, 0, 0.2);
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.user-actions a {
    color: var(--white);
    margin-left: 20px;
    transition: var(--transition);
}

.user-actions a:hover {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    max-width: 100%;
    overflow: visible;
}

.logo {
    flex: 0 0 auto;
    margin-right: 20px;
    margin-left: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    background: linear-gradient(135deg, #ff6000, #ff7a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 96, 0, 0.2);
}

.search-bar {
    flex: 1;
    display: flex;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-width: 400px;
}

.search-bar input {
    width: 100%;
    padding: 14px 22px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 96, 0, 0.1);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button i {
    font-size: 14px;
}

/* Auth Buttons */
.auth-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.auth-btn.primary {
    background: linear-gradient(135deg, #ff6000, #e55a00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.3);
}

.auth-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 96, 0, 0.4);
    background: linear-gradient(135deg, #e55a00, #cc5200);
}

.auth-btn.secondary {
    background: transparent;
    color: #ff6000;
    border-color: #ff6000;
}

.auth-btn.secondary:hover {
    background: #ff6000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.3);
}

.auth-btn.seller {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.auth-btn.seller:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.auth-btn.seller-login {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.auth-btn.seller-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.auth-btn.influencer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.auth-btn.influencer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.auth-btn.influencer-login {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.auth-btn.influencer-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

/* Modern Auth Dropdowns - Yeni Şık Tasarım */
.modern-auth-dropdowns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.auth-dropdown-container {
    position: relative;
    display: inline-block;
}

/* Modern Dropdown Button */
.modern-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.modern-dropdown-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-dropdown-btn:hover:before {
    left: 100%;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.modern-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.modern-dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Login Button Style */
.login-btn {
    background: linear-gradient(135deg, #ff6000, #e55a00);
    color: white;
}

.login-btn:hover {
    background: linear-gradient(135deg, #e55a00, #cc5200);
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.4);
}

/* Register Button Style */
.register-btn {
    background: transparent;
    color: #ff6000;
    border: 2px solid #ff6000;
}

.register-btn:hover {
    background: #ff6000;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

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

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #ff6000, #e55a00);
    color: white;
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.modern-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover:before {
    left: 100%;
}

.modern-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.modern-btn:hover i {
    transform: scale(1.1);
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Satıcı Ol - Yeşil Gradient */
.btn-seller {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-seller:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* Satıcı Girişi - Mavi Gradient */
.btn-seller-login {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-seller-login:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* Influencer Başvuru - Turuncu Gradient */
.btn-influencer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-influencer:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* Influencer Girişi - Mor Gradient */
.btn-influencer-login {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.btn-influencer-login:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* Giriş Yap - Ana Renk Gradient */
.btn-login {
    background: linear-gradient(135deg, #ff6000, #e55a00);
    color: white;
}

.btn-login:hover {
    background: linear-gradient(135deg, #e55a00, #cc5200);
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.4);
}

/* Üye Ol - Çerçeveli Tasarım */
.btn-register {
    background: transparent;
    color: #ff6000;
    border: 2px solid #ff6000;
}

.btn-register:hover {
    background: #ff6000;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.3);
}

/* Dropdown menülerin daha iyi görünmesi için */
.auth-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 99999 !important;
}

/* Dropdown item'ların daha belirgin olması için */
.auth-dropdown-item {
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
}

.auth-dropdown-item i {
    font-weight: 600 !important;
}

/* Auth Menu Styles */
.auth-menu {
    position: relative;
    display: inline-block;
}

.auth-menu-toggle {
    background: linear-gradient(135deg, #ff6000, #ff7a1a) !important;
    border: 1px solid #ff6000 !important;
    color: white !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none !important;
    outline: none !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(255, 96, 0, 0.2);
}

.auth-menu-toggle:hover {
    background: linear-gradient(135deg, #e55a00, #ff6000) !important;
    border-color: #e55a00 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
}

.auth-menu-toggle i:last-child {
    font-size: 12px;
    transition: transform 0.3s;
}

.auth-menu-toggle.active i:last-child {
    transform: rotate(180deg);
}

.auth-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background-color: white !important;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-radius: 8px;
    z-index: 99999;
    margin-top: 5px;
    border: 2px solid #e0e0e0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.auth-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 99999 !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-dropdown-item {
    display: flex !important;
    align-items: center;
    padding: 12px 15px;
    color: #222 !important;
    text-decoration: none !important;
    transition: background-color 0.3s;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    background-color: white !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
}

.auth-dropdown-item:last-child {
    border-bottom: none;
}

.auth-dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #ff6000 !important;
}

.auth-dropdown-item i {
    width: 16px;
    text-align: center;
    color: #ff6000 !important;
}

/* Eski auth-btn stilleri - artık kullanılmıyor */
.auth-btn {
    display: none !important;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s;
    animation: shimmer 2s infinite;
}

.auth-btn:hover::before {
    left: 100%;
    animation: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Satıcı Ol */
.auth-btn:nth-child(1) {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.auth-btn:nth-child(1):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Satıcı Girişi */
.auth-btn:nth-child(2) {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.auth-btn:nth-child(2):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Giriş Yap */
.auth-btn:nth-child(3) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.auth-btn:nth-child(3):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Influencer Girişi */
.auth-btn:nth-child(3) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.auth-btn:nth-child(3):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Giriş Yap */
.auth-btn:nth-child(4) {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.auth-btn:nth-child(4):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Üye Ol */
.auth-btn:nth-child(5) {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.auth-btn:nth-child(5):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.auth-btn i {
    font-size: 14px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.search-bar button:hover {
    background: linear-gradient(135deg, var(--secondary-color), #cc5200);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 96, 0, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    justify-content: flex-end;
    position: relative;
    flex-wrap: wrap;
}

.action-item {
    position: relative;
    color: #ff6000;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.action-item:hover {
    color: #e55a00;
    transform: scale(1.05);
    background-color: rgba(255, 96, 0, 0.1);
}

.action-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6000, #ff4444);
    color: var(--white);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 96, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin-left: -120px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 25px;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-menu .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.nav-menu .highlight:hover::before {
    left: 100%;
}

.nav-menu .highlight:hover {
    background: linear-gradient(135deg, var(--secondary-color), #cc5200);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 96, 0, 0.4);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 30px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-column h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) 1;
    font-weight: 600;
}

.category-column ul {
    list-style: none;
}

.category-column li {
    margin-bottom: 10px;
}

.category-column a {
    color: var(--text-secondary);
    padding: 5px 0;
    display: block;
}

.category-column a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 20px 0;
}

.hero-slider {
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 50%, #ff6000 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.3);
}

.slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Badge Container */
.hero-badge-container {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    animation: pulse 2s infinite;
}

.hero-badge.premium {
    background: linear-gradient(135deg, rgba(255,215,0,0.9), rgba(255,193,7,0.8));
    color: #333;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.hero-badge.limited {
    background: linear-gradient(135deg, rgba(255,87,34,0.9), rgba(244,67,54,0.8));
    color: white;
    box-shadow: 0 4px 15px rgba(255,87,34,0.3);
}

/* Hero Title */
.hero-title-container {
    margin-bottom: 30px;
}

.hero-main-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.title-highlight {
    color: #FFD700;
    display: block;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    font-size: 0.8em;
    color: rgba(255,255,255,0.9);
}

.hero-subtitle p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.subtitle-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}

.decoration-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 160px;
}

.stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFD700;
}

.stat-content strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.stat-content span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #ff6000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.hero-btn-primary:hover .btn-shine {
    left: 100%;
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.hero-features .feature-item i {
    color: #FFD700;
    font-size: 16px;
}

/* Hero Visual */
.slide-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

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

.floating-elements {
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.98);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.5);
    min-width: 200px;
    z-index: 1;
    opacity: 0.3;
    visibility: visible;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s ease-in-out;
    right: 30px;
    top: 25%;
    transform-origin: center;
}

.floating-card.active {
    opacity: 1;
    z-index: 10;
    transform: scale(1) translateY(0);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.floating-card.card-2 {
    position: relative;
    overflow: visible;
    z-index: 5;
}

/* Dekoratif şekiller */
.decorative-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Mikro Influencerlar için hover efektleri */
.influencer-card {
    transition: all 0.3s ease;
}

.influencer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.influencer-card button:hover {
    background: #e55a00 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,96,0,0.3);
}

.influencer-card img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}





.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6000, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(255,96,0,0.3);
}

.card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--light-color);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
}

/* Section Styles */
.section-title {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

/* Categories Section */
.popular-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.category-card:hover .category-icon i {
    color: var(--white);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.category-card span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Products Section */
.featured-products {
    padding: 80px 0;
    background-color: var(--white);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--danger-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.product-badge.new {
    background-color: var(--success-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--light-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-seller {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: var(--warning-color);
    font-size: 14px;
}

.product-rating span {
    color: var(--text-secondary);
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 16px;
}

.current-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.cta-content {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-image img {
    max-width: 400px;
}

/* Newsletter */
.newsletter {
    background-color: var(--dark-color);
    padding: 60px 0;
    color: var(--white);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
}

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

.payment-methods img {
    height: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .mega-menu {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .header-main .search-bar {
        width: 400px;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info span {
        display: block;
        margin: 5px 0;
    }

    .header-main .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-main .search-bar {
        width: 100%;
        max-width: none;
        flex: 1;
        margin: 0 10px;
        min-width: auto;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        gap: 4px;
        flex-wrap: wrap;
        margin-right: 0;
    }

    .action-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 6px 8px;
    }

    .action-text {
        font-size: 12px;
    }

    .auth-buttons {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        min-width: auto;
        margin-right: 0;
    }

    .auth-menu-toggle {
        font-size: 13px;
        padding: 6px 12px;
        background: linear-gradient(135deg, #ff6000, #ff7a1a) !important;
        border: 1px solid #ff6000 !important;
        color: white !important;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        box-shadow: 0 2px 8px rgba(255, 96, 0, 0.2);
    }

    .auth-dropdown {
        min-width: 180px;
        right: -10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Ana içerik düzenlemeleri */
    .main-layout {
        padding-bottom: 70px; /* Bottom nav için alan bırak */
    }

    .left-sidebar {
        width: 100%;
        height: auto;
        position: static;
        margin-bottom: 15px;
    }

    .category-list {
        border-top: 1px solid #f0f0f0;
    }

    .category-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .category-item:last-child {
        border-bottom: none;
    }

    .category-item a {
        padding: 15px;
    }

    /* Hero Section düzenlemeleri */
    .hero {
        padding: 15px;
        background: linear-gradient(135deg, #ff6000, #ff7a1a);
    }

    .hero-slider {
        min-height: auto;
        box-shadow: none;
        background: none;
    }

    .slide {
        padding: 20px 10px;
        display: block;
    }

    .hero-badge-container {
        justify-content: center;
        margin-bottom: 15px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .hero-title-container {
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .title-highlight {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .title-main {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .title-accent {
        font-size: 16px;
    }

    .hero-subtitle p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 20px;
    }

    .stat-card {
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 10px;
        text-align: center;
        min-width: auto;
    }

    .stat-content strong {
        font-size: 18px;
        color: #fff;
        display: block;
        margin-bottom: 2px;
    }

    .stat-content span {
        font-size: 11px;
        color: rgba(255,255,255,0.9);
        text-transform: uppercase;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10px;
    }

    .slide {
        padding: 15px 5px;
    }

    .hero-main-title {
        font-size: 16px;
    }

    .title-highlight {
        font-size: 12px;
    }

    .title-main {
        font-size: 18px;
    }

    .title-accent {
        font-size: 14px;
    }

    .hero-subtitle p {
        font-size: 11px;
        padding: 0 5px;
    }

    .header-main .logo img {
        max-height: 80px;
        width: auto;
        height: auto;
    }

    .hero-stats {
        padding: 0 10px;
        gap: 8px;
    }

    .stat-card {
        padding: 8px;
    }

    .stat-content strong {
        font-size: 16px;
    }

    .stat-content span {
        font-size: 10px;
    }

    .action-item {
        min-width: 100px;
        padding: 4px 6px;
    }

    .action-text {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-main .logo img {
        max-height: 60px;
        width: auto;
        height: auto;
    }

    .search-bar input {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .user-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .user-actions a {
        margin: 0 5px;
    }

    .auth-buttons {
        gap: 3px;
    }

    .auth-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 20px;
        min-height: 36px;
        background: linear-gradient(135deg, #ff6000, #ff7a1a) !important;
        border: 1px solid #ff6000 !important;
        color: white !important;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        box-shadow: 0 2px 8px rgba(255, 96, 0, 0.2);
    }

    /* Form Elements Responsive */
    .input-group {
        margin-bottom: 15px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    .btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    /* Card Elements Responsive */
    .card {
        padding: 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }
}

/* Tablet Landscape Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .container {
        max-width: 960px;
    }

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

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

/* Print Styles */
@media print {
    .header-top,
    .header-main .search-bar,
    .header-actions,
    .main-nav,
    .footer {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f3f4f6;
        --text-secondary: #d1d5db;
        --border-color: #374151;
        --light-color: #1f2937;
    }

    body {
        background-color: #111827;
    }

    .header,
    .card,
    .footer {
        background-color: #1f2937;
    }

    .nav-menu > li > a:hover {
        background-color: #374151;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Kategori Sayfası Stilleri */
.category-header {
    background: linear-gradient(135deg, #ff6000, #ff7a1a);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}

.category-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-header h1 {
    font-size: 32px;
    margin: 0 0 10px;
    color: white;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

/* Alt Kategoriler */
.subcategories {
    margin-bottom: 40px;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.subcategory-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #ff6000;
}

.subcategory-icon {
    font-size: 32px;
    color: #ff6000;
    margin-bottom: 15px;
}

.subcategory-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.product-count {
    font-size: 12px;
    color: #666;
}

/* Filtreler */
.listing-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.filters {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eee;
}

.filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group h3 {
    font-size: 16px;
    margin: 0 0 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox, .radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }

    .filters {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .filters.active {
        left: 0;
    }
}

@media (max-width: 768px) {
    .category-header {
        padding: 20px 0;
    }

    .category-header h1 {
        font-size: 24px;
    }

    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .subcategory-grid {
        grid-template-columns: 1fr;
    }
}

/* Left Sidebar */
.left-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: transparent;
    position: sticky;
    top: 20px;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    z-index: 10;
    padding-bottom: 20px;
    display: block !important;
}

/* Main Layout */
.main-layout {
    display: flex;
    gap: 30px;
    padding: 0;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Category List Styles */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.category-item {
    display: block !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.category-item:first-child {
    background-color: #FFF3E0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.category-item a:hover {
    background-color: rgba(255,96,0,0.05);
}

.category-item i {
    margin-right: 10px;
    color: #666;
    width: 20px;
    text-align: center;
}

.product-count {
    margin-left: auto;
    color: #666;
    font-size: 0.9em;
}

/* Mobil görünüm için düzenlemeler */
@media screen and (max-width: 768px) {
    .left-sidebar {
        width: 100%;
        height: auto !important;
        min-height: auto;
        position: static;
        margin-bottom: 15px;
        display: block !important;
    }

    .main-layout {
        flex-direction: column;
        padding: 0 10px;
    }

    .category-list {
        display: block !important;
        height: auto !important;
    }

    .category-item {
        display: block !important;
    }
}

.sidebar-title.orange-bg {
    background-color: #FF6600;
    color: white;
    padding: 15px;
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.category-item {
    display: block !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.category-item:first-child {
    background-color: #FFF3E0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.category-item a:hover {
    background-color: rgba(255,96,0,0.05);
}

.category-item i {
    margin-right: 10px;
    color: #666;
    width: 20px;
    text-align: center;
}

.product-count {
    margin-left: auto;
    color: #666;
    font-size: 0.9em;
} 