/* ========================================
   PICKS PAGE STYLES
   ======================================== */

/* Hero Section */
.picks-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 50%, #0f0f1a 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.picks-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ff6b00" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.picks-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.picks-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.picks-hero-badge i {
    font-size: 1.2rem;
}

.picks-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.picks-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Google News Button */
.google-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-news-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.google-news-btn .google-logo {
    height: 20px;
    width: auto;
}

.google-news-btn .google-news-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.google-news-btn .google-news-label {
    font-size: 0.7rem;
    color: #5f6368;
    font-weight: 500;
}

.google-news-btn .google-news-title {
    font-size: 1rem;
    color: #202124;
    font-weight: 700;
}

.google-news-btn i {
    color: #1a73e8;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.google-news-btn:hover i {
    opacity: 1;
}

@media (max-width: 480px) {
    .google-news-btn {
        padding: 12px 20px;
        gap: 10px;
    }
    .google-news-btn .google-logo {
        height: 18px;
    }
    .google-news-btn .google-news-title {
        font-size: 0.9rem;
    }
}

/* Category Filter */
.picks-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 35px;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.category-filter-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    color: var(--primary);
}

.category-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.category-filter-btn i {
    font-size: 1rem;
}

/* Picks Grid */
.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Pick Card */
.pick-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pick-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pick-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
}

.pick-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.pick-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pick-card:hover .pick-card-image img {
    transform: scale(1.08);
}

.pick-card-image .pick-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
}

.pick-card-image .pick-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.pick-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.pick-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    pointer-events: none;
    z-index: 2;
}

/* Card Overlay - Read More */
.pick-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pick-card:hover .pick-card-overlay {
    opacity: 1;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.pick-card:hover .read-more-btn {
    transform: translateY(0);
}

.pick-card-body {
    padding: 20px;
}

.pick-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pick-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.pick-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pick-phones-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.pick-phones-count i {
    font-size: 0.95rem;
}

.pick-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.pick-card-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.pick-card:hover .pick-card-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(-5px);
}

.pick-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    cursor: pointer;
}

.pick-card-link:hover {
    color: inherit;
}

/* Empty State */
.picks-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.picks-empty i {
    font-size: 5rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.picks-empty h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.picks-empty p {
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .picks-hero {
        padding: 40px 0;
    }

    .picks-hero h1 {
        font-size: 1.8rem;
    }

    .picks-hero p {
        font-size: 1rem;
    }

    .picks-categories {
        gap: 8px;
    }

    .category-filter-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .picks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pick-card-body {
        padding: 20px;
    }

    .pick-card-title {
        font-size: 1.1rem;
    }

    .pick-card a {
        display: block;
    }
}

@media (max-width: 480px) {
    .picks-hero h1 {
        font-size: 1.5rem;
    }

    .picks-hero-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .category-filter-btn span {
        display: none;
    }

    .category-filter-btn {
        padding: 12px;
    }

    .category-filter-btn i {
        margin: 0;
    }
}
