﻿/* arama kutusu */
.ps-box {
    position: relative;
    max-width: 520px;
}

.ps-input-wrap {
    position: relative;
}

.ps-input {
    width: 100%;
    padding: 10px 34px 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
}

.ps-ico {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .7;
}

.ps-drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 420px;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    /* 💥 eklediklerim */
    z-index: 9999 !important;
}


.ps-empty {
    padding: 14px;
    color: #6b7280;
}

.ps-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    cursor: pointer;
    align-items: center;
}

    .ps-item:hover, .ps-item.is-active {
        background: #f5f7fb;
    }

.ps-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}

.ps-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ps-name {
    font-weight: 600;
    line-height: 1.2;
}

.ps-prices {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.ps-price {
    font-weight: 700;
}

.ps-old {
    text-decoration: line-through;
    color: #9ca3af;
}
