/* Filters */
.filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filters button,
.tag-box {
    padding: 8px 14px;
    border-radius: 20px;
    background-color: #f2f2f2;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}
.filters button:hover,
.tag-box:hover {
    background-color: #444;
    color: #fff;
}
.filters button.active {
    background-color: #444;
    color: #fff;
}

/* Grid */
.grid {
    display: flex;
    flex-wrap: wrap;
}
.grid-item {
    width: 300px;
    margin: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.grid-item.show {
    opacity: 1;
    transform: translateY(0);
}
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Loading */
.loading {
    text-align: center;
    margin: 20px 0;
}
