/**
 * Top Searched Section Styles
 */

.top-searched-section {
    background-color: #fff;
}

.top-searched-section .section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.top-searched-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.top-searched-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.top-searched-item:hover {
    background: #0057A0;
    border-color: #0057A0;
    color: #fff;
    transform: translateY(-2px);
}

.search-icon {
    font-size: 1.2rem;
}

.search-keyword {
    flex: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-arrow {
    opacity: 0.5;
}

.top-searched-item:hover .search-arrow {
    opacity: 1;
}

/* Responsive Grid columns are handled by data attributes in JS or inline styles if needed, 
   but we'll provide standard breakpoints here */
@media (max-width: 1200px) {
    .top-searched-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 991px) {
    .top-searched-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .top-searched-grid { grid-template-columns: repeat(2, 1fr); }
    .top-searched-section .section-title { font-size: 1.2rem; }
}




