/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Colors */
    --primary-color: #f35b23;
    --primary-light: #f68d1f;
    --primary-dark: #d94a1a;
    --secondary-color: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #e5e5e5;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Weights */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Font Sizes */
    --fs-hero: 4.5rem;      /* 72px */
    --fs-h1: 3rem;          /* 48px */
    --fs-h2: 2.5rem;        /* 40px */
    --fs-h3: 2rem;          /* 32px */
    --fs-h4: 1.5rem;        /* 24px */
    --fs-body: 1rem;        /* 16px */
    --fs-small: 0.875rem;   /* 14px */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    padding-top: 270px;
    /* Top bar (40px) + Header (130px) + Nav (65px) + extra */
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--secondary-color);
    color: white;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    overflow: hidden;
    flex-wrap: nowrap;
    gap: 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-bar-phone {
    display: flex;
    font-size: 0.78rem;
    align-items: center;
    gap: 0.4rem;
    color: white;
    font-weight: 400;
    white-space: nowrap;
}

.top-bar-phone i {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: nowrap;
    overflow: hidden;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

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

/* ============================================
   HEADER
   ============================================ */

.main-header {
    position: fixed;
    top: 40px;
    /* Top bar height */
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.logo {
    flex: 0 0 auto;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: transform var(--transition-base);
}

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

/* ============================================
   HEADER SEARCH BAR
   ============================================ */

.header-search {
    flex: 1;
    max-width: 700px;
    margin: 0 3rem;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--background-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.search-form:focus-within {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(243, 91, 35, 0.15);
}

.search-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    font-family: var(--font-body);
}

.search-input::placeholder {
    color: var(--text-lighter);
}

.search-btn {
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.search-btn i {
    font-size: 1rem;
}

/* Arama Sonuçları Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.search-results-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-results-loading {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    display: none;
}

.search-results-dropdown.loading .search-results-loading {
    display: block;
}

.search-results-dropdown.loading .search-results-content {
    display: none;
}

/* Arama Sonuç Grupları */
.search-results-group {
    border-bottom: 1px solid var(--border-color);
}

.search-results-group:last-child {
    border-bottom: none;
}

.search-results-group-title {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--background-gray);
}

/* Arama Sonuç Öğesi */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background var(--transition-fast);
}

.search-result-item:hover {
    background: var(--background-gray);
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--background-gray);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.search-result-category {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.search-result-sku {
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-family: 'Courier New', monospace;
    background: var(--background-gray);
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
}

.search-result-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Tüm Sonuçları Gör */
.search-results-all {
    display: block;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.05), rgba(246, 141, 31, 0.05));
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.search-results-all:hover {
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.1), rgba(246, 141, 31, 0.1));
}

/* Sonuç Bulunamadı */
.search-no-results {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-light);
}

.search-no-results i {
    font-size: 2.5rem;
    color: var(--text-lighter);
    margin-bottom: 0.75rem;
    display: block;
}

/* Kategori İkon */
.search-result-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.1), rgba(246, 141, 31, 0.1));
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Arama Vurgulama */
.search-result-title mark {
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.2), rgba(246, 141, 31, 0.2));
    color: var(--primary-color);
    padding: 0 2px;
    border-radius: 2px;
}

/* ============================================
   ARAMA SONUÇLARI SAYFASI
   ============================================ */

.search-results-page {
    padding: var(--spacing-lg) 0;
    min-height: 60vh;
}

.search-page-header {
    margin-bottom: var(--spacing-md);
}

.search-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.search-query {
    color: var(--primary-color);
}

.search-page-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Empty State */
.search-empty-state {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--background-gray);
    border-radius: var(--radius-lg);
}

.search-empty-state i {
    font-size: 4rem;
    color: var(--text-lighter);
    margin-bottom: var(--spacing-sm);
}

.search-empty-state h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.search-empty-state p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Önerilen Aramalar */
.search-suggestions {
    margin-top: var(--spacing-md);
}

.search-suggestions h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.suggestion-tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.suggestion-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(243, 91, 35, 0.05);
}

/* İlgili Kategoriler */
.search-related-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    padding: 1rem;
    background: var(--background-gray);
    border-radius: var(--radius-md);
}

.related-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.related-category-tag {
    padding: 0.4rem 0.75rem;
    background: white;
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.related-category-tag:hover {
    background: var(--primary-color);
    color: white;
}

.related-category-tag .count {
    color: var(--text-lighter);
    font-size: 0.8rem;
}

.related-category-tag:hover .count {
    color: rgba(255,255,255,0.8);
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* Ürün Kartı */
.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--background-gray);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    z-index: 1;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

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

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.pagination-num:hover {
    background: var(--background-gray);
}

.pagination-num.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.pagination-dots {
    color: var(--text-lighter);
    padding: 0 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

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

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

.breadcrumb .separator {
    color: var(--text-lighter);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    position: relative;
}

.header-action-btn i {
    font-size: 1.3rem;
}

.header-action-btn:hover {
    color: var(--primary-color);
}

.cart-btn .cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 165px;
    /* Top bar + Header */
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

/* Küçük ekranlarda menü öğeleri */
/* Desktop Tüm Ekranlar: 1025px+ - Maksimum Kompakt */
@media (min-width: 1025px) {
    .main-nav .container {
        padding: 0 0.25rem !important;
    }

    .nav-link {
        padding: 0.55rem 0.3rem;
        font-size: 0.7rem;
        gap: 0;
        letter-spacing: -0.5px;
    }

    /* Icon'ları gizle - sadece text */
    .nav-link i:not(.fa-chevron-down) {
        display: none;
    }

    /* Chevron ok küçük */
    .nav-link .fa-chevron-down {
        font-size: 0.55rem;
        margin-left: 0.15rem;
    }
}

/* Çok Büyük Ekranlar: 1600px+ - Biraz daha rahat, icon'lar geri */
@media (min-width: 1600px) {
    .main-nav .container {
        padding: 0 0.75rem !important;
    }

    .nav-link {
        padding: 0.65rem 0.45rem;
        font-size: 0.78rem;
        gap: 0.2rem;
        letter-spacing: -0.3px;
    }

    /* Icon'ları göster */
    .nav-link i:not(.fa-chevron-down) {
        display: inline-block;
        font-size: 0.68rem;
        margin-right: 0.2rem;
    }

    .nav-link .fa-chevron-down {
        font-size: 0.65rem;
        margin-left: 0.2rem;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow: visible;
    position: relative;
}

.main-nav .container {
    overflow: visible;
}

.nav-item {
    position: relative;
}

/* Mega dropdown için static position - container genişliğinde açılabilsin */
.nav-item.has-mega-dropdown,
.nav-item.has-dropdown {
    position: static;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(243, 91, 35, 0.05);
}

.has-dropdown:hover .nav-link i,
.has-mega-dropdown:hover .nav-link i,
.has-dropdown.active .nav-link i,
.has-mega-dropdown.active .nav-link i {
    transform: rotate(180deg);
}

/* ============================================
   FULL-WIDTH MEGA MENU SYSTEM
   Container genişliğinde mega menü
   ============================================ */

/* Dropdown ve Mega Dropdown - Ortak Stiller */
.dropdown-menu,
.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 25px 30px;
}

/* Hover'da veya Active (tablet/touch) olunca Göster */
.has-dropdown:hover .dropdown-menu,
.has-mega-dropdown:hover .mega-dropdown-menu,
.has-dropdown.active .dropdown-menu,
.has-mega-dropdown.active .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Menu - Grid Layout */
.dropdown-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Dropdown ve Mega Dropdown Scrollbar Stilleri */
.dropdown-menu::-webkit-scrollbar,
.mega-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track,
.mega-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.mega-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover,
.mega-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #d64d1e;
}

.dropdown-column {
    min-width: 180px;
}

.dropdown-column h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.dropdown-column ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-column ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* ============================================
   MEGA DROPDOWN - Tam Genişlik
   ============================================ */

.mega-dropdown-menu {
    /* Container genişliğinde, merkeze hizalı */
    max-width: 1200px;
    margin: 0 auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100vw - 40px);
    max-width: 1200px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.has-mega-dropdown:hover .mega-dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.mega-dropdown-column {
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mega-dropdown-column:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(243, 91, 35, 0.1);
}

.mega-dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    transition: color 0.2s ease;
}

.mega-dropdown-title:hover {
    color: var(--primary-color);
}

.mega-dropdown-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mega-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-dropdown-list li {
    list-style: none;
}

.mega-dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-dropdown-list li a:hover {
    color: var(--primary-color);
    background: rgba(243, 91, 35, 0.08);
    padding-left: 15px;
}

.mega-dropdown-list li a i {
    color: #bbb;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* Special Nav Item (OUTLET) */
.nav-item-special {
    margin-left: auto;
}

.nav-link-special {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.4rem 0;
    transition: all var(--transition-base);
}

.nav-link-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 91, 35, 0.4);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(243, 91, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(243, 91, 35, 0.4);
}

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

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

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(243, 91, 35, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translateX(-50%) rotate(45deg);
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */

.hero-slider-section {
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slide a {
    display: block;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(243, 91, 35, 0.3));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 600px;
}

/* Metin konumu sınıfları */
.slide-content-left {
    left: 5%;
    right: auto;
    text-align: left;
}

.slide-content-center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
}

.slide-content-right {
    left: auto;
    right: 5%;
    text-align: right;
}

.slide-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: slideInLeft 0.8s ease 0.3s both;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease;
}

.slide-desc {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-base);
    animation: slideInLeft 0.8s ease 0.4s both;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 91, 35, 0.4);
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slick Slider Custom Styles */
.slick-slider {
    position: relative;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
}

.slick-slide {
    outline: none;
}

/* Navigation Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(243, 91, 35, 0.3);
    font-size: 0;
}

.slick-arrow:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(243, 91, 35, 0.5);
}

.slick-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

/* Font Awesome Icon Styling */
.slick-arrow i {
    color: white;
    font-size: 20px;
    line-height: 1;
}

.slick-arrow:hover i {
    color: white;
}

/* Dots Navigation */
.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
    justify-content: center;
    align-items: center;
    width: auto;
}

.slick-dots li {
    margin: 0;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0;
    padding: 0;
}

.slick-dots .slick-active button {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.slick-dots button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: var(--spacing-lg) 0;
    background: var(--background-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 1.5rem;
    border-radius: var(--radius-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(243, 91, 35, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Tablet ve altı için tek sütun */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.category-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    color: white;
    z-index: 1;
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    transition: gap var(--transition-base);
}

.category-card:hover .category-link {
    gap: 1rem;
}

/* ============================================
   INSTAGRAM STORY TARZI KATEGORİLER
   ============================================ */

.categories-stories-container {
    position: relative;
    padding: 20px 0;
}

.categories-stories-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    margin: 0 -10px;

    /* Scrollbar gizle ama scroll çalışsın */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.categories-stories-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 180px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-story-item:hover {
    transform: translateY(-8px);
}

.category-story-circle {
    position: relative;
    padding: 4px;
}

.category-story-ring {
    width: 190px;
    height: 160px;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #f68d1f 100%);
    box-shadow: 0 6px 20px rgba(243, 91, 35, 0.3);
    transition: all 0.3s ease;
}

.category-story-item:hover .category-story-ring {
    background: linear-gradient(135deg, #e74c1a 0%, #f35b23 50%, var(--primary-light) 100%);
    box-shadow: 0 10px 30px rgba(243, 91, 35, 0.5);
    transform: scale(1.08);
}

.category-story-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid white;
    display: block;
}

.category-story-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.category-story-item:hover .category-story-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Butonları */
.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-scroll-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 91, 35, 0.3);
}

.category-scroll-prev {
    left: -10px;
}

.category-scroll-next {
    right: -10px;
}

/* Mobil ve tablet için scroll butonlarını gizle */
@media (max-width: 1024px) {
    .category-scroll-btn {
        display: none;
    }

    .categories-stories-wrapper {
        padding: 20px 5px;
        gap: 20px;
    }

    .category-story-item {
        min-width: 130px;
    }

    .category-story-ring {
        width: 120px;
        height: 120px;
        border-radius: 18px;
    }

    .category-story-image {
        border-radius: 14px;
        border: 3px solid white;
    }

    .category-story-name {
        font-size: 0.8rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .categories-stories-wrapper {
        gap: 15px;
    }

    .category-story-item {
        min-width: 110px;
        gap: 10px;
    }

    .category-story-ring {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }

    .category-story-image {
        border-radius: 12px;
    }

    .category-story-name {
        font-size: 0.75rem;
        max-width: 100px;
    }
}

/* ============================================
   CATEGORY CARDS - VERSİYON 2 (KÖŞELİ/MODERN)
   ============================================

   KULLANIM: Bu tasarımı aktif etmek için:
   1. Yukarıdaki .category-card stilleriyle bu stilleri yer değiştirin
   2. Veya HTML'de class="category-card" yerine class="category-card-v2" kullanın
   ============================================ */

.category-card-v2 {
    position: relative;
    border-radius: 8px; /* Daha köşeli */
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card-v2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 91, 35, 0.15);
}

.category-card-v2 .category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-card-v2 .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.category-card-v2:hover .category-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.category-card-v2 .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.85) 0%, rgba(246, 141, 31, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-v2:hover .category-overlay {
    opacity: 1;
}

.category-card-v2 .category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.category-card-v2:hover .category-content {
    padding: 32px 24px;
}

.category-card-v2 .category-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card-v2 .category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap var(--transition-base);
    opacity: 0.9;
}

.category-card-v2:hover .category-link {
    gap: 1rem;
    opacity: 1;
}

.category-card-v2 .category-link i {
    transition: transform 0.3s ease;
}

.category-card-v2:hover .category-link i {
    transform: translateX(5px);
}

/* Köşe accent (modern dokunuş) */
.category-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary-color) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.category-card-v2:hover::before {
    opacity: 1;
}

/* Grid düzeni için responsive */
@media (max-width: 768px) {
    .category-card-v2 .category-image {
        height: 220px;
    }

    .category-card-v2 .category-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   HOMEPAGE PRODUCT SECTIONS
   ============================================ */

/* Section Background Variants */
.section-bg-white {
    background: #ffffff;
}

.section-bg-gray {
    background: #f8f9fa;
}

/* Product Sections */
.featured-products-section,
.popular-products-section,
.new-products-section {
    padding: 80px 0;
}

/* Products Grid Layout - Yatay Kaydırılabilir */
.products-grid-container {
    position: relative;
    padding: 20px 0;
}

.products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px 30px 10px;
    margin: 0 -10px;
    margin-top: 40px;

    /* Scrollbar gizle ama scroll çalışsın */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.products-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.products-grid .kat-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

/* Scroll Butonları */
.product-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #f35b23;
    border-radius: 50%;
    color: #f35b23;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-scroll-btn:hover {
    background: #f35b23;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.product-scroll-prev {
    left: -25px;
}

.product-scroll-next {
    right: -25px;
}

/* Tablet */
@media (max-width: 1200px) {
    .products-grid .kat-card {
        min-width: 260px;
        max-width: 260px;
    }

    .product-scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .product-scroll-prev {
        left: -20px;
    }

    .product-scroll-next {
        right: -20px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .products-grid {
        gap: 12px;
        padding: 15px 5px 25px 5px;
    }

    .products-grid .kat-card {
        min-width: 180px;
        max-width: 180px;
    }

    .products-grid .kat-card .kat-info {
        padding: 0.5rem 0.6rem 0.7rem;
    }

    .products-grid .kat-card .kat-title {
        font-size: 0.78rem;
        margin-bottom: 0.2rem;
    }

    .products-grid .kat-card .kat-category {
        font-size: 0.65rem;
    }

    .products-grid .kat-card .kat-price {
        margin-bottom: 0.5rem;
    }

    .products-grid .kat-card .kat-price .current {
        font-size: 1rem;
    }

    .products-grid .kat-card .kat-price .old {
        font-size: 0.75rem;
    }

    .products-grid .kat-card .kat-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    /* Mobilde scroll butonlarını gizle - Parmakla kaydırma var */
    .product-scroll-btn {
        display: none !important;
    }

    .featured-products-section,
    .popular-products-section,
    .new-products-section {
        padding: 50px 0;
    }
}

/* Çok küçük ekran */
@media (max-width: 480px) {
    .products-grid .kat-card {
        min-width: 160px;
        max-width: 160px;
    }

    .product-scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .product-scroll-prev {
        left: -10px;
    }

    .product-scroll-next {
        right: -10px;
    }
}

/* Kategori kartı ek stilleri ana sayfa için */
.kat-category {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.kat-category a {
    color: #f35b23;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.kat-category a:hover {
    color: #d43e15;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--spacing-lg) 0;
    background: var(--background-gray);
}

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

/* Tablet - 3 sütun */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil - 2 sütun */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Çok küçük ekran - 1 sütun */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 91, 35, 0.1), rgba(246, 141, 31, 0.1));
    color: var(--primary-color);
    font-size: 1.6rem;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: rotate(360deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================
   DOLAP TASARIM CTA SECTION
   ============================================ */

.tasarim-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 50%, #1a1a2e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.tasarim-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f35b23' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.tasarim-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.tasarim-cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.tasarim-cta-text p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin: 0 0 18px;
    max-width: 480px;
}

.tasarim-cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.tasarim-cta-bullets li {
    color: rgba(255,255,255,.85);
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tasarim-cta-bullets li i {
    color: #f35b23;
    font-size: .9rem;
}

.tasarim-cta-action {
    flex-shrink: 0;
    text-align: center;
}

.tasarim-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f35b23;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 28px rgba(243,91,35,.45);
    white-space: nowrap;
}

.tasarim-cta-btn:hover {
    background: #d94a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(243,91,35,.55);
    color: #fff;
    text-decoration: none;
}

.tasarim-cta-note {
    margin: 12px 0 0;
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .tasarim-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .tasarim-cta-text h2 { font-size: 1.5rem; }
    .tasarim-cta-text p  { margin-inline: auto; }
    .tasarim-cta-bullets { justify-content: center; }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    padding: var(--spacing-lg) 0;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.95rem;
    transition: all var(--transition-base);
    display: inline-block;
}

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

.footer-contact li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
}

.footer-bottom-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom .footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 0.875rem;
    opacity: 0.85;
    margin: 0;
}

.copyright {
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    opacity: 0.65;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.separator {
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .category-large {
        grid-column: span 1;
    }

    .nav-list {
        gap: 0;
    }

    .nav-link {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        min-width: 350px;
    }
}

/* ============================================
   769px - 1024px ARASI - TABLET ULTRA KOMPAKT
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Menü container genişliğini maksimize et */
    .main-nav .container {
        max-width: 100% !important;
        padding: 0 0.25rem !important;
    }

    .nav-link {
        padding: 0.5rem 0.25rem;
        font-size: 0.68rem;
        gap: 0;
        letter-spacing: -0.5px;
    }

    /* Icon'ları gizle - daha fazla yer */
    .nav-link i {
        display: none;
    }

    /* Chevron ikonunu göster ve küçült */
    .nav-link .fa-chevron-down {
        display: inline-block !important;
        font-size: 0.55rem;
        margin-left: 0.15rem;
    }

    /* Mega dropdown küçük ekranlarda daralt */
    .mega-dropdown-menu {
        padding: 20px;
    }

    .mega-dropdown-inner {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .mega-dropdown-column {
        padding: 15px;
    }

    .mega-dropdown-title {
        font-size: 0.95rem;
    }

    .mega-dropdown-list li a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
}

/* ============================================
   768px ALTI - MOBİL MENÜ AKTİF
   ============================================ */
@media (max-width: 768px) {
    /* Hamburger menü göster */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Masaüstü menüyü gizle */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1002;
        display: flex;
        flex-direction: column;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        display: none;
    }

    /* Dropdown'ları gizle */
    .dropdown-menu,
    .mega-dropdown-menu {
        display: none !important;
    }

    /* Mobil overlay */
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body {
        padding-top: 150px;
        /* Top bar + Header + Nav for mobile */
    }

    /* Container Mobile - Daha az padding */
    .container {
        padding: 0 1rem;
    }

    /* Top Bar Mobile */
    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-phone span {
        font-size: 0.8rem;
    }

    /* Header Mobile */
    .main-header {
        top: 40px;
    }

    .header-content {
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 80px;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .header-action-btn span {
        display: none;
    }

    .header-action-btn i {
        font-size: 1.5rem;
    }

    /* Favoriler mobilde gizle */
    .header-action-desktop-only {
        display: none !important;
    }

    /* Header Search - Mobil (Görünür) */
    .header-search {
        display: block;
        flex: 1;
        max-width: none;
        margin: 0 0.75rem;
    }

    .header-search .search-form {
        border-radius: 25px;
    }

    .header-search .search-input {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .header-search .search-btn {
        padding: 0.6rem 0.9rem;
    }

    .header-search .search-btn i {
        font-size: 0.9rem;
    }

    /* Mobil Menü İçi Arama */
    .mobile-search-wrapper {
        padding: 1rem;
        background: white;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-search-form {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }

    .mobile-search-input {
        flex: 1;
        padding: 0.75rem 1rem;
        border: none;
        background: transparent;
        font-size: 0.95rem;
        color: #2c3e50;
        outline: none;
    }

    .mobile-search-input::placeholder {
        color: #f68d1f;
    }

    .mobile-search-btn {
        padding: 0.75rem 1rem;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        border: none;
        color: white;
        cursor: pointer;
    }

    .mobile-search-btn i {
        font-size: 1rem;
    }

    /* ============================================
       MOBİL MENÜ - MİNARMOBİLYA STİLİ
       ============================================ */

    /* Menü Overlay (Arka plan karartma) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 997;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Main Navigation Mobile - Soldan Açılan Panel */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1002;
        display: flex;
        flex-direction: column;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    /* Menü Header - Logo ve Kapat Butonu */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        border-bottom: none;
        min-height: 60px;
    }

    .mobile-menu-header .menu-logo {
        height: 100px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(255,255,255,0.35);
    }

    /* Ana Menü Container */
    .mobile-menu-container {
        flex: 1;
        overflow: hidden;
        position: relative;
    }

    /* Menü Panelleri - Ana ve Alt Menü */
    .mobile-menu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-main {
        transform: translateX(0);
    }

    .mobile-menu-main.hidden {
        transform: translateX(-100%);
    }

    .mobile-menu-sub {
        transform: translateX(100%);
        background: white;
    }

    .mobile-menu-sub.active {
        transform: translateX(0);
    }

    /* Nav List Gizle (Eski yapı) */
    .nav-list {
        display: none;
    }

    /* Mobil Menü Liste Stili */
    .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

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

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        color: #2c3e50;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        background: white;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: #f8f9fa;
        color: var(--primary-color);
    }

    .mobile-nav-link i {
        font-size: 0.85rem;
        color: #bdc3c7;
        transition: color 0.2s ease;
    }

    .mobile-nav-link:hover i {
        color: var(--primary-color);
    }

    /* Alt Menü Başlık (Geri Butonu ile) */
    .mobile-submenu-header {
        display: flex;
        align-items: center;
        padding: 1rem 1.25rem;
        background: #f8f9fa;
        border-bottom: 1px solid #e2e8f0;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .mobile-submenu-header:hover {
        background: #edf2f7;
    }

    .mobile-back-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--primary-color);
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-back-btn i {
        font-size: 0.9rem;
    }

    .mobile-submenu-title {
        margin-left: auto;
        font-size: 0.85rem;
        color: #718096;
        font-weight: 400;
    }

    /* Alt Kategori Listesi */
    .mobile-sub-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

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

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

    .mobile-sub-link {
        display: block;
        padding: 1rem 1.25rem;
        color: #4a5568;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.2s ease;
        background: white;
        border-left: 3px solid transparent;
    }

    .mobile-sub-link:hover,
    .mobile-sub-link:active {
        background: #f8f9fa;
        color: var(--primary-color);
        border-left-color: var(--primary-color);
    }

    /* Kategori Grubu Başlığı (Opsiyonel) */
    .mobile-sub-group-title {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #f68d1f;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: #f8f9fa;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-sub-group-title a {
        color: inherit;
        text-decoration: none;
        display: block;
    }

    .mobile-sub-group-title a:hover {
        color: var(--primary-color);
    }

    /* Tümünü Görüntüle Linki */
    .mobile-sub-item-all {
        background: linear-gradient(135deg, rgba(243, 91, 35, 0.05), rgba(246, 141, 31, 0.05));
    }

    .mobile-sub-link-all {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }

    .mobile-sub-link-all i {
        font-size: 0.9rem;
    }

    .mobile-sub-link-all:hover {
        background: linear-gradient(135deg, rgba(243, 91, 35, 0.1), rgba(246, 141, 31, 0.1)) !important;
    }

    /* OUTLET Butonu */
    .mobile-nav-special {
        margin: 1rem;
    }

    .mobile-nav-special .mobile-nav-link {
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white;
        border-radius: 8px;
        font-weight: 600;
        gap: 0.5rem;
    }

    .mobile-nav-special .mobile-nav-link:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        color: white;
    }

    .mobile-nav-special .mobile-nav-link i {
        color: white;
    }

    /* Mobile Menu CTA Button */
    .mobile-menu-cta {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(243, 91, 35, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-cta-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 ease;
    }

    .mobile-cta-btn:hover::before,
    .mobile-cta-btn:active::before {
        left: 100%;
    }

    .mobile-cta-btn:hover,
    .mobile-cta-btn:active {
        background: linear-gradient(135deg, #e74c1a 0%, #d43e0f 100%);
        box-shadow: 0 6px 16px rgba(243, 91, 35, 0.4);
        transform: translateY(-2px);
    }

    .mobile-cta-btn i:first-child {
        font-size: 1.1rem;
    }

    .mobile-cta-btn i:last-child {
        font-size: 0.9rem;
        margin-left: auto;
        animation: arrowBounce 1.5s ease-in-out infinite;
    }

    @keyframes arrowBounce {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(5px);
        }
    }

    /* Kullanıcı Aksiyonları (Giriş, Favoriler, Sepet) */
    .mobile-menu-actions {
        display: flex;
        justify-content: space-around;
        padding: 1rem;
        background: #f8f9fa;
        border-top: 1px solid #e2e8f0;
        margin-top: 0.5rem;
    }

    .mobile-action-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 0.75rem 1rem;
        color: #4a5568;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
        flex: 1;
        max-width: 100px;
    }

    .mobile-action-btn:hover,
    .mobile-action-btn:active {
        background: white;
        color: var(--primary-color);
    }

    .mobile-action-btn i {
        font-size: 1.3rem;
        color: var(--primary-color);
    }

    .mobile-action-btn span {
        font-size: 0.75rem;
        font-weight: 500;
        text-align: center;
    }

    /* Hızlı Linkler (Top-bar linkleri) */
    .mobile-menu-quick-links {
        padding: 1rem;
        background: white;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-quick-links-title {
        font-size: 0.7rem;
        font-weight: 600;
        color: #f68d1f;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
        padding-left: 0.25rem;
    }

    .mobile-quick-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .mobile-quick-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        padding: 0.75rem 0.5rem;
        background: #f8f9fa;
        border-radius: 8px;
        color: #4a5568;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-quick-link:hover,
    .mobile-quick-link:active {
        background: linear-gradient(135deg, rgba(243, 91, 35, 0.1), rgba(246, 141, 31, 0.1));
        color: var(--primary-color);
    }

    .mobile-quick-link i {
        font-size: 1.1rem;
        color: #718096;
        transition: color 0.2s ease;
    }

    .mobile-quick-link:hover i,
    .mobile-quick-link:active i {
        color: var(--primary-color);
    }

    .mobile-quick-link span {
        font-size: 0.7rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
    }

    /* Menü Footer - İletişim ve Sosyal Medya */
    .mobile-menu-footer {
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-top: none;
    }

    .mobile-menu-contact {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: rgba(255,255,255,0.15);
        border-radius: 8px;
        margin-bottom: 0.75rem;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-menu-contact:hover {
        background: rgba(255,255,255,0.25);
    }

    .mobile-menu-contact i {
        font-size: 1.1rem;
        color: white;
    }

    .mobile-menu-contact span {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .mobile-menu-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        color: white;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .mobile-menu-social a:hover {
        background: rgba(255,255,255,0.3);
        color: white;
        transform: scale(1.1);
    }

    /* Eski dropdown sistemini gizle */
    .dropdown-menu,
    .mega-dropdown-menu {
        display: none !important;
    }

    .nav-item-special {
        display: none;
    }

    /* Diğer responsive düzenlemeler */
    .hero-section {
        min-height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-logo .logo-img {
        height: 60px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }

    body {
        padding-top: 120px;
        /* Top bar + Header + Nav for small mobile */
    }

    .top-bar {
        font-size: 0.7rem;
    }

    .top-bar-content {
        padding: 0.4rem 0;
    }

    .top-bar-phone {
        font-size: 0.75rem;
    }

    .main-header {
        top: 30px;
    }

    .header-content {
        padding: 0.6rem 0;
    }

    .logo-img {
        height: 65px;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-action-btn i {
        font-size: 1.3rem;
    }

    /* Mobil Arama - 480px */
    .header-search {
        margin: 0 0.5rem;
    }

    .header-search .search-input {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .header-search .search-btn {
        padding: 0.5rem 0.7rem;
    }

    .header-search .search-btn i {
        font-size: 0.8rem;
    }

    /* Mobil menü 480px için ayarlar */
    .main-nav {
        width: 90%;
        max-width: 300px;
    }

    .mobile-menu-header {
        padding: 0.875rem 1rem;
    }

    .mobile-menu-header .menu-logo {
        height: 80px;
    }

    .mobile-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .mobile-sub-link {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-submenu-header {
        padding: 0.875rem 1rem;
    }

    .mobile-menu-footer {
        padding: 0.875rem 1rem;
    }

    /* Aksiyonlar ve hızlı linkler 480px */
    .mobile-menu-actions {
        padding: 0.75rem;
    }

    .mobile-action-btn {
        padding: 0.5rem 0.75rem;
    }

    .mobile-action-btn i {
        font-size: 1.1rem;
    }

    .mobile-action-btn span {
        font-size: 0.7rem;
    }

    .mobile-menu-quick-links {
        padding: 0.75rem;
    }

    .mobile-quick-links-grid {
        gap: 0.4rem;
    }

    .mobile-quick-link {
        padding: 0.6rem 0.4rem;
    }

    .mobile-quick-link i {
        font-size: 1rem;
    }

    .mobile-quick-link span {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .category-image {
        height: 250px;
    }

    /* Footer Logo Small Mobile */
    .footer-logo .logo-img {
        height: 50px;
    }
}

/* ============================================
   430px ALTI - ÇOOK KÜÇÜK MOBİL (Hamburger + Sepet)
   ============================================ */
@media (max-width: 430px) {
    /* Tüm header butonlarını gizle */
    .header-action-btn {
        display: none !important;
    }

    /* Sadece sepet butonunu göster */
    .cart-btn {
        display: flex !important;
    }

    .cart-btn span {
        display: none;
    }

    .cart-btn i {
        font-size: 1.4rem;
    }

    /* Hamburger menü butonu - Kompakt */
    .mobile-menu-toggle {
        padding: 0.5rem;
        gap: 4px;
        min-width: 40px;
        min-height: 40px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 3px;
    }

    /* Logo biraz daha küçük */
    .logo-img {
        height: 60px !important;
    }

    /* Header search daha küçük */
    .header-search {
        margin: 0 0.5rem;
        flex: 1;
    }

    .header-search .search-input {
        padding: 0.45rem 0.7rem;
        font-size: 0.75rem;
    }

    .header-search .search-btn {
        padding: 0.45rem 0.65rem;
    }

    .header-search .search-btn i {
        font-size: 0.75rem;
    }

    /* Header actions gap */
    .header-actions {
        gap: 0;
        justify-content: flex-end;
    }

    /* Container padding daha az */
    .container {
        padding: 0 0.75rem;
    }
}

/* ============================================
   ANIMATIONS (AOS Alternative)
   ============================================ */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: 260px; /* Tablet için yatay */
    }

    /* Mobilde tüm metin pozisyonlarını merkezle ve padding ekle */
    .slide-content,
    .slide-content-left,
    .slide-content-center,
    .slide-content-right {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        max-width: 88% !important;
        padding: 0 15px;
        overflow: hidden;
    }

    .slide-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        max-height: 2.4em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .slide-desc {
        font-size: 0.85rem;
        margin-bottom: 0.9rem;
        line-height: 1.35;
        max-height: 2.7em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .slide-btn {
        padding: 0.65rem 1.7rem;
        font-size: 0.85rem;
    }

    .slick-arrow {
        width: 45px;
        height: 45px;
    }

    .slick-arrow i {
        font-size: 16px;
    }

    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }

    /* Dots kontrollerini ortalama */
    .slick-dots {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        text-align: center;
        justify-content: center;
    }

    .slick-dots button {
        width: 8px;
        height: 8px;
    }

    .slick-dots .slick-active button {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 200px; /* Mobilde ÇOK YATAY! */
        min-height: 180px;
        max-height: 220px;
    }

    /* Mobilde tüm metin pozisyonlarını merkezle ve içeride tut */
    .slide-content,
    .slide-content-left,
    .slide-content-center,
    .slide-content-right {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
        max-width: 92% !important;
        padding: 0 10px !important;
        overflow: hidden !important;
        max-height: 180px;
    }

    .slide-title {
        font-size: 1.1rem;
        line-height: 1.15;
        margin-bottom: 0.3rem;
        max-height: 2.3em; /* 2 satır max */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 700;
    }

    .slide-desc {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
        max-height: 2.6em; /* 2 satır max */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .slide-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .slick-arrow {
        display: none !important;
    }

    /* Dots kontrollerini ortalama */
    .slick-dots {
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        text-align: center;
        justify-content: center;
    }

    .slick-dots button {
        width: 7px;
        height: 7px;
    }

    .slick-dots .slick-active button {
        width: 18px;
    }
}

/* Çok küçük ekranlar için (320px-380px arası) */
@media (max-width: 380px) {
    .hero-slide {
        height: 180px; /* Çok küçük ekranlarda SÜPER YATAY! */
        min-height: 160px;
    }

    .slide-content,
    .slide-content-left,
    .slide-content-center,
    .slide-content-right {
        max-height: 160px !important;
        padding: 0 8px !important;
    }

    .slide-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        max-height: 2.3em;
    }

    .slide-desc {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        max-height: 2.6em;
    }

    .slide-btn {
        padding: 0.35rem 0.9rem;
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .slick-dots {
        bottom: 6px;
    }

    .slick-dots button {
        width: 6px;
        height: 6px;
    }

    .slick-dots .slick-active button {
        width: 16px;
    }
}

/* ==========================================================================
   MENU VE ANA SAYFA İYİLEŞTİRMELERİ - FAZ 1
   ========================================================================== */

/* Top Bar CTA Butonu */
 

.top-bar-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
    color: white !important;
    padding: 0 9px !important;
    height: 20px !important;
    line-height: 1 !important;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1px;
    margin-right: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: inherit;
}

.top-bar-cta:hover {
    background: linear-gradient(135deg, #e74c1a 0%, #d43e15 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(243, 91, 35, 0.35);
}

/* İkinci CTA — Outline varyant */
.top-bar-cta.top-bar-cta-outline {
    background: transparent;
    border: 1px solid rgba(243, 91, 35, 0.65);
    color: rgba(255,255,255,0.85) !important;
    margin-left: -4px;
}
.top-bar-cta.top-bar-cta-outline:hover {
    background: rgba(243, 91, 35, 0.15);
    border-color: #f35b23;
    color: #fff !important;
    box-shadow: 0 3px 8px rgba(243, 91, 35, 0.2);
    animation: none;
}

/* SOS yanıp sönme animasyonu */
@keyframes dtPulse {
    0%        { background: transparent; box-shadow: none; border-color: rgba(243,91,35,0.55); color: rgba(255,255,255,0.9); }
    10%       { background: #f35b23;    box-shadow: 0 0 16px rgba(243,91,35,0.85); border-color: #f35b23; color: #fff; }
    22%       { background: transparent; box-shadow: none; border-color: rgba(243,91,35,0.55); color: rgba(255,255,255,0.9); }
    32%       { background: #f35b23;    box-shadow: 0 0 16px rgba(243,91,35,0.85); border-color: #f35b23; color: #fff; }
    44%, 100% { background: transparent; box-shadow: none; border-color: rgba(243,91,35,0.55); color: rgba(255,255,255,0.9); }
}
.top-bar-cta-pulse {
    animation: dtPulse 3.2s ease-in-out infinite;
}

.top-bar-cta i {
    margin-right: 6px;
}

.top-bar-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Top Bar Taksit Vurgusu */
.top-bar-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-bar-highlight i {
    color: #4CAF50;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 12px 4px rgba(76, 175, 80, 0.2);
    }
}

/* Campaign Banners Section */
.campaign-banners-section {
    margin-top: 0;
    margin-bottom: 60px;
}

.campaign-banner-slide {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.campaign-banner-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
}

.campaign-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.campaign-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.campaign-banner-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.campaign-banner-text-left {
    margin-right: auto;
}

.campaign-banner-text-center {
    margin: 0 auto;
    text-align: center;
}

.campaign-banner-text-right {
    margin-left: auto;
    text-align: right;
}

.campaign-banner-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.campaign-banner-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.95;
}

.campaign-banner-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.campaign-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.campaign-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.campaign-banner-btn i {
    transition: transform 0.3s ease;
}

.campaign-banner-btn:hover i {
    transform: translateX(4px);
}

/* Slick dots özelleştirme */
.campaign-banners-section .slick-dots {
    bottom: 20px;
}

.campaign-banners-section .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
}

.campaign-banners-section .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Slick arrows */
.campaign-banners-section .slick-prev,
.campaign-banners-section .slick-next {
    width: 50px;
    height: 50px;
    z-index: 3;
}

.campaign-banners-section .slick-prev:before,
.campaign-banners-section .slick-next:before {
    font-size: 50px;
    opacity: 0.7;
}

.campaign-banners-section .slick-prev {
    left: 25px;
}

.campaign-banners-section .slick-next {
    right: 25px;
}

/* Taksit Kartı Vurgusu */
.feature-card-highlight {
    background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
    color: white;
}

.feature-card-highlight .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-description {
    color: white;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 600;
    margin-top: 12px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 10px;
}

.feature-link i {
    font-size: 14px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Bağlantı çizgisi (adımlar arası) */
.how-it-works-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #f35b23 0%, #e74c1a 50%, #f35b23 100%);
    z-index: 0;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(243, 91, 35, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(243, 91, 35, 0.4);
    z-index: 2;
}

.step-number span {
    color: white;
    font-size: 24px;
    font-weight: var(--fw-bold);
    font-family: var(--font-heading);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
}

.step-icon i {
    font-size: 32px;
    color: #f35b23;
    transition: color 0.3s ease;
}

.step-card:hover .step-icon i {
    color: white;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-bold);
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* CTA Button */
.how-it-works-cta {
    text-align: center;
    margin-top: 60px;
}

.how-it-works-cta .btn-primary {
    margin-bottom: 16px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #4CAF50;
    margin-top: 12px;
}

.cta-note i {
    font-size: 16px;
}

/* Mobil Menü CTA */
.mobile-menu-cta {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f35b23 0%, #e74c1a 100%);
    color: white;
    padding: 11px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(243, 91, 35, 0.35);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    background: linear-gradient(135deg, #e74c1a 0%, #d43e15 100%);
    transform: scale(0.98);
    color: white;
}

.mobile-cta-btn.mobile-cta-btn-outline {
    background: rgba(243, 91, 35, 0.06);
    border: 1.5px solid rgba(243, 91, 35, 0.55);
    color: #e74c1a;
    box-shadow: none;
    animation: none !important;
}

.mobile-cta-btn.mobile-cta-btn-outline:hover,
.mobile-cta-btn.mobile-cta-btn-outline:active {
    background: rgba(243, 91, 35, 0.12);
    border-color: #f35b23;
    color: #d43e15;
    transform: scale(0.98);
}

.mobile-cta-btn i:first-child {
    margin-right: 10px;
    font-size: 15px;
}

.mobile-cta-btn i:last-child {
    font-size: 12px;
    opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

@media (max-width: 1024px) {
    /* Top bar'da gizle */
    .top-bar-cta,
    .top-bar-highlight {
        display: none;
    }

    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .how-it-works-steps::before {
        display: none;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBİL
   ========================================================================== */

@media (max-width: 768px) {
    /* Campaign Banners */
    .campaign-banner-slide {
        height: 250px;
        border-radius: 8px;
    }

    .campaign-banner-content {
        padding: 20px 15px;
    }

    .campaign-banner-text {
        max-width: 100%;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .campaign-banner-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .campaign-banner-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .campaign-banner-description {
        font-size: 13px;
        margin-bottom: 12px;
        display: none; /* Mobilde açıklamayı gizle */
    }

    .campaign-banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Slick dots mobilde küçült */
    .campaign-banners-section .slick-dots {
        bottom: 10px;
    }

    .campaign-banners-section .slick-dots li button:before {
        font-size: 8px;
    }

    /* Slick arrows mobilde gizle */
    .campaign-banners-section .slick-prev,
    .campaign-banners-section .slick-next {
        display: none !important;
    }

    /* How It Works */
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-card {
        padding: 40px 20px 30px;
    }

    .how-it-works-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cta-note {
        font-size: 13px;
        padding: 0 20px;
    }
}