/* Produtos / collections */

.container {
    padding: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #999;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: #012a4a;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e6b3cc;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #012a4a;
    font-weight: 700;
}

.page-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.filter-pill {
    padding: 0.5rem 1.3rem;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    background: white;
    color: #555;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.filter-pill:hover {
    border-color: #e6b3cc;
    color: #012a4a;
}

.filter-pill.active {
    background: #012a4a;
    color: white;
    border-color: #012a4a;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.empty-state p {
    font-size: 1.1rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-button {
    background: transparent;
    color: #012a4a;
    border: 2px solid #012a4a;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.load-more-button:hover {
    background: #012a4a;
    color: white;
}

.footer {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .filter-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .filter-pill {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .filter-pill {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        min-height: 44px;
    }
}
