/* ===== MODERN RESET VE TEMEL AYARLAR ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2dbdad;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --dark: #092423;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
    background: #f8fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== ANIMASYONLAR ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.bounce {
    animation: bounce 0.5s;
}

/* ===== HEADER STYLES ===== */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    /* position: sticky ve top: 0 kaldırıldı */
    z-index: 1000;
    animation: slideInLeft 0.5s ease;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    /* Header artık sabit değil */
}

/* Mobile header da sticky olmayacak */
@media (max-width: 768px) {
    .site-header {
        position: relative; /* Mobilde de sticky olmayacak */
    }
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    display: block !important;
    animation: fadeIn 0.5s ease;
}

.top-bar .container {
    display: flex;
    justify-content: center;
}

.top-links ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-links a {
    color: white;
    opacity: 0.9;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-1px);
}

/* Main Header */
.main-header {
    padding: 15px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Arama Barı ve İkonlar */
.search-and-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-form {
    display: flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    animation: slideInRight 0.5s ease;
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-button {
    padding: 0 25px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.search-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    animation: fadeIn 0.6s ease forwards;
}

.search-tags a {
    font-size: 11px;
    color: var(--gray);
    padding: 4px 10px;
    background: var(--light);
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.search-tags a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Header İkonlar */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none !important;
    position: relative;
    color: var(--dark);
    animation: slideInRight 0.5s ease;
}

.header-icon:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.header-icon i {
    font-size: 22px;
}

.header-icon span {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger);
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: bounce 0.5s;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.6s ease;
}

.nav-container {
    position: relative;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
}

.menu-item > a:hover {
    color: var(--primary);
    background: var(--light);
    transform: translateY(-2px);
}

.menu-item.has-children > a::after {
    content: '⌄';
    font-size: 12px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 25px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.menu-item:hover .dropdown-menu {
    display: grid;
}

.dropdown-category h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.dropdown-category h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-category h3 a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-category ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-category ul li a {
    display: block;
    padding: 6px 0;
    color: var(--gray);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-category ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    animation: fadeIn 0.6s ease;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeIn 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1;
    animation: bounce 0.5s;
}

.product-image-container {
    width: 100%;
    height: 200px;
    padding: 20px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
    text-decoration: none;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 8px;
    font-size: 13px;
    min-height: 38px;
    transition: var(--transition);
}

/* ===== CATEGORY PAGE ===== */
.category-page {
    padding: 30px 0;
    animation: fadeIn 0.6s ease;
}

.breadcrumb {
    padding: 15px 0;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.breadcrumb-item i {
    color: var(--border);
    font-size: 12px;
}

.category-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
    animation: slideInLeft 0.5s ease;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.category-list a.active {
    color: var(--primary);
    font-weight: 500;
}

/* Filtreleme */
.filter-section {
    margin-top: 20px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option input[type="checkbox"] {
    margin: 0;
}

.filter-option label {
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option label:hover {
    color: var(--primary);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    padding: 30px 0;
    animation: fadeIn 0.6s ease;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-gallery {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    animation: slideInLeft 0.5s ease;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
    cursor: zoom-in;
    transition: var(--transition);
}

.main-image:hover {
    transform: scale(1.01);
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

.product-info-detail {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    animation: slideInRight 0.5s ease;
}

.product-title-detail {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.stock-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.stock-badge.in-stock {
    background: #dcfce7;
    color: #166534;
}

.stock-badge.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-discount {
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 0.5s;
}

/* Product Options */
.product-options {
    margin-bottom: 25px;
    animation: fadeIn 0.6s ease;
}

.option-group {
    margin-bottom: 20px;
}

.option-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
}

.option-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-item {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    background: white;
}

.option-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.option-item.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Quantity & Actions */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.quantity-control:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--gray-light);
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Social Share */
.social-share {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.6s ease;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow);
}

/* Product Tabs */
.product-tabs {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeIn 0.6s ease;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--light);
}

.tab-header {
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-header:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.tab-header.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.close-cart:hover {
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
}

.cart-item:hover .cart-item-image {
    transform: scale(1.05);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
    text-decoration: none;
    color: var(--dark);
    display: block;
    transition: var(--transition);
}

.cart-item-title:hover {
    color: var(--primary);
}

.cart-item-meta {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.remove-item {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--light);
    animation: fadeIn 0.3s ease;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.cart-actions .btn {
    width: 100%;
    margin-bottom: 10px;
    transition: var(--transition);
}

.cart-actions .btn:hover {
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--border);
    opacity: 0.5;
    animation: bounce 0.5s;
}

.empty-cart h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark);
}

.empty-cart p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.cart-overlay.active {
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: white;
    margin-top: 60px;
    padding: 60px 0 0;
    animation: fadeIn 0.6s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.contact-item div span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.contact-item div a {
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item div a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    gap: 8px;
    text-decoration: none !important;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #0da271;
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mobile-menu-links a i {
    width: 20px;
    text-align: center;
}

.mobile-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-category-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--border);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .category-layout {
        grid-template-columns: 220px 1fr;
    }
    
    .dropdown-menu {
        width: 700px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .search-and-icons {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-container {
        width: 100%;
        max-width: 100%;
    }
    
    .header-icons {
        justify-content: center;
        width: 100%;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobil Menüyü Göster */
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Header Düzeni */
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 10px 0;
    }
    
    .top-links ul {
        justify-content: center;
        gap: 15px;
    }
    
    /* Kategori Layout */
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    /* Product Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    /* Product Detail */
    .product-image-container {
        height: 150px;
        padding: 15px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .action-buttons .btn {
        min-width: 100%;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Tab Headers */
    .tab-headers {
        flex-direction: column;
    }
    
    .tab-header {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
        border-left: 3px solid transparent;
    }
    
    .tab-header.active {
        border-left-color: var(--primary);
        border-bottom-color: var(--border);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .header-icon {
        padding: 6px 8px;
    }
    
    .header-icon span {
        font-size: 10px;
    }
    
    .search-button {
        padding: 0 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.hidden { display: none !important; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }

/* ===== LOADING STATES ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== MESSAGES ===== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pagination .active span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .disabled span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== FAVORITE BUTTON ===== */
.favorite-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.favorite-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
    transform: scale(1.1);
}

.favorite-btn.active {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    animation: bounce 0.5s;
}

.favorite-btn.active:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.1);
}

/* ===== EMPTY STATES ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    animation: fadeIn 0.6s ease;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--border);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark);
}

.empty-state p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== PRODUCT ACTIONS OVERLAY ===== */
.product-actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
    transform: translateX(10px);
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 14px;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}


/* ===== EK STILLER - ANA SAYFA, FAVORİLER, ARAMA ===== */

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item i {
    font-size: 10px;
    color: var(--border);
}

/* Hero Slider Düzenlemeleri */
.hero-slider-section {
    position: relative;
    margin: 20px 0 30px;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
    pointer-events: all;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    color: var(--dark) !important;
    transition: var(--transition);
    margin: 0 15px !important;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background: var(--primary) !important;
    color: white !important;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-slider .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: var(--transition);
}

.hero-slider .owl-dot.active {
    background: white !important;
    transform: scale(1.2);
}

/* Vitrin Slider */
.vitrin-slider .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.vitrin-slider .owl-prev,
.vitrin-slider .owl-next {
    width: 36px;
    height: 36px;
    background: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    color: var(--dark) !important;
    border: 1px solid var(--border) !important;
    transition: var(--transition);
}

.vitrin-slider .owl-prev:hover,
.vitrin-slider .owl-next:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

/* Hikaye Slider */
.stories-slider .owl-nav {
    display: none;
}

/* Responsive Düzeltmeler */
@media (max-width: 768px) {
    .hero-slider .owl-prev,
    .hero-slider .owl-next {
        width: 32px;
        height: 32px;
        font-size: 16px !important;
        margin: 0 5px !important;
    }
    
    .hero-slider .owl-dots {
        bottom: 10px;
    }
    
    .vitrin-slider .owl-nav {
        display: none;
    }
}

/* Ürün Kartları için Ortak Düzeltmeler */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: var(--danger);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-image-link {
    display: block;
    text-decoration: none;
}

/* Favori butonu için ek stiller */
.favorite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: white;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.favorite-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.favorite-btn.active {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

/* Buton grupları için */
.btn-group {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.ml-10 {
    margin-left: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Grid düzeni düzeltmeleri */
.row {
    margin-left: -10px;
    margin-right: -10px;
}

.row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading state */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}