/* Genel Stiller */
.nav-link::after { transition: width 0.3s ease; }
.mobile-menu { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.support-button { transition: background-color 0.3s; }
.popup { will-change: transform; }
@keyframes slideIn { 0% { transform: translateX(100%); } 100% { transform: translateX(0); } }
.nav-link { position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #0095da; }
.nav-link:hover::after { width: 100%; }
.mobile-menu { transform: translateX(100%); }
.mobile-menu.active { transform: translateX(0); }
#mobile-header img { max-height: 40px; }
#mobile-menu-button { border: 2px solid #0095da; border-radius: 5px; padding: 8px; }
.support-button { position: fixed; right: 20px; bottom: 20px; z-index: 1000; background: #0095da; color: white; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; }
.support-button:hover { background: #0077b6; }

/* Chatbot Stilleri */
#chatbot-icon {
    position: fixed;
    bottom: 32px;
    left: 20px;
    z-index: 1000;
    background: #0095da;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}
#chatbot-icon:hover {
    transform: scale(1.1);
    background: #0077b6;
}
#chatbot-container {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 400px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#chatbot-container.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}
#chat-header {
    background: linear-gradient(90deg, #0095da, #0077b6);
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#chat-close {
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
#chat-close:hover {
    color: #e0e0e0;
}
#chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}
.message {
    margin: 15px 0;
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 85%;
    line-height: 1.5;
}
.user-message {
    background: #0095da;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}
.bot-message {
    background: white;
    color: #333;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.typing-indicator {
    display: none;
    font-style: italic;
    color: #666;
    padding: 10px;
}
.typing-indicator.active {
    display: block;
}
#chat-suggestions {
    padding: 10px;
    border-top: 1px solid #eee;
    background: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.suggestion-btn {
    padding: 8px 12px;
    background: #0095da;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}
.suggestion-btn:hover {
    background: #0077b6;
}
#chat-input-container {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    background: white;
}
#chat-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}
#chat-send {
    padding: 12px 20px;
    margin-left: 10px;
    background: #0095da;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
#chat-send:hover {
    background: #0077b6;
}
.call-button {
    margin-top: 10px;
    padding: 8px 15px;
    background: #0077b6;
    color: white;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease;
}
.call-button:hover {
    background: #0056b3;
}
@media (max-width: 480px) {
    #chatbot-container {
        width: 90%;
        height: 80vh;
        bottom: 10px;
        left: 5%;
    }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

#chatbot-icon {
  cursor: pointer;
  /* Diğer stilleriniz */
}

.shake {
  animation: shake 0.2s ease-in-out;
}


    /* ECA renk paleti */
    :root {
        --primary: #005b96;
        --secondary: #00a1e4;
        --accent: #0095da;
        --light-bg: #f5f8fa;
    }
    /* Fiyat ve aksiyon butonları için yeni tasarım */
.price-action-container {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.price-tag {
    background: white;
    color: var(--primary);
    padding: 0.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.65rem;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7eb;
}

.action-btn {
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #e5e7eb;
}

.action-btn:hover {
    background-color: #f5f8fa;
}

.action-btn.call {
    color: var(--primary);
}

.action-btn.whatsapp {
    color: #25D366;
}

.action-btn.detail {
    color: var(--accent);
    border-right: none;
}

.action-btn i {
    font-size: 1rem;
}

.detail-btn i {
    transition: transform 0.3s ease;
}

.detail-btn.active i {
    transform: rotate(180deg);
}

.product-features {
    display: none;
    padding: 0;
    background: white;
    transition: all 0.3s ease;
    border-top: 1px solid #e5e7eb;
}

.product-features.active {
    display: block;
    padding: 1rem;
}

/* Responsive ayarlamalar */
@media (max-width: 576px) {
    .price-tag {
        font-size: 0.55rem;
        padding: 0.4rem;
    }
    
    .action-btn {
        padding: 0.4rem;
    }
    
    .action-btn i {
        font-size: 0.9rem;
    }
}

/* Artık bu CSS'lere ihtiyaç yok */
.action-buttons {
    display: none;
}

.btn-call, .btn-whatsapp {
    display: none;
}
    /* Ürün kartları stili */
    .product-card {
        transition: all 0.3s ease;
        height: 100%;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        background-color: white;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .series-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: var(--primary);
        color: white;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        z-index: 10;
    }
    
    /* Yanıp sönen garanti rozeti */
    @keyframes blink {
        0% { background-color: var(--accent); }
        50% { background-color: #ff6b00; }
        100% { background-color: var(--accent); }
    }
    
    .warranty-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: var(--accent);
        color: white;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        z-index: 10;
        animation: blink 2s infinite;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    
    .product-image-container {
        position: relative;
        overflow: hidden;
        background-color: #f9fafb;
    }
    
    .product-image {
        transition: transform 0.5s ease;
        aspect-ratio: 1/1;
        object-fit: contain;
        padding: 10px;
    }
    
    .product-card:hover .product-image {
        transform: scale(1.05);
    }
    
    .product-title {
        color: var(--primary);
        font-weight: 700;
        font-size: 1rem;
        text-align: center;
        padding: 0.75rem;
        border-bottom: 1px solid #e5e7eb;
        background-color: #f9fafb;
    }
    
    .product-features {
        padding: 1rem;
        background: white;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .feature-icon {
        color: var(--accent);
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .price-tag {
        background: var(--accent);
        color: white;
        padding: 0.75rem;
        text-align: center;
        font-weight: 700;
        font-size: 0.8rem;
    }
    
    .price-subtitle {
        font-size: 0.55rem;
        opacity: 0.9;
        margin-top: 4px;
    }
    
    .action-buttons {
        display: flex;
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .btn-call, .btn-whatsapp {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }
    
    .btn-call {
        background-color: var(--primary);
        color: white;
    }
    
    .btn-call:hover {
        background-color: #004a7c;
    }
    
    .btn-whatsapp {
        background-color: var(--accent);
        color: white;
    }
    
    .btn-whatsapp:hover {
        background-color: #00a3a9;
    }
    
    /* Grid düzeni */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    /* Responsive ayarlamalar */
    @media (max-width: 1200px) {
        .product-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .product-title {
            font-size: 0.9rem;
        }
        
        .feature-item {
            font-size: 0.8rem;
        }
        
        .price-tag {
            font-size: 0.75rem;
        }
        
        .btn-call, .btn-whatsapp {
            font-size: 0.8rem;
        }
    }