/* =====================================================
   WIZZPER.DE – DEALS ÜBERSICHT (deals.css)
   ===================================================== */

/* ---------------- GLOBAL ---------------- */
body {
    font-family: "Inter", sans-serif;
    background: #f5f7fa;
    color: #142028;
}

.page-content {
    max-width: 1250px;
    margin: 40px auto 90px auto;
    padding: 0 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.text-intro {
    color: #64748b;
    margin-bottom: 30px;
}

/* =====================================================
   FILTERBOX
   ===================================================== */
.deal-filter {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
    margin-bottom: 35px;
}

.deal-filter input,
.deal-filter select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    font-size: 0.95rem;
}

.deal-filter input:focus,
.deal-filter select:focus {
    outline: none;
    border-color: #0d9488;
    background: #fff;
}

.filter-btn {
    background: #0d9488;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.filter-btn:hover {
    background: #0a7a71;
}

/* MOBILE FILTER */
@media (max-width: 900px) {
    .deal-filter {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 600px) {
    .deal-filter {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RESULT HEADLINE
   ===================================================== */
.result-headline {
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 700;
}

/* =====================================================
   DEAL GRID
   ===================================================== */
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 26px;
}

/* =====================================================
   DEAL CARD
   ===================================================== */
.deal-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.05);
    padding: 16px;
    transition: .25s;
}

.deal-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.deal-img {
    position: relative;
    display: block;
}

.deal-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f5f9;
}

/* Rabatt-Badge */
.badge-rabatt {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e63946;
    color: #fff;
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* TITLE */
.deal-name {
    margin-top: 12px;
    height: 54px;
    overflow: hidden;
}

.deal-name a {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 700;
    color: #0f172a;
}
.deal-name a:hover {
    text-decoration: underline;
}

/* PRICE */
.deal-price {
    margin-top: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #0d9488;
}

/* RATING */
.deal-rating {
    margin-top: 4px;
    font-size: .9rem;
    color: #475569;
}

/* SCORE */
.deal-score {
    margin-top: 6px;
    background: #e8fff3;
    color: #0c684d;
    padding: 4px 8px;
    font-size: .85rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
}

/* BUTTON */
.deal-btn {
    margin-top: 14px;
    background: #0d9488;
    color: #fff;
    text-align: center;
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.deal-btn:hover {
    background: #0a7a71;
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
    margin-top: 35px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    margin: 0 3px;
    border: 1px solid #d1d5db;
    text-decoration: none;
    color: #0d9488;
    font-weight: 600;
}

.pagination a:hover {
    background: #0d9488;
    color: #fff;
}

/* =====================================================
   MOBILE OPTIMIZATION
   ===================================================== */
@media (max-width: 600px) {
    .deal-card img {
        height: 180px;
    }

    .deal-name {
        height: auto;
    }
}
