/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #F77F00;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --success: #06D6A0;
    --warning: #FFD23F;
    --danger: #EF476F;
    --white: #FFFFFF;
    --text: #2D3142;
    --border: #E8E8E8;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.animate-slide-in {
    animation: slideInLeft 0.6s ease-out;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-icon {
    position: relative;
    padding: 8px 12px;
    font-size: 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 30px var(--shadow);
}

.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info a {
    color: var(--white);
    margin-right: 20px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent);
}

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

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

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

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

.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.text-logo h1 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.text-logo span {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.text-logo:hover h1 {
    color: var(--accent);
}

.logo h1 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo h1:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-btn {
    position: relative;
}

.cart-count, .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
    font-weight: bold;
}

.notification-badge {
    background: #dc3545;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Alert */
.alert {
    padding: 20px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-bottom: 3px solid;
    animation: slideDown 0.3s ease-out;
    position: relative;
    z-index: 999;
}

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

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-success::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 5px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.alert-error::before {
    content: "✗ ";
    font-weight: bold;
    margin-right: 5px;
}

.alert .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Slider */
.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.3) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #FFFFFF;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        -1px -1px 2px rgba(0,0,0,0.6),
        1px 1px 3px rgba(0,0,0,0.7),
        0 0 20px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        -1px -1px 2px rgba(0,0,0,0.6),
        1px 1px 3px rgba(0,0,0,0.7),
        0 0 15px rgba(0,0,0,0.5);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content .btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--beyaz);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0,0,0,0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

/* Avantajlar */
.advantages {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

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

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
    border-color: var(--primary);
}

.advantage-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.advantage-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent);
}

.advantage-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
    font-weight: 600;
}

.advantage-item p {
    color: var(--text);
    opacity: 0.8;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.3;
}

/* Ürünler */
.featured-products, .categories, .brands {
    padding: 60px 0;
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary);
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--siyah);
}

.product-info .price {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info .price::before {
    content: '₺';
    font-size: 18px;
    opacity: 0.7;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.badge-danger {
    background: var(--danger);
    color: var(--white);
    animation: pulse 2s infinite;
}

/* Kategoriler */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--beyaz);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px;
    color: var(--mavi);
}

/* Markalar */
.brands {
    background: var(--acik-gri);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.brand-item {
    background: var(--beyaz);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-height: 60px;
}

/* CTA */
.cta {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content i {
    font-size: 64px;
}

.cta-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Sabit Butonlar */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-btn, .phone-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.whatsapp-btn::before,
.phone-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

.whatsapp-btn {
    background: #25D366;
}

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

.whatsapp-btn:hover, .phone-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

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

.footer-col a {
    color: var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-list i {
    margin-right: 10px;
    color: var(--primary);
}

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

.social-links-footer a {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px var(--shadow);
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 10px;
        color: var(--text);
        font-weight: 500;
    }
    
    .main-nav ul li a:hover {
        background: var(--light);
        color: var(--primary);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-header {
        position: relative;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-content h2 {
        font-size: 32px;
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.9),
            -1px -1px 2px rgba(0,0,0,0.7),
            1px 1px 3px rgba(0,0,0,0.8),
            0 0 20px rgba(0,0,0,0.6);
    }
    
    .slide-content p {
        font-size: 18px;
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.9),
            -1px -1px 2px rgba(0,0,0,0.7),
            1px 1px 3px rgba(0,0,0,0.8),
            0 0 15px rgba(0,0,0,0.6);
    }
    
    .slide-content .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobil ürün kartları */
    .product-card img {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .product-info .price {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .product-info .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .badge {
        top: 5px;
        right: 5px;
        padding: 3px 6px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 150px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .product-info .price {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-info .btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}


/* Kategoriler ve Tab Sistemi */
.category-products {
    padding: 80px 0;
    background: var(--light);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-tab {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.category-content {
    position: relative;
}

.category-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.category-panel.active {
    display: block;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
}

.no-products i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products p {
    font-size: 18px;
    color: var(--text);
}


/* Auth Sayfaları (Login & Register) */
.auth-page {
    padding: 60px 0;
    background: var(--light);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.auth-image {
    position: relative;
    overflow: hidden;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.auth-container:hover .auth-image img {
    transform: scale(1.05);
}

.auth-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.auth-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.auth-form {
    padding: 50px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-form-header i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.auth-form-header h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-form-header p {
    color: var(--text);
    opacity: 0.7;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
    font-size: 14px;
}

.auth-form label i {
    margin-right: 8px;
    color: var(--primary);
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

.auth-form .btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    position: relative;
    background: var(--white);
    padding: 0 20px;
    color: var(--text);
    opacity: 0.6;
    font-size: 14px;
}

.auth-links {
    text-align: center;
    padding-top: 20px;
}

.auth-links p {
    color: var(--text);
    font-size: 15px;
}

.auth-links a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        height: 250px;
    }
    
    .auth-form {
        padding: 30px 20px;
    }
    
    .auth-form-header i {
        font-size: 48px;
    }
    
    .auth-form-header h2 {
        font-size: 24px;
    }
}


/* Kullanıcı Paneli */
.user-panel {
    padding: 40px 0;
    min-height: 60vh;
}

.user-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.user-sidebar {
    background: var(--light);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    box-shadow: 0 2px 10px var(--shadow);
}

.user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 20px;
}

.user-info i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 10px;
}

.user-info h3 {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.user-info p {
    color: var(--text);
    font-size: 14px;
    opacity: 0.8;
}

.user-nav {
    list-style: none;
}

.user-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text);
}

.user-nav a:hover,
.user-nav a.active {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.user-nav i {
    margin-right: 10px;
    width: 20px;
}

.user-nav .badge {
    background: var(--danger);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.user-content {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.stat-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.stat-card i {
    font-size: 48px;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text);
    opacity: 0.8;
}

.panel-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.panel-section h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
    font-weight: 600;
}

.panel-section h2 i {
    margin-right: 10px;
    color: var(--primary);
}

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

.no-data {
    text-align: center;
    padding: 80px 20px;
    background: var(--light);
    border-radius: 12px;
}

.no-data i {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-data h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.order-card,
.message-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover,
.message-card:hover {
    box-shadow: 0 8px 20px var(--shadow);
    transform: translateY(-2px);
}

.order-header,
.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

.order-header h3,
.message-header h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.order-header p,
.message-header p {
    color: var(--text);
    font-size: 14px;
    opacity: 0.8;
}

.order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-warning { 
    background: #fff3cd; 
    color: #856404; 
}

.status-info { 
    background: #d1ecf1; 
    color: #0c5460; 
}

.status-primary { 
    background: #cce5ff; 
    color: #004085; 
}

.status-success { 
    background: #d4edda; 
    color: #155724; 
}

.status-danger { 
    background: #f8d7da; 
    color: #721c24; 
}

.order-items,
.message-body {
    padding: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.item-name {
    flex: 1;
    color: var(--text);
}

.item-qty {
    color: var(--text);
    opacity: 0.7;
    margin: 0 20px;
}

.item-price {
    font-weight: 600;
    color: var(--primary);
}

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

.order-info p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text);
}

.order-total {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 600;
}

.order-total strong {
    color: var(--primary);
}

.message-status {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

.status-okunmadi {
    background: #fff3cd;
    color: #856404;
}

.status-okundu {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cevaplandi {
    background: #d4edda;
    color: #155724;
}

.message-body h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.message-body p {
    color: var(--text);
    line-height: 1.6;
}

.message-reply {
    padding: 20px;
    background: #e7f3ff;
    border-top: 2px solid var(--secondary);
}

.message-reply h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.message-reply p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.message-reply small {
    color: var(--text);
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .user-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-header,
    .order-footer,
    .message-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}
