/* Start custom CSS for html, class: .elementor-element-1502d12 *//* Genel kapsayıcı */
.swipe-warp {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Başlıklar */
.swipe-warp h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
    border-left: 4px solid #ff6700;
    padding-left: 10px;
}

/* Liste grid yapısı */
.img-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Kart */
.img-list li {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 10px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.img-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Görseller */
.img-list img {
    width: 100%;
    max-width: 90px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 6px;
    display: block;
}

/* Model adı */
.img-list p {
    font-size: 13px;
    line-height: 1.3;
    color: #333;
    margin: 0;
    word-break: break-word;
}

/* Mobil iyileştirme */
@media (max-width: 480px) {
    .img-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .img-list p {
        font-size: 12px;
    }
}
/* Arama kutusu */
#xiaomiSearch {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Popup */
#modelPopup {
    position: fixed;
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: none;
    z-index: 9999;
    pointer-events: none;
    max-width: 240px;
}

/* Kart hover cursor */
.img-list li {
    cursor: pointer;
}/* End custom CSS */