/**
 * Show Tags Styling - عرض الوسوم بشكل جميل
 * Version: 1.0
 */

/* تنسيق الوسوم */
.post-tags-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.tags-title {
    font-size: 18px;
    font-weight: 700;
    color: #00A859;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 2px solid #00A859;
    border-radius: 20px;
    color: #00A859;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-item:hover {
    background: #00A859;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,168,89,0.3);
}

/* الأنماط المختلفة */

/* Style 1 - Classic */
.tags-style1 .tag-item {
    background: #00A859;
    color: #fff;
    border-color: #00A859;
}

.tags-style1 .tag-item:hover {
    background: #008a47;
    border-color: #008a47;
}

/* Style 2 - Outline */
.tags-style2 .tag-item {
    background: transparent;
    border: 2px solid #00A859;
    color: #00A859;
}

.tags-style2 .tag-item:hover {
    background: #00A859;
    color: #fff;
}

/* Style 3 - Gradient */
.tags-style3 .tag-item {
    background: linear-gradient(135deg, #00A859, #00c46e);
    border: none;
    color: #fff;
}

.tags-style3 .tag-item:hover {
    background: linear-gradient(135deg, #008a47, #00A859);
}

/* Style 4 - Minimal */
.tags-style4 .tag-item {
    background: transparent;
    border: none;
    border-bottom: 2px solid #00A859;
    border-radius: 0;
    color: #00A859;
}

.tags-style4 .tag-item:hover {
    border-bottom-color: #008a47;
    color: #008a47;
}

/* Mobile */
@media (max-width: 768px) {
    .post-tags-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .tags-title {
        font-size: 16px;
    }
    
    .tag-item {
        padding: 6px 12px;
        font-size: 12px;
    }
}

