/* General Setup */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.app-container {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h1 { color: #27ae60; text-align: center; margin-bottom: 5px; }
p { text-align: center; color: #666; font-size: 14px; }

/* Search Bar */
.search-section {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
}

button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.price {
    color: #e67e22;
    font-size: 18px;
    font-weight: bold;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.buy-link {
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.buy-link:hover {
    background-color: #2980b9 !important;
    transform: scale(1.02);
    transition: 0.2s;
}

.save-btn:hover {
    background-color: #ddd !important;
}

.product-card {
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}