.tag-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.tag-title {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 2px solid #d9534f;
    border-radius: 50px;
    background-color: white;
}

.tag-description {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-top: 2rem;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.product-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #d9534f;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
}

.product-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin: 0.6rem 1.2rem 0 1.2rem;
}

.region, .city {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.region {
    margin-left: 0.5rem; /* or any value you prefer */
}

.region::before {
    content: '📍';
}

.city::before {
    content: '🏛️';
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 1.2rem 1.2rem 1.2rem;
}

.tag {
    background-color: #f8f9fa;
    color: #2c3e50;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    height: 2.2rem;
    line-height: 1.2rem;
    font-weight: 500;
    box-sizing: border-box;
    margin-bottom: 0.3rem;
    min-width: auto;
    justify-content: center;
}

.tag:hover {
    background-color: #d9534f;
    color: white;
    text-decoration: none;
    border-color: #d9534f;
}

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

    .products-list {
        grid-template-columns: 1fr;
    }

    .product-item {
        margin-bottom: 0.5rem;
    }
} 