/* --- Layout Basics --- */
body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 20px;
}

/* --- Headings --- */
h2 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

/* --- Grid Layout --- */
.grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* --- Card --- */
.card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* --- Card Image --- */
.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #fafafa;
}

/* --- Title --- */
.title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    min-height: 48px;
}

/* --- Price --- */
.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
}

/* --- Merchant / Shop --- */
.merchant {
    font-size: 0.9rem;
    color: #6b7280;
}

/* --- Button --- */
.btn {
    margin-top: auto;
    display: inline-block;
    padding: 10px 14px;
    background: #2563eb;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #1e4fcf;
}

/* --- Filterbox (nur Gold.de) --- */
.filterbox {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filterbox label {
    font-weight: 600;
    color: #333;
}

.filterbox select,
.filterbox input {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 150px;
}

.filterbox button {
    padding: 10px 16px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
