
.search-bar.is-sticky {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Keep the whole bar sticky */
.search-bar-wrapper {
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
    border-bottom: 1px solid #ddd;
}
       
   /* Centre the content inside it */
.search-bar {
    max-width: 800px;
    margin: 0 auto;
    padding: 12px 16px;
    box-sizing: border-box;
    text-align: center;
}
.search-bar h1 {
    margin: 0 0 8px; /* remove top margin, keep a bit below */
}



.search-bar form {
    margin: 0;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;      /* centre the whole list */
    max-width: 800px;    /* match the search bar + cards */
}

.product-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin: 12px auto;      /* centers the card */
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    max-width: 800px;       /* limit width */
    width: 100%;            /* allow shrinking on mobile */
    box-sizing: border-box; /* prevents overflow */
}


.product-image img {
    width: 120px;
    height: auto;
    border-radius: 6px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info strong {
    font-size: 1.1em;
    margin-bottom: 6px;
}

.meta small {
    display: block;
    color: #555;
}
