* {
    margin: 0;
    padding: 0;
}

/* ── Categorias chips ───────────────────────── */
.pk-categorias-wrap {
    padding: 28px 24px 8px;
}

.pk-categorias-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(0,0,0,0.35);
    margin-bottom: 14px;
}

.pk-categorias-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pk-cat-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #ffffff;
    color: #2a2a2a;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}

.pk-cat-chip:hover {
    background: #ffffff;
    color: #ff6363;
    border-color: #ff6363;
}

/* ── Products area ──────────────────────────── */
.area-produtos {
    padding: 0 12px;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #ff6363;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
    background-color: #ff6363;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #62C2A2;
}

@media only screen and (max-width: 767px) {
    .pk-categorias-wrap {
        padding: 20px 16px 8px;
    }
    .pk-cat-chip {
        font-size: 12px;
        padding: 7px 14px;
    }
}
