/* PAGE */

.alergeny-page {
    padding: 60px 0;
}

.alergeny-page h1 {
    margin-bottom: 30px;
}

.alergeny-page h2 {
    margin-top: 60px;
    margin-bottom: 30px;
}

/* BREADCRUMB */

.breadcrumb {
    font-size: 14px;
    margin-bottom: 30px;
    color: #777;
}

.breadcrumb a {
    text-decoration: none;
    color: #f15649;
}

.breadcrumb span {
    margin: 0 6px;
}

/* INFO BOX */

.info-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box .highlight {
    font-weight: 600;
    color: #f15649;
}

/* GRID */

.alergen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */

.alergen-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.alergen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */

.alergen-icon-wrap {
    position: relative;
    flex-shrink: 0;
}

.alergen-icon-wrap img {
    width: 70px;
}

.alergen-number {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #f15649;
    color: white;
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */

.alergen-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #222;
}

.alergen-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .alergen-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .alergen-icon-wrap img {
        width: 60px;
    }
}