/* Styles personnalisés pour les catégories circulaires et le défilement horizontal */

/* Style pour le défilement horizontal personnalisé */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== BARRE DE RECHERCHE PREMIUM SLIM ===== */
#search-input {
    transition: all 0.2s ease;
}

#search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

#search-results {
    backdrop-filter: blur(10px);
}

#search-content::-webkit-scrollbar {
    width: 6px;
}

#search-content::-webkit-scrollbar-track {
    background: transparent;
}

#search-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

#search-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

#search-suggestions, #search-history {
    animation: slideDown 0.2s ease;
}

.suggestion-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    background: #f3f4f6;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.suggestion-tag:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.history-item {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.15s ease;
}

.history-item:hover {
    background: #f9fafb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour les cartes de catégories circulaires */
.category-card {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-flex-shrink: 0 !important;
}
.category-card .relative {
    padding: 0.25rem !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.category-card i {
    font-size: 1.3rem !important;
    margin-bottom: 0.15rem !important;
    display: block !important;
}
.category-card h3 {
    font-size: 0.6rem !important;
    line-height: 1 !important;
    margin-bottom: 0.15rem !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.category-card p {
    font-size: 0.55rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* Styles pour les bannières de catégories */
.category-banner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
    flex-shrink: 0;
}

/* Styles pour les boutons de connexion sociale */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background-color: white;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn:active {
    transform: translateY(0);
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Style spécifique pour Google */
.btn-google {
    border-color: #e2e8f0;
    color: #4a5568;
}

.btn-google:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
}

/* Style spécifique pour Facebook */
.btn-facebook {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background-color: #166fe5;
    border-color: #166fe5;
}
/* ===== SEO CONTENT HIDING (Google reads, Users don't see) ===== */
#seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}