.search-page {
    display: flex;
    flex-direction: column;
    flex:1;
    height: 100%;
    min-height: 60vh;
}
.search-inp-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-bar {
    flex: 1;
    padding: 12px;
    outline: none;
    border-radius: 15px;
    border: 0.25px solid rgba(128, 128, 128, 0.43);
}

.search-bar::placeholder {
    font-family: "Poppins", sans-serif;
    color: var(--secondary);
}

.search-btn {
    font-family: "Poppins", sans-serif;
    padding: 12px;
    width: 140px;
    border-radius: 100px;
    background-color: var(--orange);
    color: white;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border: 0.5px solid #f9810d;
    transition: 0.4s;
}
.search-btn svg {
    width: 32px;
    height: 32px;
    display: none;
}


.search-btn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
}
.search-result .search-item{
  color: black;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.search-result .search-item:hover{
  background-color: rgba(249, 129, 13, 0.05);
}
.search-result .search-item:focus{
  outline: none;
}
.search-result h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 13px;
}

.search-result p {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: var(--secondary);
    position: relative;
}

.search-result .search-item:not(:last-child) p::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -20px;
    height: 1px;
    background-color: rgb(240, 240, 240);
}

@media (max-width: 768px) {
    .search-inp-wrapper {
        flex-direction: column;
        gap: 15px;
        position: relative;
    }
    .search-btn {
        width: 38px;
        height: 38px;
        padding: 12px;
        position: absolute;
        bottom: 50%;
        transform: translateY(48%);
        inset-inline-end: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-btn span {
        display: none;
    }
    .search-btn svg {
        display: block;
    }
    .search-bar {
        width: 100%;
        padding: 12px;
        border-radius: 50px;
    }
    .search-bar:focus {
        outline: none;
    }
    .search-btn:hover {
        cursor: pointer;
        
        color: var(--orange);
    }
    .search-btn:hover svg {
        stroke: orange;
    }

}