/* Shop Tags Section */
.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0.5rem 0;
    justify-content: center;
    width: 100%;
    contain: content;
}

/* Regular Shop View Tags */
.shop .shop-tags {
    position: absolute;
    bottom: 3.5rem;
    right: 0.5rem;
    justify-content: center;
    transform: translateZ(0);
}

/* Shop Card Tags */
.shop-card .shop-tags {
    margin-top: 0.5rem;
    justify-content: center;
    transform: translateZ(0);
}

/* Individual Tag Style */
.tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

/* Tag Hover Effect */
.tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Special Tag Styles */
.tag.nsfw {
    background-color: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.tag.featured {
    background-color: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.3);
}

.tag.popular {
    background-color: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}