/* =====================================================
   ARTICLE TAG PAGE STYLES
   ===================================================== */

/* Base Article Tag Section */
.article-tag-page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-darkest) 0%, var(--color-bg-darker) 100%) !important;
    color: var(--color-text-primary);
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.article-tag-page-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* =====================================================
   ARTICLE TAG HEADER SECTION
   ===================================================== */

.article-tag-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.article-tag-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.article-tag-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.article-tag-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.article-tag-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.post-count {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   ARTICLE TAG CONTROLS SECTION
   ===================================================== */

.article-tag-controls-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.article-tag-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.article-tag-breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-tag-breadcrumb a:hover {
    color: var(--color-accent);
}

.article-tag-breadcrumb .separator {
    color: var(--color-text-muted);
    margin: 0 5px;
}

.article-tag-breadcrumb .current {
    color: var(--color-accent);
    font-weight: 600;
}

.article-tag-filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

.filter-icon {
    font-size: 16px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =====================================================
   ARTICLE TAG POSTS CONTAINER
   ===================================================== */

.article-tag-posts-container {
    position: relative;
    z-index: 2;
}

.article-tag-posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =====================================================
   ARTICLE TAG POST ITEM
   ===================================================== */

.article-tag-post-item {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.article-tag-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 82, 82, 0.3);
}

.article-tag-post-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.05) 0%, rgba(255, 154, 158, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* =====================================================
   ARTICLE TAG POST IMAGE
   ===================================================== */

.article-tag-post-image {
    position: relative;
    width: 350px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-tag-post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-tag-post-item:hover .article-tag-post-image img {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: 600;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.article-tag-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.article-tag-post-category a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
    transition: all 0.3s ease;
}

.article-tag-post-category a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
}

/* =====================================================
   ARTICLE TAG POST CONTENT
   ===================================================== */

.article-tag-post-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.article-tag-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.post-date {
    font-weight: 600;
}

.post-author a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-author a:hover {
    color: var(--color-accent);
}

.article-tag-post-title {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-tag-post-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag-post-title a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-tag-post-excerpt {
    margin-bottom: 25px;
    flex: 1;
}

.article-tag-post-excerpt a {
    color: var(--color-text-secondary);
    text-decoration: none;
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.article-tag-post-excerpt a:hover {
    color: var(--color-text-primary);
}

/* =====================================================
   ARTICLE TAG POST FOOTER
   ===================================================== */

.article-tag-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-tag-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.article-tag-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.article-tag-read-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.article-tag-post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tag:hover {
    background: rgba(255, 82, 82, 0.2);
    color: var(--color-accent);
    border-color: rgba(255, 82, 82, 0.3);
}

/* =====================================================
   ARTICLE TAG PAGINATION
   ===================================================== */

.article-tag-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tag-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tag-pagination-container a,
.article-tag-pagination-container span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tag-pagination-container a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

.article-tag-pagination-container .current {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.article-tag-pagination-container .dots {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: default;
}

/* =====================================================
   NO POSTS FOUND
   ===================================================== */

.article-tag-no-posts {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tag-no-posts h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.article-tag-no-posts p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.back-to-articles-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.back-to-articles-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

/* =====================================================
   FILTER SIDEBAR
   ===================================================== */

.article-tag-filter-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.article-tag-filter-sidebar.active {
    right: 0;
}

.filter-sidebar-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header h3 {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.filter-close-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.filter-close-btn:hover {
    color: var(--color-accent);
}

.filter-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-muted);
    padding: 40px 20px;
}

/* Filter Overlay */
.article-tag-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.article-tag-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .article-tag-page-section .container {
        padding: 30px 15px;
    }
    
    .article-tag-title {
        font-size: 2.8rem;
    }
    
    .article-tag-post-image {
        width: 300px;
    }
    
    .article-tag-post-content {
        padding: 25px;
    }
    
    .article-tag-filter-sidebar {
        width: 350px;
        right: -350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .article-tag-page-section .container {
        padding: 20px 10px;
    }
    
    .article-tag-title {
        font-size: 2.2rem;
    }
    
    .article-tag-controls-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-tag-post-item {
        flex-direction: column;
    }
    
    .article-tag-post-image {
        width: 100%;
    }
    
    .article-tag-post-image img,
    .no-image-placeholder {
        height: 200px;
    }
    
    .article-tag-post-content {
        padding: 20px;
    }
    
    .article-tag-post-title {
        font-size: 1.5rem;
    }
    
    .article-tag-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-tag-filter-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .article-tag-pagination-container a,
    .article-tag-pagination-container span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .article-tag-title {
        font-size: 1.8rem;
    }
    
    .article-tag-post-title {
        font-size: 1.3rem;
    }
    
    .article-tag-breadcrumb {
        font-size: 12px;
    }
    
    .filter-toggle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .article-tag-page-section .container {
        padding: 50px 40px;
    }
    
    .article-tag-post-image {
        width: 400px;
    }
    
    .article-tag-post-content {
        padding: 40px;
    }
    
    .article-tag-title {
        font-size: 4rem;
    }
}

/* =====================================================
   FILTER SIDEBAR WIDGETS STYLES
   ===================================================== */

/* Widget Base Styles */
.article-tag-filter-sidebar .filter-widget {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.article-tag-filter-sidebar .filter-widget:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 82, 82, 0.3);
    transform: translateY(-2px);
}

.article-tag-filter-sidebar .filter-widget-title {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid transparent;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.article-tag-filter-sidebar .filter-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Search Widget */
.article-tag-filter-sidebar .widget_search {
    position: relative;
}

.article-tag-filter-sidebar .widget_search .search-form {
    position: relative;
}

.article-tag-filter-sidebar .widget_search input[type="search"] {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.article-tag-filter-sidebar .widget_search input[type="search"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.3);
}

.article-tag-filter-sidebar .widget_search input[type="search"]::placeholder {
    color: var(--color-text-muted);
}

.article-tag-filter-sidebar .widget_search .search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.article-tag-filter-sidebar .widget_search .search-submit:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
}

.article-tag-filter-sidebar .widget_search .search-submit::before {
    content: '🔍';
    font-size: 12px;
}

/* Categories Widget */
.article-tag-filter-sidebar .widget_categories ul,
.article-tag-filter-sidebar .widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-tag-filter-sidebar .widget_categories li,
.article-tag-filter-sidebar .widget_nav_menu li {
    margin-bottom: 12px;
}

.article-tag-filter-sidebar .widget_categories a,
.article-tag-filter-sidebar .widget_nav_menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.article-tag-filter-sidebar .widget_categories a:hover,
.article-tag-filter-sidebar .widget_nav_menu a:hover {
    background: rgba(255, 82, 82, 0.15);
    color: var(--color-accent);
    border-color: rgba(255, 82, 82, 0.3);
    transform: translateX(5px);
}

.article-tag-filter-sidebar .widget_categories .post-count {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Archive Widget */
.article-tag-filter-sidebar .widget_archive select,
.article-tag-filter-sidebar .widget_meta select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.article-tag-filter-sidebar .widget_archive select:focus,
.article-tag-filter-sidebar .widget_meta select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.2);
}

.article-tag-filter-sidebar .widget_archive option,
.article-tag-filter-sidebar .widget_meta option {
    background: var(--color-bg-darkest);
    color: var(--color-text-primary);
    padding: 10px;
}

/* Tag Cloud Widget */
.article-tag-filter-sidebar .widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 8px 15px;
    margin: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px !important;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.article-tag-filter-sidebar .widget_tag_cloud .tagcloud a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

/* Recent Posts Widget */
.article-tag-filter-sidebar .widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-tag-filter-sidebar .widget_recent_entries li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.article-tag-filter-sidebar .widget_recent_entries li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 82, 82, 0.2);
}

.article-tag-filter-sidebar .widget_recent_entries a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-tag-filter-sidebar .widget_recent_entries a:hover {
    color: var(--color-accent);
}

.article-tag-filter-sidebar .widget_recent_entries .post-date {
    display: block;
    color: var(--color-text-muted);
    font-size: 12px;
    margin-top: 8px;
    font-weight: 500;
}

/* Custom Filter Widgets */
.article-tag-filter-sidebar .filter-widget label {
    display: block;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.article-tag-filter-sidebar .filter-widget input[type="text"],
.article-tag-filter-sidebar .filter-widget input[type="email"],
.article-tag-filter-sidebar .filter-widget input[type="url"],
.article-tag-filter-sidebar .filter-widget textarea,
.article-tag-filter-sidebar .filter-widget select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    margin-bottom: 15px;
}

.article-tag-filter-sidebar .filter-widget input:focus,
.article-tag-filter-sidebar .filter-widget textarea:focus,
.article-tag-filter-sidebar .filter-widget select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.2);
}

.article-tag-filter-sidebar .filter-widget input::placeholder,
.article-tag-filter-sidebar .filter-widget textarea::placeholder {
    color: var(--color-text-muted);
}

/* Checkbox and Radio Styles */
.article-tag-filter-sidebar .filter-widget input[type="checkbox"],
.article-tag-filter-sidebar .filter-widget input[type="radio"] {
    width: auto;
    margin-right: 10px;
    accent-color: var(--color-accent);
}

.article-tag-filter-sidebar .filter-widget .checkbox-group,
.article-tag-filter-sidebar .filter-widget .radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.article-tag-filter-sidebar .filter-widget .checkbox-item,
.article-tag-filter-sidebar .filter-widget .radio-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-tag-filter-sidebar .filter-widget .checkbox-item:hover,
.article-tag-filter-sidebar .filter-widget .radio-item:hover {
    background: rgba(255, 82, 82, 0.1);
    border-color: rgba(255, 82, 82, 0.3);
}

/* Button Styles in Widgets */
.article-tag-filter-sidebar .filter-widget button,
.article-tag-filter-sidebar .filter-widget input[type="submit"] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.article-tag-filter-sidebar .filter-widget button:hover,
.article-tag-filter-sidebar .filter-widget input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 82, 0.4);
}

/* Widget Links */
.article-tag-filter-sidebar .filter-widget a:not(.filter-widget-title):not(.widget_categories a):not(.widget_nav_menu a) {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-tag-filter-sidebar .filter-widget a:not(.filter-widget-title):not(.widget_categories a):not(.widget_nav_menu a):hover {
    color: var(--color-accent);
}

/* Scrollbar for Sidebar */
.article-tag-filter-sidebar::-webkit-scrollbar {
    width: 8px;
}

.article-tag-filter-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.article-tag-filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.article-tag-filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}
