/* ==========================================================
   TakAVM - Ana Stil Dosyası
   EvaAVM benzeri tasarım - Yeşil/Turkuaz tema
   ========================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    /* Ana Renkler */
    --primary: #00897B;
    --primary-dark: #00695C;
    --primary-light: #4DB6AC;
    --primary-bg: #E0F2F1;
    
    /* Vurgu Renkleri */
    --accent: #FF6F00;
    --accent-dark: #E65100;
    --accent-light: #FFB74D;
    --danger: #E53935;
    --danger-dark: #C62828;
    --success: #43A047;
    --warning: #FFA000;
    --info: #039BE5;
    
    /* Nötr Renkler */
    --dark: #1B2631;
    --dark-2: #2C3E50;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    /* Arka Plan */
    --bg-body: #f4f6f8;
    --bg-card: #ffffff;
    --bg-header: #1B2631;
    --bg-header-top: #0f1923;
    --bg-footer: #1B2631;
    
    /* Tipografi */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-gap: 50px;
    --container-width: 1320px;
    
    /* Border */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Shadow */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    
    /* Transition */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

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

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

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

/* ==========================================================
   HEADER - ÜST BAR
   ========================================================== */

/* Top Bar */
.top-bar {
    background-color: var(--bg-header-top);
    color: var(--gray-400);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}
.top-bar a:hover {
    color: var(--white);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a {
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.top-bar-right a:hover {
    background: rgba(255,255,255,0.08);
}

.top-bar-divider {
    color: var(--gray-600);
    margin: 0 2px;
}

.top-bar .phone-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

/* Main Header */
.main-header {
    background-color: var(--bg-header);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.site-logo .logo-text span {
    color: var(--primary-light);
}

/* Search */
.header-search {
    flex: 1;
    max-width: 550px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 10px 45px 10px 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-form input::placeholder {
    color: var(--gray-500);
}

.search-form input:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.12);
}

.search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    font-size: 11px;
    gap: 3px;
}

.header-action-btn:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.header-action-btn i {
    font-size: 20px;
}

.header-action-btn .badge-count {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--danger);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ---- Category Navigation ---- */
.category-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.category-nav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar {
    display: none;
}

.cat-nav-item {
    position: relative;
}

.cat-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

.cat-nav-link:hover {
    color: var(--primary);
    background: var(--primary-bg);
    border-bottom-color: var(--primary);
}

.cat-nav-link i {
    font-size: 11px;
    opacity: 0.5;
}

/* Dropdown */
.cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: var(--transition);
    z-index: 999;
    padding: 8px 0;
    border-top: 3px solid var(--primary);
}

.cat-nav-item:hover .cat-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cat-dropdown a {
    display: block;
    padding: 8px 20px;
    color: var(--gray-700);
    font-size: 13px;
    transition: var(--transition-fast);
}

.cat-dropdown a:hover {
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding-left: 24px;
}

/* ==========================================================
   HERO / BANNER SLIDER
   ========================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--gray-200);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-slide .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,38,49,0.7) 0%, rgba(0,137,123,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 700px;
}

.slide-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.slide-content .btn-slide {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slide-content .btn-slide:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ==========================================================
   CTA BLOK KARTLARI
   ========================================================== */
.cta-section {
    padding: 30px 0;
}

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

.cta-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
    color: var(--gray-800);
}

.cta-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--gray-800);
}

.cta-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

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

.cta-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.cta-card-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================
   ÜRÜN KARTLARI
   ========================================================== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.section-title h2 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title .view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title .view-all:hover {
    color: var(--primary-dark);
}

.products-section {
    padding: var(--section-gap) 0;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

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

.product-card-image {
    position: relative;
    padding: 15px;
    text-align: center;
    background: var(--white);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-badge.sale {
    background: var(--danger);
    color: var(--white);
}

.product-card-body {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--gray-100);
}

.product-brand {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-card-title a {
    color: inherit;
}

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

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.product-price .old-price {
    font-size: 12px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-price .current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.product-installment {
    font-size: 12px;
    color: var(--gray-600);
    background: var(--primary-bg);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.product-installment strong {
    color: var(--primary-dark);
}

.product-card-actions {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
}

.product-card-actions .btn-add-cart {
    flex: 1;
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-card-actions .btn-add-cart:hover {
    background: var(--primary-dark);
}

.product-card-actions .btn-wishlist {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.product-card-actions .btn-wishlist:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-products i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.no-products p {
    font-size: 16px;
}

/* ==========================================================
   BUTONLAR
   ========================================================== */
.btn-primary-tak {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary-tak:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,137,123,0.3);
}

.btn-outline-tak {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-accent-tak {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-accent-tak:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background: var(--bg-footer);
    color: var(--gray-400);
    padding-top: 50px;
    margin-top: var(--section-gap);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 13px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 10px;
    opacity: 0.5;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact-item i {
    color: var(--primary-light);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

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

/* Newsletter */
.footer-newsletter p {
    font-size: 13px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-600);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray-600);
}

/* ==========================================================
   MOBILE BOTTOM NAV
   ========================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.mobile-bottom-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    flex: 1;
    transition: var(--transition-fast);
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

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

/* ==========================================================
   MOBILE MENU OVERLAY
   ========================================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 16px 20px;
    background: var(--bg-header);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-header .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.mobile-menu-header .logo-text span {
    color: var(--primary-light);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 10px 0;
}

.mobile-menu-body a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}

.mobile-menu-body a:hover {
    background: var(--primary-bg);
    color: var(--primary-dark);
}

.mobile-menu-body .sub-items a {
    padding-left: 36px;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-600);
}

/* ==========================================================
   FORM STİLLERİ
   ========================================================== */
.form-control-tak {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-control-tak:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}

.form-label-tak {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

/* ==========================================================
   ALERT KUTULARI
   ========================================================== */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ==========================================================
   PAGE HEADER (İç sayfalar)
   ========================================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 30px 0;
    color: var(--white);
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.breadcrumb-tak {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-tak li a {
    color: var(--gray-400);
}

.breadcrumb-tak li a:hover {
    color: var(--white);
}

.breadcrumb-tak li.active {
    color: var(--primary-light);
}

.breadcrumb-tak .separator {
    color: var(--gray-600);
}

/* ==========================================================
   GİRİŞ / KAYIT
   ========================================================== */
.auth-section {
    padding: 60px 0;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
}

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

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

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

.auth-divider span {
    background: var(--white);
    padding: 0 16px;
    position: relative;
    color: var(--gray-500);
    font-size: 13px;
}

/* ==========================================================
   TAKSİT TABLOSU
   ========================================================== */
.taksit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.taksit-table th {
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
}

.taksit-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-200);
}

.taksit-table tr:hover td {
    background: var(--gray-100);
}

/* ==========================================================
   YARDIMCI SINIFLAR
   ========================================================== */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-danger { color: var(--danger) !important; }
.text-success { color: var(--success) !important; }
.text-muted { color: var(--gray-500) !important; }

.bg-primary-light { background-color: var(--primary-bg) !important; }
.bg-white { background-color: var(--white) !important; }

.mt-section { margin-top: var(--section-gap); }
.mb-section { margin-bottom: var(--section-gap); }

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

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

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

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ==========================================================
   ÜRÜN LİSTESİ SAYFASI
   ========================================================== */
.products-page {
    padding: 30px 0;
}

.products-page-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Sidebar */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 80px;
}

.filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

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

.filter-group h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-group ul li a {
    display: block;
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 13px;
    transition: var(--transition-fast);
}

.filter-group ul li a:hover,
.filter-group ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Sort bar */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sort-bar .result-count {
    font-size: 13px;
    color: var(--gray-600);
}

.sort-bar select {
    padding: 6px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gray-700);
    outline: none;
}

/* ==========================================================
   ÜRÜN DETAY SAYFASI
   ========================================================== */
.product-detail {
    padding: 30px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.product-gallery {
    position: relative;
}

.product-gallery .main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 20px;
    background: var(--white);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    border-color: var(--primary);
}

.product-info h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-info .product-brand-detail {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.price-box {
    background: var(--primary-bg);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.price-box .main-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.price-box .old-price-detail {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.quantity-selector button:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quantity-selector input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-left: none;
    border-right: none;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

/* ==========================================================
   PAGINATION
   ========================================================== */
.pagination-tak {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.pagination-tak a,
.pagination-tak span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    text-decoration: none;
}

.pagination-tak a:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-tak .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
