:root {
    --primary-color: #4F46E5;
    --secondary-color: #FF6B6B;
    --urgent-color: #ef4444;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --card-radius: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: #334155;
    padding-top: 0;
    overflow-x: hidden;
}

/* --- NAVBAR & GLOBAL --- */
.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 0.8rem 0; }
.navbar-brand { font-weight: 800; color: var(--primary-color) !important; font-size: 1.4rem; letter-spacing: -0.5px; }
.search-input { border-radius: 50px; padding: 10px 45px 10px 20px; border: 1px solid #e2e8f0; background: #f8fafc; transition: 0.3s; }
.search-input:focus { background: #fff; border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.search-btn { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); border: none; background: var(--primary-color); color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-icon-wrapper { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.cart-icon-wrapper:hover { background: #e2e8f0; }
.cart-badge { position: absolute; top: -2px; right: -2px; background: var(--secondary-color); color: white; border-radius: 50%; font-size: 0.7rem; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; font-weight: bold; }

/* --- SLIDER --- */
.hero-container { margin-top: 20px; margin-bottom: 40px; }
.main-slider { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.main-slider .carousel-item img { width: 100%; height: 500px;}
@media (max-width: 768px) { .main-slider .carousel-item img { height: 200px; } }

/* --- KAMPANYA KARTI STİLLERİ --- */
.product-card-campaign { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--card-radius); overflow: hidden; position: relative; height: 100%; transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card-campaign:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.pcc-img-wrapper { position: relative; height: 200px; overflow: hidden; background: #f1f5f9; }
.pcc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card-campaign:hover .pcc-img { transform: scale(1.1); }
.countdown-bar { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(30, 41, 59, 0.95); color: #fbbf24; font-size: 0.75rem; padding: 6px; text-align: center; font-weight: 600; backdrop-filter: blur(4px); }
.pcc-badge { position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; color: #fff; z-index: 2; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.bg-urgent { background: var(--urgent-color); } .bg-purple { background: var(--primary-color); }
.pcc-body { padding: 1.2rem; display: flex; flex-direction: column; flex-grow: 1; }
.feature-tags { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.tag-pill { background: #f1f5f9; color: #64748b; font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.pcc-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 2.8em; }
.stock-wrapper { margin: 10px 0; }
.stock-progress { height: 6px; background: #e2e8f0; border-radius: 10px; overflow: hidden; margin-bottom: 4px; }
.stock-bar-fill { height: 100%; background: var(--urgent-color); border-radius: 10px; animation: pulse 2s infinite; }
.stock-text { font-size: 0.7rem; color: var(--urgent-color); font-weight: 700; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }
.pcc-footer { margin-top: auto; padding-top: 10px; border-top: 1px dashed #e2e8f0; }
.pcc-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.price-old { text-decoration: line-through; color: #94a3b8; font-size: 0.85rem; }
.price-new { font-size: 1.25rem; font-weight: 800; color: var(--primary-color); }
.btn-pcc-cart { width: 100%; background: var(--dark-bg); color: #fff; border: none; padding: 10px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-pcc-cart:hover { background: var(--primary-color); box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3); }

/* --- STANDART ÜRÜN KARTI --- */
.product-card-modern { background: #fff; border: 1px solid #e2e8f0; border-radius: var(--card-radius); overflow: hidden; position: relative; height: 100%; transition: all 0.3s ease; }
.product-card-modern:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: transparent; }
.pcm-img-wrapper { background: #f8fafc; padding: 1.5rem; position: relative; text-align: center; height: 220px; display: flex; align-items: center; justify-content: center; }
.pcm-img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s ease; }
.product-card-modern:hover .pcm-img { transform: scale(1.08); }
.pcm-badge { position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; z-index: 2; }
.badge-new { background: var(--dark-bg); color: #fff; } .badge-sale { background: var(--secondary-color); color: #fff; }
.pcm-body { padding: 1.25rem; }
.pcm-cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; font-weight: 700; margin-bottom: 5px; }
.pcm-title { font-size: 1rem; font-weight: 700; color: var(--dark-bg); margin-bottom: 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 2.8em; }
.pcm-footer { display: flex; align-items: end; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid #f1f5f9; }
.pcm-price-old { font-size: 0.85rem; text-decoration: line-through; color: #cbd5e1; }
.pcm-price-current { font-size: 1.2rem; font-weight: 800; color: var(--primary-color); line-height: 1; }
.btn-pcm-add { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid #e2e8f0; color: var(--dark-bg); display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.btn-pcm-add:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.store-nav { justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.store-tab-link { background: #fff; border: 1px solid #e2e8f0; padding: 10px 24px; border-radius: 50px; color: #64748b; font-weight: 600; transition: all 0.3s ease; cursor: pointer; font-size: 0.95rem; }
.store-tab-link:hover { background: #f8fafc; color: var(--primary-color); transform: translateY(-2px); }
.store-tab-link.active { background: var(--dark-bg); color: #fff; border-color: var(--dark-bg); box-shadow: 0 5px 15px rgba(30, 41, 59, 0.3); }


/* --- NEDEN BİZ / TABS STİLLERİ --- */
.tech-tabs-container { background: #ffffff; border-radius: 20px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; }
.tech-tab-btn { background: #f8fafc; border: 1px solid #e2e8f0; color: #64748b; padding: 10px 24px; border-radius: 50px; white-space: nowrap; font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.tech-tab-btn.active { background: var(--primary-color); color: white; border-color: var(--primary-color); box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); transform: translateY(-2px); }
.video-preview-area { position: relative; height: 250px; background-color: #000; border-radius: 15px; overflow: hidden; cursor: pointer; }
.video-preview-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.3s; }
.video-preview-area:hover .video-preview-img { opacity: 0.6; transform: scale(1.05); }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; border: 2px solid white; }
.custom-nav-scroll { display: flex; overflow-x: auto; padding-bottom: 10px; gap: 10px; scrollbar-width: none; }
.custom-nav-scroll::-webkit-scrollbar { display: none; }

/* --- YATAY SCROLL & DERSLER --- */
.sample-filter-btn { background: transparent; border: 2px solid #e2e8f0; border-radius: 50px; padding: 6px 20px; font-weight: 700; color: #64748b; transition: all 0.3s ease; font-size: 0.9rem; }
.sample-filter-btn:hover, .sample-filter-btn.active { background: var(--dark-bg); color: white; border-color: var(--dark-bg); }
.horizontal-scroll-wrapper { display: flex; overflow-x: auto; gap: 20px; padding: 10px 5px 30px 5px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.horizontal-scroll-wrapper::-webkit-scrollbar { display: none; }
.lesson-card { min-width: 280px; max-width: 280px; background: white; border-radius: 20px; overflow: hidden; border: 1px solid #f1f5f9; box-shadow: 0 10px 25px rgba(0,0,0,0.03); transition: transform 0.3s ease; position: relative; }
.lesson-card:hover { transform: translateY(-10px); }
.lesson-thumb { height: 160px; background-color: #333; position: relative; }
.lesson-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.play-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: 0.3s; }
.lesson-card:hover .play-badge { background: var(--primary-color); transform: translate(-50%, -50%) scale(1.1); }
.subject-badge { position: absolute; top: 15px; left: 15px; background: rgba(15, 23, 42, 0.9); color: white; font-size: 0.7rem; padding: 4px 10px; border-radius: 6px; font-weight: 600; }
.lesson-body { padding: 20px; }
.lesson-title { font-weight: 700; font-size: 1rem; margin-bottom: 5px; color: #1e293b; }
.lesson-topic { color: #64748b; font-size: 0.85rem; margin-bottom: 15px; }
.btn-watch { width: 100%; background-color: #f1f5f9; color: #334155; font-weight: 600; border: none; padding: 10px; border-radius: 12px; transition: 0.3s; font-size: 0.9rem; }
.lesson-card:hover .btn-watch { background-color: var(--primary-color); color: white; }

/* --- BAŞARI HİKAYELERİ --- */
.reviews-section { background-color: #f8fafc; position: relative; overflow: hidden; }
.reviews-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(#4f46e5 1px, transparent 1px); background-size: 30px 30px; opacity: 0.05; z-index: 0; }
.reviews-scroll-container { display: flex; overflow-x: auto; padding: 20px 10px 40px 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reviews-scroll-container::-webkit-scrollbar { display: none; }
.review-card { min-width: 320px; max-width: 320px; background: white; border-radius: 20px; padding: 25px; border: 1px solid #eef2ff; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-right: 20px; position: relative; z-index: 1; transition: 0.3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1); border-color: var(--primary-color); }
.student-header { display: flex; align-items: center; margin-bottom: 15px; }
.student-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #e0e7ff; margin-right: 15px; }
.student-info h6 { font-weight: 700; margin: 0; color: #1e293b; font-size: 0.95rem; }
.rank-badge { font-size: 0.7rem; padding: 3px 8px; border-radius: 6px; font-weight: 600; display: inline-block; margin-top: 4px; color: white; background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.net-badge { font-size: 0.7rem; padding: 3px 8px; border-radius: 6px; font-weight: 600; display: inline-block; margin-top: 4px; color: white; background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%); }
.review-text { color: #475569; font-size: 0.9rem; line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.stars { color: #fbbf24; margin-bottom: 10px; font-size: 0.8rem; }
.btn-review-video { background-color: #f1f5f9; color: var(--primary-color); width: 100%; border: none; border-radius: 12px; padding: 10px; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.btn-review-video:hover { background-color: var(--primary-color); color: white; }

/* --- APP & FOOTER & MOBILE UTILS --- */
.compact-app-bar { background: linear-gradient(90deg, #1e293b 0%, #334155 100%); padding: 30px 0; color: white; }
.app-btn-sm { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: white; text-decoration: none; padding: 8px 20px; border-radius: 8px; font-size: 0.85rem; display: inline-flex; align-items: center; transition: 0.3s; }
.app-btn-sm:hover { background: white; color: #1e293b; }
.ssl-bar { background-color: #f8fafc; border-top: 1px solid #e2e8f0; padding: 15px 0; text-align: center; color: #64748b; font-size: 0.85rem; }
.ssl-icon { font-size: 1.5rem; margin: 0 10px; color: #94a3b8; vertical-align: middle; }
.mobile-login-bar { background: white; padding: 10px; border-bottom: 1px solid #f1f5f9; display: none; gap: 10px; }
.btn-mobile-login { flex: 1; padding: 8px; border-radius: 50px; text-align: center; text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.btn-mob-student { background: var(--primary-color); color: white; } .btn-mob-kurum { background: #fff; color: var(--dark-bg); border: 1px solid #cbd5e1; }
@media (max-width: 991px) { .mobile-login-bar { display: flex; } .desktop-login-area { display: none !important; } }
/* --- TOP BAR (EN ÜST ŞERİT) --- */
.top-bar {
    background-color: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    padding: 8px 0;
}
.top-bar a { color: #fff; text-decoration: none; margin-left: 15px; transition: 0.2s; }
.top-bar a:hover { color: var(--secondary-color); }

/* --- HEADER / NAVBAR --- */
.navbar-custom {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid #f1f5f9;
}

.navbar-brand {
    font-weight: 800;
    color: #FF9800 !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin-right: 0;
}

/* Arama Kutusu (Modern & Ortalı) */
.search-wrapper {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.search-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px;
    transition: all 0.3s ease;
}

.search-group:focus-within {
    background: #fff;
    border-color: #ff9800;
    box-shadow: 0 0 0 4px rgba(229, 179, 70, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    box-shadow: none !important; /* Bootstrap focus shadow'u kaldır */
    padding: 8px 15px;
    font-size: 0.9rem;
    height: 40px;
}

.search-btn {
    background: #ff9800;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0; /* Küçülmesini engelle */
}

.search-btn:hover {
    background: var(--dark-bg);
    transform: scale(1.05);
}

/* İkonlar ve Butonlar */
.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
}

.icon-btn:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.badge-float {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--urgent-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    border: 2px solid #fff;
}

/* Mobil Menü Düzeltmeleri */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        border-top: 1px solid #f1f5f9;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        z-index: 1000;
    }
    .search-wrapper {
        margin: 15px 0;
        max-width: 100%;
    }
}
/* --- PREMİUM GİRİŞ BUTONU --- */
.btn-login-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%); /* Modern Gradient */
    color: white !important;
    border: none;
    font-size: 13px; /* İstediğin boyut */
    font-weight: 700; /* Kalın yazı */
    letter-spacing: 0.5px;
    padding: 12px 35px; /* Daha geniş, daha basılabilir */
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4); /* Hafif mavi gölge */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase; /* Daha kurumsal durur */
}

/* Hover Efekti (Üzerine gelince) */
.btn-login-premium:hover {
    background: linear-gradient(135deg, #4338ca 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.02); /* Hafif yukarı kalkma */
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.6); /* Gölge parlaması */
}

/* Buton içindeki ikon */
.btn-login-premium i {
    font-size: 16px; /* İkon yazıdan biraz büyük olsun */
}

/* --- MOBİL BAR DÜZENLEMESİ (Tek Buton İçin) --- */
.mobile-login-bar {
    background: white;
    padding: 15px; /* Biraz daha ferah */
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    display: none;
    z-index: 1000;
}

@media (max-width: 991px) {
    .mobile-login-bar { display: block; } /* Flex yerine Block yapıyoruz ki buton tam otursun */
}
.btn-login-premium {
    background: linear-gradient(135deg, #f27a1a 0%, #ea580c 100%);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(242, 122, 26, 0.3);
    transition: all 0.3s ease;
}
.btn-login-premium:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 122, 26, 0.45);
}
.btn-login-premium i {
    color: rgba(255, 255, 255, 0.9);
}
.search-group-modern {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}
.search-group-modern:focus-within {
    border-color: #f27a1a;
    box-shadow: 0 4px 15px rgba(242, 122, 26, 0.15);
}
.search-input-modern {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 20px;
    height: 42px;
    width: 100%;
    color: #333;
}
.search-btn-modern {
    background-color: #f27a1a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    margin-top: 8px;
    padding: 10px 0;
    z-index: 1001;
    border: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
}
.search-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    color: #333;
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background-color: #fff7ed; }
.s-img {
    width: 40px; height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-right: 15px;
}
.s-info { flex-grow: 1; }
.s-name {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    color: #333;
    margin-bottom: 2px;
}
.s-cat { font-size: 0.75rem; color: #999; }
.s-price {
    font-weight: 700;
    color: #f27a1a;
    font-size: 0.95rem;
}
.s-price-old {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: #ccc;
    margin-right: 5px;
}
.no-result {
    padding: 15px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}
/* --- BASKET MODAL ÖZEL CSS --- */

/* Ana Kapsayıcı (Sadece bu modalı etkiler) */
.basketmodal {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    overflow: hidden; /* Taşmaları engelle */
}

.basketmodal .modal-body {
    padding: 30px 25px;
    background-color: #fff;
}

/* 1. Başarı İkonu */
.basketmodal .icon-container {
    width: 60px; height: 60px;
    background: #ecfdf5; color: #10b981;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.8rem;
    animation: popIcon 0.5s ease-out;
}
@keyframes popIcon {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 2. Ürün Özeti Kutusu */
.basketmodal .added-product-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.basketmodal .added-img {
    width: 55px; height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    background-color: #fff;
}

/* Ürün başlığı çok uzunsa taşmasın */
.basketmodal .product-title-limit {
    font-size: 0.9rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Max 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 3. Kampanya Kutusu */
.basketmodal .offer-alert {
    background: #fff7ed;
    border: 1px dashed #fdba74;
    color: #9a3412;
    border-radius: 10px;
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.4;
}
.basketmodal .offer-icon {
    font-size: 1rem;
    color: #f97316;
}

/* 4. Butonlar */
.basketmodal .btn-go-basket {
    background: #1e293b; color: white; width: 100%; padding: 14px;
    border-radius: 10px; font-weight: 600; font-size: 0.95rem; border: none;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; transition: 0.2s;
}
.basketmodal .btn-go-basket:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.basketmodal .btn-keep-shopping {
    background: transparent; color: #64748b; width: 100%; padding: 10px;
    font-weight: 500; font-size: 0.9rem; border: none; margin-top: 5px;
}
.basketmodal .btn-keep-shopping:hover {
    color: #334155;
    text-decoration: underline;
}

/* Mobil Düzenlemesi */
@media (max-width: 576px) {
    .basketmodal .added-product-box { padding: 10px; }
}
/* --- TECH FOOTER (UPDATED COLOR: #334156) --- */

.tech-footer {
    background-color: #334156; /* İSTEDİĞİN YENİ RENK */
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Arka Planda Hafif Izgara Deseni */
.tech-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.footer-container { position: relative; z-index: 1; }

/* Marka ve Açıklama */
.tech-brand-desc {
    color: #94a3b8; /* Okunaklı Gri */
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Başlıklar */
.tech-footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Linkler */
.tech-footer-links { list-style: none; padding: 0; margin: 0; }
.tech-footer-links li { margin-bottom: 12px; }

.tech-footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex; align-items: center;
}

.tech-footer-links a:hover {
    color: #f27a1a; /* Turuncu Vurgu */
    padding-left: 10px;
}
.tech-footer-links a::before {
    content: '>';
    font-family: monospace; margin-right: 0px; opacity: 0;
    color: #f27a1a; transition: 0.3s; font-weight: bold;
}
.tech-footer-links a:hover::before { margin-right: 8px; opacity: 1; }

/* --- YENİ: İLETİŞİM BİLGİLERİ --- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-item {
    display: flex; align-items: flex-start;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-icon {
    min-width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #f27a1a;
    margin-right: 15px;
    font-size: 1rem;
    transition: 0.3s;
}
.contact-item:hover .contact-icon {
    background: #f27a1a; color: white; border-color: #f27a1a;
}
.contact-link { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: white; }

/* Sosyal Medya */
.tech-social-links { display: flex; gap: 12px; }
.tech-social-btn {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; transition: all 0.3s;
}
.tech-social-btn:hover {
    background: #f27a1a; color: white; border-color: #f27a1a;
    transform: translateY(-3px);
}

/* Alt Çizgi */
.tech-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}
.tech-copyright { color: #94a3b8; font-size: 0.85rem; }

@media (max-width: 991px) {
    .tech-footer { text-align: center; }
    .tech-footer-links a { justify-content: center; }
    .tech-social-links { justify-content: center; }
    .contact-item { flex-direction: column; align-items: center; text-align: center; }
    .contact-icon { margin-right: 0; margin-bottom: 10px; }
    .tech-footer-bottom { flex-direction: column; }
}
