/* ------------------------- PRODUKTÜBERSICHT ------------------------- */

.chipbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto;
    max-width: 1200px;
    padding: 15px;
}

.chip {
    background-color: var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: auto;
    max-width: 300px;
    text-align: center;
    transition: 300ms ease;
}

.chip:hover {
    scale: 1.03;
}

.chip h1 {
    font-size: 1.4rem;
    margin: 10px;
}

.chip img {
    max-width: 300px;
}

.chip p {
    font-size: 0.55rem;
    font-style: italic;
}

.chip span {
    color: var(--accent-color);
}

.product-btn {
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 2px;
    box-shadow: 0px 10px 13px -7px #000000;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    height: 40px;
    justify-content: center;
    margin: 25px 60px;
    text-decoration: none;
}
