/* ---------------------------------------
   SIMPLE LEFT-ALIGNED SEARCH BAR
---------------------------------------- */
.search-wrapper {
    position: relative;
    width: 300px;         /* small box exactly like Kalupur */
    margin: 10px 0 20px 0; /* LEFT aligned */
}

#search-input {
    width: 100%;
    padding: 10px 35px 10px 12px; /* icon space */
    font-size: 16px;
    border: 2px solid #9c0505;  /* red border */
    background: #ffffff;
    color: #000;
    border-radius: 0px;         /* square */
    outline: none;
    box-shadow: none;
}

/* Search icon */
.search-wrapper i {
    position: absolute;
    top: 50%;
    right: 10px;  /* icon on the right, same as Kalupur */
    transform: translateY(-50%);
    font-size: 16px;
    color: #9c0505;
}

/* MOBILE — make it full width left aligned */
@media (max-width: 600px) {
    .search-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 15px 0;
    }
}
