/*==================================================
    SAYFA
==================================================*/

.mst-sales-team {
    background: #f5f7fb;
    padding: 60px 0 80px;
}


/*==================================================
    HEADER
==================================================*/

.sales-header {
    text-align: center;
    margin-bottom: 55px;
}

    .sales-header h1 {
        font-size: 42px;
        font-weight: 700;
        color: #222;
    }

    .sales-header p {
        color: #777;
        font-size: 17px;
        margin-top: 12px;
    }

.sales-search {
    width: 450px;
    max-width: 100%;
    margin: 30px auto 0;
    position: relative;
}

    .sales-search i {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 16px;
    }

    .sales-search input {
        width: 100%;
        height: 54px;
        border-radius: 50px;
        padding: 0 20px 0 48px;
        border: 1px solid #ddd;
        font-size: 15px;
        transition: .25s;
    }

        .sales-search input:focus {
            outline: none;
            border-color: #f58220;
            box-shadow: 0 0 0 3px rgba(245,130,32,.12);
        }

.sales-empty {
    display: none;
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 50px 0;
}

    .sales-empty.show {
        display: block;
    }


/*==================================================
    KART
==================================================*/

.sales-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    border: 1px solid #ececec;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .sales-card::before {
        /* Üstte ince, dekoratif bir gradient şerit */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), #ffb27a);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .sales-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,.10);
        border-color: transparent;
    }

        .sales-card:hover::before {
            transform: scaleX(1);
        }


/*==================================================
    FOTO (dairesel, halkalı)
==================================================*/

.sales-photo {
    flex-shrink: 0;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #fff3e8, #ffe4cc);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sales-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 6px 16px rgba(0,0,0,.10);
    }


/*==================================================
    İÇERİK
==================================================*/

.sales-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sales-top {
    min-width: 0;
}

    .sales-top h2 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.25;
        color: #1d1d1f;
        margin-bottom: 4px;
        word-break: break-word;
    }

.sales-title {
    display: block;
    color: #f58220;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sales-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f7fb;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
}

    .sales-region i {
        color: #f58220;
        font-size: 12px;
    }


/*==================================================
    ARA BUTONU
==================================================*/

.btn-call {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    white-space: nowrap;
    transition: .30s;
    box-shadow: 0 10px 22px rgba(245,130,32,.30);
}

    .btn-call span {
        display: none;
    }

    .btn-call:hover {
        background: #dc6d0d;
        color: #fff;
        transform: scale(1.08);
    }


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .sales-card {
        padding: 24px;
    }
}

@media(max-width:576px) {

    .sales-header h1 {
        font-size: 30px;
    }

    .sales-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .sales-content {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .sales-region {
        margin: 0 auto;
    }

    .btn-call {
        width: 100%;
        height: 48px;
        border-radius: 50px;
    }

        .btn-call span {
            display: inline;
        }
}
