.product-container {
    display: block;
    width: 100%;
    margin: 3rem 0;
    box-sizing: border-box;
}

.search-bar-wrapper {
    z-index: 1;
    top: 8dvh;
    text-align: center;
    margin: 1rem 0;
    padding: 0 3rem;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 68px;
    background-color: var(--creamy-white);
}

#productSearchInput {
    width: 100%;
    max-width: 485px;
    font-size: 1.1rem;
    padding: 0.75rem 1.2rem;
    border: 2px solid var(--royal-blue, #0056b3);
    border-radius: 8px;
    outline: none;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    transform-origin: center;
}