/* Home-style search bar for PostSales pages (scoped; mirrors Anasayfa custom-search-*). */
.post-sales-content .custom-search-container {
    position: static;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
    width: 58%;
    max-width: 100%;
}

.post-sales-content .search-section {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background-color: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.post-sales-content .custom-search-input {
    padding: 12px;
    width: 480px;
    max-width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s;
    font-family: "Calibri", sans-serif;
    font-size: 19px;
    border-right: none !important;
    margin: 0 !important;
}

.post-sales-content .custom-search-input:focus {
    border-color: #0056b3 !important;
    box-shadow: 0 2px 10px rgba(0, 86, 179, 0.5) !important;
    outline: none;
}

.post-sales-content .custom-search-input::placeholder {
    color: #0056b3 !important;
}

.post-sales-content .custom-search-button {
    padding: 10px 14px;
    width: 108px;
    height: 48px;
    flex-shrink: 0;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: white;
    margin-left: 0;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.post-sales-content .custom-search-button:hover {
    background-color: #0056b3;
    transform: translateY(0) !important;
}

.post-sales-content .custom-search-button i {
    font-size: 15px;
}

.post-sales-content .tagline-container1 {
    justify-content: center;
    position: relative;
    min-height: 0;
    align-items: center;
}

@media (max-width: 768px) {
    .post-sales-content .custom-search-container {
        width: 90% !important;
    }

    .post-sales-content .tagline-container1 {
        height: auto !important;
    }

    .post-sales-content .custom-search-input {
        font-size: 16px;
        height: 48px;
    }

    .post-sales-content .custom-search-button {
        height: 48px;
        min-width: 80px;
        width: auto;
        padding: 10px 12px;
    }
}

/* iPad portrait (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .post-sales-content .custom-search-container {
        width: 75% !important;
    }

    .post-sales-content .custom-search-input {
        height: 52px;
        font-size: 17px;
    }

    .post-sales-content .custom-search-button {
        height: 52px;
        min-width: 100px;
        font-size: 16px;
    }
}

/* iPad landscape (1024px – 1194px) */
@media (min-width: 1024px) and (max-width: 1194px) {
    .post-sales-content .custom-search-container {
        width: 62% !important;
    }

    .post-sales-content .custom-search-input {
        height: 50px;
        font-size: 18px;
    }

    .post-sales-content .custom-search-button {
        height: 50px;
    }
}
