/* Teknoross - Temiz ve Düzenli E-Ticaret Tasarımı */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #21c287;
    --primary-dark: #1a9a6a;
    --secondary: #21c287;
    --success: #21c287;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #21c287;
    
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #1a1d20;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-light: #adb5bd;
    
    --shadow: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    --radius: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.header-top-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-top-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-top a {
    color: var(--white);
    opacity: 0.95;
}

.header-top a:hover {
    opacity: 1;
}

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

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.cart-icon {
    position: relative;
    color: var(--text-dark);
    font-size: 22px;
    transition: var(--transition);
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: var(--white);
    border-radius: var(--radius-full);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 700px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.95);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1;
    pointer-events: none;
}

.slider-btn {
    width: var(--slider-btn-width, 40px);
    height: var(--slider-btn-height, 40px);
    border-radius: var(--slider-btn-border-radius, var(--radius-full));
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--primary);
    font-size: var(--slider-btn-icon-size, 14px);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: var(--shadow-md);
    -webkit-tap-highlight-color: rgba(33, 194, 135, 0.2);
    touch-action: manipulation;
    user-select: none;
    position: absolute;
    z-index: 1;
}

.slider-btn i {
    font-size: var(--slider-btn-icon-size, 14px) !important;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(255,255,255,0.3);
    touch-action: manipulation;
    user-select: none;
}

.indicator.active {
    background: var(--white);
    width: 30px;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

.indicator:active {
    transform: scale(1.2);
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 16px;
}

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

/* Sections Mobil Responsive */
@media (max-width: 768px) {
    .section {
        margin-bottom: 40px !important;
    }
    
    .section-title {
        font-size: 22px !important;
        margin-bottom: 25px !important;
        padding-bottom: 12px !important;
    }
    
    .section-title::after {
        width: 40px !important;
        height: 2px !important;
    }
}

@media (max-width: 480px) {
    .section {
        margin-bottom: 30px !important;
    }
    
    .section-title {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
}

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

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--gray-200);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: var(--text-dark);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-full);
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.product-badge.featured {
    background: var(--warning);
    color: var(--text-dark);
}

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.product-card:hover .product-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 16px;
}

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

.btn-icon.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(33, 194, 135, 0.3);
}

/* Product Card Mobil Responsive */
@media (max-width: 768px) {
    .product-image {
        height: 200px !important;
    }
    
    .product-actions {
        bottom: 10px !important;
        padding: 6px !important;
        gap: 6px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .btn-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
    
    .product-card:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 180px !important;
    }
    
    .product-actions {
        bottom: 8px !important;
        padding: 5px !important;
        gap: 5px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .btn-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }
}

.btn-icon.add-to-cart.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-icon.add-to-wishlist.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-icon.add-to-compare.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-category a {
    color: var(--primary);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name a {
    color: var(--text-dark);
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary);
}

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

.stars {
    color: var(--warning);
    font-size: 13px;
}

.review-count {
    font-size: 12px;
    color: var(--text-gray);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.price-original {
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: line-through;
}

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

.product-stock {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.product-stock.out-of-stock {
    color: var(--danger);
}

.product-stock.low-stock {
    color: var(--warning);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 14px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 0;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

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

.breadcrumb span {
    color: var(--gray-400);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success);
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--info);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state h2 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

/* Features Section */
.features-section {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.feature-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 16px;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Mobil slider butonları - Orta köşelere yerleştirildi */
    .hero-content {
        padding: 40px 50px 40px 50px !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero-content h1,
    .hero-content p {
        padding: 0 !important;
        position: relative !important;
        z-index: 11 !important;
    }
    
    .slider-nav {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        padding: 0 !important;
        z-index: 1 !important;
    }
    
    .slider-btn {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        font-size: 8px !important;
        background: rgba(255,255,255,0.9) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
        z-index: 1 !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .slider-btn i {
        font-size: 8px !important;
        line-height: 1 !important;
    }
    
    .slider-btn.prev {
        left: 12px !important;
        right: auto !important;
    }
    
    .slider-btn.next {
        right: 12px !important;
        left: auto !important;
    }
    
    .slider-indicators {
        bottom: 15px !important;
    }
    
    .indicator {
        width: 11px !important;
        height: 11px !important;
    }
    
    .indicator.active {
        width: 26px !important;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }
    
    .hero-content {
        padding: 30px 45px 30px 45px !important;
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 11 !important;
    }
    
    .hero-content p {
        font-size: 13px;
        margin-bottom: 14px !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 11 !important;
    }
    
    /* Mobil slider butonları - Orta köşelere yerleştirildi */
    .slider-nav {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        padding: 0 !important;
        z-index: 1 !important;
    }
    
    .slider-btn {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
        font-size: 7px !important;
        background: rgba(255,255,255,0.9) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
        -webkit-tap-highlight-color: rgba(33, 194, 135, 0.2) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        z-index: 1 !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .slider-btn i {
        font-size: 7px !important;
        line-height: 1 !important;
    }
    
    .slider-btn:active {
        transform: translateY(-50%) scale(0.9) !important;
        background: rgba(255,255,255,1) !important;
    }
    
    .slider-btn.prev {
        left: 10px !important;
        right: auto !important;
    }
    
    .slider-btn.next {
        right: 10px !important;
        left: auto !important;
    }
    
    .slider-indicators {
        bottom: 12px !important;
        gap: 8px !important;
    }
    
    .indicator {
        width: 10px !important;
        height: 10px !important;
        -webkit-tap-highlight-color: rgba(255,255,255,0.3) !important;
        touch-action: manipulation !important;
    }
    
    .indicator.active {
        width: 24px !important;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Genel Responsive Kurallar - Tüm Sayfalar İçin */
@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    div[style*="max-width: 1400px"] {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 1200px) {
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns: 3fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="display: flex"]:has(> *[style*="flex: 1"]) {
        flex-direction: column !important;
    }
    
    table {
        font-size: 14px !important;
    }
    
    table th,
    table td {
        padding: 8px !important;
    }
}

@media (max-width: 768px) {
    .container,
    div[style*="max-width: 1200px"],
    div[style*="max-width: 1000px"],
    div[style*="max-width: 800px"] {
        padding: 0 15px !important;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Tabloları mobilde scroll yapılabilir yap */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead,
    table tbody,
    table tr {
        display: block;
    }
    
    table th,
    table td {
        display: block;
        text-align: left !important;
        padding: 10px !important;
        border-bottom: 1px solid #eee;
    }
    
    table th {
        font-weight: 700;
        background: #f8f9fa;
    }
    
    /* Form elemanları */
    form[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Butonlar */
    button,
    .btn {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    div[style*="display: flex"]:has(> button),
    div[style*="display: flex"]:has(> .btn) {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .container,
    div[style*="max-width"] {
        padding: 0 10px !important;
    }
    
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="padding: 40px"],
    div[style*="padding: 30px"] {
        padding: 20px !important;
    }
    
    div[style*="gap: 30px"],
    div[style*="gap: 40px"] {
        gap: 15px !important;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

/* Global Responsive Utilities - Tüm Sayfalar İçin */
@media (max-width: 1400px) {
    .container,
    div[style*="max-width: 1400px"],
    div[style*="max-width: 1200px"] {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 1200px) {
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns: 3fr 1fr"],
    div[style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="display: flex"]:has(> *[style*="flex: 1"]) {
        flex-direction: column !important;
    }
    
    table {
        font-size: 14px !important;
    }
    
    table th,
    table td {
        padding: 8px !important;
    }
}

@media (max-width: 768px) {
    .container,
    div[style*="max-width: 1200px"],
    div[style*="max-width: 1000px"],
    div[style*="max-width: 800px"],
    div[style*="max-width: 600px"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Tabloları mobilde scroll yapılabilir yap */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead,
    table tbody,
    table tr {
        display: block;
    }
    
    table th,
    table td {
        display: block;
        text-align: left !important;
        padding: 10px !important;
        border-bottom: 1px solid #eee;
    }
    
    table th {
        font-weight: 700;
        background: #f8f9fa;
    }
    
    /* Form elemanları */
    form[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Butonlar - Bottom bar hariç */
    button:not(.mobile-nav-item):not(.mobile-nav-item button),
    .btn:not(.mobile-nav-item) {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    div[style*="display: flex"]:has(> button):not(.mobile-bottom-nav > div),
    div[style*="display: flex"]:has(> .btn):not(.mobile-bottom-nav > div) {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    /* Bottom Navigation Bar - Koruma */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        display: block !important;
        background: #000000 !important;
        border-top: 2px solid #21c287 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3) !important;
        padding: 8px 0 !important;
        max-height: 70px !important;
    }
    
    .mobile-bottom-nav > div {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        flex-direction: row !important;
    }
    
    .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 8px 4px !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .mobile-nav-item button {
        width: auto !important;
        max-width: none !important;
    }
    
    #mobileSearchBar {
        width: 100% !important;
    }
    
    #mobileSearchBar form {
        flex-direction: row !important;
    }
    
    #mobileSearchBar button {
        width: auto !important;
        max-width: none !important;
        white-space: nowrap !important;
    }
    
    h1 {
        font-size: 24px !important;
    }
    
    h2 {
        font-size: 20px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .container,
    div[style*="max-width"]:not(.mobile-bottom-nav):not(.mobile-bottom-nav *) {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"]:not(.mobile-bottom-nav *):not(.mobile-bottom-nav) {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="padding: 40px"]:not(.mobile-bottom-nav):not(.mobile-bottom-nav *),
    div[style*="padding: 30px"]:not(.mobile-bottom-nav):not(.mobile-bottom-nav *) {
        padding: 15px 10px !important;
    }
    
    div[style*="gap: 30px"]:not(.mobile-bottom-nav *):not(.mobile-bottom-nav),
    div[style*="gap: 40px"]:not(.mobile-bottom-nav *):not(.mobile-bottom-nav) {
        gap: 15px !important;
    }
    
    /* Bottom Navigation Bar - Küçük ekranlarda da koruma */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        display: block !important;
        background: #000000 !important;
        border-top: 2px solid #21c287 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3) !important;
        padding: 8px 0 !important;
        max-height: 70px !important;
    }
    
    .mobile-bottom-nav > div {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        flex-direction: row !important;
    }
    
    .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 8px 4px !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
    }
    
    h1 {
        font-size: 22px !important;
    }
    
    h2 {
        font-size: 18px !important;
    }
    
    h3 {
        font-size: 16px !important;
    }
}

/* Account Sidebar ve Sayfalar için Responsive */
.account-page {
    display: flex;
    gap: 30px;
}

.account-sidebar {
    flex-shrink: 0;
    width: 250px;
}

.account-content {
    flex: 1;
}

@media (max-width: 992px) {
    .account-page {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .account-sidebar {
        width: 100% !important;
    }
    
    .account-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .account-nav a {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .account-nav {
        flex-direction: column !important;
    }
    
    .account-nav a {
        width: 100% !important;
        min-width: 100% !important;
    }
}

/* Ana Sayfa Özel Responsive */
@media (max-width: 768px) {
    /* Promosyon kutuları */
    div[style*="grid-template-columns: repeat"]:has(.promo-box) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .promo-box {
        padding: 20px 15px !important;
    }
    
    .promo-box div[style*="font-size: 48px"] {
        font-size: 36px !important;
    }
}

@media (max-width: 480px) {
    /* Promosyon kutuları tek sütun */
    div[style*="grid-template-columns: repeat"]:has(.promo-box) {
        grid-template-columns: 1fr !important;
    }
    
    .promo-box {
        padding: 15px 10px !important;
    }
}
