/* ========================================
   Trending Sidebar - Premium Products
   Desktop only, sticky positioning
   ======================================== */

.trending-sidebar-wrap {
    display: none;
}

@media (min-width: 1024px) {
    .trending-sidebar-wrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
        position: sticky;
        top: 96px;
    }
}

.trending-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
.trending-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.trending-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.trending-sparkle {
    font-size: 16px;
    line-height: 1;
}

/* Logo */
.trending-logo-wrap {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.trending-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.trending-initials {
    font-size: 20px;
    font-weight: 700;
    color: #6366f1;
}

/* Name */
.trending-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.trending-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.trending-name:hover {
    color: #6366f1;
}

.trending-ext-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Description */
.trending-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 14px;
}

/* CTA Button */
.trending-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 16px;
    background: #097652;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
    min-height: 36px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.trending-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.trending-cta:active {
    transform: translateY(0);
    filter: brightness(0.95);
}