/* Product Tags Styles */
.tags-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list .tag-item {
    display: inline-block;
    margin: 0;
}

.tags-list .tag-item a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tags-list .tag-item a:hover {
    background-color: #a8ca01;
    border-color: #a8ca01;
    color: #fff;
}

.box-tags h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}