@charset "utf-8";

body { font-family: sans-serif; background: #f3f3f3; padding: 20px; }
.search-box { margin-bottom: 20px; text-align: center; }
input { padding: 10px; width: 300px; border: 1px solid #ccc; border-radius: 4px; }
button { padding: 10px 20px; background: #ff9900; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }

#results { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.item-card { background: white; padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.item-card img { max-width: 100%; height: auto; margin-bottom: 10px; align-self: center; }
.item-title { font-size: 0.9em; font-weight: bold; height: 3em; overflow: hidden; margin-bottom: 10px; }
.item-price { color: #B12704; font-size: 1.1em; margin-bottom: 10px; }
.amazon-link { display: block; text-align: center; background: #ffd814; color: black; text-decoration: none; padding: 8px; border-radius: 20px; font-size: 0.8em; }
