/**
 * PREMIUM SIDEBAR DESIGN SYSTEM
 */

.sidebar-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* STICKY GROUP: da Migliori Camgirl in poi */
.sidebar-sticky-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* Widget Wrapper */
.sidebar-widget {
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.sidebar-widget {
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.widget-header-wrap {
    border-left: 4px solid var(--brand-pink);
    padding-left: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0 !important; /* Force zero margin */
    padding: 0 !important;
    border: none !important; /* Remove any border-bottom */
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.widget-subtitle {
    display: block;
    font-size: 10px; /* Slightly smaller for better contrast */
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-pink);
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0 !important;
}

/* 1. Search Widget */
.search-widget-premium form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-widget-premium input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 15px 50px 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.search-widget-premium input:focus {
    border-color: var(--brand-pink);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 46, 99, 0.1);
}

.search-widget-premium button {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.search-widget-premium button:hover {
    color: var(--brand-pink);
}

/* 2. Star Performer List (Mini Cards) */
.star-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.star-mini-card {
    display: flex;
    align-items: center;
    gap: 10px; /* Compacted */
    text-decoration: none;
    transition: 0.3s;
    padding: 6px; /* Compacted */
    border-radius: 15px;
    position: relative;
}

.star-mini-card:hover {
    background: #f8fafc;
    transform: translateX(3px);
}

.star-rank-number {
    font-size: 18px; /* Slightly bigger */
    font-weight: 900;
    color: var(--brand-pink); /* Accent Color */
    width: 25px;
    flex-shrink: 0;
}

.star-mini-thumb {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f1f5f9;
    flex-shrink: 0;
}

.star-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-mini-info h4 {
    font-size: 17px; /* Bigger name */
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 1px;
    letter-spacing: -0.5px;
}

.star-mini-info .star-meta-small {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.star-mini-info .star-meta-small span {
    color: var(--brand-pink);
}

/* 3. Popular Posts List */
.popular-posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-sidebar-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.post-sidebar-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0f172a;
}

.post-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-sidebar-info h4 {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    color: #1e293b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-sidebar-meta {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 5px;
}

/* 4. Tags Cloud */
.tags-sidebar-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-tag-pill:hover {
    background: var(--ui-dark);
    color: white;
}
