.search-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: white;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.search-drawer.open {
    transform: translateX(0);
}

body.no-scroll {
    overflow: hidden;
}

.search-container {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #111;
    background: transparent;
    padding: 10px 0;
}

.search-input::placeholder {
    color: #777;
    font-weight: 400;
}

.search-submit-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.search-submit-btn img {
    width: 24px;
    height: 24px;
}

.search-close-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 28px;
    color: #555;
    line-height: 1;
    font-weight: 300;
}
.search-close-btn:hover {
    color: #000;
}