﻿/* İbem - site özel stiller (mega menu, ürün dropdown vb.) */

/* Ürünlerimiz mega menü item'ları (resim solda, başlık sağda) */
.products-mega .product-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px !important;
    border-radius: 10px;
    color: inherit;
    transition: background-color .15s ease, transform .15s ease;
    text-decoration: none !important;
}

    .products-mega .product-menu-item:hover {
        background-color: rgba(0, 0, 0, 0.04);
        transform: translateY(-1px);
    }

.products-mega .product-menu-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .products-mega .product-menu-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .25s ease;
    }

.products-mega .product-menu-item:hover .product-menu-thumb img {
    transform: scale(1.08);
}

.products-mega .product-menu-text h6 {
    font-size: 14px;
    font-weight: 100;
    margin: 0;
    color: #111827;
}

.products-mega .product-menu-text small {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark-scheme .products-mega .product-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dark-scheme .products-mega .product-menu-text h6 {
    color: #f3f4f6;
}

.dark-scheme .products-mega .product-menu-thumb {
    background: rgba(255, 255, 255, 0.05);
}

/* Captcha (iletişim ve demo formu) */
.captcha-code {
    display: inline-block;
    font-family: "Courier New", Consolas, monospace;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    padding: 8px 18px;
    background: repeating-linear-gradient(45deg, #f5f5f5, #f5f5f5 6px, #eaeaea 6px, #eaeaea 12px);
    border: 1px dashed #c8c8c8;
    border-radius: 6px;
    color: #222;
    text-decoration: line-through;
    user-select: none;
}

.captcha-input {
    max-width: 180px;
}

/* Demo formu - seçili paket banner */
.demo-package-banner {
    background: #eff6ff;
    border-left: 3px solid #2563eb;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.demo-package-banner strong {
    color: #1e3a8a;
}

/* Mobile-only "Müşteri Girişi" butonu (logo ile hamburger menü arasında) */
header a.btn-mobile-login.btn-main {
    display: none;
}

@media only screen and (max-width: 992px) {
    /* Mobilde sağdaki masaüstü Müşteri Girişi butonunu gizle (orta butonla değiştiriliyor) */
    header .menu_side_area a.btn-main {
        display: none !important;
    }

    /* Mobilde logo ve hamburger menü arasında ortalı Müşteri Girişi butonu */
    header a.btn-mobile-login.btn-main {
        display: inline-block !important;
        padding: 7px 16px;
        font-size: 13px;
        line-height: 1.2;
        white-space: nowrap;
    }
}
