/* Popular category section styles */
.popular-category-section {
    margin-bottom: 40px;
    padding: 20px 0;
    background: transparent;
}

.popular-category-header {
    margin-bottom: 20px;
    padding: 0 20px;
}

.popular-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.popular-category-container {
    position: relative;
    overflow: hidden;
}

.popular-category-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.popular-category-wrapper::-webkit-scrollbar {
    display: none;
}

/* Popular item card */
.popular-category-item {
    flex: 0 0 200px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

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

.popular-item-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff6900;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.popular-item-image {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-item-image.has-image {
    background: transparent;
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.popular-item-desc {
    font-size: 12px;
    color: #666;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.popular-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6900;
    margin-bottom: 12px;
}

.popular-add-btn {
    width: 32px;
    height: 32px;
    background: #ff6900;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.popular-add-btn:hover {
    background: #e55a00;
    transform: scale(1.1);
}

/* Scroll buttons */
.popular-scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.popular-scroll-button:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popular-scroll-button.prev {
    left: 10px;
}

.popular-scroll-button.next {
    right: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .popular-category-section {
        padding: 15px 0;
        margin-bottom: 0px !important;
    }
    
    .popular-category-header {
        padding: 0 15px;
    }
    
    .popular-category-wrapper {
        padding: 0 ;
    }
    
    .popular-category-item {
        flex: 0 0 160px;
        padding: 12px;
    }
    
    .popular-item-image {
        height: 100px;
    }
    
    .popular-scroll-button {
        display: none;
    }
}